os/mm/mm_plat/audio_effects_proxy_api/inc/EnvironmentalReverbProxy.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mm_plat/audio_effects_proxy_api/inc/EnvironmentalReverbProxy.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,173 @@
     1.4 +/*
     1.5 +* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:  This is the definition of the Environmental Reverb proxy class.
    1.18 +*
    1.19 +*
    1.20 +*/
    1.21 +
    1.22 +
    1.23 +#ifndef CENVIRONMENTALREVERBPROXY_H
    1.24 +#define CENVIRONMENTALREVERBPROXY_H
    1.25 +
    1.26 +// INCLUDES
    1.27 +
    1.28 +#include <e32base.h>
    1.29 +#include "EnvironmentalReverbMessageTypes.h"
    1.30 +#include <EnvironmentalReverbBase.h>
    1.31 +#include <mmf/common/mmfcontrollerframework.h>
    1.32 +#include <CustomCommandUtility.h>
    1.33 +#include <MEnvironmentalReverbObserver.h>
    1.34 +#include <MAudioEffectObserver.h>
    1.35 +
    1.36 +// FORWARD DECLARATION
    1.37 +class CEnvironmentalReverbEventObserver;
    1.38 +class CRoomLevelProxy;
    1.39 +
    1.40 +// CLASS DECLARATION
    1.41 +
    1.42 +/**
    1.43 +*  Interface class to be implemented by objects that receives callbacks from Environmental Reverb Event Observer.
    1.44 +*
    1.45 +*  @since 3.0
    1.46 +*/
    1.47 +class MEnvironmentalReverbCallback
    1.48 +    {
    1.49 +    public:
    1.50 +
    1.51 +        /**
    1.52 +        * Invoked by the EnvironmentalReverb Event Observer when the EnvironmentalReverb object changes state
    1.53 +        * @since 3.0
    1.54 +        * @param aBuffer Buffer containing the EnvironmentalReverb data
    1.55 +        */
    1.56 +        virtual void EnvironmentalReverbEvent( const TDesC8& aDataPckg ) = 0;
    1.57 +
    1.58 +    };
    1.59 +
    1.60 +/**
    1.61 +*  This is the EnvironmentalReverb effect proxy class responsible for handling framework messages.
    1.62 +*
    1.63 +*  @lib EnvironmentalReverbProxy.lib
    1.64 +*  @since 3.0
    1.65 +*/
    1.66 +
    1.67 +class CEnvironmentalReverbProxy : public CEnvironmentalReverb,
    1.68 +					         	  public MEnvironmentalReverbCallback
    1.69 +	{
    1.70 +	public:		// Constructors and destructor
    1.71 +
    1.72 +	    /**
    1.73 +        *
    1.74 +        * Factory function for creating the EnvironmentalReverb proxy object.
    1.75 +        * @since 3.0
    1.76 +        * @param aMessageHandler reference to message handler
    1.77 +        * @param aCustomCommand reference to custom command utility
    1.78 +        * @return	pointer to a EnvironmentalReverb proxy object
    1.79 +        */
    1.80 +		IMPORT_C static CEnvironmentalReverbProxy* NewL( TMMFMessageDestinationPckg aMessageHandler,
    1.81 +                     						        	 MCustomCommand& aCustomCommand,
    1.82 +                      						        	 CCustomInterfaceUtility* aCustomInterfaceUtility );
    1.83 +		/**
    1.84 +        *
    1.85 +        * Destructor
    1.86 +        */
    1.87 +		virtual ~CEnvironmentalReverbProxy();
    1.88 +
    1.89 +	public: // functions from base class
    1.90 +
    1.91 +		/**
    1.92 +		* From CAudioEffect
    1.93 +        * Apply effect settings
    1.94 +        * @since 3.0
    1.95 +        */
    1.96 +		IMPORT_C virtual void ApplyL();
    1.97 +
    1.98 +		/**
    1.99 +        * Gets unique ID used by Adapation to identify stream specific Reverb
   1.100 +        * @since 3.1
   1.101 +        * @return ID
   1.102 +        */
   1.103 +		virtual TUint32 GetUniqueId() const;
   1.104 +
   1.105 +		/**
   1.106 +        * Add the reference to Room Level object to array
   1.107 +        * @since 3.1
   1.108 +        * @return error/no error
   1.109 +        */
   1.110 +		virtual TInt RoomLevelAttached(CRoomLevelProxy& aProxy);
   1.111 +
   1.112 +
   1.113 +		/**
   1.114 +        * Remove the reference to Room Level object from array
   1.115 +        * @since 3.1
   1.116 +        * @return error/no error
   1.117 +        */
   1.118 +
   1.119 +		virtual TInt RoomLevelDetached(CRoomLevelProxy& aProxy);
   1.120 +
   1.121 +
   1.122 +	public: // functions from MEnvironmentalReverbCallback
   1.123 +
   1.124 +		/**
   1.125 +		* From MEnvironmentalReverbCallback
   1.126 +        * Changes to EnvironmentalReverb data has occured
   1.127 +        * @since 3.0
   1.128 +        * @param aBuffer Buffer containing serialized EnvironmentalReverb data
   1.129 +        */
   1.130 +		void EnvironmentalReverbEvent( const TDesC8& aDataPckg );
   1.131 +
   1.132 +
   1.133 +	private:
   1.134 +		/**
   1.135 +		* Private C++ constructor for this class.
   1.136 +        * @since	3.0
   1.137 +        * @param aMessageHandler reference to message handler
   1.138 +        * @param aCustomCommand reference to custom command utility
   1.139 +        * @return	-
   1.140 +        */
   1.141 +		CEnvironmentalReverbProxy(TMMFMessageDestinationPckg aMessageHandler, MCustomCommand& aCustomCommand,
   1.142 +					         	  CCustomInterfaceUtility* aCustomInterfaceUtility);
   1.143 +
   1.144 +		/**
   1.145 +		* Second phase constructor for this class.
   1.146 +        * @since	3.0
   1.147 +        * @return -
   1.148 +        */
   1.149 +		void ConstructL();
   1.150 +
   1.151 +		/**
   1.152 +		* Start the active observer.
   1.153 +        * @since	3.0
   1.154 +		* @param -
   1.155 +        * @return -
   1.156 +        */
   1.157 +        void StartObserver();
   1.158 +
   1.159 +	private:
   1.160 +
   1.161 +		// Pointer to custom command utility
   1.162 +		MCustomCommand* iCustomCommand;
   1.163 +		// Message handler handle
   1.164 +		TMMFMessageDestinationPckg iMessageHandler;
   1.165 +	 	// EnvironmentalReverb Event Observer
   1.166 +		CEnvironmentalReverbEventObserver* iEnvironmentalReverbEventObserver;
   1.167 +		// Pointer to the custom interface utility
   1.168 +    	CCustomInterfaceUtility* iCustomInterfaceUtility;
   1.169 +
   1.170 +        RPointerArray<CRoomLevelProxy> iCRoomLevelProxyList;
   1.171 +
   1.172 +	};
   1.173 +
   1.174 +#endif	// of CENVIRONMENTALREVERBPROXY_H
   1.175 +
   1.176 +// End of File