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.
31 NONSHARABLE_CLASS(CTaskExecutor) : public CActive
34 static CTaskExecutor* NewLC(const TDesC& aErrorMessage,
35 const TDesC& aTaskFileName,
36 const TDesC& aClientFileName,
37 CSchLogManager& aSchLogManager);
41 private: // Internal construct
42 CTaskExecutor(CSchLogManager& aSchLogManager);
44 void ConstructL(const TDesC& aTaskFileName,
45 const TDesC& aClientFileName,
46 const TDesC& aErrorMessage);
48 public: // Kick-off method
51 private: // From CActive
55 private: // Error handling
56 void CheckErrorAndLeaveL(TInt aError);
57 void SaveExecutionErrorToLog(TInt aError);
62 // The log manager in case of errors
63 CSchLogManager& iSchLogManager;
64 // The Log error message
65 HBufC* iLogErrorMessage;
66 // Name of executor program
67 HBufC* iClientFileName;
75 Streaming operators for TSecurityInfo
78 RWriteStream& operator<<(RWriteStream& aWriteStream,
79 const TSecurityInfo& aSecurityInfo);
82 Streaming operators for TSecurityInfo
85 RReadStream& operator>>(RReadStream& aReadStream,
86 TSecurityInfo& aSecurityInfo);