Update contrib.
1 // Copyright (c) 2004-2009 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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include "SchLogger.h"
30 const TInt KMinScheduleId = 0;
31 const TInt KMaxSchedules = 25000;
33 //Command line argument
34 _LIT(KCommandLine, "SYSSTARTSCHEXE");
37 const TInt KSysStartSID = 0x10205C44;
40 #define UNUSED_VAR(a) a = a
43 // Construction/Destruction functions
46 CTaskScheduler::CTaskScheduler()
47 : iSchedules(CSchedule::Offset()),
48 iClients(CClientProxy::Offset()),
49 iStartupStatePassNonCritical(EFalse)
53 CTaskScheduler::~CTaskScheduler()
55 if (iBackupNotification)
57 iBackupNotification->DeRegisterBackupOperationObserver(*this);
59 delete iBackupNotification;
60 delete iBackupManager;
62 delete iScheduleCriteriaManager;
63 delete iSchLogManager;
65 //remove clients and schedules as well!!
66 TDblQueIter<CClientProxy> clientIter(iClients);
68 clientIter.SetToFirst();
69 CClientProxy* client=NULL;
70 while ((client=clientIter++)!=NULL)
76 TSglQueIter<CSchedule> schedIter(iSchedules);
78 schedIter.SetToFirst();
79 CSchedule* schedule=NULL;
80 while ((schedule=schedIter++)!=NULL)
82 iSchedules.Remove(*schedule);
87 void CTaskScheduler::ConstructL()
89 LOGSTRING("CTaskScheduler::ConstructL - Creating new schedule server log entry");
91 User::LeaveIfError(iFsSession.Connect());
92 iBackupManager = new(ELeave) CSchBackupManager(iFsSession);
93 iBackupManager->ConstructL();
95 iNotifier = CEnvironmentChangeNotifier::NewL(CActive::EPriorityHigh, TCallBack(EnvironmentChanged, this));
98 iScheduleCriteriaManager = CScheduleCriteriaManager::NewL(*this);
100 iSchLogManager = CSchLogManager::NewL(iFsSession);
102 LOGSTRING("CTaskScheduler::ConstructL - Restoring clients and schedules");
103 TRAPD(err, iBackupManager->RestoreL(iClients, iSchedules,*iSchLogManager));
104 if (err != KErrNone) // the file's corrupt or something...
106 LOGSTRING2("CTaskScheduler::ConstructL - had to create new store because of error: %d", err);
107 iBackupManager->CreateEmptyBackupL();
110 //checking the SID of the process which started the Task scheduler
111 if (User::CreatorSecureId() == KSysStartSID)
113 TInt argLen = User::CommandLineLength();
116 HBufC* arg = HBufC::NewLC(argLen);
117 TPtr argPtr = arg->Des();
118 User::CommandLine(argPtr);
121 //Checking Comman dLine arg passed to it is same as in SSCForStartupMode0.rss
122 //and checking for persisted schedules
123 if((argPtr.Compare(KCommandLine) == 0) && iSchedules.IsEmpty())
125 //if no schedule leave
126 User::Leave(KErrNone);
128 CleanupStack::PopAndDestroy(arg);
132 // Each client now contains a list of associated tasks. We need
133 // to now associate those tasks with specific schedules
134 CClientProxy* client;
135 TDblQueIter<CClientProxy> clientIter(iClients);
136 clientIter.SetToFirst();
137 while ((client = clientIter++) != NULL)
139 // Fetch an iterator for each task owned by this client
140 CScheduledTask* task;
141 TDblQueIter<CScheduledTask> taskIterator = client->TaskIterator();
142 taskIterator.SetToFirst();
144 // Iterate through all the tasks owned by this client, trying to find
145 // the corresponding schedules.
146 while ((task = taskIterator++) != NULL)
148 CSchedule* schedule = NULL;
149 schedule = Find(task->ScheduleId());
152 TScheduledTask* taskRef = new(ELeave) TScheduledTask(*task,*client);
153 schedule->AddTask(*taskRef);
157 iBackupNotification = CBaBackupSessionWrapper::NewL();
158 iBackupNotification->RegisterBackupOperationObserverL(*this);
161 CTaskScheduler* CTaskScheduler::NewL()
163 CTaskScheduler* self = CTaskScheduler::NewLC();
168 CTaskScheduler* CTaskScheduler::NewLC()
170 CTaskScheduler* self = new(ELeave) CTaskScheduler();
171 CleanupStack::PushL(self);
177 // Client, Schedule and Task functions
180 CClientProxy* CTaskScheduler::AddClientL(const TDesC& aFilename, TInt aPriority)
182 //check we don't already have a client that will do...
183 TDblQueIter<CClientProxy> clientIter(iClients);
184 clientIter.SetToFirst();
185 CClientProxy* client=NULL;
186 while ((client=clientIter++)!=NULL)
188 if (client->IsEqual(aFilename, aPriority))
191 client = CClientProxy::NewL(iFsSession, aFilename, aPriority,*iSchLogManager);
192 iClients.Add(*client);
196 void CTaskScheduler::AddScheduleL(CSchedule& aSchedule)
198 LOGSTRING3("CTaskScheduler::AddScheduleL - schedule: %S, %d", &aSchedule.Name(), aSchedule.Id());
199 iBackupManager->PerformStoreOperationL(CSchBackupManager::ESchBackupOperationAdd, aSchedule);
200 iSchedules.AddLast(aSchedule);
201 LOGSTRING("CTaskScheduler::AddScheduleL - schedule added");
204 void CTaskScheduler::EditScheduleL(TInt aScheduleHandle, CArrayFixFlat<TScheduleEntryInfo2>& aEntryList)
206 CSchedule* schedule = FindL(aScheduleHandle);
208 // remove schedule from condition manager before replacing entries to ensure
209 // its deleted properly.
210 iScheduleCriteriaManager->RemoveSchedule(schedule->Id());
211 schedule->ReplaceEntriesL(aEntryList);
213 TRAPD(err, iBackupManager->PerformStoreOperationL(CSchBackupManager::ESchBackupOperationEdit, *schedule));
216 schedule->RemoveEntries();
219 // recalculate due time only if schedule is enabled and has tasks to run
220 if (IsScheduleReadyForUpdate(*schedule))
222 iScheduleCriteriaManager->ReplaceScheduleL(*schedule);
226 void CTaskScheduler::DoEditScheduleL(CSchedule& aSchedule,
227 CArrayFixFlat<TTaskSchedulerCondition>& aConditionList,
228 const TTsTime& aDefaultTime)
230 aSchedule.ReplaceConditionsL(aConditionList);
232 //Default Time is represented by a single entry class
233 CArrayFixFlat<TScheduleEntryInfo2>* entries
234 = new(ELeave) CArrayFixFlat<TScheduleEntryInfo2>(1);
235 CleanupStack::PushL(entries);
236 TScheduleEntryInfo2 info;
237 info.SetStartTime(aDefaultTime);
239 info.SetIntervalType(EDaily);
240 //validityperiod of 24 hours will ensure task is always run
241 info.SetValidityPeriod(60*24);
242 entries->AppendL(info);
243 aSchedule.ReplaceEntriesL(*entries);
244 CleanupStack::Pop(entries);
246 iBackupManager->PerformStoreOperationL(CSchBackupManager::ESchBackupOperationEdit, aSchedule);
249 void CTaskScheduler::EditScheduleL(TInt aScheduleHandle,
250 CArrayFixFlat<TTaskSchedulerCondition>& aConditionList,
251 const TTsTime& aDefaultTime)
253 CSchedule* schedule = FindL(aScheduleHandle);
255 // remove schedule from condition manager before replacing entries to ensure
256 // its deleted properly.
257 iScheduleCriteriaManager->RemoveSchedule(schedule->Id());
259 TRAPD(err, DoEditScheduleL(*schedule, aConditionList, aDefaultTime));
262 schedule->RemoveEntries();
263 schedule->RemoveConditions();
267 // recalculate due time only if schedule is enabled and has tasks to run
268 if (IsScheduleReadyForUpdate(*schedule))
270 iScheduleCriteriaManager->ReplaceScheduleL(*schedule);
274 void CTaskScheduler::RemoveScheduleL(TInt aHandle)
276 CSchedule* schedule = FindL(aHandle);
277 LOGSTRING3("CTaskScheduler::RemoveScheduleL - schedule: %S, %d", &schedule->Name(), schedule->Id());
278 if (!schedule->HasTasks())
280 LOGSTRING("CTaskScheduler::RemoveScheduleL - schedule doesn't have any tasks, removing");
281 //remove schedule from timer
282 iScheduleCriteriaManager->RemoveSchedule(schedule->Id());
287 // Can't delete a schedule which has tasks
288 LOGSTRING("CTaskScheduler::RemoveScheduleL - schedule has tasks, can't delete");
289 User::Leave(KErrArgument);
293 void CTaskScheduler::DisableScheduleL(TInt aHandle)
295 CSchedule* schedule = FindL(aHandle);
296 schedule->SetEnabled(EFalse);
297 iBackupManager->PerformStoreOperationL(CSchBackupManager::ESchBackupOperationEdit, *schedule);
298 //remove schedule from timer as its disabled
299 iScheduleCriteriaManager->RemoveSchedule(schedule->Id());
302 void CTaskScheduler::EnableScheduleL(TInt aHandle)
304 CSchedule* schedule = FindL(aHandle);
305 schedule->SetEnabled(ETrue);
306 iBackupManager->PerformStoreOperationL(CSchBackupManager::ESchBackupOperationEdit, *schedule);
308 // recalculate due time only if schedule has tasks to run
309 if ( IsScheduleReadyForUpdate(*schedule))
311 iScheduleCriteriaManager->ReplaceScheduleL(*schedule);
315 void CTaskScheduler::ScheduleTaskL(CSchedule& aSchedule, CClientProxy& aClient)
318 if (aSchedule.Persists())
320 iBackupManager->PerformStoreOperationL(CSchBackupManager::ESchBackupOperationEdit, aClient);
322 // if schedule is enabled then add schedule to timer.
323 if (aSchedule.Enabled() && IsStartupStateNonCritical())
325 iScheduleCriteriaManager->ReplaceScheduleL(aSchedule);
329 void CTaskScheduler::DeleteTaskL(TInt aScheduleHandle, TInt aTaskHandle)
331 CSchedule* schedule = FindL(aScheduleHandle);
333 TScheduledTask* task = schedule->Task(aTaskHandle);
336 LOGSTRING("CTaskScheduler::DeleteTaskL - task wasn't found");
337 User::Leave(KErrNotFound);
340 const CClientProxy& clientForTask = task->Client();
342 // This deletes the task and removes the CScheduledTask
343 // from the CClientProxy's queue of tasks
346 // This deletes the TScheduledTask defined above and removes it
347 // from CSchedule's queue of TScheduledTask's.
348 schedule->RemoveTask(task);
349 if (!schedule->HasTasks()) //i.e. it was the last task
351 LOGSTRING("CTaskScheduler::DeleteTaskL - schedule doesn't have any more tasks left");
352 //remove scheule from timer as there are no more tasks
353 iScheduleCriteriaManager->RemoveSchedule(schedule->Id());
354 // If the schedule isn't persistent then we delete it (transient schedules only
356 if (!schedule->Persists())
359 iBackupManager->PerformStoreOperationL(CSchBackupManager::ESchBackupOperationEdit, clientForTask);
363 // Backup the changes to the tasks. Although we are deleting a task, we are not actually
364 // deleting the client, so this is actually an edit operation.
365 if (schedule->Persists())
366 iBackupManager->PerformStoreOperationL(CSchBackupManager::ESchBackupOperationEdit, clientForTask);
374 TInt CTaskScheduler::GenerateId()
376 TInt id = KMinScheduleId;
377 CSchedule* schedule = Find(id);
378 while (schedule!=NULL)
380 id+=KScheduleIdDifferential;//=10 000
381 if ((id/KScheduleIdDifferential) > KMaxSchedules)
388 void CTaskScheduler::DoRemoveL(CSchedule* aSchedule)
390 TRAPD(err, iBackupManager->PerformStoreOperationL(CSchBackupManager::ESchBackupOperationDelete, *aSchedule));
391 if (err < KErrNone && err != KErrNotFound)
393 iSchedules.Remove(*aSchedule);
398 CSchedule* CTaskScheduler::FindL(TInt aHandle)
400 CSchedule* schedule = Find(aHandle);
402 User::Leave(KErrNotFound);
406 CSchedule* CTaskScheduler::Find(TInt aHandle)
408 TSglQueIter<CSchedule> scheduleIter(iSchedules);
409 scheduleIter.SetToFirst();
411 while ((schedule = scheduleIter++)!=NULL)
413 if (schedule->Id() == aHandle)
419 // If aRefArray is NULL then only count it returned.
420 TInt CTaskScheduler::GetScheduleRefsL(CArrayFixFlat<TSchedulerItemRef>* aRefArray,
421 TScheduleFilter aFilter,
422 const RMessagePtr2& aMessage)
425 TSglQueIter<CSchedule> iter(iSchedules);
427 CSchedule* schedule = NULL;
428 while ((schedule = iter++) != NULL)
430 if(aFilter == EAllSchedules || (schedule->Enabled() && schedule->HasTasks()))
432 //only add information for schedules that the client has permission to alter
433 if(schedule->IsAccessAllowed(aMessage))
437 TSchedulerItemRef ref;
438 ref.iHandle = schedule->Id();
439 ref.iName = schedule->Name();
440 aRefArray->AppendL(ref);
449 // If aRefArray is NULL then only count it returned.
450 TInt CTaskScheduler::GetTaskRefsL(CArrayFixFlat<TSchedulerItemRef>* aRefArray,
451 TScheduleFilter aScheduleFilter,
452 TTaskFilter aTaskFilter,
453 CClientProxy* aClient,
454 const RMessagePtr2& aMessage)
457 TSglQueIter<CSchedule> iter(iSchedules);
459 CSchedule* schedule = NULL;
460 while ((schedule = iter++) != NULL)
462 if(aScheduleFilter == EAllSchedules || (schedule->Enabled() && schedule->HasTasks()))
464 //only add information for schedules that the client has permission to alter
465 if(schedule->IsAccessAllowed(aMessage))
467 TSglQueIter<TScheduledTask> taskIter(*(schedule->Tasks()));
468 taskIter.SetToFirst();
469 TScheduledTask* task;
470 while ((task=taskIter++)!=NULL)
472 if (aTaskFilter==EAllTasks||&task->Client() == aClient) // This pointer comparison is a bit rubbish. Change?
476 TTaskInfo info = task->Info();
477 TSchedulerItemRef ref;
478 ref.iHandle = info.iTaskId;
479 ref.iName = info.iName;
480 aRefArray->AppendL(ref);
493 // Schedule Execution functions
496 // A schedule is ready to be run
497 void CTaskScheduler::DueTaskNotifyL(TInt aScheduleHandle)
499 CSchedule* schedule = FindL(aScheduleHandle);
500 //NotifyTasks() also removes tasks from the schedule if there are no
502 schedule->NotifyTasks();
504 if (!schedule->HasTasks())
507 TRAPD(ignore, DoRemoveL(schedule));
508 //??error only occurs in relation to persistence!! Do something.
513 __ASSERT_ALWAYS(IsStartupStateNonCritical(), User::Invariant());
514 iScheduleCriteriaManager->ReplaceScheduleL(*schedule,EConditionAndTime,ETrue);
517 // Execute all clients. This method doesn't leave as all errors are either
518 // logged in the log engine or handled elsewhere.
522 // Go through all clients, executing their tasks
523 void CTaskScheduler::ExecuteClients(TBool aUpdateClient)
525 if ((BUROperationInProgress() == EBUROperationNoActivity) || !aUpdateClient)
527 TDblQueIter<CClientProxy> clientIter(iClients);
528 clientIter.SetToFirst();
529 CClientProxy* client;
530 while( (client = clientIter++) != NULL)
532 // Does this client have anything ready to run?
533 if (client->IsReadyToExecute())
535 client->ExecuteTasks();
536 // Clears the 'IsReadyToExecute' flag...
537 client->RemoveDueTasks();
542 // Update the store file now
548 // Sets the flag to trigger delayed store operation when BUR ends
549 iTaskExecutedDuringBUR = ETrue;
553 // Go through all clients, update the store file with modified client info
554 void CTaskScheduler::UpdateClients()
556 // iterate the client list to perform delayed update of the store file
557 TDblQueIter<CClientProxy> clientIter(iClients);
558 clientIter.SetToFirst();
559 CClientProxy* client;
560 while( (client = clientIter++) != NULL)
562 if (!client->Users())
565 TRAPD(ignore, iBackupManager->PerformStoreOperationL(CSchBackupManager::ESchBackupOperationDelete, *client));
566 //?? if ignore is not KErrNone then there is a problem with the store
568 // Remove client & delete it
574 // Update this clients data in the store...
575 TRAPD(ignore, iBackupManager->PerformStoreOperationL(CSchBackupManager::ESchBackupOperationEdit, *client));
577 //?? if ignore is not KErrNone then there is a problem with the store
584 // Environment change functions
587 TInt CTaskScheduler::EnvironmentChanged(TAny* aScheduler)
589 CTaskScheduler* self = reinterpret_cast<CTaskScheduler*>(aScheduler);
590 self->HandleEnvironmentChange();
594 void CTaskScheduler::HandleEnvironmentChange()
596 // If staged startup still in critical region, can safely
597 // ignore system time change.
598 if (!IsStartupStateNonCritical())
603 TInt changes=iNotifier->Change();
604 if (changes & EChangesSystemTime)
606 #ifdef __SCHLOGGING__
610 TDateTime due(time.DateTime());
611 LOGSTRING7("CTaskScheduler::HandleEnvironmentChangeL - system time is now: [%02d/%02d/%d] @ %02d:%02d:%02d", due.Day(), (TInt) due.Month() + 1, due.Year(), due.Hour(), due.Minute(), due.Second());
616 // Cannot use AddSchedulesToTimerL() because this method
617 // uses the non-condition version of ReplaceScheduleL.
618 TSglQueIter<CSchedule> scheduleIter(iSchedules);
619 scheduleIter.SetToFirst();
620 CSchedule* schedule = NULL;
621 while ((schedule=scheduleIter++)!=NULL)
623 if(IsScheduleReadyForUpdate(*schedule))
625 TRAPD(err, iScheduleCriteriaManager->ReplaceScheduleL(*schedule, EOnlyTime));
632 void CTaskScheduler::AddSchedulesToTimerL()
634 if (!IsStartupStateNonCritical())
641 TSglQueIter<CSchedule> scheduleIter(iSchedules);
642 scheduleIter.SetToFirst();
643 CSchedule* schedule = NULL;
644 while ((schedule=scheduleIter++)!=NULL)
646 if(IsScheduleReadyForUpdate(*schedule))
648 TRAPD(err, iScheduleCriteriaManager->ReplaceScheduleL(*schedule));
655 User::LeaveIfError(ret);
658 void CTaskScheduler::CleanupScheduledTasksL()
661 _LIT(KTempFilePath, "_:\\private\\10005399\\*.tmp");
662 TBuf<32> filePath(KTempFilePath);
664 filePath[0] = RFs::GetSystemDriveChar();
667 CleanupClosePushL(fs);
669 CFileMan* fileMan = CFileMan::NewL(fs);
670 CleanupStack::PushL(fileMan);
672 //Delete all temporary files in the private folder
673 fileMan->Delete(filePath,0);
675 //Pop and destroy fs and fileMan
676 //This will call fs.Close() so no need to call it explicitly
677 CleanupStack::PopAndDestroy(2);
681 CSchStartupStateMgr calls this to notify startup state changes of
686 void CTaskScheduler::ProcessSSAEventL(TStartupStateIdentifier aKnownState)
688 LOGSTRING2("ProcessSSAEventL receive SS 0x%x", aKnownState);
690 if (! IsStartupStateNonCritical() &&
691 (aKnownState >= KSchFinalStartupState))
693 iStartupStatePassNonCritical = ETrue;
694 CleanupScheduledTasksL();
695 AddSchedulesToTimerL();
700 Returns ETrue if Start-up State is NonCritical
702 TBool CTaskScheduler::IsStartupStateNonCritical()
704 return iStartupStatePassNonCritical;
708 Check schedule is valid
710 TBool CTaskScheduler::IsScheduleReadyForUpdate(CSchedule& aSchedule)
712 if(aSchedule.IsUpdatable() && IsStartupStateNonCritical())
719 babackup server calls this to notify backup operations. The attributes are read and translated to determine
720 which operation is actually in progress.
723 void CTaskScheduler::HandleBackupOperationEventL(const TBackupOperationAttributes& aBackupOperationAttributes)
727 // determine the operation type (backup or restore)
728 switch(aBackupOperationAttributes.iFileFlag)
730 case MBackupObserver::EReleaseLockReadOnly:
731 type = EBUROperationBackup;
733 case MBackupObserver::EReleaseLockNoAccess:
734 type = EBUROperationRestore;
736 case MBackupObserver::ETakeLock:
737 // No information is passed from babackup server, so we need to depend on our own memory
738 type = iBUROperationInProgress;
741 type = EBUROperationNoActivity;
745 // determine the operation status (e.g. starting, ending)
746 switch(aBackupOperationAttributes.iOperation)
752 BURCompleteL(type, EBUROperationSuccess);
755 BURCompleteL(type, EBUROperationAbort);
764 This function is called to notify when a Backup or Restore operation is commencing.
768 void CTaskScheduler::BURBeginningL(TBUROperation aOperationType)
770 // This will stop the API calls that directly modify the store file
771 iBUROperationInProgress = aOperationType;
773 //cancel background compaction of store during backup/restore
774 iBackupManager->Cancel();
779 This function is called to notify when a Backup or Restore operation is finished.
783 void CTaskScheduler::BURCompleteL(TBUROperation aOperationType, TBUROperationResult aBURResult)
785 // If there is a successful restore, this means that we have a different store file then we were using
786 // so we have to internalize and use that file. In any other case, we can proceed with the delayed
787 // updates to the old file
788 if ((aOperationType == EBUROperationRestore)&&(aBURResult == EBUROperationSuccess))
790 LOGSTRING("CTaskScheduler::BURCompleteL - Restoring clients and schedules after successful restore");
792 //First check whether any task expires during the restore process now that this is completed
793 if (iTaskExecutedDuringBUR)
795 // performed the delayed task execution but with no externalizing as we dont want to modify
796 // the just restored file as after the delayed execution, all persistent schedule will be removed
797 ExecuteClients(EFalse);
798 iTaskExecutedDuringBUR=EFalse;
801 // Now remove existing persistent schedules, tasks and clients
802 TSglQueIter<CSchedule> scheduleIter(iSchedules);
803 scheduleIter.SetToFirst();
805 while ((schedule = scheduleIter++)!=NULL)
807 if (schedule->Persists())
809 iSchedules.Remove(*schedule);
810 schedule->RemoveTasks(ETrue);
815 CClientProxy* client;
816 TDblQueIter<CClientProxy> clientIter(iClients);
818 // remove clients which don't have any associated tasks left (tasks in persistent schedules are
819 // already removed, but the client might have transient schedules as well)
820 clientIter.SetToFirst();
821 while ((client = clientIter++) != NULL)
823 TDblQueIter<CScheduledTask> taskIter = client->TaskIterator();
824 taskIter.SetToFirst();
826 // remove client if no more tasks
827 if (taskIter++ == NULL)
830 delete client; // removes associated tasks
834 //remove any persisted task and if the client only has persisted task, remove client as well
835 taskIter.SetToFirst();
836 CScheduledTask* task;
839 while ((task = taskIter++) != NULL)
842 if (task->Persists())
845 client->RemoveTask(task);
848 //if after removing the persist tasks, there are no more other tasks, we can remove the client too
849 if (taskCount==persistCount)
857 // now re-read the clients and schedules from the restored store file
858 TRAPD(err, iBackupManager->RestoreL(iClients, iSchedules,*iSchLogManager,ETrue));
860 if (err != KErrNone) // the file's corrupt or something...
862 LOGSTRING2("CTaskScheduler::BURCompleteL - had to create new store because of error: %d", err);
863 iBackupManager->CreateEmptyBackupL();
867 // Each client now contains a list of associated tasks. We need
868 // to now associate those tasks with specific schedules
869 clientIter.SetToFirst();
870 while ((client = clientIter++) != NULL)
872 // Fetch an iterator for each task owned by this client
873 CScheduledTask* task;
874 TDblQueIter<CScheduledTask> taskIterator = client->TaskIterator();
875 taskIterator.SetToFirst();
877 // Iterate through all the tasks owned by this client, trying to find
878 // the corresponding schedules.
879 while ((task = taskIterator++) != NULL)
881 TSglQueIter<CSchedule> persScheduleIter(iSchedules);
882 persScheduleIter.SetToFirst();
883 CSchedule* persSchedule;
884 while ((persSchedule = persScheduleIter++)!=NULL)
886 if ((persSchedule->Persists())&&(persSchedule->Id() == task->ScheduleId()))
888 TScheduledTask* taskRef = new(ELeave) TScheduledTask(*task,*client);
889 persSchedule->AddTask(*taskRef);
895 // Activate the scheduler with the new schedules
896 AddSchedulesToTimerL();
900 if (iTaskExecutedDuringBUR)
902 iBUROperationInProgress = EBUROperationNoActivity;
903 iTaskExecutedDuringBUR = EFalse;
904 // performed the delayed task execution
909 // BUR operation is completed
910 iBUROperationInProgress = EBUROperationNoActivity;
911 iTaskExecutedDuringBUR = EFalse;