os/ossrv/genericservices/taskscheduler/SCHSVR/SCHEDULE.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) 2004-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
// class TScheduledTask
sl@0
    15
// -a task which has been scheduled with a schedule
sl@0
    16
// -maintains non-owning pointer to proxy for client which scheduled it
sl@0
    17
// class CSchedule
sl@0
    18
// -has >=1 entries, >=0 tasks
sl@0
    19
// -when one of its entries is due, all its tasks are due
sl@0
    20
// 
sl@0
    21
//
sl@0
    22
sl@0
    23
#ifndef __SCHEDULE_H__
sl@0
    24
#define __SCHEDULE_H__
sl@0
    25
sl@0
    26
// System includes
sl@0
    27
#include <e32base.h>
sl@0
    28
sl@0
    29
// Forward Declarations
sl@0
    30
class CFileStore;
sl@0
    31
class TStreamId;
sl@0
    32
class TScheduleEntry;
sl@0
    33
class TScheduleEntryInfo2;
sl@0
    34
class TScheduleInfo;
sl@0
    35
class TScheduledTask;
sl@0
    36
class CScheduledTask;
sl@0
    37
class CClientProxy;
sl@0
    38
class TTaskInfo;
sl@0
    39
class RWriteStream;
sl@0
    40
class CConditionManager;
sl@0
    41
class TTaskSchedulerCondition;
sl@0
    42
sl@0
    43
//#include <schinfo.h>
sl@0
    44
#include <schinfointernal.h>
sl@0
    45
#include "CSCHCODE.H"	//opcodes
sl@0
    46
/**
sl@0
    47
Constants
sl@0
    48
@internalComponent
sl@0
    49
*/
sl@0
    50
const TInt KScheduleIdDifferential=10000;
sl@0
    51
sl@0
    52
/**
sl@0
    53
@internalComponent
sl@0
    54
*/
sl@0
    55
class TScheduledTask
sl@0
    56
	{
sl@0
    57
public:
sl@0
    58
	TScheduledTask(CScheduledTask& aTask, CClientProxy& iClient);
sl@0
    59
sl@0
    60
	// ?? 
sl@0
    61
	void OnDue(const TTsTime& iValidUntil);
sl@0
    62
sl@0
    63
	// Access data
sl@0
    64
	const HBufC& Data() const;
sl@0
    65
	const TTaskInfo& Info() const;
sl@0
    66
	const CClientProxy& Client() const;
sl@0
    67
	
sl@0
    68
	// Ask client to remove & delete the TTaskInfo member
sl@0
    69
	void RemoveInfo();
sl@0
    70
	void DecRepeat();
sl@0
    71
sl@0
    72
	// For queue support
sl@0
    73
	static TInt Offset();
sl@0
    74
sl@0
    75
private:
sl@0
    76
	CScheduledTask& iTask;//doesn't own this: the client does
sl@0
    77
	CClientProxy& iClient;//doesn't own this: CTaskScheduler owns all clients
sl@0
    78
	TSglQueLink iLink;
sl@0
    79
	};
sl@0
    80
sl@0
    81
/**
sl@0
    82
@internalComponent
sl@0
    83
*/
sl@0
    84
