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