os/ossrv/genericservices/taskscheduler/SCHSVR/SCHEXEC.H
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericservices/taskscheduler/SCHSVR/SCHEXEC.H	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,90 @@
     1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// SCH_EXEC.H
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __SCHEXEC_H__
    1.22 +#define __SCHEXEC_H__
    1.23 +
    1.24 +// System includes
    1.25 +#include <e32base.h>
    1.26 +#include <f32file.h>
    1.27 +
    1.28 +// Classes refereced
    1.29 +class CSchLogManager;
    1.30 +
    1.31 +/** 
    1.32 +@internalComponent
    1.33 +*/
    1.34 +NONSHARABLE_CLASS(CTaskExecutor) : public CActive
    1.35 +	{
    1.36 +public:
    1.37 +	static CTaskExecutor* NewLC(const TDesC& aErrorMessage, 
    1.38 +								const TDesC& aTaskFileName, 
    1.39 +								const TDesC& aClientFileName,
    1.40 +								CSchLogManager& aSchLogManager);
    1.41 +								
    1.42 +	~CTaskExecutor();
    1.43 +
    1.44 +private: // Internal construct
    1.45 +	CTaskExecutor(CSchLogManager& aSchLogManager);
    1.46 +	
    1.47 +	void ConstructL(const TDesC& aTaskFileName, 
    1.48 +					const TDesC& aClientFileName, 
    1.49 +					const TDesC& aErrorMessage);
    1.50 +
    1.51 +public: // Kick-off method
    1.52 +	void ExecuteL();
    1.53 +
    1.54 +private: // From CActive
    1.55 +	void RunL();
    1.56 +	void DoCancel();
    1.57 +
    1.58 +private: // Error handling
    1.59 +	void CheckErrorAndLeaveL(TInt aError);
    1.60 +	void SaveExecutionErrorToLog(TInt aError);
    1.61 +
    1.62 +private:
    1.63 +	RFs iFsSession;
    1.64 +	RFile iTaskFile;
    1.65 +	// The log manager in case of errors
    1.66 +	CSchLogManager& iSchLogManager;
    1.67 +	// The Log error message
    1.68 +	HBufC* iLogErrorMessage;
    1.69 +	// Name of executor program
    1.70 +	HBufC* iClientFileName;
    1.71 +	// Name of task file
    1.72 +	HBufC* iTaskFileName;
    1.73 +
    1.74 +	RProcess iProcess;
    1.75 +	};
    1.76 +	
    1.77 +/**
    1.78 +Streaming operators for TSecurityInfo
    1.79 +@internalComponent
    1.80 +*/	
    1.81 +RWriteStream& operator<<(RWriteStream& aWriteStream, 
    1.82 +						const TSecurityInfo& aSecurityInfo);
    1.83 +
    1.84 +/**
    1.85 +Streaming operators for TSecurityInfo
    1.86 +@internalComponent
    1.87 +*/	
    1.88 +RReadStream& operator>>(RReadStream& aReadStream,
    1.89 +						TSecurityInfo& aSecurityInfo);
    1.90 +	
    1.91 +
    1.92 +
    1.93 +#endif