sl@0: /* sl@0: * Copyright (c) 1998-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 the License "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: #ifndef __T_ERRORCONVERTER_H__ sl@0: #define __T_ERRORCONVERTER_H__ sl@0: sl@0: #include sl@0: sl@0: class CErrorItem; sl@0: sl@0: /** sl@0: * This class provides useful functions to read and parse the input file. sl@0: */ sl@0: class CErrorConverter : public CBase sl@0: { sl@0: public: sl@0: IMPORT_C static CErrorConverter* NewL(void); sl@0: IMPORT_C static CErrorConverter* NewLC(void); sl@0: IMPORT_C virtual ~CErrorConverter(); sl@0: sl@0: public: sl@0: /* sl@0: Searches the list of standard error codes (e32err.h 0 to -46) finding the matching error code for the string sl@0: sl@0: Parameters sl@0: const TDesC& aResult [IN] - Error code string to be searched from sl@0: TInt &aError [OUT] - Matching error code if found sl@0: sl@0: Returns sl@0: TBool - True if error code was found, False if it was not sl@0: */ sl@0: IMPORT_C TBool GetExpectedResultL(const TDesC& aResult /*in*/, TInt &aError /*out*/); sl@0: /* sl@0: Searches the list of standard error codes (e32err.h 0 to -46) finding the matching text representaion of the error code sl@0: sl@0: Parameters sl@0: TInt &aError [IN] - Error code to return the string of sl@0: HBufC*& aResult [OUT] -Reference to a pointer, pointing to the error string of the matching error code (Dont forget to free it) sl@0: sl@0: Returns sl@0: TBool - True if error code was found, False if it was not sl@0: */ sl@0: IMPORT_C TBool GetExpectedResultL(const TInt &aError /*in*/, HBufC*& aResult /*out*/); sl@0: sl@0: IMPORT_C void AddErrorItem(const TDesC& aErrorName, const TInt &aErrorCode); sl@0: private: sl@0: CErrorConverter(){}; sl@0: void ConstructL(void); sl@0: void CreateErrorMapL(void); sl@0: private: sl@0: RPointerArray iErrorMap; sl@0: }; sl@0: sl@0: #endif sl@0: