1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericservices/taskscheduler/SCHSVR/SSCH_STD.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,125 @@
1.4 +// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// defines scheduler panics & faults
1.18 +// CSchServer - server class
1.19 +// CSchSession - server-side session class
1.20 +//
1.21 +//
1.22 +
1.23 +#ifndef __SSCH_STD_H__
1.24 +#define __SSCH_STD_H__
1.25 +
1.26 +// System includes
1.27 +#include <e32base.h>
1.28 +#include <bsul/bsul.h>
1.29 +
1.30 +// Classes referenced
1.31 +class CSheduleServerLog;
1.32 +class CTaskScheduler;
1.33 +class CClientProxy;
1.34 +class CSchStartupStateMgr;
1.35 +class CSchedule;
1.36 +class CClientMessage;
1.37 +
1.38 +enum TESchPanic
1.39 + {
1.40 + EPanicNotRegistered,
1.41 + EPanicBadDescriptor,
1.42 + EPanicIllegalFunction,
1.43 + };
1.44 +
1.45 +enum TESchFault
1.46 + {
1.47 + EMainSchedulerError,
1.48 + ESvrCreateServer,
1.49 + ESvrStartServer,
1.50 + ETaskWithoutClient,
1.51 + ECreateTrapCleanup,
1.52 + ENotImplementedYet,
1.53 + };
1.54 +
1.55 +
1.56 +NONSHARABLE_CLASS(CSchServer) : public CServer2
1.57 + {
1.58 +private:
1.59 + enum {EPriority=1000};
1.60 +
1.61 +public:
1.62 + static CSchServer* NewLC();
1.63 + ~CSchServer();
1.64 + CSession2* NewSessionL(const TVersion &aVersion, const RMessage2& aMessage) const;
1.65 +
1.66 +private:
1.67 + CSchServer(TInt aPriority);
1.68 + void ConstructL();
1.69 +private:
1.70 + // Server owns one & only instance of CTaskScheduler
1.71 + CTaskScheduler* iTaskScheduler;
1.72 +
1.73 + CSchStartupStateMgr* iSSAMgr;
1.74 +
1.75 +#ifdef __SCHLOGGING__
1.76 + CSheduleServerLog* iTheLog;
1.77 +#endif
1.78 + };
1.79 +
1.80 +NONSHARABLE_CLASS(CSchSession) : public CSession2
1.81 + {
1.82 +public:
1.83 + void ServiceL(const RMessage2 &aMessage);
1.84 + void ServiceError(const RMessage2& aMessage,TInt aError);
1.85 + virtual ~CSchSession();
1.86 + CSchSession(CTaskScheduler& aScheduler);
1.87 +
1.88 +private:
1.89 + //request handlers
1.90 + void RegisterClientL();
1.91 + void CreateTimeScheduleL();
1.92 + void CreateConditionScheduleL();
1.93 + void ScheduleTaskL();
1.94 + void DeleteTaskL();
1.95 + void EditTimeScheduleL();
1.96 + void EditConditionScheduleL();
1.97 + //retrieval
1.98 + void GetScheduleRefsL();//name & handle for each schedule
1.99 + void CountSchedulesL();
1.100 + void GetTimeScheduleDataL();
1.101 + void GetConditionScheduleDataL();
1.102 + void GetTaskDataL();
1.103 +
1.104 + void GetScheduleInfoL();
1.105 + void GetTaskRefsL();//name & handle for each task
1.106 + void GetTaskInfoL();
1.107 + void GetScheduleItemRefAndDueTimeL();
1.108 + void GetScheduleTypeL();
1.109 +
1.110 + void GetTaskDataSizeL();
1.111 + void CountTasksL();
1.112 +
1.113 + void CheckCapabilityL();
1.114 + void CheckPersistsInBackupL(const CSchedule& aSchedule);
1.115 + void DoServiceL();
1.116 +private:
1.117 + //Session is initialised with the one and only instance of CTaskScheduler
1.118 + CTaskScheduler* iTaskScheduler;
1.119 + //NULL on creation, assigned when registers
1.120 + CClientProxy* iClient;
1.121 + // current request for this client. NULL on creation
1.122 + RMessage2 iPendingNotification;
1.123 +
1.124 + BSUL::CClientMessage *iClientMessage;
1.125 + };
1.126 +
1.127 +#endif
1.128 +