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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
// User includes
|
sl@0
|
17 |
#include "SchLogger.h"
|
sl@0
|
18 |
#include "SCHEDULE.H"
|
sl@0
|
19 |
#include <schtask.h>
|
sl@0
|
20 |
#include "SCHCLI.H"
|
sl@0
|
21 |
#include "SCHENTRY.H"
|
sl@0
|
22 |
#include "SchTimer.h"
|
sl@0
|
23 |
#include "SCHEXEC.H"
|
sl@0
|
24 |
// Constants
|
sl@0
|
25 |
const TInt KMaxTasksPerSchedule = 9999;
|
sl@0
|
26 |
|
sl@0
|
27 |
//TScheduledTask
|
sl@0
|
28 |
TScheduledTask::TScheduledTask(CScheduledTask& aTask, CClientProxy& aClient)
|
sl@0
|
29 |
: iTask(aTask),
|
sl@0
|
30 |
iClient(aClient)
|
sl@0
|
31 |
{
|
sl@0
|
32 |
}
|
sl@0
|
33 |
|
sl@0
|
34 |
void TScheduledTask::OnDue(const TTsTime& aValidUntil)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
LOGSTRING("TScheduledTask::OnDue - start");
|
sl@0
|
37 |
iTask.OnDue(aValidUntil);
|
sl@0
|
38 |
iClient.ReadyToExecute();
|
sl@0
|
39 |
LOGSTRING("TScheduledTask::OnDue - end");
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
const HBufC& TScheduledTask::Data() const
|
sl@0
|
43 |
{
|
sl@0
|
44 |
return iTask.Data();
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
const TTaskInfo& TScheduledTask::Info() const
|
sl@0
|
48 |
{
|
sl@0
|
49 |
return iTask.Info();
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
const CClientProxy& TScheduledTask::Client() const
|
sl@0
|
53 |
{
|
sl@0
|
54 |
return iClient;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
void TScheduledTask::RemoveInfo()
|
sl@0
|
58 |
{
|
sl@0
|
59 |
LOGSTRING("TScheduledTask::RemoveInfo - start");
|
sl@0
|
60 |
iClient.RemoveTask(&iTask);
|
sl@0
|
61 |
LOGSTRING("TScheduledTask::RemoveInfo - end");
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
void TScheduledTask::DecRepeat()
|
sl@0
|
65 |
{
|
sl@0
|
66 |
iTask.DecRepeat();
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
TInt TScheduledTask::Offset()
|
sl@0
|
70 |
{
|
sl@0
|
71 |
return (_FOFF(TScheduledTask, iLink));
|
sl@0
|
72 |
}
|
sl@0
|
73 |
/*************************************************************************/
|
sl@0
|
74 |
//CSchedule functions
|
sl@0
|
75 |
/*************************************************************************/
|
sl@0
|
76 |
CSchedule* CSchedule::NewLC(TInt aHandle,
|
sl@0
|
77 |
const TDesC& aName,
|
sl@0
|
78 |
TBool aPersists,
|
sl@0
|
79 |
const CArrayFixFlat<TScheduleEntryInfo2>& aEntries,
|
sl@0
|
80 |
const TSecurityInfo& aSecurityInfo)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
CSchedule* self = new(ELeave) CSchedule(aSecurityInfo, aHandle, aPersists);
|
sl@0
|
83 |
CleanupStack::PushL(self);
|
sl@0
|
84 |
self->ConstructL(aName, aEntries);
|
sl@0
|
85 |
return self;
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
CSchedule* CSchedule::NewLC(TInt aHandle,
|
sl@0
|
89 |
const TDesC& aName,
|
sl@0
|
90 |
TBool aPersists,
|
sl@0
|
91 |
const CArrayFixFlat<TTaskSchedulerCondition>& aEntries,
|
sl@0
|
92 |
const TTsTime& aDefaultRunTime,
|
sl@0
|
93 |
const TSecurityInfo& aSecurityInfo)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
CSchedule* self = new(ELeave) CSchedule(aSecurityInfo, aHandle, aPersists);
|
sl@0
|
96 |
CleanupStack::PushL(self);
|
sl@0
|
97 |
self->ConstructL(aName, aEntries,aDefaultRunTime);
|
sl@0
|
98 |
return self;
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
CSchedule* CSchedule::NewL(CFileStore& aStore, TStreamId& aStreamId)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
CSchedule* self = new(ELeave) CSchedule;
|
sl@0
|
104 |
CleanupStack::PushL(self);
|
sl@0
|
105 |
self->RestoreL(aStore, aStreamId);//get self from root
|
sl@0
|
106 |
CleanupStack::Pop();//self
|
sl@0
|
107 |
return self;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
|
sl@0
|
110 |
CSchedule::CSchedule(const TSecurityInfo& aSecurityInfo, TInt aHandle, TBool aPersists)
|
sl@0
|
111 |
: iId(aHandle),
|
sl@0
|
112 |
iPersists(aPersists),
|
sl@0
|
113 |
iEnabled(ETrue),
|
sl@0
|
114 |
iTaskList(TScheduledTask::Offset()),
|
sl@0
|
115 |
iEntryList(TScheduleEntry::Offset()),
|
sl@0
|
116 |
iSecurityInfo(aSecurityInfo)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
}
|
sl@0
|
119 |
|
sl@0
|
120 |
CSchedule::CSchedule()
|
sl@0
|
121 |
: iTaskList(TScheduledTask::Offset()),
|
sl@0
|
122 |
iEntryList(TScheduleEntry::Offset())
|
sl@0
|
123 |
{
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
CSchedule::~CSchedule()
|
sl@0
|
127 |
{
|
sl@0
|
128 |
LOGSTRING("CSchedule::~CSchedule - start");
|
sl@0
|
129 |
|
sl@0
|
130 |
delete iName;
|
sl@0
|
131 |
RemoveTasks(EFalse);
|
sl@0
|
132 |
RemoveEntries();
|
sl@0
|
133 |
RemoveConditions();
|
sl@0
|
134 |
|
sl@0
|
135 |
LOGSTRING("CSchedule::~CSchedule - end");
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
void CSchedule::ConstructL(const TDesC& aName,
|
sl@0
|
139 |
const CArrayFixFlat<TScheduleEntryInfo2>& aEntries)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
iName = aName.AllocL();
|
sl@0
|
142 |
AddEntriesL(aEntries);
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
void CSchedule::ConstructL(const TDesC& aName,
|
sl@0
|
146 |
const CArrayFixFlat<TTaskSchedulerCondition>& aEntries,
|
sl@0
|
147 |
const TTsTime& aDefaultRunTime)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
iName = aName.AllocL();
|
sl@0
|
150 |
AddConditionsL(aEntries);
|
sl@0
|
151 |
|
sl@0
|
152 |
// we plug the default time in as the start time of a schedule entry
|
sl@0
|
153 |
TScheduleEntryInfo2 info(aDefaultRunTime, EDaily, 1, 60*24);
|
sl@0
|
154 |
TScheduleEntry* entry = ScheduleEntryFactory::CreateL(info);
|
sl@0
|
155 |
iEntryList.AddLast(*entry);
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
void CSchedule::RestoreL(CFileStore& aStore, TStreamId& aId)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
RStoreReadStream scheduleStream;
|
sl@0
|
161 |
scheduleStream.OpenLC(aStore, aId);
|
sl@0
|
162 |
InternalizeL(scheduleStream);
|
sl@0
|
163 |
CleanupStack::PopAndDestroy(&scheduleStream);
|
sl@0
|
164 |
}
|
sl@0
|
165 |
|
sl@0
|
166 |
TInt CSchedule::Offset()
|
sl@0
|
167 |
{
|
sl@0
|
168 |
return (_FOFF(CSchedule, iLink));
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
TBool CSchedule::ClientInSchedule(const TDesC& aClientName)
|
sl@0
|
172 |
//
|
sl@0
|
173 |
// returns true if the client is part of a task associated with this schedule
|
sl@0
|
174 |
//
|
sl@0
|
175 |
{
|
sl@0
|
176 |
TSglQueIter<TScheduledTask> tasks(iTaskList);
|
sl@0
|
177 |
tasks.SetToFirst();
|
sl@0
|
178 |
//
|
sl@0
|
179 |
TScheduledTask* task;
|
sl@0
|
180 |
while ((task=tasks++)!=NULL)
|
sl@0
|
181 |
{
|
sl@0
|
182 |
if (task->Client().ExecutorFileName().MatchF(aClientName) == 0)
|
sl@0
|
183 |
return ETrue;
|
sl@0
|
184 |
}
|
sl@0
|
185 |
return EFalse;
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
//
|
sl@0
|
189 |
//Task methods
|
sl@0
|
190 |
//
|
sl@0
|
191 |
|
sl@0
|
192 |
void CSchedule::AddTask(TScheduledTask& aTask)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
iTaskList.AddFirst(aTask);
|
sl@0
|
195 |
}
|
sl@0
|
196 |
|
sl@0
|
197 |
void CSchedule::RemoveTasks(TBool aFromClient)
|
sl@0
|
198 |
{
|
sl@0
|
199 |
LOGSTRING("CSchedule::RemoveTasks - start");
|
sl@0
|
200 |
|
sl@0
|
201 |
TScheduledTask* task;
|
sl@0
|
202 |
TSglQueIter<TScheduledTask> taskIter(iTaskList);
|
sl@0
|
203 |
taskIter.SetToFirst();
|
sl@0
|
204 |
while ((task = taskIter++) != NULL)
|
sl@0
|
205 |
{
|
sl@0
|
206 |
if (aFromClient)
|
sl@0
|
207 |
{
|
sl@0
|
208 |
task->RemoveInfo();
|
sl@0
|
209 |
}
|
sl@0
|
210 |
RemoveTask(task);
|
sl@0
|
211 |
}
|
sl@0
|
212 |
|
sl@0
|
213 |
LOGSTRING("CSchedule::RemoveTasks - end");
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
void CSchedule::RemoveTask(TScheduledTask* aTask)
|
sl@0
|
217 |
{
|
sl@0
|
218 |
LOGSTRING("CSchedule::RemoveTask - start");
|
sl@0
|
219 |
|
sl@0
|
220 |
LOGSTRING2("CSchedule::RemoveTask - Schedule id: %d", iId);
|
sl@0
|
221 |
iTaskList.Remove(*aTask);
|
sl@0
|
222 |
delete aTask;
|
sl@0
|
223 |
LOGSTRING("CSchedule::RemoveTask - end");
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
void CSchedule::NotifyTasks()
|
sl@0
|
227 |
{
|
sl@0
|
228 |
LOGSTRING("CSchedule::NotifyTasks - start");
|
sl@0
|
229 |
|
sl@0
|
230 |
TScheduledTask* task;
|
sl@0
|
231 |
TSglQueIter<TScheduledTask> taskIter(iTaskList);
|
sl@0
|
232 |
taskIter.SetToFirst();
|
sl@0
|
233 |
TTsTime time;
|
sl@0
|
234 |
while((task = taskIter++) != NULL)
|
sl@0
|
235 |
{
|
sl@0
|
236 |
if (iDueTime.IsUtc())
|
sl@0
|
237 |
time.SetUtcTime(iDueTime.GetUtcTime() + iValidityPeriod);
|
sl@0
|
238 |
else
|
sl@0
|
239 |
time.SetLocalTime(iDueTime.GetLocalTime()+iValidityPeriod);
|
sl@0
|
240 |
|
sl@0
|
241 |
task->OnDue(time);
|
sl@0
|
242 |
if (task->Info().iRepeat > 0)
|
sl@0
|
243 |
task->DecRepeat();
|
sl@0
|
244 |
if (task->Info().iRepeat == 0)
|
sl@0
|
245 |
RemoveTask(task);
|
sl@0
|
246 |
}
|
sl@0
|
247 |
|
sl@0
|
248 |
LOGSTRING("CSchedule::NotifyTasks - end");
|
sl@0
|
249 |
}
|
sl@0
|
250 |
|
sl@0
|
251 |
TInt CSchedule::GenerateTaskId()
|
sl@0
|
252 |
{
|
sl@0
|
253 |
LOGSTRING("CSchedule::GenerateTaskId - start");
|
sl@0
|
254 |
|
sl@0
|
255 |
TInt id = iId;
|
sl@0
|
256 |
TScheduledTask* task = Task(id);
|
sl@0
|
257 |
while (task!=NULL)
|
sl@0
|
258 |
{
|
sl@0
|
259 |
if ((id-iId) > KMaxTasksPerSchedule)
|
sl@0
|
260 |
return KErrOverflow;
|
sl@0
|
261 |
id++;
|
sl@0
|
262 |
task = Task(id);
|
sl@0
|
263 |
}
|
sl@0
|
264 |
LOGSTRING("CSchedule::GenerateTaskId - end");
|
sl@0
|
265 |
return id;
|
sl@0
|
266 |
}
|
sl@0
|
267 |
|
sl@0
|
268 |
TScheduledTask* CSchedule::Task(const TInt aTaskId)
|
sl@0
|
269 |
{
|
sl@0
|
270 |
TSglQueIter<TScheduledTask> tasks(iTaskList);
|
sl@0
|
271 |
tasks.SetToFirst();
|
sl@0
|
272 |
//
|
sl@0
|
273 |
TScheduledTask* task;
|
sl@0
|
274 |
while ((task=tasks++)!=NULL)
|
sl@0
|
275 |
{
|
sl@0
|
276 |
if (task->Info().iTaskId == aTaskId)
|
sl@0
|
277 |
return task;
|
sl@0
|
278 |
}
|
sl@0
|
279 |
return NULL;
|
sl@0
|
280 |
}
|
sl@0
|
281 |
|
sl@0
|
282 |
void CSchedule::TasksL(CArrayFixFlat<TTaskInfo>& aTasks)
|
sl@0
|
283 |
{
|
sl@0
|
284 |
LOGSTRING("CSchedule::TasksL - start");
|
sl@0
|
285 |
TSglQueIter<TScheduledTask> taskIter(iTaskList);
|
sl@0
|
286 |
taskIter.SetToFirst();
|
sl@0
|
287 |
TScheduledTask* task;
|
sl@0
|
288 |
while ((task = taskIter++) != NULL)
|
sl@0
|
289 |
{
|
sl@0
|
290 |
aTasks.AppendL(task->Info());
|
sl@0
|
291 |
}
|
sl@0
|
292 |
LOGSTRING("CSchedule::TasksL - end");
|
sl@0
|
293 |
}
|
sl@0
|
294 |
|
sl@0
|
295 |
//
|
sl@0
|
296 |
//Externalize/Internalize methods
|
sl@0
|
297 |
//
|
sl@0
|
298 |
void CSchedule::ExternalizeL(RWriteStream& aWriteStream) const
|
sl@0
|
299 |
{
|
sl@0
|
300 |
LOGSTRING("CSchedule::ExternalizeL - start");
|
sl@0
|
301 |
|
sl@0
|
302 |
aWriteStream.WriteInt32L(iId);
|
sl@0
|
303 |
aWriteStream << *iName;
|
sl@0
|
304 |
aWriteStream.WriteInt32L(iPersists);
|
sl@0
|
305 |
aWriteStream.WriteInt32L(iEnabled);
|
sl@0
|
306 |
|
sl@0
|
307 |
TInt count=0;
|
sl@0
|
308 |
// Count the number of schedule entries so that
|
sl@0
|
309 |
// we can write the count (in the stream) in advance
|
sl@0
|
310 |
// of the entries themselves.
|
sl@0
|
311 |
TSglQueIter<TScheduleEntry> iter(iEntryList);
|
sl@0
|
312 |
iter.SetToFirst();
|
sl@0
|
313 |
|
sl@0
|
314 |
TScheduleEntry* entry;
|
sl@0
|
315 |
while((entry=iter++)!=NULL)
|
sl@0
|
316 |
count++;
|
sl@0
|
317 |
aWriteStream.WriteInt32L(count);
|
sl@0
|
318 |
|
sl@0
|
319 |
// Write the entries
|
sl@0
|
320 |
iter.SetToFirst();
|
sl@0
|
321 |
while((entry=iter++)!=NULL)
|
sl@0
|
322 |
{
|
sl@0
|
323 |
entry->Info().ExternalizeL(aWriteStream);
|
sl@0
|
324 |
}
|
sl@0
|
325 |
|
sl@0
|
326 |
//write conditions
|
sl@0
|
327 |
count = iConditions.Count();
|
sl@0
|
328 |
aWriteStream.WriteInt32L(count);
|
sl@0
|
329 |
for(TInt ii = 0; ii<count; ++ii)
|
sl@0
|
330 |
{
|
sl@0
|
331 |
aWriteStream.WriteInt32L(iConditions[ii].iCategory.iUid);
|
sl@0
|
332 |
aWriteStream.WriteUint32L(iConditions[ii].iKey);
|
sl@0
|
333 |
aWriteStream.WriteInt32L(iConditions[ii].iState);
|
sl@0
|
334 |
aWriteStream.WriteInt32L(iConditions[ii].iType);
|
sl@0
|
335 |
}
|
sl@0
|
336 |
|
sl@0
|
337 |
//write security Info
|
sl@0
|
338 |
aWriteStream << iSecurityInfo;
|
sl@0
|
339 |
|
sl@0
|
340 |
LOGSTRING("CSchedule::ExternalizeL - end");
|
sl@0
|
341 |
}
|
sl@0
|
342 |
|
sl@0
|
343 |
void CSchedule::InternalizeL(RReadStream& aReadStream)
|
sl@0
|
344 |
{
|
sl@0
|
345 |
LOGSTRING("CSchedule::InternalizeL - start");
|
sl@0
|
346 |
iId = aReadStream.ReadInt32L();
|
sl@0
|
347 |
HBufC* name = HBufC::NewL(aReadStream, KMaxName);
|
sl@0
|
348 |
delete iName;
|
sl@0
|
349 |
iName = name;
|
sl@0
|
350 |
iPersists = aReadStream.ReadInt32L();
|
sl@0
|
351 |
iEnabled = aReadStream.ReadInt32L();
|
sl@0
|
352 |
|
sl@0
|
353 |
//Make sure we remove the entries first!
|
sl@0
|
354 |
RemoveEntries();
|
sl@0
|
355 |
|
sl@0
|
356 |
TInt entries = aReadStream.ReadInt32L();
|
sl@0
|
357 |
for (TInt i=0; i<entries;i++)
|
sl@0
|
358 |
{
|
sl@0
|
359 |
TScheduleEntryInfo2 info;
|
sl@0
|
360 |
info.InternalizeL(aReadStream);
|
sl@0
|
361 |
TScheduleEntry* entry = ScheduleEntryFactory::CreateL(info);
|
sl@0
|
362 |
iEntryList.AddLast(*entry);
|
sl@0
|
363 |
}
|
sl@0
|
364 |
|
sl@0
|
365 |
// now read in conditions
|
sl@0
|
366 |
RemoveConditions();
|
sl@0
|
367 |
TInt conditions = aReadStream.ReadInt32L();
|
sl@0
|
368 |
for (TInt ii=0; ii<conditions;++ii)
|
sl@0
|
369 |
{
|
sl@0
|
370 |
TUid category;
|
sl@0
|
371 |
category.iUid = aReadStream.ReadInt32L();
|
sl@0
|
372 |
TUint key = aReadStream.ReadUint32L();
|
sl@0
|
373 |
TInt state = aReadStream.ReadInt32L();
|
sl@0
|
374 |
TTaskSchedulerCondition::TConditionType type
|
sl@0
|
375 |
= static_cast<TTaskSchedulerCondition::TConditionType>(aReadStream.ReadInt32L());
|
sl@0
|
376 |
TTaskSchedulerCondition condition(category, key, state, type);
|
sl@0
|
377 |
User::LeaveIfError(iConditions.Append(condition));
|
sl@0
|
378 |
}
|
sl@0
|
379 |
|
sl@0
|
380 |
// read in security Info
|
sl@0
|
381 |
aReadStream >> iSecurityInfo;
|
sl@0
|
382 |
|
sl@0
|
383 |
LOGSTRING("CSchedule::InternalizeL - end");
|
sl@0
|
384 |
}
|
sl@0
|
385 |
|
sl@0
|
386 |
//
|
sl@0
|
387 |
//Entries methods
|
sl@0
|
388 |
//
|
sl@0
|
389 |
|
sl@0
|
390 |
void CSchedule::EntriesL(CArrayFixFlat<TScheduleEntryInfo2>& aEntries)
|
sl@0
|
391 |
{
|
sl@0
|
392 |
LOGSTRING("CSchedule::EntriesL - start");
|
sl@0
|
393 |
TSglQueIter<TScheduleEntry> entryIter(iEntryList);
|
sl@0
|
394 |
entryIter.SetToFirst();
|
sl@0
|
395 |
TScheduleEntry* entry;
|
sl@0
|
396 |
while ((entry = entryIter++) != NULL)
|
sl@0
|
397 |
{
|
sl@0
|
398 |
aEntries.AppendL(entry->Info());
|
sl@0
|
399 |
}
|
sl@0
|
400 |
LOGSTRING("CSchedule::EntriesL - end");
|
sl@0
|
401 |
}
|
sl@0
|
402 |
|
sl@0
|
403 |
void CSchedule::AddEntriesL(const CArrayFixFlat<TScheduleEntryInfo2>& aEntries)
|
sl@0
|
404 |
{
|
sl@0
|
405 |
LOGSTRING("CSchedule::AddEntriesL - start");
|
sl@0
|
406 |
TInt count = aEntries.Count();
|
sl@0
|
407 |
TScheduleEntryInfo2 entryInfo2;
|
sl@0
|
408 |
TTsTime ttsTime; //temporary needed due to gccxml compiler
|
sl@0
|
409 |
TDateTime dateTime;
|
sl@0
|
410 |
|
sl@0
|
411 |
for (TInt i = 0;i<count;i++)
|
sl@0
|
412 |
{
|
sl@0
|
413 |
entryInfo2 = aEntries.At(i);
|
sl@0
|
414 |
|
sl@0
|
415 |
// Zero out time to the nearest ms.
|
sl@0
|
416 |
if(entryInfo2.StartTime().IsUtc())
|
sl@0
|
417 |
{
|
sl@0
|
418 |
dateTime = entryInfo2.StartTime().GetUtcTime().DateTime();
|
sl@0
|
419 |
dateTime.SetMicroSecond(0);
|
sl@0
|
420 |
ttsTime.SetUtcTime(dateTime);
|
sl@0
|
421 |
entryInfo2.SetStartTime(ttsTime);
|
sl@0
|
422 |
}
|
sl@0
|
423 |
else
|
sl@0
|
424 |
{
|
sl@0
|
425 |
dateTime = entryInfo2.StartTime().GetLocalTime().DateTime();
|
sl@0
|
426 |
dateTime.SetMicroSecond(0);
|
sl@0
|
427 |
ttsTime.SetLocalTime(dateTime);
|
sl@0
|
428 |
entryInfo2.SetStartTime(ttsTime);
|
sl@0
|
429 |
}
|
sl@0
|
430 |
|
sl@0
|
431 |
TScheduleEntry* entry = ScheduleEntryFactory::CreateL(entryInfo2);
|
sl@0
|
432 |
iEntryList.AddLast(*entry);
|
sl@0
|
433 |
}
|
sl@0
|
434 |
|
sl@0
|
435 |
LOGSTRING("CSchedule::AddEntriesL - end");
|
sl@0
|
436 |
}
|
sl@0
|
437 |
|
sl@0
|
438 |
void CSchedule::ReplaceEntriesL(const CArrayFixFlat<TScheduleEntryInfo2>& aEntries)
|
sl@0
|
439 |
{
|
sl@0
|
440 |
// remove the original entries
|
sl@0
|
441 |
RemoveEntries();
|
sl@0
|
442 |
AddEntriesL(aEntries);
|
sl@0
|
443 |
}
|
sl@0
|
444 |
|
sl@0
|
445 |
void CSchedule::RemoveEntries()
|
sl@0
|
446 |
{
|
sl@0
|
447 |
LOGSTRING("CSchedule::RemoveEntries - start");
|
sl@0
|
448 |
|
sl@0
|
449 |
TScheduleEntry* entry;
|
sl@0
|
450 |
TSglQueIter<TScheduleEntry> iter(iEntryList);
|
sl@0
|
451 |
iter.SetToFirst();
|
sl@0
|
452 |
while ((entry = iter++) != NULL)
|
sl@0
|
453 |
{
|
sl@0
|
454 |
iEntryList.Remove(*entry);
|
sl@0
|
455 |
delete entry;
|
sl@0
|
456 |
}
|
sl@0
|
457 |
|
sl@0
|
458 |
LOGSTRING("CSchedule::RemoveEntries - end");
|
sl@0
|
459 |
}
|
sl@0
|
460 |
|
sl@0
|
461 |
//Condition methods
|
sl@0
|
462 |
void CSchedule::AddConditionsL(const CArrayFixFlat<TTaskSchedulerCondition>& aConditions)
|
sl@0
|
463 |
{
|
sl@0
|
464 |
TInt count = aConditions.Count();
|
sl@0
|
465 |
for (TInt i = 0;i<count;++i)
|
sl@0
|
466 |
User::LeaveIfError(iConditions.Append(aConditions[i]));
|
sl@0
|
467 |
}
|
sl@0
|
468 |
|
sl@0
|
469 |
void CSchedule::ReplaceConditionsL(const CArrayFixFlat<TTaskSchedulerCondition>& aConditions)
|
sl@0
|
470 |
{
|
sl@0
|
471 |
// remove the original conditions
|
sl@0
|
472 |
RemoveConditions();
|
sl@0
|
473 |
AddConditionsL(aConditions);
|
sl@0
|
474 |
}
|
sl@0
|
475 |
|
sl@0
|
476 |
void CSchedule::ConditionsL(CArrayFixFlat<TTaskSchedulerCondition>& aConditions)
|
sl@0
|
477 |
{
|
sl@0
|
478 |
TInt count = iConditions.Count();
|
sl@0
|
479 |
for (TInt i = 0;i<count;++i)
|
sl@0
|
480 |
{
|
sl@0
|
481 |
aConditions.AppendL(iConditions[i]);
|
sl@0
|
482 |
}
|
sl@0
|
483 |
}
|
sl@0
|
484 |
|
sl@0
|
485 |
void CSchedule::RemoveConditions()
|
sl@0
|
486 |
{
|
sl@0
|
487 |
iConditions.Reset();
|
sl@0
|
488 |
}
|
sl@0
|
489 |
|
sl@0
|
490 |
const TTsTime& CSchedule::DefaultRunTimeL() const
|
sl@0
|
491 |
{
|
sl@0
|
492 |
TSglQueIter<TScheduleEntry> entryIter(iEntryList);
|
sl@0
|
493 |
entryIter.SetToFirst();
|
sl@0
|
494 |
TScheduleEntry* entry = entryIter;
|
sl@0
|
495 |
if (entry == NULL)
|
sl@0
|
496 |
User::Leave(KErrArgument);
|
sl@0
|
497 |
return entry->DueTime();
|
sl@0
|
498 |
}
|
sl@0
|
499 |
|
sl@0
|
500 |
// This method is called when ever a new task is scheduled or a change to an
|
sl@0
|
501 |
// existing schedule is made. When one of the schedule entries in this schedule
|
sl@0
|
502 |
// has become due, this is called with aNotFirstTime = ETrue. All this does is
|
sl@0
|
503 |
// move the next due time into the next time frame.
|
sl@0
|
504 |
void CSchedule::CalculateDueTime(TBool aNotFirstTime)
|
sl@0
|
505 |
{
|
sl@0
|
506 |
// Sort the list of entries
|
sl@0
|
507 |
TSglQueIter<TScheduleEntry> iter(iEntryList);
|
sl@0
|
508 |
iter.SetToFirst();
|
sl@0
|
509 |
TScheduleEntry* entry;
|
sl@0
|
510 |
TTime currentTTime;
|
sl@0
|
511 |
TTsTime currentTTsTime;
|
sl@0
|
512 |
//make sure we reset iDueTime to max so that only the minimum is calculated.
|
sl@0
|
513 |
TTsTime maxTime(Time::MaxTTime(), ETrue);
|
sl@0
|
514 |
TTsTime dueTime;
|
sl@0
|
515 |
iDueTime = maxTime;
|
sl@0
|
516 |
while ((entry = iter++)!=NULL)
|
sl@0
|
517 |
{
|
sl@0
|
518 |
currentTTime.UniversalTime();
|
sl@0
|
519 |
currentTTsTime.SetUtcTime(currentTTime);
|
sl@0
|
520 |
// This works out when the schedule is next due based on the input time
|
sl@0
|
521 |
// and also updates the due time if it is home time based
|
sl@0
|
522 |
dueTime = entry->NextScheduledTime(currentTTsTime);
|
sl@0
|
523 |
if(aNotFirstTime && dueTime.GetUtcTime() <= currentTTime)
|
sl@0
|
524 |
{
|
sl@0
|
525 |
// We don't want this schedule to run straight away so seed the
|
sl@0
|
526 |
// next due initial time-frame by incrementing the validity
|
sl@0
|
527 |
currentTTime += entry->Info().ValidityPeriod();
|
sl@0
|
528 |
currentTTime += TTimeIntervalMicroSeconds32(1); // push into the next boundary
|
sl@0
|
529 |
|
sl@0
|
530 |
if (dueTime.IsUtc())
|
sl@0
|
531 |
currentTTsTime.SetUtcTime(currentTTime);
|
sl@0
|
532 |
else
|
sl@0
|
533 |
currentTTsTime.SetLocalTime(currentTTime + dueTime.GetOffset());
|
sl@0
|
534 |
|
sl@0
|
535 |
dueTime = entry->NextScheduledTime(currentTTsTime);
|
sl@0
|
536 |
}
|
sl@0
|
537 |
if(dueTime.GetUtcTime() < iDueTime.GetUtcTime()) //find earliest due time from all entries
|
sl@0
|
538 |
{
|
sl@0
|
539 |
iDueTime = dueTime;
|
sl@0
|
540 |
iValidityPeriod = entry->Info().ValidityPeriod();
|
sl@0
|
541 |
}
|
sl@0
|
542 |
}
|
sl@0
|
543 |
}
|
sl@0
|
544 |
|
sl@0
|
545 |
// if aCalculateForConditions is true then entrycount corresponds
|
sl@0
|
546 |
// to number of conditions;
|
sl@0
|
547 |
void CSchedule::GetInfo(TScheduleInfo& aInfo, TBool aCalculateForConditions)
|
sl@0
|
548 |
{
|
sl@0
|
549 |
aInfo.iState.SetName(Name());
|
sl@0
|
550 |
aInfo.iState.SetDueTime(iDueTime);
|
sl@0
|
551 |
aInfo.iState.SetPersists(Persists());
|
sl@0
|
552 |
aInfo.iState.SetEnabled(Enabled());
|
sl@0
|
553 |
TInt taskCount = 0;
|
sl@0
|
554 |
|
sl@0
|
555 |
TSglQueIter<TScheduledTask> taskIter(*Tasks());
|
sl@0
|
556 |
taskIter.SetToFirst();
|
sl@0
|
557 |
while (taskIter++ != NULL)
|
sl@0
|
558 |
{
|
sl@0
|
559 |
taskCount++;
|
sl@0
|
560 |
}
|
sl@0
|
561 |
aInfo.iTaskCount = taskCount;
|
sl@0
|
562 |
TInt entryCount = 0;
|
sl@0
|
563 |
if(!aCalculateForConditions)
|
sl@0
|
564 |
{
|
sl@0
|
565 |
TSglQueIter<TScheduleEntry> entryIter(iEntryList);
|
sl@0
|
566 |
entryIter.SetToFirst();
|
sl@0
|
567 |
while (entryIter++ != NULL)
|
sl@0
|
568 |
{
|
sl@0
|
569 |
entryCount++;
|
sl@0
|
570 |
}
|
sl@0
|
571 |
}
|
sl@0
|
572 |
else
|
sl@0
|
573 |
entryCount = iConditions.Count();
|
sl@0
|
574 |
aInfo.iEntryCount = entryCount;
|
sl@0
|
575 |
}
|
sl@0
|
576 |
|
sl@0
|
577 |
const RArray<TTaskSchedulerCondition>& CSchedule::Conditions() const
|
sl@0
|
578 |
{
|
sl@0
|
579 |
return iConditions;
|
sl@0
|
580 |
}
|
sl@0
|
581 |
|
sl@0
|
582 |
TBool CSchedule::IsAccessAllowed(const RMessagePtr2& aMessage) const
|
sl@0
|
583 |
{
|
sl@0
|
584 |
// Access allowed if message SID is the same as the schedule creator
|
sl@0
|
585 |
// or if client has WriteDeviceData
|
sl@0
|
586 |
return aMessage.SecureId()==iSecurityInfo.iSecureId
|
sl@0
|
587 |
|| aMessage.HasCapability(ECapabilityWriteDeviceData)
|
sl@0
|
588 |
|| PlatSec::ConfigSetting(PlatSec::EPlatSecEnforcement)==0; // Enforcement off
|
sl@0
|
589 |
}
|
sl@0
|
590 |
|
sl@0
|
591 |
const TSecurityInfo& CSchedule::SecurityInfo() const
|
sl@0
|
592 |
{
|
sl@0
|
593 |
return iSecurityInfo;
|
sl@0
|
594 |
}
|
sl@0
|
595 |
|
sl@0
|
596 |
TBool CSchedule::IsUpdatable()
|
sl@0
|
597 |
{
|
sl@0
|
598 |
if(HasTasks() && Enabled() )
|
sl@0
|
599 |
return ETrue;
|
sl@0
|
600 |
else
|
sl@0
|
601 |
return EFalse;
|
sl@0
|
602 |
}
|