sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1998-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 the License "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 |
#ifndef __T_ERRORCONVERTER_H__
|
sl@0
|
20 |
#define __T_ERRORCONVERTER_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
class CErrorItem;
|
sl@0
|
25 |
|
sl@0
|
26 |
/**
|
sl@0
|
27 |
* This class provides useful functions to read and parse the input file.
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
class CErrorConverter : public CBase
|
sl@0
|
30 |
{
|
sl@0
|
31 |
public:
|
sl@0
|
32 |
IMPORT_C static CErrorConverter* NewL(void);
|
sl@0
|
33 |
IMPORT_C static CErrorConverter* NewLC(void);
|
sl@0
|
34 |
IMPORT_C virtual ~CErrorConverter();
|
sl@0
|
35 |
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
/*
|
sl@0
|
38 |
Searches the list of standard error codes (e32err.h 0 to -46) finding the matching error code for the string
|
sl@0
|
39 |
|
sl@0
|
40 |
Parameters
|
sl@0
|
41 |
const TDesC& aResult [IN] - Error code string to be searched from
|
sl@0
|
42 |
TInt &aError [OUT] - Matching error code if found
|
sl@0
|
43 |
|
sl@0
|
44 |
Returns
|
sl@0
|
45 |
TBool - True if error code was found, False if it was not
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
IMPORT_C TBool GetExpectedResultL(const TDesC& aResult /*in*/, TInt &aError /*out*/);
|
sl@0
|
48 |
/*
|
sl@0
|
49 |
Searches the list of standard error codes (e32err.h 0 to -46) finding the matching text representaion of the error code
|
sl@0
|
50 |
|
sl@0
|
51 |
Parameters
|
sl@0
|
52 |
TInt &aError [IN] - Error code to return the string of
|
sl@0
|
53 |
HBufC*& aResult [OUT] -Reference to a pointer, pointing to the error string of the matching error code (Dont forget to free it)
|
sl@0
|
54 |
|
sl@0
|
55 |
Returns
|
sl@0
|
56 |
TBool - True if error code was found, False if it was not
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
IMPORT_C TBool GetExpectedResultL(const TInt &aError /*in*/, HBufC*& aResult /*out*/);
|
sl@0
|
59 |
|
sl@0
|
60 |
IMPORT_C void AddErrorItem(const TDesC& aErrorName, const TInt &aErrorCode);
|
sl@0
|
61 |
private:
|
sl@0
|
62 |
CErrorConverter(){};
|
sl@0
|
63 |
void ConstructL(void);
|
sl@0
|
64 |
void CreateErrorMapL(void);
|
sl@0
|
65 |
private:
|
sl@0
|
66 |
RPointerArray<CErrorItem> iErrorMap;
|
sl@0
|
67 |
};
|
sl@0
|
68 |
|
sl@0
|
69 |
#endif
|
sl@0
|
70 |
|