os/ossrv/genericservices/s60compatibilityheaders/commonengine/inc/textresolver.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericservices/s60compatibilityheaders/commonengine/inc/textresolver.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,199 @@
     1.4 +/*
     1.5 +* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +
    1.23 +
    1.24 +#ifndef TEXT_RESOLVER_H
    1.25 +#define TEXT_RESOLVER_H
    1.26 +
    1.27 +#include <coemain.h>    //  CCoeEnv
    1.28 +#include <textresolver.hrh> // Resource flags 
    1.29 +#include <eikenv.h>    //  CEikonEnv
    1.30 +
    1.31 +// DEFINES
    1.32 +typedef CArrayFixFlat<TInt> CErrorResourceIdArray;
    1.33 +typedef CArrayFixFlat<TInt> CErrorResourceFlagArray;
    1.34 +
    1.35 +/**
    1.36 +* Class offers functionality for resolving corresponding error texts for 
    1.37 +* error codes. Text Resolver API provides operations with which a specific 
    1.38 +* error code can be resolved to a human readable text. Descriptions for the
    1.39 +* different error codes must be defined in the resource files of this 
    1.40 +* component. 
    1.41 +*
    1.42 +* Text Resolver uses the CCoeEnv environment class to access the resource
    1.43 +* files if the CCoeEnv environment is available. If the CCoeEnv environment
    1.44 +* is not available, the files are accessed through the RResourceFile API.
    1.45 +*
    1.46 +* The API consist of the CTextResolver class which is used together with 
    1.47 +* Text Resolver flags defined in textresolver.hrh file. The flags are used
    1.48 +* to tell the priority of the error to the client:
    1.49 +*
    1.50 +* - EErrorResBlankErrorFlag is used to tell that error has no proper explanation.
    1.51 +* - EErrorResUnknownErrorFlag indicates that Text Resolver does not support the error. 
    1.52 +* - EErrorResOOMFlag Flag is returned while processing KErrNoMemory error code. 
    1.53 +*
    1.54 +*
    1.55 +* Usage:
    1.56 +*
    1.57 +* @code
    1.58 +*  #include <textresolver.h>
    1.59 +*
    1.60 +*  // Typically used as an instance variable.
    1.61 +*  
    1.62 +*  // Call the factory method NewLC() to create a new instance of CTextResolver.
    1.63 +*  // NewLC() method leaves the instance of the object on the cleanup stack.	
    1.64 +*  // The passed CCoeEnv instance is needed to access the resource files.
    1.65 +*  CTextResolver* iTextResolver = CTextResolver::NewLC(*iCoeEnv); 
    1.66 +*
    1.67 +*  // // Error Resolving, simple:
    1.68 +*
    1.69 +*  // Get error code to be resolved.
    1.70 +*  // TInt err1 = MyMethod(KInvalidValue);
    1.71 +*  TInt err1 = KErrNoMemory;
    1.72 +*    
    1.73 +*  TPtrC buf1;  // For returned error text
    1.74 +*    
    1.75 +*  if (err1 != KErrNone)
    1.76 +*      {
    1.77 +*      // Resolve the given error code. 
    1.78 +*      // The operation returns the error text for the resolved error.
    1.79 +*      // There's no limit how long the resolved string can be.
    1.80 +*      // Add context to 2nd param if needed.
    1.81 +*      buf1.Set(iTextResolver->ResolveErrorString(err)); 
    1.82 +*      }
    1.83 +*  else
    1.84 +*      {
    1.85 +*      // Do something.
    1.86 +*      }
    1.87 +*        
    1.88 +*  // Note that buf1 will only be valid as long as CTextResolver 
    1.89 +*  // instance is alive and no new error is resolved by the same instance.
    1.90 +*  // If for some reason you need to store the resolved error
    1.91 +*  // beyond immediate use, make a copy of it.
    1.92 +*
    1.93 +*  // Error Resolving, advanced:
    1.94 +* 
    1.95 +*  // Get error code to be resolved.
    1.96 +*  // TInt err2 = MyMethod(KInvalidValue);
    1.97 +*  TInt err2 = KErrNotSupported;
    1.98 +*        
    1.99 +*  TInt textId(0);    // ID of the returned text
   1.100 +*  TUint flags(0);    // Priority of the returned error 
   1.101 +*  TPtrC buf2;      // For returned error text
   1.102 +*   
   1.103 +*  if (err2 != KErrNone)
   1.104 +*      {
   1.105 +*      // Resolve the given error code.
   1.106 +*      // The operation returns the error text for the resolved error.
   1.107 +*      // There's no limit on how long the resolved string can be.
   1.108 +*      // Add Context to 4th param if needed.
   1.109 +*      buf2.Set(iTextResolver->ResolveErrorString(err, textId, flags)); 
   1.110 +*
   1.111 +*      if (flags & EErrorResUnknownErrorFlag)
   1.112 +*          {
   1.113 +*          // The flag indicates that Text Resolver does not support
   1.114 +*          // the error code. 
   1.115 +*          // Do something.
   1.116 +*          }
   1.117 +*      }
   1.118 +*  else
   1.119 +*      {
   1.120 +*      // Do something.
   1.121 +*      }
   1.122 +*    
   1.123 +*  // Note that buf2 will only be valid as long as CTextResolver 
   1.124 +*  // instance is alive and no new error is resolved by the same instance.
   1.125 +*  // If for some reason you need to store the resolved error
   1.126 +*  // beyond immediate use, make a copy of it.
   1.127 +*
   1.128 +*  // iTextResolver, Free loaded resources
   1.129 +*  CleanupStack::PopAndDestroy(); 
   1.130 +* @endcode
   1.131 +*
   1.132 +* @lib commonengine.lib
   1.133 +* @since S60 2.0
   1.134 +*/
   1.135 +class CTextResolver : public CBase
   1.136 +    {
   1.137 +public:
   1.138 +    /**
   1.139 +    * Defines used error contexts. 
   1.140 +    * Optional error contexes for aiding the mapping of error codes to 
   1.141 +    * texts in a unique way. If no context is given the assumption is 
   1.142 +    * that error codes are unique.
   1.143 +    */
   1.144 +    enum TErrorContext
   1.145 +        {
   1.146 +        /** Context is defined automatically from error code value.
   1.147 +        * Here it is assumed that each error code is unique and in
   1.148 +        * own range. This is a default value when resolving errors. */
   1.149 +        ECtxAutomatic = 0,
   1.150 +        /** Context text is not added to the beginning of the resolved error text,
   1.151 +        * just context separator ':' and newline are added. */
   1.152 +        ECtxNoCtx = 1,
   1.153 +        /** No context text, context separator ':' or newline added to the 
   1.154 +        * beginning of the resolved error text. */
   1.155 +        ECtxNoCtxNoSeparator = 2
   1.156 +        };
   1.157 +public:
   1.158 +    IMPORT_C static CTextResolver* NewL(CCoeEnv& aEnv);
   1.159 +    IMPORT_C static CTextResolver* NewLC(CCoeEnv& aEnv);
   1.160 +    IMPORT_C static CTextResolver* NewL();
   1.161 +	IMPORT_C static CTextResolver* NewLC();
   1.162 +    IMPORT_C ~CTextResolver();
   1.163 +	IMPORT_C const TDesC& ResolveErrorString(TInt aError, TInt& aTextId, TUint& aFlags,TErrorContext aContext = ECtxAutomatic);
   1.164 +    IMPORT_C const TDesC& ResolveErrorString(TInt aError, TErrorContext aContext = ECtxAutomatic);
   1.165 +private: // Construction
   1.166 +    virtual TInt ResourceForError(TInt aError);
   1.167 +    virtual void LoadResourceFilesL() { ASSERT(0); }	// deprecated
   1.168 +    CTextResolver(CCoeEnv& aEnv);
   1.169 +    CTextResolver();
   1.170 +    void ConstructL();
   1.171 +    
   1.172 +    // Utility
   1.173 +    void DoRawReadOfSystemErrorResourcesToArraysL(TInt& aError, TInt& aTextId);
   1.174 +    void Reset();
   1.175 +    void ReadLocalizedSeparatorCharacterFromResourceL(CCoeEnv& aCoeEnv);
   1.176 +    void ReadLocalizedSeparatorCharacterFromResourceAndPrepareResourceReaderLC(TResourceReader& aResReader);
   1.177 +
   1.178 +    // returns NULL if fails
   1.179 +    static HBufC* AllocReadUnicodeString(RResourceFile& aResFile, TInt aTextId);
   1.180 +    /** Returns false if any memory allocation fails or initial values 
   1.181 +	of necessary pointers are NULL, indicating alloc failure earlier.*/
   1.182 +    TBool AddContextAndSeparator(TErrorContext aContext);
   1.183 +    void AllocBuffersL();
   1.184 +    void DoResolveErrorStringL(TInt aError, TInt& aTextId, TUint& aFlags);
   1.185 +private:
   1.186 +    CCoeEnv* iCoe;
   1.187 +    RResourceFile iResFile;
   1.188 +    TInt iRDSupport;
   1.189 +    TInt iBaseResourceFileOffset;
   1.190 +    CArrayFix<TInt>* iStartError;
   1.191 +    CArrayFix<TInt>* iAppTexts;
   1.192 +    CArrayPtr<CErrorResourceIdArray>*   iErrorTexts;	// Array of arrays of ints
   1.193 +    CArrayPtr<CErrorResourceFlagArray>* iFlags;			// Array of arrays of ints
   1.194 +    HBufC* iTextBuffer;
   1.195 +    HBufC* iTitleText;
   1.196 +    HBufC* iContextSeparator;
   1.197 +    RFs iFs;
   1.198 +    TPtrC  iTruncatedTextPointer;
   1.199 +	};
   1.200 +
   1.201 +#endif
   1.202 +