os/ossrv/genericservices/taskscheduler/SCHSVR/SchTimer.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-2010 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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef __SCHTIMER_H__
    17 #define __SCHTIMER_H__
    18 
    19 // System includes
    20 #include <e32base.h>
    21 
    22 // Classes referenced
    23 class TTsTime;
    24 class CTaskScheduler;
    25 class CScheduleTimer;
    26 class CConditionManager;
    27 class TTaskSchedulerCondition;
    28 class CSchedule;
    29 
    30 /**
    31 Defines the types of schedules changes (condition and/or a time)
    32 @internalComponent
    33 */
    34 enum TSchChangeType
    35 	{
    36 	//Update both condition and a time based schedule
    37 	EConditionAndTime,
    38 	
    39 	//Update only time based schedule
    40 	EOnlyTime,	
    41 	};
    42 
    43 // class CScheduleCriteriaManager
    44 // This class manages and determines when a schedule is due, based on 
    45 // either a set of condition and/or a time.  The conditions and time
    46 // are set and overridden via the ReplaceScheduleL method.
    47 NONSHARABLE_CLASS(CScheduleCriteriaManager) : public CActive
    48 	{
    49 public:
    50 	static CScheduleCriteriaManager* NewL(CTaskScheduler& aOwner);
    51 	~CScheduleCriteriaManager();
    52 
    53 public:	
    54 	void ReplaceScheduleL(CSchedule& aSchedule, TSchChangeType aSchChange = EConditionAndTime, TBool aNotFirstTime = EFalse);
    55 	void ReplaceScheduleL(const TTsTime& aNextTime, 
    56 						TInt aSchedule);
    57 	void RemoveSchedule(TInt aSchedule);
    58 	void DueSchedule(TInt aScheduleHandle);
    59 
    60 private:
    61 	CScheduleCriteriaManager(CTaskScheduler& aOwner);
    62 	// From CActive
    63 	void RunL();
    64     void DoCancel();
    65     TInt RunError(TInt aError);
    66 	
    67 private:
    68 	void CompleteRequest();
    69 	// Timer handling
    70 	void RemoveTimer(CScheduleTimer* aTimer);		
    71 	void RemoveTimers();
    72 	CScheduleTimer* Find(TInt aSchedule);		
    73 	// Condtion handling
    74 	void RemoveCondition(CConditionManager* aTimer);		
    75 	void RemoveConditions();
    76 	CConditionManager* FindCondition(TInt aSchedule);		
    77 
    78 private:
    79 	CTaskScheduler& iTaskScheduler;
    80 	TSglQue<CScheduleTimer> iTimers;
    81 	TSglQue<CConditionManager> iConditions;
    82 	TInt iDueScheduleHandle;
    83 	};
    84 
    85 #endif