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 |
#include <basched.h>
|
sl@0
|
20 |
#include <baerrhan.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
* @publishedAll
|
sl@0
|
24 |
*/
|
sl@0
|
25 |
EXPORT_C CBaActiveScheduler::CBaActiveScheduler()
|
sl@0
|
26 |
{
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
* @publishedAll
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
EXPORT_C CBaActiveScheduler::~CBaActiveScheduler()
|
sl@0
|
33 |
{
|
sl@0
|
34 |
}
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
* @internalAll
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
EXPORT_C void CBaActiveScheduler::Exit()
|
sl@0
|
40 |
{ // static
|
sl@0
|
41 |
User::Leave(KLeaveExit);
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
* @internalAll
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
EXPORT_C void CBaActiveScheduler::Error(TInt aError) const
|
sl@0
|
48 |
{
|
sl@0
|
49 |
if (aError==KLeaveExit)
|
sl@0
|
50 |
User::Leave(KLeaveExit);
|
sl@0
|
51 |
DisplayError(aError);
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
/**
|
sl@0
|
55 |
* @internalAll
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
EXPORT_C void CBaActiveScheduler::DisplayError(TInt /*aError*/) const
|
sl@0
|
58 |
{ // for subclassers to replace
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
* @internalAll
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
EXPORT_C void CBaActiveScheduler::DisplayExtendedError(TUid aComponent,TInt aErrorNumber)
|
sl@0
|
65 |
{ // static
|
sl@0
|
66 |
CBaActiveScheduler* pS=((CBaActiveScheduler*)CActiveScheduler::Current());
|
sl@0
|
67 |
pS->iExtendedError.iInformation=EFalse;
|
sl@0
|
68 |
pS->iExtendedError.iComponent=aComponent;
|
sl@0
|
69 |
pS->iExtendedError.iErrorNumber=aErrorNumber;
|
sl@0
|
70 |
pS->DisplayError(KErrExtended);
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
EXPORT_C void CBaActiveScheduler::LeaveNoAlert()
|
sl@0
|
74 |
{ // static
|
sl@0
|
75 |
User::Leave(KLeaveWithoutAlert);
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
/**
|
sl@0
|
79 |
* @internalAll
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
EXPORT_C void CBaActiveScheduler::LeaveForAlert(TUid aComponent,TInt aErrorNumber)
|
sl@0
|
82 |
{ // static
|
sl@0
|
83 |
ExtendedLeave(aComponent,aErrorNumber,EFalse);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
/**
|
sl@0
|
87 |
* @internalAll
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
EXPORT_C void CBaActiveScheduler::LeaveForInfoPrint(TUid aComponent,TInt aErrorNumber)
|
sl@0
|
90 |
{ // static
|
sl@0
|
91 |
ExtendedLeave(aComponent,aErrorNumber,ETrue);
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
* @internalAll
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
EXPORT_C void CBaActiveScheduler::LeaveForErrorHandler(const CBaErrorHandler *aHandler)
|
sl@0
|
98 |
{ // static
|
sl@0
|
99 |
ExtendedLeave(KUidBaflErrorHandler,(TInt)(aHandler),EFalse);
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
void CBaActiveScheduler::ExtendedLeave(TUid aComponent,TInt aErrorNumber,TBool aLeaveForInfoPrint)
|
sl@0
|
103 |
{ // static
|
sl@0
|
104 |
CBaActiveScheduler* pS=((CBaActiveScheduler*)CActiveScheduler::Current());
|
sl@0
|
105 |
pS->iExtendedError.iInformation=aLeaveForInfoPrint;
|
sl@0
|
106 |
pS->iExtendedError.iComponent=aComponent;
|
sl@0
|
107 |
pS->iExtendedError.iErrorNumber=aErrorNumber;
|
sl@0
|
108 |
User::Leave(KErrExtended);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
* @internalAll
|
sl@0
|
113 |
*/
|
sl@0
|
114 |
EXPORT_C const SExtendedError& CBaActiveScheduler::ExtendedError()
|
sl@0
|
115 |
{
|
sl@0
|
116 |
CBaActiveScheduler* pS=((CBaActiveScheduler*)CActiveScheduler::Current());
|
sl@0
|
117 |
return(pS->iExtendedError);
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
/**
|
sl@0
|
121 |
* @internalAll
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
EXPORT_C void CBaActiveScheduler::Reserved_1()
|
sl@0
|
124 |
//
|
sl@0
|
125 |
// Reserved for future development
|
sl@0
|
126 |
//
|
sl@0
|
127 |
{}
|
sl@0
|
128 |
|
sl@0
|
129 |
/**
|
sl@0
|
130 |
* @internalAll
|
sl@0
|
131 |
*/
|
sl@0
|
132 |
EXPORT_C void CBaActiveScheduler::Reserved_2()
|
sl@0
|
133 |
//
|
sl@0
|
134 |
// Reserved for future development
|
sl@0
|
135 |
//
|
sl@0
|
136 |
{}
|