Update contrib.
1 // Copyright (c) 2005-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 // defines scheduler panics & faults
15 // CSchServer - server class
16 // CSchSession - server-side session class
20 #ifndef __SSCH_STD_H__
21 #define __SSCH_STD_H__
25 #include <bsul/bsul.h>
28 class CSheduleServerLog;
31 class CSchStartupStateMgr;
39 EPanicIllegalFunction,
53 NONSHARABLE_CLASS(CSchServer) : public CServer2
56 enum {EPriority=1000};
59 static CSchServer* NewLC();
61 CSession2* NewSessionL(const TVersion &aVersion, const RMessage2& aMessage) const;
64 CSchServer(TInt aPriority);
67 // Server owns one & only instance of CTaskScheduler
68 CTaskScheduler* iTaskScheduler;
70 CSchStartupStateMgr* iSSAMgr;
73 CSheduleServerLog* iTheLog;
77 NONSHARABLE_CLASS(CSchSession) : public CSession2
80 void ServiceL(const RMessage2 &aMessage);
81 void ServiceError(const RMessage2& aMessage,TInt aError);
82 virtual ~CSchSession();
83 CSchSession(CTaskScheduler& aScheduler);
87 void RegisterClientL();
88 void CreateTimeScheduleL();
89 void CreateConditionScheduleL();
92 void EditTimeScheduleL();
93 void EditConditionScheduleL();
95 void GetScheduleRefsL();//name & handle for each schedule
96 void CountSchedulesL();
97 void GetTimeScheduleDataL();
98 void GetConditionScheduleDataL();
101 void GetScheduleInfoL();
102 void GetTaskRefsL();//name & handle for each task
104 void GetScheduleItemRefAndDueTimeL();
105 void GetScheduleTypeL();
107 void GetTaskDataSizeL();
110 void CheckCapabilityL();
111 void CheckPersistsInBackupL(const CSchedule& aSchedule);
114 //Session is initialised with the one and only instance of CTaskScheduler
115 CTaskScheduler* iTaskScheduler;
116 //NULL on creation, assigned when registers
117 CClientProxy* iClient;
118 // current request for this client. NULL on creation
119 RMessage2 iPendingNotification;
121 BSUL::CClientMessage *iClientMessage;