os/ossrv/genericservices/s60compatibilityheaders/commonengine/inc/textresolver.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
sl@0
    21
#ifndef TEXT_RESOLVER_H
sl@0
    22
#define TEXT_RESOLVER_H
sl@0
    23
sl@0
    24
#include <coemain.h>    //  CCoeEnv
sl@0
    25
#include <textresolver.hrh> // Resource flags 
sl@0
    26
#include <eikenv.h>    //  CEikonEnv
sl@0
    27
sl@0
    28
// DEFINES
sl@0
    29
typedef CArrayFixFlat<TInt> CErrorResourceIdArray;
sl@0
    30
typedef CArrayFixFlat<TInt> CErrorResourceFlagArray;
sl@0
    31
sl@0
    32
/**
sl@0
    33
* Class offers functionality for resolving corresponding error texts for 
sl@0
    34
* error codes. Text Resolver API provides operations with which a specific 
sl@0
    35
* error code can be resolved to a human readable text. Descriptions for the
sl@0
    36
* different error codes must be defined in the resource files of this 
sl@0
    37
* component. 
sl@0
    38
*
sl@0
    39
* Text Resolver uses the CCoeEnv environment class to access the resource
sl@0
    40
* files if the CCoeEnv environment is available. If the CCoeEnv environment
sl@0
    41
* is not available, the files are accessed through the RResourceFile API.
sl@0
    42
*
sl@0
    43
* The API consist of the CTextResolver class which is used together with 
sl@0
    44
* Text Resolver flags defined in textresolver.hrh file. The flags are used
sl@0
    45
* to tell the priority of the error to the client:
sl@0
    46
*
sl@0
    47
* - EErrorResBlankErrorFlag is used to tell that error has no proper explanation.
sl@0
    48
* - EErrorResUnknownErrorFlag indicates that Text Resolver does not support the error. 
sl@0
    49
* - EErrorResOOMFlag Flag is returned while processing KErrNoMemory error code. 
sl@0
    50
*
sl@0
    51
*
sl@0
    52
* Usage:
sl@0
    53
*
sl@0
    54
* @code
sl@0
    55
*  #include <textresolver.h>
sl@0
    56
*
sl@0
    57
*  // Typically used as an instance variable.
sl@0
    58
*  
sl@0
    59
*  // Call the factory method NewLC() to create a new instance of CTextResolver.
sl@0
    60
*  // NewLC() method leaves the instance of the object on the cleanup stack.	
sl@0
    61
*  // The passed CCoeEnv instance is needed to access the resource files.
sl@0
    62
*  CTextResolver* iTextResolver = CTextResolver::NewLC(*iCoeEnv); 
sl@0
    63
*
sl@0
    64
*  // // Error Resolving, simple:
sl@0
    65
*
sl@0
    66
*  // Get error code to be resolved.
sl@0
    67
*  // TInt err1 = MyMethod(KInvalidValue);
sl@0
    68
*  TInt err1 = KErrNoMemory;
sl@0
    69
*    
sl@0
    70
*  TPtrC buf1;  // For returned error text
sl@0
    71
*    
sl@0
    72
*  if (err1 != KErrNone)
sl@0
    73
*      {
sl@0
    74
*      // Resolve the given error code. 
sl@0
    75
*      // The operation returns the error text for the resolved error.
sl@0
    76
*      // There's no limit how long the resolved string can be.
sl@0
    77
*      // Add context to 2nd param if needed.
sl@0
    78
*      buf1.Set(iTextResolver->ResolveErrorString(err)); 
sl@0
    79
*      }
sl@0
    80
*  else
sl@0
    81
*      {
sl@0
    82
*      // Do something.
sl@0
    83
*      }
sl@0
    84
*        
sl@0
    85
*  // Note that buf1 will only be valid as long as CTextResolver 
sl@0
    86
*  // instance is alive and no new error is resolved by the same instance.
sl@0
    87
*  // If for some reason you need to store the resolved error
sl@0
    88
*  // beyond immediate use, make a copy of it.
sl@0
    89
*
sl@0
    90
*  // Error Resolving, advanced:
sl@0
    91
* 
sl@0
    92
*  // Get error code to be resolved.
sl@0
    93
*  // TInt err2 = MyMethod(KInvalidValue);
sl@0
    94
*  TInt err2 = KErrNotSupported;
sl@0
    95
*        
sl@0
    96
*  TInt textId(0);    // ID of the returned text
sl@0
    97
*  TUint flags(0);    // Priority of the returned error 
sl@0
    98
*  TPtrC buf2;      // For returned error text
sl@0
    99
*   
sl@0
   100
*  if (err2 != KErrNone)
sl@0
   101
*      {
sl@0
   102
*      // Resolve the given error code.
sl@0
   103
*      // The operation returns the error text for the resolved error.
sl@0
   104
*      // There's no limit on how long the resolved string can be.
sl@0
   105
*      // Add Context to 4th param if needed.
sl@0
   106
*      buf2.Set(iTextResolver->ResolveErrorString(err, textId, flags)); 
sl@0
   107
*
sl@0
   108
*      if (flags & EErrorResUnknownErrorFlag)
sl@0
   109
*          {
sl@0
   110
*          // The flag indicates that Text Resolver does not support
sl@0
   111
*          // the error code. 
sl@0
   112
*          // Do something.
sl@0
   113
*          }
sl@0
   114
*      }
sl@0
   115
*  else
sl@0
   116
*      {
sl@0
   117
*      // Do something.
sl@0
   118
*      }
sl@0
   119
*    
sl@0
   120
*  // Note that buf2 will only be valid as long as CTextResolver 
sl@0
   121
*  // instance is alive and no new error is resolved by the same instance.
sl@0
   122
*  // If for some reason you need to store the resolved error
sl@0
   123
*  // beyond immediate use, make a copy of it.
sl@0
   124
*
sl@0
   125
*  // iTextResolver, Free loaded resources
sl@0
   126
*  CleanupStack::PopAndDestroy(); 
sl@0
   127
* @endcode
sl@0
   128
*
sl@0
   129
* @lib commonengine.lib
sl@0
   130
* @since S60 2.0
sl@0
   131
*/
sl@0
   132
class CTextResolver : public CBase
sl@0
   133
    {
sl@0
   134
public:
sl@0
   135
    /**
sl@0
   136
    * Defines used error contexts. 
sl@0
   137
    * Optional error contexes for aiding the mapping of error codes to 
sl@0
   138
    * texts in a unique way. If no context is given the assumption is 
sl@0
   139
    * that error codes are unique.
sl@0
   140
    */
sl@0
   141
    enum TErrorContext
sl@0
   142
        {
sl@0
   143
        /** Context is defined automatically from error code value.
sl@0
   144
        * Here it is assumed that each error code is unique and in
sl@0
   145
        * own range. This is a default value when resolving errors. */
sl@0
   146
        ECtxAutomatic = 0,
sl@0
   147
        /** Context text is not added to the beginning of the resolved error text,
sl@0
   148
        * just context separator ':' and newline are added. */
sl@0
   149
        ECtxNoCtx = 1,
sl@0
   150
        /** No context text, context separator ':' or newline added to the 
sl@0
   151
        * beginning of the resolved error text. */
sl@0
   152
        ECtxNoCtxNoSeparator = 2
sl@0
   153
        };
sl@0
   154
public:
sl@0
   155
    IMPORT_C static CTextResolver* NewL(CCoeEnv& aEnv);
sl@0
   156
    IMPORT_C static CTextResolver* NewLC(CCoeEnv& aEnv);
sl@0
   157
    IMPORT_C static CTextResolver* NewL();
sl@0
   158
	IMPORT_C static CTextResolver* NewLC();
sl@0
   159
    IMPORT_C ~CTextResolver();
sl@0
   160
	IMPORT_C const TDesC& ResolveErrorString(TInt aError, TInt& aTextId, TUint& aFlags,TErrorContext aContext = ECtxAutomatic);
sl@0
   161
    IMPORT_C const TDesC& ResolveErrorString(TInt aError, TErrorContext aContext = ECtxAutomatic);
sl@0
   162
private: // Construction
sl@0
   163
    virtual TInt ResourceForError(TInt aError);
sl@0
   164
    virtual void LoadResourceFilesL() { ASSERT(0); }	// deprecated
sl@0
   165
    CTextResolver(CCoeEnv& aEnv);
sl@0
   166
    CTextResolver();
sl@0
   167
    void ConstructL();
sl@0
   168
    
sl@0
   169
    // Utility
sl@0
   170
    void DoRawReadOfSystemErrorResourcesToArraysL(TInt& aError, TInt& aTextId);
sl@0
   171
    void Reset();
sl@0
   172
    void ReadLocalizedSeparatorCharacterFromResourceL(CCoeEnv& aCoeEnv);
sl@0
   173
    void ReadLocalizedSeparatorCharacterFromResourceAndPrepareResourceReaderLC(TResourceReader& aResReader);
sl@0
   174
sl@0
   175
    // returns NULL if fails
sl@0
   176
    static HBufC* AllocReadUnicodeString(RResourceFile& aResFile, TInt aTextId);
sl@0
   177
    /** Returns false if any memory allocation fails or initial values 
sl@0
   178
	of necessary pointers are NULL, indicating alloc failure earlier.*/
sl@0
   179
    TBool AddContextAndSeparator(TErrorContext aContext);
sl@0
   180
    void AllocBuffersL();
sl@0
   181
    void DoResolveErrorStringL(TInt aError, TInt& aTextId, TUint& aFlags);
sl@0
   182
private:
sl@0
   183
    CCoeEnv* iCoe;
sl@0
   184
    RResourceFile iResFile;
sl@0
   185
    TInt iRDSupport;
sl@0
   186
    TInt iBaseResourceFileOffset;
sl@0
   187
    CArrayFix<TInt>* iStartError;
sl@0
   188
    CArrayFix<TInt>* iAppTexts;
sl@0
   189
    CArrayPtr<CErrorResourceIdArray>*   iErrorTexts;	// Array of arrays of ints
sl@0
   190
    CArrayPtr<CErrorResourceFlagArray>* iFlags;			// Array of arrays of ints
sl@0
   191
    HBufC* iTextBuffer;
sl@0
   192
    HBufC* iTitleText;
sl@0
   193
    HBufC* iContextSeparator;
sl@0
   194
    RFs iFs;
sl@0
   195
    TPtrC  iTruncatedTextPointer;
sl@0
   196
	};
sl@0
   197
sl@0
   198
#endif
sl@0
   199