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: #if !defined(__BASCHED_H__) sl@0: #define __BASCHED_H__ sl@0: sl@0: #if !defined(__e32std_h__) sl@0: #include sl@0: #endif sl@0: sl@0: #if !defined(__e32base_h__) sl@0: #include sl@0: #endif sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TInt KErrExtended=(-1000); sl@0: const TInt KErrExtendedWithText=(-1001); sl@0: const TInt KLeaveWithoutAlert=(-1002); sl@0: const TInt KLeaveExit=(-1003); sl@0: sl@0: /** sl@0: @publishedAll sl@0: */ sl@0: struct SExtendedError sl@0: { sl@0: TUid iComponent; sl@0: TInt iErrorNumber; sl@0: TBool iInformation; sl@0: }; sl@0: sl@0: class CBaErrorHandler; sl@0: sl@0: class CBaActiveScheduler : public CActiveScheduler sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: { sl@0: public: sl@0: IMPORT_C static void LeaveNoAlert(); sl@0: public: // Internal to Symbian sl@0: IMPORT_C CBaActiveScheduler(); sl@0: IMPORT_C ~CBaActiveScheduler(); sl@0: IMPORT_C static void Exit(); sl@0: IMPORT_C static void LeaveForAlert(TUid aComponent,TInt aErrorNumber); sl@0: IMPORT_C static void LeaveForInfoPrint(TUid aComponent,TInt aErrorNumber); sl@0: IMPORT_C static void LeaveForErrorHandler(const CBaErrorHandler *aHandler); sl@0: IMPORT_C static const SExtendedError& ExtendedError(); sl@0: IMPORT_C static void DisplayExtendedError(TUid aComponent,TInt aErrorNumber); sl@0: IMPORT_C virtual void DisplayError(TInt aError) const; sl@0: public:// from CActiveScheduler sl@0: IMPORT_C void Error(TInt aError) const; sl@0: private: sl@0: // reserved virtual function space sl@0: IMPORT_C virtual void Reserved_1(); sl@0: IMPORT_C virtual void Reserved_2(); sl@0: // internal sl@0: static void ExtendedLeave(TUid aComponent,TInt aErrorNumber,TBool aLeaveForInfoPrint); sl@0: protected: sl@0: SExtendedError iExtendedError; sl@0: }; sl@0: sl@0: #endif