author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
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 |
// SCH_EXEC.H |
sl@0 | 15 |
// |
sl@0 | 16 |
// |
sl@0 | 17 |
|
sl@0 | 18 |
#ifndef __SCHEXEC_H__ |
sl@0 | 19 |
#define __SCHEXEC_H__ |
sl@0 | 20 |
|
sl@0 | 21 |
// System includes |
sl@0 | 22 |
#include <e32base.h> |
sl@0 | 23 |
#include <f32file.h> |
sl@0 | 24 |
|
sl@0 | 25 |
// Classes refereced |
sl@0 | 26 |
class CSchLogManager; |
sl@0 | 27 |
|
sl@0 | 28 |
/** |
sl@0 | 29 |
@internalComponent |
sl@0 | 30 |
*/ |
sl@0 | 31 |
NONSHARABLE_CLASS(CTaskExecutor) : public CActive |
sl@0 | 32 |
{ |
sl@0 | 33 |
public: |
sl@0 | 34 |
static CTaskExecutor* NewLC(const TDesC& aErrorMessage, |
sl@0 | 35 |
const TDesC& aTaskFileName, |
sl@0 | 36 |
const TDesC& aClientFileName, |
sl@0 | 37 |
CSchLogManager& aSchLogManager); |
sl@0 | 38 |
|
sl@0 | 39 |
~CTaskExecutor(); |
sl@0 | 40 |
|
sl@0 | 41 |
private: // Internal construct |
sl@0 | 42 |
CTaskExecutor(CSchLogManager& aSchLogManager); |
sl@0 | 43 |
|
sl@0 | 44 |
void ConstructL(const TDesC& aTaskFileName, |
sl@0 | 45 |
const TDesC& aClientFileName, |
sl@0 | 46 |
const TDesC& aErrorMessage); |
sl@0 | 47 |
|
sl@0 | 48 |
public: // Kick-off method |
sl@0 | 49 |
void ExecuteL(); |
sl@0 | 50 |
|
sl@0 | 51 |
private: // From CActive |
sl@0 | 52 |
void RunL(); |
sl@0 | 53 |
void DoCancel(); |
sl@0 | 54 |
|
sl@0 | 55 |
private: // Error handling |
sl@0 | 56 |
void CheckErrorAndLeaveL(TInt aError); |
sl@0 | 57 |
void SaveExecutionErrorToLog(TInt aError); |
sl@0 | 58 |
|
sl@0 | 59 |
private: |
sl@0 | 60 |
RFs iFsSession; |
sl@0 | 61 |
RFile iTaskFile; |
sl@0 | 62 |
// The log manager in case of errors |
sl@0 | 63 |
CSchLogManager& iSchLogManager; |
sl@0 | 64 |
// The Log error message |
sl@0 | 65 |
HBufC* iLogErrorMessage; |
sl@0 | 66 |
// Name of executor program |
sl@0 | 67 |
HBufC* iClientFileName; |
sl@0 | 68 |
// Name of task file |
sl@0 | 69 |
HBufC* iTaskFileName; |
sl@0 | 70 |
|
sl@0 | 71 |
RProcess iProcess; |
sl@0 | 72 |
}; |
sl@0 | 73 |
|
sl@0 | 74 |
/** |
sl@0 | 75 |
Streaming operators for TSecurityInfo |
sl@0 | 76 |
@internalComponent |
sl@0 | 77 |
*/ |
sl@0 | 78 |
RWriteStream& operator<<(RWriteStream& aWriteStream, |
sl@0 | 79 |
const TSecurityInfo& aSecurityInfo); |
sl@0 | 80 |
|
sl@0 | 81 |
/** |
sl@0 | 82 |
Streaming operators for TSecurityInfo |
sl@0 | 83 |
@internalComponent |
sl@0 | 84 |
*/ |
sl@0 | 85 |
RReadStream& operator>>(RReadStream& aReadStream, |
sl@0 | 86 |
TSecurityInfo& aSecurityInfo); |
sl@0 | 87 |
|
sl@0 | 88 |
|
sl@0 | 89 |
|
sl@0 | 90 |
#endif |