sl@0: // Copyright (c) 2005-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: // defines scheduler panics & faults sl@0: // CSchServer - server class sl@0: // CSchSession - server-side session class sl@0: // sl@0: // sl@0: sl@0: #ifndef __SSCH_STD_H__ sl@0: #define __SSCH_STD_H__ sl@0: sl@0: // System includes sl@0: #include sl@0: #include sl@0: sl@0: // Classes referenced sl@0: class CSheduleServerLog; sl@0: class CTaskScheduler; sl@0: class CClientProxy; sl@0: class CSchStartupStateMgr; sl@0: class CSchedule; sl@0: class CClientMessage; sl@0: sl@0: enum TESchPanic sl@0: { sl@0: EPanicNotRegistered, sl@0: EPanicBadDescriptor, sl@0: EPanicIllegalFunction, sl@0: }; sl@0: sl@0: enum TESchFault sl@0: { sl@0: EMainSchedulerError, sl@0: ESvrCreateServer, sl@0: ESvrStartServer, sl@0: ETaskWithoutClient, sl@0: ECreateTrapCleanup, sl@0: ENotImplementedYet, sl@0: }; sl@0: sl@0: sl@0: NONSHARABLE_CLASS(CSchServer) : public CServer2 sl@0: { sl@0: private: sl@0: enum {EPriority=1000}; sl@0: sl@0: public: sl@0: static CSchServer* NewLC(); sl@0: ~CSchServer(); sl@0: CSession2* NewSessionL(const TVersion &aVersion, const RMessage2& aMessage) const; sl@0: sl@0: private: sl@0: CSchServer(TInt aPriority); sl@0: void ConstructL(); sl@0: private: sl@0: // Server owns one & only instance of CTaskScheduler sl@0: CTaskScheduler* iTaskScheduler; sl@0: sl@0: CSchStartupStateMgr* iSSAMgr; sl@0: sl@0: #ifdef __SCHLOGGING__ sl@0: CSheduleServerLog* iTheLog; sl@0: #endif sl@0: }; sl@0: sl@0: NONSHARABLE_CLASS(CSchSession) : public CSession2 sl@0: { sl@0: public: sl@0: void ServiceL(const RMessage2 &aMessage); sl@0: void ServiceError(const RMessage2& aMessage,TInt aError); sl@0: virtual ~CSchSession(); sl@0: CSchSession(CTaskScheduler& aScheduler); sl@0: sl@0: private: sl@0: //request handlers sl@0: void RegisterClientL(); sl@0: void CreateTimeScheduleL(); sl@0: void CreateConditionScheduleL(); sl@0: void ScheduleTaskL(); sl@0: void DeleteTaskL(); sl@0: void EditTimeScheduleL(); sl@0: void EditConditionScheduleL(); sl@0: //retrieval sl@0: void GetScheduleRefsL();//name & handle for each schedule sl@0: void CountSchedulesL(); sl@0: void GetTimeScheduleDataL(); sl@0: void GetConditionScheduleDataL(); sl@0: void GetTaskDataL(); sl@0: sl@0: void GetScheduleInfoL(); sl@0: void GetTaskRefsL();//name & handle for each task sl@0: void GetTaskInfoL(); sl@0: void GetScheduleItemRefAndDueTimeL(); sl@0: void GetScheduleTypeL(); sl@0: sl@0: void GetTaskDataSizeL(); sl@0: void CountTasksL(); sl@0: sl@0: void CheckCapabilityL(); sl@0: void CheckPersistsInBackupL(const CSchedule& aSchedule); sl@0: void DoServiceL(); sl@0: private: sl@0: //Session is initialised with the one and only instance of CTaskScheduler sl@0: CTaskScheduler* iTaskScheduler; sl@0: //NULL on creation, assigned when registers sl@0: CClientProxy* iClient; sl@0: // current request for this client. NULL on creation sl@0: RMessage2 iPendingNotification; sl@0: sl@0: BSUL::CClientMessage *iClientMessage; sl@0: }; sl@0: sl@0: #endif sl@0: