sl@0: // Copyright (c) 2004-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: // class TScheduledTask sl@0: // -a task which has been scheduled with a schedule sl@0: // -maintains non-owning pointer to proxy for client which scheduled it sl@0: // class CSchedule sl@0: // -has >=1 entries, >=0 tasks sl@0: // -when one of its entries is due, all its tasks are due sl@0: // sl@0: // sl@0: sl@0: #ifndef __SCHEDULE_H__ sl@0: #define __SCHEDULE_H__ sl@0: sl@0: // System includes sl@0: #include sl@0: sl@0: // Forward Declarations sl@0: class CFileStore; sl@0: class TStreamId; sl@0: class TScheduleEntry; sl@0: class TScheduleEntryInfo2; sl@0: class TScheduleInfo; sl@0: class TScheduledTask; sl@0: class CScheduledTask; sl@0: class CClientProxy; sl@0: class TTaskInfo; sl@0: class RWriteStream; sl@0: class CConditionManager; sl@0: class TTaskSchedulerCondition; sl@0: sl@0: //#include sl@0: #include sl@0: #include "CSCHCODE.H" //opcodes sl@0: /** sl@0: Constants sl@0: @internalComponent sl@0: */ sl@0: const TInt KScheduleIdDifferential=10000; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class TScheduledTask sl@0: { sl@0: public: sl@0: TScheduledTask(CScheduledTask& aTask, CClientProxy& iClient); sl@0: sl@0: // ?? sl@0: void OnDue(const TTsTime& iValidUntil); sl@0: sl@0: // Access data sl@0: const HBufC& Data() const; sl@0: const TTaskInfo& Info() const; sl@0: const CClientProxy& Client() const; sl@0: sl@0: // Ask client to remove & delete the TTaskInfo member sl@0: void RemoveInfo(); sl@0: void DecRepeat(); sl@0: sl@0: // For queue support sl@0: static TInt Offset(); sl@0: sl@0: private: sl@0: CScheduledTask& iTask;//doesn't own this: the client does sl@0: CClientProxy& iClient;//doesn't own this: CTaskScheduler owns all clients sl@0: TSglQueLink iLink; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_CLASS(CSchedule) : public CBase sl@0: { sl@0: public: sl@0: static CSchedule* NewLC(TInt aHandle, sl@0: const TDesC& aName, sl@0: TBool aPersists, sl@0: const CArrayFixFlat& aEntries, sl@0: const TSecurityInfo& aSecurityInfo); sl@0: static CSchedule* NewLC(TInt aHandle, sl@0: const TDesC& aName, sl@0: TBool aPersists, sl@0: const CArrayFixFlat& aEntries, sl@0: const TTsTime& aDefaultRunTime, sl@0: const TSecurityInfo& aSecurityInfo); sl@0: static CSchedule* NewL(CFileStore& aStore, TStreamId& aId); sl@0: ~CSchedule(); sl@0: sl@0: private: sl@0: void ConstructL(const TDesC& aName, sl@0: const CArrayFixFlat& aEntries); sl@0: void ConstructL(const TDesC& aName, sl@0: const CArrayFixFlat& aEntries, sl@0: const TTsTime& aDefaultRunTime); sl@0: void RestoreL(CFileStore& aStore, TStreamId& aId); sl@0: CSchedule(); sl@0: CSchedule(const TSecurityInfo& aSecurityInfo, TInt aHandle, TBool aPersists); sl@0: sl@0: private: sl@0: void AddEntriesL(const CArrayFixFlat& aEntries); sl@0: TTsTime ValidUntil() const; //from base class sl@0: void AddConditionsL(const CArrayFixFlat& aConditions); sl@0: sl@0: public: sl@0: // externalize/internalize sl@0: void InternalizeL(RReadStream& aReadStream); sl@0: void ExternalizeL(RWriteStream& aWriteStream) const; sl@0: //call this whenever schedule becomes due: tells tasks they need to be executed sl@0: void NotifyTasks(); sl@0: // called whenever a schedule changes. If aNotFirstTime = ETrue then this means sl@0: // the schedule has just run so we need a minor modification to the next due time calculation sl@0: void CalculateDueTime(TBool aNotFirstTime = EFalse); sl@0: //Time entries sl@0: void ReplaceEntriesL(const CArrayFixFlat& aEntries); sl@0: void EntriesL(CArrayFixFlat& aEntries); sl@0: void GetInfo(TScheduleInfo& aInfo, TBool aCalculateForConditions); sl@0: inline const TTsTime& DueTime() const; sl@0: //Condition entries sl@0: void ReplaceConditionsL(const CArrayFixFlat& aConditions); sl@0: void ConditionsL(CArrayFixFlat& aConditions); sl@0: const TTsTime& DefaultRunTimeL() const; sl@0: //editing sl@0: void AddTask(TScheduledTask& aTask); sl@0: void RemoveTask(TScheduledTask* aTask); sl@0: void RemoveTasks(TBool aFromClient); sl@0: TInt GenerateTaskId(); sl@0: TScheduledTask* Task(const TInt aTaskId); sl@0: //accessors sl@0: void RemoveEntries(); sl@0: void RemoveConditions(); sl@0: sl@0: TBool ClientInSchedule(const TDesC& aClientName); sl@0: inline TSglQue* Tasks(); sl@0: void TasksL(CArrayFixFlat& aTasks); sl@0: inline TInt Id() const; sl@0: inline const TDesC& Name() const; sl@0: inline TBool Persists() const; sl@0: inline TBool Enabled() const; sl@0: inline void SetEnabled(TBool aEnabled); sl@0: inline TBool HasTasks() const; sl@0: inline TScheduleType Type() const; sl@0: const RArray& Conditions() const; sl@0: sl@0: //security Info related stuff sl@0: TBool IsAccessAllowed(const RMessagePtr2& aMessage) const; sl@0: inline void CheckAccessAllowedL(const RMessagePtr2& aMessage) const; sl@0: sl@0: const TSecurityInfo& SecurityInfo() const; sl@0: //list capability sl@0: static TInt Offset(); sl@0: TBool IsUpdatable(); sl@0: sl@0: private://data sl@0: TSglQueLink iLink; //scheduler keeps all schedules in owning queue sl@0: TInt iId; sl@0: HBufC* iName; sl@0: TBool iPersists; sl@0: TBool iEnabled; sl@0: TTsTime iDueTime; sl@0: TTimeIntervalMinutes iValidityPeriod; sl@0: // list handling sl@0: RArray iConditions; sl@0: TSglQue iTaskList; //things which happen at those times sl@0: mutable TSglQue iEntryList; //list of times at which things happen sl@0: sl@0: //Creating process SecurityInfo sl@0: TSecurityInfo iSecurityInfo; sl@0: }; sl@0: sl@0: #include "SCHEDULE.INL" sl@0: #endif