kerneltest/e32test/usbho/t_usbdi/inc/BasicWatcher.h
author Slion
Tue, 08 Dec 2009 08:11:42 +0100
branchanywhere
changeset 19 f6d3d9676ee4
parent 0 a41df078684a
child 253 d37db4dcc88d
permissions -rw-r--r--
Trying to figure out how to implement my WINC like compatibility layer. Going the emulation way is probably not so smart. We should not use the kernel but rather hook native functions in the Exec calls.

#ifndef __BASIC_WATCHER_H
#define __BASIC_WATCHER_H

/*
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
* @file BasicWatcher.h
* @internalComponent
* 
*
*/



#include <e32base.h>
#include <d32usbdi.h>
#include "testdebug.h"

namespace NUnitTesting_USBDI
	{


/**
This class watches for asynchronous completions and calls back
*/
class CBasicWatcher : public CActive
	{
public:
	CBasicWatcher(const TCallBack& aCallBack,TInt aPriority=EPriorityStandard);
	virtual ~CBasicWatcher();
	
	void CompleteNow(TInt aCompletionCode = KErrNone);
	void StartWatching();
	
protected: // From CActive
	void DoCancel();
	void RunL();
	TInt RunError(TInt aError);	

private:
	TCallBack iCallBack;
	TInt iCompletionCode;
	};





/**
This class describes a watcher for resumptions of interfaces
*/
class CInterfaceWatcher : public CActive
	{
public:
	/**
	Constructor, build 
	@param aInterface the usb interface to suspend  
	@param aCallBack the call back object to call once a resumption signal has happened
	*/
	CInterfaceWatcher(RUsbInterface& aInterface,const TCallBack& aCallBack)
	:	CActive(EPriorityUserInput),
		iUsbInterface(aInterface),
		iResumeCallBack(aCallBack),
		iCompletionCode(KErrNone)
		{
		CActiveScheduler::Add(this);
		}

	/**
	Destructor
	*/
	~CInterfaceWatcher()
		{
		Cancel();
		}

	/**
	Suspend the interface and watch for resumtions
	*/
	void SuspendAndWatch()
		{
		iUsbInterface.PermitSuspendAndWaitForResume(iStatus);
		SetActive();
		}

	/**
	Obtains the most recent completion code for the interface resumption
	asynchronous action
	@return the completion error code
	*/
	TInt CompletionCode() const
		{
		return iCompletionCode;
		}

protected: // From CActive

	/**
	*/
	void DoCancel()
		{
		LOG_FUNC
		iUsbInterface.CancelPermitSuspend();
		}

	
	/**
	*/
	void RunL()
		{
		LOG_FUNC
		iCompletionCode = iStatus.Int();
		User::LeaveIfError(iResumeCallBack.CallBack());
		}
	
	/**
	*/
	TInt RunError()
		{
		LOG_FUNC

		return KErrNone;
		}

private:

	/**
	The USB interface resource
	*/
	RUsbInterface& iUsbInterface;

	/**
	*/
	TCallBack iResumeCallBack;

	/**
	*/
	TInt iCompletionCode;
	};


	}
	
#endif