sl@0: /* sl@0: * Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef TEXT_RESOLVER_H sl@0: #define TEXT_RESOLVER_H sl@0: sl@0: #include // CCoeEnv sl@0: #include // Resource flags sl@0: #include // CEikonEnv sl@0: sl@0: // DEFINES sl@0: typedef CArrayFixFlat CErrorResourceIdArray; sl@0: typedef CArrayFixFlat CErrorResourceFlagArray; sl@0: sl@0: /** sl@0: * Class offers functionality for resolving corresponding error texts for sl@0: * error codes. Text Resolver API provides operations with which a specific sl@0: * error code can be resolved to a human readable text. Descriptions for the sl@0: * different error codes must be defined in the resource files of this sl@0: * component. sl@0: * sl@0: * Text Resolver uses the CCoeEnv environment class to access the resource sl@0: * files if the CCoeEnv environment is available. If the CCoeEnv environment sl@0: * is not available, the files are accessed through the RResourceFile API. sl@0: * sl@0: * The API consist of the CTextResolver class which is used together with sl@0: * Text Resolver flags defined in textresolver.hrh file. The flags are used sl@0: * to tell the priority of the error to the client: sl@0: * sl@0: * - EErrorResBlankErrorFlag is used to tell that error has no proper explanation. sl@0: * - EErrorResUnknownErrorFlag indicates that Text Resolver does not support the error. sl@0: * - EErrorResOOMFlag Flag is returned while processing KErrNoMemory error code. sl@0: * sl@0: * sl@0: * Usage: sl@0: * sl@0: * @code sl@0: * #include sl@0: * sl@0: * // Typically used as an instance variable. sl@0: * sl@0: * // Call the factory method NewLC() to create a new instance of CTextResolver. sl@0: * // NewLC() method leaves the instance of the object on the cleanup stack. sl@0: * // The passed CCoeEnv instance is needed to access the resource files. sl@0: * CTextResolver* iTextResolver = CTextResolver::NewLC(*iCoeEnv); sl@0: * sl@0: * // // Error Resolving, simple: sl@0: * sl@0: * // Get error code to be resolved. sl@0: * // TInt err1 = MyMethod(KInvalidValue); sl@0: * TInt err1 = KErrNoMemory; sl@0: * sl@0: * TPtrC buf1; // For returned error text sl@0: * sl@0: * if (err1 != KErrNone) sl@0: * { sl@0: * // Resolve the given error code. sl@0: * // The operation returns the error text for the resolved error. sl@0: * // There's no limit how long the resolved string can be. sl@0: * // Add context to 2nd param if needed. sl@0: * buf1.Set(iTextResolver->ResolveErrorString(err)); sl@0: * } sl@0: * else sl@0: * { sl@0: * // Do something. sl@0: * } sl@0: * sl@0: * // Note that buf1 will only be valid as long as CTextResolver sl@0: * // instance is alive and no new error is resolved by the same instance. sl@0: * // If for some reason you need to store the resolved error sl@0: * // beyond immediate use, make a copy of it. sl@0: * sl@0: * // Error Resolving, advanced: sl@0: * sl@0: * // Get error code to be resolved. sl@0: * // TInt err2 = MyMethod(KInvalidValue); sl@0: * TInt err2 = KErrNotSupported; sl@0: * sl@0: * TInt textId(0); // ID of the returned text sl@0: * TUint flags(0); // Priority of the returned error sl@0: * TPtrC buf2; // For returned error text sl@0: * sl@0: * if (err2 != KErrNone) sl@0: * { sl@0: * // Resolve the given error code. sl@0: * // The operation returns the error text for the resolved error. sl@0: * // There's no limit on how long the resolved string can be. sl@0: * // Add Context to 4th param if needed. sl@0: * buf2.Set(iTextResolver->ResolveErrorString(err, textId, flags)); sl@0: * sl@0: * if (flags & EErrorResUnknownErrorFlag) sl@0: * { sl@0: * // The flag indicates that Text Resolver does not support sl@0: * // the error code. sl@0: * // Do something. sl@0: * } sl@0: * } sl@0: * else sl@0: * { sl@0: * // Do something. sl@0: * } sl@0: * sl@0: * // Note that buf2 will only be valid as long as CTextResolver sl@0: * // instance is alive and no new error is resolved by the same instance. sl@0: * // If for some reason you need to store the resolved error sl@0: * // beyond immediate use, make a copy of it. sl@0: * sl@0: * // iTextResolver, Free loaded resources sl@0: * CleanupStack::PopAndDestroy(); sl@0: * @endcode sl@0: * sl@0: * @lib commonengine.lib sl@0: * @since S60 2.0 sl@0: */ sl@0: class CTextResolver : public CBase sl@0: { sl@0: public: sl@0: /** sl@0: * Defines used error contexts. sl@0: * Optional error contexes for aiding the mapping of error codes to sl@0: * texts in a unique way. If no context is given the assumption is sl@0: * that error codes are unique. sl@0: */ sl@0: enum TErrorContext sl@0: { sl@0: /** Context is defined automatically from error code value. sl@0: * Here it is assumed that each error code is unique and in sl@0: * own range. This is a default value when resolving errors. */ sl@0: ECtxAutomatic = 0, sl@0: /** Context text is not added to the beginning of the resolved error text, sl@0: * just context separator ':' and newline are added. */ sl@0: ECtxNoCtx = 1, sl@0: /** No context text, context separator ':' or newline added to the sl@0: * beginning of the resolved error text. */ sl@0: ECtxNoCtxNoSeparator = 2 sl@0: }; sl@0: public: sl@0: IMPORT_C static CTextResolver* NewL(CCoeEnv& aEnv); sl@0: IMPORT_C static CTextResolver* NewLC(CCoeEnv& aEnv); sl@0: IMPORT_C static CTextResolver* NewL(); sl@0: IMPORT_C static CTextResolver* NewLC(); sl@0: IMPORT_C ~CTextResolver(); sl@0: IMPORT_C const TDesC& ResolveErrorString(TInt aError, TInt& aTextId, TUint& aFlags,TErrorContext aContext = ECtxAutomatic); sl@0: IMPORT_C const TDesC& ResolveErrorString(TInt aError, TErrorContext aContext = ECtxAutomatic); sl@0: private: // Construction sl@0: virtual TInt ResourceForError(TInt aError); sl@0: virtual void LoadResourceFilesL() { ASSERT(0); } // deprecated sl@0: CTextResolver(CCoeEnv& aEnv); sl@0: CTextResolver(); sl@0: void ConstructL(); sl@0: sl@0: // Utility sl@0: void DoRawReadOfSystemErrorResourcesToArraysL(TInt& aError, TInt& aTextId); sl@0: void Reset(); sl@0: void ReadLocalizedSeparatorCharacterFromResourceL(CCoeEnv& aCoeEnv); sl@0: void ReadLocalizedSeparatorCharacterFromResourceAndPrepareResourceReaderLC(TResourceReader& aResReader); sl@0: sl@0: // returns NULL if fails sl@0: static HBufC* AllocReadUnicodeString(RResourceFile& aResFile, TInt aTextId); sl@0: /** Returns false if any memory allocation fails or initial values sl@0: of necessary pointers are NULL, indicating alloc failure earlier.*/ sl@0: TBool AddContextAndSeparator(TErrorContext aContext); sl@0: void AllocBuffersL(); sl@0: void DoResolveErrorStringL(TInt aError, TInt& aTextId, TUint& aFlags); sl@0: private: sl@0: CCoeEnv* iCoe; sl@0: RResourceFile iResFile; sl@0: TInt iRDSupport; sl@0: TInt iBaseResourceFileOffset; sl@0: CArrayFix* iStartError; sl@0: CArrayFix* iAppTexts; sl@0: CArrayPtr* iErrorTexts; // Array of arrays of ints sl@0: CArrayPtr* iFlags; // Array of arrays of ints sl@0: HBufC* iTextBuffer; sl@0: HBufC* iTitleText; sl@0: HBufC* iContextSeparator; sl@0: RFs iFs; sl@0: TPtrC iTruncatedTextPointer; sl@0: }; sl@0: sl@0: #endif sl@0: