sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Started by DWW, March 1997
|
sl@0
|
15 |
// BAFL specialization of CActiveScheduler
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#if !defined(__BASCHED_H__)
|
sl@0
|
20 |
#define __BASCHED_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#if !defined(__e32std_h__)
|
sl@0
|
23 |
#include <e32std.h>
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
|
sl@0
|
26 |
#if !defined(__e32base_h__)
|
sl@0
|
27 |
#include <e32base.h>
|
sl@0
|
28 |
#endif
|
sl@0
|
29 |
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
@publishedAll
|
sl@0
|
32 |
@released
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
const TInt KErrExtended=(-1000);
|
sl@0
|
35 |
const TInt KErrExtendedWithText=(-1001);
|
sl@0
|
36 |
const TInt KLeaveWithoutAlert=(-1002);
|
sl@0
|
37 |
const TInt KLeaveExit=(-1003);
|
sl@0
|
38 |
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
@publishedAll
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
struct SExtendedError
|
sl@0
|
43 |
{
|
sl@0
|
44 |
TUid iComponent;
|
sl@0
|
45 |
TInt iErrorNumber;
|
sl@0
|
46 |
TBool iInformation;
|
sl@0
|
47 |
};
|
sl@0
|
48 |
|
sl@0
|
49 |
class CBaErrorHandler;
|
sl@0
|
50 |
|
sl@0
|
51 |
class CBaActiveScheduler : public CActiveScheduler
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
@publishedAll
|
sl@0
|
54 |
@released
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
{
|
sl@0
|
57 |
public:
|
sl@0
|
58 |
IMPORT_C static void LeaveNoAlert();
|
sl@0
|
59 |
public: // Internal to Symbian
|
sl@0
|
60 |
IMPORT_C CBaActiveScheduler();
|
sl@0
|
61 |
IMPORT_C ~CBaActiveScheduler();
|
sl@0
|
62 |
IMPORT_C static void Exit();
|
sl@0
|
63 |
IMPORT_C static void LeaveForAlert(TUid aComponent,TInt aErrorNumber);
|
sl@0
|
64 |
IMPORT_C static void LeaveForInfoPrint(TUid aComponent,TInt aErrorNumber);
|
sl@0
|
65 |
IMPORT_C static void LeaveForErrorHandler(const CBaErrorHandler *aHandler);
|
sl@0
|
66 |
IMPORT_C static const SExtendedError& ExtendedError();
|
sl@0
|
67 |
IMPORT_C static void DisplayExtendedError(TUid aComponent,TInt aErrorNumber);
|
sl@0
|
68 |
IMPORT_C virtual void DisplayError(TInt aError) const;
|
sl@0
|
69 |
public:// from CActiveScheduler
|
sl@0
|
70 |
IMPORT_C void Error(TInt aError) const;
|
sl@0
|
71 |
private:
|
sl@0
|
72 |
// reserved virtual function space
|
sl@0
|
73 |
IMPORT_C virtual void Reserved_1();
|
sl@0
|
74 |
IMPORT_C virtual void Reserved_2();
|
sl@0
|
75 |
// internal
|
sl@0
|
76 |
static void ExtendedLeave(TUid aComponent,TInt aErrorNumber,TBool aLeaveForInfoPrint);
|
sl@0
|
77 |
protected:
|
sl@0
|
78 |
SExtendedError iExtendedError;
|
sl@0
|
79 |
};
|
sl@0
|
80 |
|
sl@0
|
81 |
#endif
|