sl@0: // Copyright (c) 1997-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 "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: // Started by DWW, March 1997 sl@0: // BAFL specialization of CActiveScheduler sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: sl@0: /** sl@0: * @publishedAll sl@0: */ sl@0: EXPORT_C CBaActiveScheduler::CBaActiveScheduler() sl@0: { sl@0: } sl@0: sl@0: /** sl@0: * @publishedAll sl@0: */ sl@0: EXPORT_C CBaActiveScheduler::~CBaActiveScheduler() sl@0: { sl@0: } sl@0: sl@0: /** sl@0: * @internalAll sl@0: */ sl@0: EXPORT_C void CBaActiveScheduler::Exit() sl@0: { // static sl@0: User::Leave(KLeaveExit); sl@0: } sl@0: sl@0: /** sl@0: * @internalAll sl@0: */ sl@0: EXPORT_C void CBaActiveScheduler::Error(TInt aError) const sl@0: { sl@0: if (aError==KLeaveExit) sl@0: User::Leave(KLeaveExit); sl@0: DisplayError(aError); sl@0: } sl@0: sl@0: /** sl@0: * @internalAll sl@0: */ sl@0: EXPORT_C void CBaActiveScheduler::DisplayError(TInt /*aError*/) const sl@0: { // for subclassers to replace sl@0: } sl@0: sl@0: /** sl@0: * @internalAll sl@0: */ sl@0: EXPORT_C void CBaActiveScheduler::DisplayExtendedError(TUid aComponent,TInt aErrorNumber) sl@0: { // static sl@0: CBaActiveScheduler* pS=((CBaActiveScheduler*)CActiveScheduler::Current()); sl@0: pS->iExtendedError.iInformation=EFalse; sl@0: pS->iExtendedError.iComponent=aComponent; sl@0: pS->iExtendedError.iErrorNumber=aErrorNumber; sl@0: pS->DisplayError(KErrExtended); sl@0: } sl@0: sl@0: EXPORT_C void CBaActiveScheduler::LeaveNoAlert() sl@0: { // static sl@0: User::Leave(KLeaveWithoutAlert); sl@0: } sl@0: sl@0: /** sl@0: * @internalAll sl@0: */ sl@0: EXPORT_C void CBaActiveScheduler::LeaveForAlert(TUid aComponent,TInt aErrorNumber) sl@0: { // static sl@0: ExtendedLeave(aComponent,aErrorNumber,EFalse); sl@0: } sl@0: sl@0: /** sl@0: * @internalAll sl@0: */ sl@0: EXPORT_C void CBaActiveScheduler::LeaveForInfoPrint(TUid aComponent,TInt aErrorNumber) sl@0: { // static sl@0: ExtendedLeave(aComponent,aErrorNumber,ETrue); sl@0: } sl@0: sl@0: /** sl@0: * @internalAll sl@0: */ sl@0: EXPORT_C void CBaActiveScheduler::LeaveForErrorHandler(const CBaErrorHandler *aHandler) sl@0: { // static sl@0: ExtendedLeave(KUidBaflErrorHandler,(TInt)(aHandler),EFalse); sl@0: } sl@0: sl@0: void CBaActiveScheduler::ExtendedLeave(TUid aComponent,TInt aErrorNumber,TBool aLeaveForInfoPrint) sl@0: { // static sl@0: CBaActiveScheduler* pS=((CBaActiveScheduler*)CActiveScheduler::Current()); sl@0: pS->iExtendedError.iInformation=aLeaveForInfoPrint; sl@0: pS->iExtendedError.iComponent=aComponent; sl@0: pS->iExtendedError.iErrorNumber=aErrorNumber; sl@0: User::Leave(KErrExtended); sl@0: } sl@0: sl@0: /** sl@0: * @internalAll sl@0: */ sl@0: EXPORT_C const SExtendedError& CBaActiveScheduler::ExtendedError() sl@0: { sl@0: CBaActiveScheduler* pS=((CBaActiveScheduler*)CActiveScheduler::Current()); sl@0: return(pS->iExtendedError); sl@0: } sl@0: sl@0: /** sl@0: * @internalAll sl@0: */ sl@0: EXPORT_C void CBaActiveScheduler::Reserved_1() sl@0: // sl@0: // Reserved for future development sl@0: // sl@0: {} sl@0: sl@0: /** sl@0: * @internalAll sl@0: */ sl@0: EXPORT_C void CBaActiveScheduler::Reserved_2() sl@0: // sl@0: // Reserved for future development sl@0: // sl@0: {}