uiservicetab/vimpstengine/inc/cvimpstenginerequestmapper.h
author Simon Howkins <simonh@symbian.org>
Mon, 29 Nov 2010 11:18:43 +0000
branchRCL_3
changeset 37 7506649dda4d
parent 0 5e5d6b214f4f
permissions -rw-r--r--
Corrected path to files being exported - not in the same dir as bld.inf

/*
* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "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: implements the request mapper
*
*/

// INCLUDE FILES

#ifndef CVIMPSTENGINEREQUESTMAPPER_H__
#define CVIMPSTENGINEREQUESTMAPPER_H__

#include <e32base.h>
#include <ximpbase.h>
#include "tvimpstenums.h"

// farword declaration
class CVIMPSTEngineRequest;

/**
 *  This class implements the request mapper
 *
 *  @lib vimpstengine.lib
 *  @since S60 5.0
 */
NONSHARABLE_CLASS(CVIMPSTEngineRequestMapper) :public CBase
	{

	public:  // Two-phased constructors and destructor

        
       /**
		* Two-phased constructor.
		*/
		static CVIMPSTEngineRequestMapper* NewL();


       /**
		* Two-phased constructor.
		*/
		static CVIMPSTEngineRequestMapper* NewLC();

		/**
		* destructor
		*/
		virtual ~CVIMPSTEngineRequestMapper();

		/**
		* CreateRequestL  
		* create request and start wait if required 
		* @param aRequestId for request
		* @param aIsWait, wait or not
		* @param aType - Request Type defined in tvimpstenums.h
		* @return pointer to created CVIMPSTEngineRequest
		*/
		CVIMPSTEngineRequest* CreateRequestL(TXIMPRequestId& aRequestId, 
										TBool aIsWait,
										TXimpOperation aType) ;


		/**
		* FindRequestId   
		* find the request id
		* @param aRequestId to find
		* @return the object of found CVIMPSTEngineRequest. If request not found
		*  this return value contains NULL. The ownership is not transferred to the caller
		*/
		CVIMPSTEngineRequest* FindRequestId(const TXIMPRequestId& aRequestId ) ;

		/**
		* RemoveRequestId 
		* Removes the object identified by aRequestId from request array and deletes the handle.
		* Client must call this method every time XIMP operation has finished.
		* If matching object is not found, this function does nothing.
		* @param aRequestId, id to be matched to request handles.
		* @return None
		*/      
		void RemoveRequestId(const TXIMPRequestId& aRequestId) ;

	private:

		/**
		* constructor
		*/
		CVIMPSTEngineRequestMapper();

	private:
		// own , array of CVIMPSTEngineRequest
		RPointerArray< CVIMPSTEngineRequest > iRequestArray;

};

#endif //CVIMPSTENGINEREQUESTMAPPER_H__
// end of file