First public contribution.
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.
17 #include <logwraplimits.h>
24 #include "SchLogger.h"
30 #define KEllipsis 0x2026
31 const TInt KTaskArrayGranularity = 1;
32 _LIT(KTaskNameSeparator, ", ");
39 CClientProxy::CClientProxy(RFs& aFsSession, CSchLogManager& aLogManager)
40 : iFsSession(aFsSession),
41 iTasks(CScheduledTask::Offset()),
42 iSchLogManager(aLogManager)
46 CClientProxy::CClientProxy(RFs& aFsSession, TInt aPriority, CSchLogManager& aLogManager)
47 : iFsSession(aFsSession),
48 iTasks(CScheduledTask::Offset()),
49 iSchLogManager(aLogManager)
51 iPriLink.iPriority = aPriority;
54 CClientProxy::~CClientProxy()
56 LOGSTRING("CClientProxy::~CClientProxy - start");
58 TDblQueIter<CScheduledTask> taskIter(iTasks);
59 taskIter.SetToFirst();
61 while ((task = taskIter++) != NULL)
66 LOGSTRING("CClientProxy::~CClientProxy - end");
69 void CClientProxy::ConstructL(const TDesC& aFileName)
71 iFileName = aFileName.AllocL();
74 CClientProxy* CClientProxy::NewL(RFs& aFsSession,
75 const TDesC& aFileName,
77 CSchLogManager& aLogManager)
79 CClientProxy* self = new(ELeave) CClientProxy(aFsSession, aPriority,aLogManager);
80 CleanupStack::PushL(self);
81 self->ConstructL(aFileName);
86 CClientProxy* CClientProxy::NewL(RFs& aFsSession,
88 CSchLogManager& aLogManager)
90 CClientProxy* self = new(ELeave) CClientProxy(aFsSession,aLogManager);
91 CleanupStack::PushL(self);
97 TBool CClientProxy::IsEqual(const TDesC& aFilename, TInt aPriority) const
99 // Equality here means: same DLL filename, DLL ordinal & priority
100 return ((*iFileName == aFilename) && (iPriLink.iPriority == aPriority));
103 void CClientProxy::AddTask(CScheduledTask& aTask)
105 LOGSTRING("CClientProxy::AddTask - start");
108 LOGSTRING("CClientProxy::AddTask - end");
111 void CClientProxy::RemoveTask(CScheduledTask* aTask)
113 LOGSTRING("CClientProxy::RemoveTask - start");
117 LOGSTRING("CClientProxy::RemoveTask - end");
121 static void BuildTaskErrorMessage(const CArrayPtr<CScheduledTask>& aTasks, TDes& aErrorMessage)
123 // Establish the names of all the tasks that potentially might fail
124 // when executing the task. This is done *before* actually executing the
125 // tasks as its not possible to discern (at failure time) which tasks
126 // were actually executing (because we don't know at what time the task
127 // executor was spawned).
130 const TInt count = aTasks.Count();
131 for(TInt i=0; i<count; i++)
133 const TDesC& taskName = aTasks.At(i)->Info().iName;
134 if (aErrorMessage.Length() + taskName.Length() > KLogMaxSubjectLength - KTaskNameSeparator().Length())
136 // The task name that still needs adding to the subject line (of the
137 // log entry) is too big to fit within KLogCallEventTypeUid characters.
138 // Trim the task name so that it will fit, and append the ellipsis
139 // character to indicate that more tasks were present but unable to be
141 TInt lengthOfTaskNameToAccept = (KLogMaxSubjectLength - aErrorMessage.Length()) - KTaskNameSeparator().Length();
142 if (lengthOfTaskNameToAccept <= 0)
144 aErrorMessage += taskName.Left(lengthOfTaskNameToAccept);
145 aErrorMessage.Append(KEllipsis);
147 // Exit the 'for' loop as there isn't any more room to hold subsequent
148 // tasks that potentially failed...
153 aErrorMessage += taskName;
156 if (i<count-1) // not the last taskName
159 aErrorMessage += KTaskNameSeparator;
164 void CClientProxy::ExecuteTasks()
166 // generate an array of due tasks
167 CArrayPtr<CScheduledTask>* tasks = NULL;
168 TRAPD(err, tasks = DueTasksL());
171 iSchLogManager.LogError(err);
175 // Create the task error message, just in case an error occurs
176 TBuf<KLogMaxSubjectLength> errorMessage;
177 BuildTaskErrorMessage(*tasks, errorMessage);
179 TInt error =DoExecuteTasks(*tasks, errorMessage);
181 iSchLogManager.LogError(errorMessage,error);
185 TInt CClientProxy::DoExecuteTasks(const CArrayPtr<CScheduledTask>& aTasks,
186 const TDesC& aErrorMessage)
188 // Generate a unique task name
190 timenow.UniversalTime();
191 TBuf<24> filename; // 20 is the longest decimal char length of a 64-bit number + 4 for extension
192 filename.Format(_L("%Ld.tmp"),timenow.Int64());
194 // Save & perform execution
195 TRAPD(error, DoExecuteTasksL(aTasks, filename, aErrorMessage));
197 if (error != KErrNone)
199 LOGSTRING2("CClientProxy::ExecuteTasksL - attempted to execute tasks, error was %d", error);
200 // Cleanup the file that was created if the execution fails in any way. Note
201 // that it might not have been created
203 // If a debug build - record error
204 TInt fileDeleteErr=iFsSession.Delete(filename);
205 if (fileDeleteErr != KErrNone)
207 LOGSTRING2("CClientProxy::DoExecuteTasks - Failed to delete file. Error = %d", fileDeleteErr);
213 void CClientProxy::DoExecuteTasksL(const CArrayPtr<CScheduledTask>& aTasks,
214 const TDesC& aFileName,
215 const TDesC& aErrorMessage)
217 // Save the tasks to disk
218 SaveTasksToFileL(aTasks, aFileName);
220 // Spawn the task executor active object (deletes itself upon completion)
221 CTaskExecutor* executor = CTaskExecutor::NewLC(aErrorMessage,aFileName,*iFileName,iSchLogManager);
222 executor->ExecuteL();
223 CleanupStack::Pop(executor);
224 // Don't delete executor here as it does it itself once
225 // the task has finished (delete this in its RunL() )
229 CArrayPtr<CScheduledTask>* CClientProxy::DueTasksL()
231 // Returns a copy of any due tasks
234 CArrayPtrFlat<CScheduledTask>* tasks = new(ELeave)CArrayPtrFlat<CScheduledTask> (KTaskArrayGranularity);
235 CleanupStack::PushL(tasks);
236 TDblQueIter<CScheduledTask> taskIter(iTasks);
237 taskIter.SetToFirst();
238 CScheduledTask* task;
239 while ((task=taskIter++)!=NULL)
243 tasks->AppendL(task);
246 CleanupStack::Pop(tasks);
251 CFileStore* CClientProxy::CreateStoreL(const TDesC& aName,TUint aFileMode)
253 // To make the code clearer - called within a trap frame that shouldn't leave anything
257 CFileStore* store = CDirectFileStore::CreateLC(iFsSession, aName, aFileMode);
258 CleanupStack::Pop(store);
262 void CClientProxy::SaveTasksToFileL(const CArrayPtr<CScheduledTask>& aTasks, const TDesC& aFileName)
264 LOGSTRING("CClientProxy::SaveTasksToFileL - start");
266 // Create the file store
267 LOGSTRING("CClientProxy::SaveTasksToFileL - creating store");
268 CFileStore* store = CreateStoreL(aFileName, EFileWrite);
269 CleanupStack::PushL(store);
271 // Save the actual tasks to the store
272 LOGSTRING("CClientProxy::SaveTasksToFileL - saving tasks");
273 SaveTasksL(*store, aTasks);
274 CleanupStack::PopAndDestroy(store);
276 LOGSTRING("CClientProxy::SaveTasksToFileL - end");
279 void CClientProxy::SaveTasksL(CFileStore& aStore, const CArrayPtr<CScheduledTask>& aTasks)
281 LOGSTRING("CClientProxy::SaveTasksL - start");
282 aStore.SetTypeL(KDirectFileStoreLayoutUid);
285 RStoreWriteStream outstream;
286 TStreamId id = outstream.CreateLC(aStore);
287 const TInt count = aTasks.Count();
288 LOGSTRING2("CClientProxy::SaveTasksL - saving %d tasks", count);
289 outstream.WriteInt32L(count);
290 for (TInt i=0;i<count;i++)
292 CScheduledTask* task = aTasks.At(i);
293 task->ExternalizeL(outstream);
296 CleanupStack::PopAndDestroy(); // outstream
300 LOGSTRING("CClientProxy::SaveTasksL - end");
303 void CClientProxy::RemoveDueTasks()
305 LOGSTRING("CClientProxy::RemoveDueTasks - start");
307 TDblQueIter<CScheduledTask> taskIter(iTasks);
308 taskIter.SetToFirst();
309 CScheduledTask* task;
311 while ((task=taskIter++)!=NULL)
315 LOGSTRING3("CClientProxy::RemoveDueTasks - found due task %S, %d", &task->Info().iName, task->Info().iTaskId);
317 if (!task->Info().iRepeat)
319 LOGSTRING("CClientProxy::RemoveDueTasks - task has no repeats left - it's being removed");
324 LOGSTRING("CClientProxy::RemoveDueTasks - task still has some repeats, setting as 'no longer due'");
325 task->SetDue(EFalse);
329 iReadyToExecute = EFalse;
330 LOGSTRING("CClientProxy::RemoveDueTasks - end");
333 void CClientProxy::TransferTasks(CClientProxy& aTargetClient)
335 TDblQueIter<CScheduledTask> taskIter(iTasks);
336 taskIter.SetToFirst();
337 CScheduledTask* task;
338 while ((task=taskIter++)!=NULL)
341 aTargetClient.AddTask(*task);
345 void CClientProxy::InternalizeL(RReadStream& aReadStream)
347 LOGSTRING("CClientProxy::InternalizeL - start");
349 HBufC* fileName = HBufC::NewL(aReadStream, KMaxFileName);
351 iFileName = fileName;
353 iPriLink.iPriority = aReadStream.ReadInt32L();
355 const TInt count = aReadStream.ReadInt32L();
356 for(TInt i=0; i<count; i++)
358 CScheduledTask* task = CScheduledTask::NewLC(aReadStream);
360 CleanupStack::Pop(task);
363 LOGSTRING("CClientProxy::InternalizeL - end");
366 void CClientProxy::ExternalizeL(RWriteStream& aWriteStream) const
368 LOGSTRING("CClientProxy::ExternalizeL - start");
370 aWriteStream << *iFileName;
371 aWriteStream.WriteInt32L(iPriLink.iPriority);
373 TDblQueIter<CScheduledTask> taskIter(const_cast<CClientProxy*>(this)->iTasks);
374 taskIter.SetToFirst();
375 CScheduledTask* task;
379 while ((task=taskIter++)!=NULL)
387 // Store leading count
388 aWriteStream.WriteInt32L(count);
391 taskIter.SetToFirst();
392 while ((task=taskIter++)!=NULL)
396 aWriteStream << *task;
400 LOGSTRING("CClientProxy::ExternalizeL - end");
404 TDblQueIter<CScheduledTask> CClientProxy::TaskIterator()
406 return TDblQueIter<CScheduledTask>(iTasks);