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.
21 #include "SchLogger.h"
25 //Delay ensuring this thread is be preempted allowing client cleanup
26 //in case task file cannot be deleted
27 const TInt KClientCleanupDelay = 10000;
29 CTaskExecutor::CTaskExecutor(CSchLogManager& aSchLogManager)
30 : CActive(EPriorityStandard),
31 iSchLogManager(aSchLogManager)
33 CActiveScheduler::Add(this);
37 CTaskExecutor::~CTaskExecutor()
39 LOGSTRING("CTaskExecutor::~CTaskExecutor - start");
43 delete iClientFileName;
45 delete iLogErrorMessage;
46 LOGSTRING("CTaskExecutor::~CTaskExecutor - end");
50 void CTaskExecutor::ConstructL(const TDesC& aTaskFileName,
51 const TDesC& aClientFileName,
52 const TDesC& aErrorMessage)
54 LOGSTRING("CTaskExecutor::ConstructL - start");
56 iTaskFileName = aTaskFileName.AllocL();
57 iClientFileName = aClientFileName.AllocL();
59 // In case there is an error...
60 iLogErrorMessage = aErrorMessage.AllocL();
62 LOGSTRING("CTaskExecutor::ConstructL - end");
66 CTaskExecutor* CTaskExecutor::NewLC(const TDesC& aErrorMessage,
67 const TDesC& aTaskFileName,
68 const TDesC& aClientFileName,
69 CSchLogManager& aSchLogManager)
71 LOGSTRING("CTaskExecutor::NewLC");
72 CTaskExecutor* self = new(ELeave) CTaskExecutor(aSchLogManager);
73 CleanupStack::PushL(self);
74 self->ConstructL(aTaskFileName, aClientFileName, aErrorMessage);
78 void CTaskExecutor::RunL()
80 LOGSTRING3("CTaskExecutor::RunL - task finished running [client: %S, task: %S]", iClientFileName, iTaskFileName);
82 // RunL is called when the process/thread terminates
83 // so that any error conditions can be handled.
84 TInt exitReason = iProcess.ExitReason();
85 LOGSTRING2("CTaskExecutor::RunL - process exit reason was: %d", exitReason);
87 // Close the process/thread
90 // Check for error code
91 if (exitReason != KErrNone)
93 // Submit a log entry to record the error.
94 LOGSTRING2("CTaskExecutor::RunL - recording unclean process exit (%d) in the log engine", exitReason);
96 iSchLogManager.LogError(*iLogErrorMessage,exitReason);
98 iSchLogManager.LogError(exitReason);
101 // Clean up the file. Only delete it here once task process has finished.
102 // If task process never started then file is deleted in CClientProxy code.
103 User::LeaveIfError(iFsSession.Connect());
104 CleanupClosePushL(iFsSession);
106 TInt fileDeleteErr = iFsSession.Delete(*iTaskFileName);
108 // If unable to delete file wait and try again
109 if (fileDeleteErr != KErrNone)
112 //Allow thread to be preempted to allow for cleanup of iProcess
113 User::After(KClientCleanupDelay);
115 fileDeleteErr = iFsSession.Delete(*iTaskFileName);
117 // If still unable to delete file record the fact
118 if (fileDeleteErr != KErrNone)
122 iSchLogManager.LogError(*iLogErrorMessage, fileDeleteErr);
126 iSchLogManager.LogError(fileDeleteErr);
131 //Calls iFsSession::Close() so no need to call explicitly
132 CleanupStack::PopAndDestroy();
134 // Delete outselves since we've finished
135 LOGSTRING("CTaskExecutor::RunL - deleting ourself");
139 void CTaskExecutor::DoCancel()
141 LOGSTRING("CTaskExecutor::DoCancel - start");
142 iProcess.LogonCancel(iStatus);
143 // Delete file and ourselves since we can't do anything else.
144 // We are in a bad state if we reach here but at least make the most of it.
145 LOGSTRING("CTaskExecutor::DoCancel - deleting ourself");
147 //Connect to file session
148 TInt err = iFsSession.Connect();
152 err = iFsSession.Delete(*iTaskFileName);
155 // If unable to delete file record the fact
160 iSchLogManager.LogError(*iLogErrorMessage, err);
164 iSchLogManager.LogError(err);
168 //Close the file session
172 LOGSTRING("CTaskExecutor::DoCancel - end");
175 void CTaskExecutor::ExecuteL()
177 // If this leaves, CClientProxy should handle error....
178 // CTaskScheduler::ExecuteClients() traps the leave and then calls
179 // CClientProxy::FailToExecute() to handle the error.
180 #ifdef __SCHLOGGING__
182 TTime time; time.HomeTime();
183 TDateTime due = time.DateTime();
184 LOGSTRING8("CTaskExecutor::ExecuteL - Executing tasks at: [%02d/%02d/%d] @ %02d:%02d:%02d.%05d", due.Day(), (TInt) due.Month() + 1, due.Year(), due.Hour(), due.Minute(), due.Second(), due.MicroSecond());
188 // Create a new process and pass the name of the task file as the command line argument
189 // (data for the target exe).
190 LOGSTRING("CTaskExecutor::ExecuteL - creating process");
191 TInt err = iProcess.Create(*iClientFileName, KNullDesC);
193 // Will check the error, report the problem and leave (if err<KErrNone)
194 // otherwise does nothing.
195 LOGSTRING("CTaskExecutor::ExecuteL - checking process creation error code");
196 CheckErrorAndLeaveL(err);
198 // connect to new file session to avoid possible security
199 // consequences if lauched process tries to use passed file in
201 User::LeaveIfError(iFsSession.Connect());
202 CleanupClosePushL(iFsSession);
203 User::LeaveIfError(iFsSession.ShareProtected());
205 User::LeaveIfError(iTaskFile.Open(iFsSession, *iTaskFileName, EFileRead));
206 CleanupClosePushL(iTaskFile);
208 // transfer file handle to launched process
209 err = iTaskFile.TransferToProcess(iProcess, KTaskFsHandleIndex, KTaskFileHandleIndex);
211 //Close task file and session handles
212 //Calls iFsSession::Close() and iTaskFile::Close() so no need to call explicitly
213 CleanupStack::PopAndDestroy(2);
215 CheckErrorAndLeaveL(err);
217 // Asynchronous logon: completes when process terminates with process exit code
218 iProcess.Logon(iStatus);
222 LOGSTRING("CTaskExecutor::ExecuteL - end");
226 void CTaskExecutor::CheckErrorAndLeaveL(TInt aError)
228 if (aError < KErrNone)
231 iSchLogManager.LogError(*iLogErrorMessage,aError);
233 iSchLogManager.LogError(aError);