NONSHARABLE_CLASS(CSchedule) : public CBase
sl@0
    85
	{
sl@0
    86
public:
sl@0
    87
	static CSchedule* NewLC(TInt aHandle, 
sl@0
    88
						const TDesC& aName, 
sl@0
    89
						TBool aPersists,  
sl@0
    90
						const CArrayFixFlat<TScheduleEntryInfo2>& aEntries,
sl@0
    91
						const TSecurityInfo& aSecurityInfo);
sl@0
    92
	static CSchedule* NewLC(TInt aHandle, 
sl@0
    93
						const TDesC& aName, 
sl@0
    94
						TBool aPersists,  
sl@0
    95
						const CArrayFixFlat<TTaskSchedulerCondition>& aEntries,
sl@0
    96
						const TTsTime& aDefaultRunTime,
sl@0
    97
						const TSecurityInfo& aSecurityInfo);
sl@0
    98
	static CSchedule* NewL(CFileStore& aStore, TStreamId& aId);
sl@0
    99
	~CSchedule();
sl@0
   100
sl@0
   101
private: 
sl@0
   102
	void ConstructL(const TDesC& aName,
sl@0
   103
					const CArrayFixFlat<TScheduleEntryInfo2>& aEntries);
sl@0
   104
	void ConstructL(const TDesC& aName,
sl@0
   105
					const CArrayFixFlat<TTaskSchedulerCondition>& aEntries,
sl@0
   106
					const TTsTime& aDefaultRunTime);
sl@0
   107
	void RestoreL(CFileStore& aStore, TStreamId& aId);
sl@0
   108
	CSchedule();
sl@0
   109
	CSchedule(const TSecurityInfo& aSecurityInfo, TInt aHandle, TBool aPersists);
sl@0
   110
sl@0
   111
private:
sl@0
   112
	void AddEntriesL(const CArrayFixFlat<TScheduleEntryInfo2>& aEntries);
sl@0
   113
	TTsTime ValidUntil() const; //from base class
sl@0
   114
	void AddConditionsL(const CArrayFixFlat<TTaskSchedulerCondition>& aConditions);
sl@0
   115
sl@0
   116
public:
sl@0
   117
	// externalize/internalize
sl@0
   118
	void InternalizeL(RReadStream& aReadStream);
sl@0
   119
	void ExternalizeL(RWriteStream& aWriteStream) const;
sl@0
   120
	//call this whenever schedule becomes due: tells tasks they need to be executed 
sl@0
   121
	void NotifyTasks();
sl@0
   122
	// called whenever a schedule changes.  If aNotFirstTime = ETrue then this means
sl@0
   123
	// the schedule has just run so we need a minor modification to the next due time calculation
sl@0
   124
	void CalculateDueTime(TBool aNotFirstTime = EFalse);
sl@0
   125
	//Time entries
sl@0
   126
	void ReplaceEntriesL(const CArrayFixFlat<TScheduleEntryInfo2>& aEntries);
sl@0
   127
	void EntriesL(CArrayFixFlat<TScheduleEntryInfo2>& aEntries);
sl@0
   128
	void GetInfo(TScheduleInfo& aInfo, TBool aCalculateForConditions);
sl@0
   129
	inline const TTsTime& DueTime() const;
sl@0
   130
	//Condition entries
sl@0
   131
	void ReplaceConditionsL(const CArrayFixFlat<TTaskSchedulerCondition>& aConditions);
sl@0
   132
	void ConditionsL(CArrayFixFlat<TTaskSchedulerCondition>& aConditions);
sl@0
   133
	const TTsTime& DefaultRunTimeL() const;
sl@0
   134
	//editing
sl@0
   135
	void AddTask(TScheduledTask& aTask);
sl@0
   136
	void RemoveTask(TScheduledTask* aTask);
sl@0
   137
	void RemoveTasks(TBool aFromClient);
sl@0
   138
	TInt GenerateTaskId();
sl@0
   139
	TScheduledTask* Task(const TInt aTaskId);
sl@0
   140
	//accessors
sl@0
   141
	void RemoveEntries();
sl@0
   142
	void RemoveConditions();
sl@0
   143
	
sl@0
   144
	TBool ClientInSchedule(const TDesC& aClientName);
sl@0
   145
	inline TSglQue<TScheduledTask>* Tasks();
sl@0
   146
	void TasksL(CArrayFixFlat<TTaskInfo>& aTasks);
sl@0
   147
	inline TInt Id() const;
sl@0
   148
	inline const TDesC& Name() const;
sl@0
   149
	inline TBool Persists() const;
sl@0
   150
	inline TBool Enabled() const;
sl@0
   151
	inline void SetEnabled(TBool aEnabled);
sl@0
   152
	inline TBool HasTasks() const;
sl@0
   153
	inline TScheduleType Type() const;
sl@0
   154
	const RArray<TTaskSchedulerCondition>& Conditions() const;
sl@0
   155
	
sl@0
   156
	//security Info related stuff
sl@0
   157
	TBool IsAccessAllowed(const RMessagePtr2& aMessage) const;
sl@0
   158
	inline void CheckAccessAllowedL(const RMessagePtr2& aMessage) const;
sl@0
   159
	
sl@0
   160
	const TSecurityInfo& SecurityInfo() const;
sl@0
   161
	//list capability
sl@0
   162
	static TInt Offset();
sl@0
   163
	TBool IsUpdatable();
sl@0
   164
sl@0
   165
private://data
sl@0
   166
	TSglQueLink iLink;			//scheduler keeps all schedules in owning queue
sl@0
   167
	TInt iId;
sl@0
   168
	HBufC* iName;
sl@0
   169
	TBool iPersists;
sl@0
   170
	TBool iEnabled;
sl@0
   171
	TTsTime iDueTime;
sl@0
   172
	TTimeIntervalMinutes iValidityPeriod;
sl@0
   173
	// list handling
sl@0
   174
	RArray<TTaskSchedulerCondition> iConditions;
sl@0
   175
	TSglQue<TScheduledTask> iTaskList;		//things which happen at those times	
sl@0
   176
	mutable TSglQue<TScheduleEntry> iEntryList;	//list of times at which things happen
sl@0
   177
	
sl@0
   178
	//Creating process SecurityInfo
sl@0
   179
	TSecurityInfo iSecurityInfo;
sl@0
   180
	};
sl@0
   181
	
sl@0
   182
#include "SCHEDULE.INL"
sl@0
   183
#endif