os/ossrv/genericservices/taskscheduler/SCHSVR/SSCH_STD.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// defines scheduler panics & faults
sl@0
    15
// CSchServer - server class
sl@0
    16
// CSchSession - server-side session class
sl@0
    17
// 
sl@0
    18
//
sl@0
    19
sl@0
    20
#ifndef __SSCH_STD_H__
sl@0
    21
#define __SSCH_STD_H__
sl@0
    22
sl@0
    23
// System includes
sl@0
    24
#include <e32base.h>
sl@0
    25
#include <bsul/bsul.h>
sl@0
    26
sl@0
    27
// Classes referenced
sl@0
    28
class CSheduleServerLog;
sl@0
    29
class CTaskScheduler;
sl@0
    30
class CClientProxy;
sl@0
    31
class CSchStartupStateMgr;
sl@0
    32
class CSchedule;
sl@0
    33
class CClientMessage;
sl@0
    34
sl@0
    35
enum TESchPanic
sl@0
    36
	{
sl@0
    37
	EPanicNotRegistered,
sl@0
    38
	EPanicBadDescriptor,
sl@0
    39
	EPanicIllegalFunction,
sl@0
    40
	};
sl@0
    41
sl@0
    42
enum TESchFault
sl@0
    43
	{
sl@0
    44
	EMainSchedulerError,
sl@0
    45
	ESvrCreateServer,
sl@0
    46
	ESvrStartServer,
sl@0
    47
	ETaskWithoutClient,
sl@0
    48
	ECreateTrapCleanup,
sl@0
    49
	ENotImplementedYet,
sl@0
    50
	};
sl@0
    51
sl@0
    52
sl@0
    53
NONSHARABLE_CLASS(CSchServer) : public CServer2
sl@0
    54
	{
sl@0
    55
private:
sl@0
    56
	enum {EPriority=1000};
sl@0
    57
sl@0
    58
public:
sl@0
    59
	static CSchServer* NewLC();
sl@0
    60
	~CSchServer();
sl@0
    61
	CSession2* NewSessionL(const TVersion &aVersion, const RMessage2& aMessage) const;
sl@0
    62
sl@0
    63
private:
sl@0
    64
	CSchServer(TInt aPriority);
sl@0
    65
	void ConstructL();
sl@0
    66
private:
sl@0
    67
	// Server owns one & only instance of CTaskScheduler
sl@0
    68
	CTaskScheduler* iTaskScheduler;
sl@0
    69
sl@0
    70
	CSchStartupStateMgr* iSSAMgr;
sl@0
    71
sl@0
    72
#ifdef __SCHLOGGING__
sl@0
    73
	CSheduleServerLog* iTheLog;
sl@0
    74
#endif	
sl@0
    75
	};
sl@0
    76
sl@0
    77
NONSHARABLE_CLASS(CSchSession) : public CSession2
sl@0
    78
	{
sl@0
    79
public:
sl@0
    80
	void ServiceL(const RMessage2 &aMessage);
sl@0
    81
	void ServiceError(const RMessage2& aMessage,TInt aError);
sl@0
    82
	virtual ~CSchSession();
sl@0
    83
	CSchSession(CTaskScheduler& aScheduler);
sl@0
    84
	
sl@0
    85
private:
sl@0
    86
	//request handlers
sl@0
    87
	void RegisterClientL();
sl@0
    88
	void CreateTimeScheduleL();
sl@0
    89
	void CreateConditionScheduleL();
sl@0
    90
	void ScheduleTaskL();
sl@0
    91
	void DeleteTaskL();
sl@0
    92
	void EditTimeScheduleL();
sl@0
    93
	void EditConditionScheduleL();
sl@0
    94
	//retrieval
sl@0
    95
	void GetScheduleRefsL();//name & handle for each schedule
sl@0
    96
	void CountSchedulesL();
sl@0
    97
	void GetTimeScheduleDataL();
sl@0
    98
	void GetConditionScheduleDataL();
sl@0
    99
	void GetTaskDataL();
sl@0
   100
sl@0
   101
	void GetScheduleInfoL();
sl@0
   102
	void GetTaskRefsL();//name & handle for each task
sl@0
   103
	void GetTaskInfoL();
sl@0
   104
	void GetScheduleItemRefAndDueTimeL(); 
sl@0
   105
	void GetScheduleTypeL(); 
sl@0
   106
sl@0
   107
	void GetTaskDataSizeL();
sl@0
   108
	void CountTasksL();
sl@0
   109
	
sl@0
   110
	void CheckCapabilityL();
sl@0
   111
	void CheckPersistsInBackupL(const CSchedule& aSchedule);
sl@0
   112
	void DoServiceL();
sl@0
   113
private:	
sl@0
   114
	//Session is initialised with the one and only instance of CTaskScheduler
sl@0
   115
	CTaskScheduler* iTaskScheduler;
sl@0
   116
	//NULL on creation, assigned when registers
sl@0
   117
	CClientProxy* iClient;
sl@0
   118
	// current request for this client.  NULL on creation
sl@0
   119
	RMessage2 iPendingNotification;
sl@0
   120
	
sl@0
   121
	BSUL::CClientMessage *iClientMessage;
sl@0
   122
	};
sl@0
   123
sl@0
   124
#endif
sl@0
   125