os/mm/mmtestenv/mmtestfw/include/SimulProcServer.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmtestenv/mmtestfw/include/SimulProcServer.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,92 @@
     1.4 +// Copyright (c) 2003-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 +//
    1.18 +
    1.19 +#ifndef __SIMULPROCSERVER_H__
    1.20 +#define __SIMULPROCSERVER_H__ 
    1.21 +
    1.22 +#include <e32base.h>
    1.23 +#include <testframework.h>
    1.24 +
    1.25 +enum 
    1.26 +	{
    1.27 +	EMMTSOpenTestStep,
    1.28 +	EMMTSStartProcessing,
    1.29 +	EMMTSStopProcessing,
    1.30 +	EMMTSClose
    1.31 +	};
    1.32 +	
    1.33 +class CSimulProcTestStep 
    1.34 +	{
    1.35 +public:
    1.36 +	virtual void StartProcessing(TRequestStatus& aStatus)= 0;
    1.37 +	virtual TVerdict EndProcessingAndReturnResult(TDes8& aMessage) = 0;		
    1.38 +	IMPORT_C virtual ~CSimulProcTestStep();
    1.39 +protected:
    1.40 +	IMPORT_C CSimulProcTestStep();
    1.41 +	};
    1.42 +	
    1.43 +	
    1.44 +	
    1.45 +class CSimulProcServer : public CServer2
    1.46 +	{
    1.47 +public:
    1.48 +	IMPORT_C virtual CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const;
    1.49 +//	IMPORT_C virtual void ConstructL(const TDesC& aName);
    1.50 +	
    1.51 +	virtual CSimulProcTestStep* CreateTestStep(const TDesC& aStepName) const = 0;
    1.52 +	IMPORT_C virtual void SessionClosed();
    1.53 +	IMPORT_C virtual ~CSimulProcServer();
    1.54 +	
    1.55 +protected:
    1.56 +	IMPORT_C CSimulProcServer();
    1.57 +	
    1.58 +private:
    1.59 +	
    1.60 +	TInt	iSessionCount;
    1.61 +	};
    1.62 +
    1.63 +
    1.64 +
    1.65 +
    1.66 +class CSimulProcSession : public CSession2
    1.67 +	{
    1.68 +public:
    1.69 +	class CActiveCallback : public CActive
    1.70 +		{
    1.71 +	public:
    1.72 +		CActiveCallback(const RMessage2& aMessage);
    1.73 +		
    1.74 +		void RunL();
    1.75 +		
    1.76 +		void DoCancel();
    1.77 +		
    1.78 +		TRequestStatus& ActiveStatus();
    1.79 +		
    1.80 +	private:		
    1.81 +		const RMessage2& iMessage;
    1.82 +		};
    1.83 +		
    1.84 +public:
    1.85 +	IMPORT_C CSimulProcSession();
    1.86 +	IMPORT_C virtual ~CSimulProcSession();
    1.87 +	IMPORT_C virtual void ServiceL(const RMessage2& aMessage);
    1.88 +private:
    1.89 +	CSimulProcTestStep* iTestStep;
    1.90 +	CActiveCallback* iActiveCallback;
    1.91 +	
    1.92 +	};
    1.93 +	
    1.94 +
    1.95 +#endif