First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Started by DWW, March 1997
15 // BAFL specialization of CActiveScheduler
25 EXPORT_C CBaActiveScheduler::CBaActiveScheduler()
32 EXPORT_C CBaActiveScheduler::~CBaActiveScheduler()
39 EXPORT_C void CBaActiveScheduler::Exit()
41 User::Leave(KLeaveExit);
47 EXPORT_C void CBaActiveScheduler::Error(TInt aError) const
49 if (aError==KLeaveExit)
50 User::Leave(KLeaveExit);
57 EXPORT_C void CBaActiveScheduler::DisplayError(TInt /*aError*/) const
58 { // for subclassers to replace
64 EXPORT_C void CBaActiveScheduler::DisplayExtendedError(TUid aComponent,TInt aErrorNumber)
66 CBaActiveScheduler* pS=((CBaActiveScheduler*)CActiveScheduler::Current());
67 pS->iExtendedError.iInformation=EFalse;
68 pS->iExtendedError.iComponent=aComponent;
69 pS->iExtendedError.iErrorNumber=aErrorNumber;
70 pS->DisplayError(KErrExtended);
73 EXPORT_C void CBaActiveScheduler::LeaveNoAlert()
75 User::Leave(KLeaveWithoutAlert);
81 EXPORT_C void CBaActiveScheduler::LeaveForAlert(TUid aComponent,TInt aErrorNumber)
83 ExtendedLeave(aComponent,aErrorNumber,EFalse);
89 EXPORT_C void CBaActiveScheduler::LeaveForInfoPrint(TUid aComponent,TInt aErrorNumber)
91 ExtendedLeave(aComponent,aErrorNumber,ETrue);
97 EXPORT_C void CBaActiveScheduler::LeaveForErrorHandler(const CBaErrorHandler *aHandler)
99 ExtendedLeave(KUidBaflErrorHandler,(TInt)(aHandler),EFalse);
102 void CBaActiveScheduler::ExtendedLeave(TUid aComponent,TInt aErrorNumber,TBool aLeaveForInfoPrint)
104 CBaActiveScheduler* pS=((CBaActiveScheduler*)CActiveScheduler::Current());
105 pS->iExtendedError.iInformation=aLeaveForInfoPrint;
106 pS->iExtendedError.iComponent=aComponent;
107 pS->iExtendedError.iErrorNumber=aErrorNumber;
108 User::Leave(KErrExtended);
114 EXPORT_C const SExtendedError& CBaActiveScheduler::ExtendedError()
116 CBaActiveScheduler* pS=((CBaActiveScheduler*)CActiveScheduler::Current());
117 return(pS->iExtendedError);
123 EXPORT_C void CBaActiveScheduler::Reserved_1()
125 // Reserved for future development
132 EXPORT_C void CBaActiveScheduler::Reserved_2()
134 // Reserved for future development