os/mm/devsound/hwdevapi/inc/mmfhwdevice.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef __MMF_HW_DEVICE_H__
sl@0
    21
#define __MMF_HW_DEVICE_H__
sl@0
    22
sl@0
    23
#include <e32base.h>
sl@0
    24
#include <ecom/implementationinformation.h>
sl@0
    25
#include <mmf/common/mmfutilities.h> //TFourCC
sl@0
    26
#include <mmf/server/mmfhwdevicecmds.h>
sl@0
    27
#include <mmf/server/taskconfig.h>
sl@0
    28
sl@0
    29
/**
sl@0
    30
@publishedPartner
sl@0
    31
@released
sl@0
    32
sl@0
    33
The connection type defines what the stream will connect to,
sl@0
    34
either gpp, dsp node, or dsp device.
sl@0
    35
*/
sl@0
    36
typedef enum TConnectionType_tag
sl@0
    37
	{
sl@0
    38
	/** Gpp
sl@0
    39
	*/
sl@0
    40
    EConnectionGpp,
sl@0
    41
    /** dsp node
sl@0
    42
	*/
sl@0
    43
    EConnectionTask,
sl@0
    44
    /** dsp device
sl@0
    45
	*/
sl@0
    46
    EConnectionDevice
sl@0
    47
	} TConnectionType ;
sl@0
    48
sl@0
    49
/**
sl@0
    50
@publishedPartner
sl@0
    51
@released
sl@0
    52
sl@0
    53
Connection Type
sl@0
    54
*/
sl@0
    55
typedef struct TStreamConnection_tag
sl@0
    56
	{
sl@0
    57
	/** connection id
sl@0
    58
	*/
sl@0
    59
    TInt               iId ;
sl@0
    60
    /** connection type
sl@0
    61
    */
sl@0
    62
    TConnectionType    iType ;
sl@0
    63
	} TStreamConnection;
sl@0
    64
sl@0
    65
const TUint KMaxDeviceNameLength = 128;
sl@0
    66
sl@0
    67
enum TSamplingFreq { ESampFreq8k, ESampFreq11025k, ESampFreq16k, ESampFreq2205k, ESampFreq32k, ESampFreq441k, ESampFreq48k, ESampFreq12k, ESampFreq24k, ESampFreq64k};
sl@0
    68
sl@0
    69
/**
sl@0
    70
@publishedPartner
sl@0
    71
@released
sl@0
    72
sl@0
    73
Type class for stream connection parameters.
sl@0
    74
This structure defines the connection parameters that are required to
sl@0
    75
be filled in by the HwDevice observer.  The connection type defines
sl@0
    76
what the stream will connect to, either gpp, dsp node, or dsp device.
sl@0
    77
*/
sl@0
    78
class TConnection
sl@0
    79
	{
sl@0
    80
	public:
sl@0
    81
	/** Connection type.
sl@0
    82
	*/
sl@0
    83
    TStreamConnection           iConnection;
sl@0
    84
	/** Name of the device if needed.
sl@0
    85
	*/
sl@0
    86
    TBuf8<KMaxDeviceNameLength> iDeviceName;
sl@0
    87
	};
sl@0
    88
sl@0
    89
// Forward reference
sl@0
    90
class MMMFHwDeviceObserver;
sl@0
    91
sl@0
    92
/**
sl@0
    93
@publishedPartner
sl@0
    94
@released
sl@0
    95
sl@0
    96
Type class for Hardware initialization parameters.
sl@0
    97
The implementation specific initialization attributes are passed in this
sl@0
    98
structure. Elements common to all HwDevices are defined here. These are
sl@0
    99
the pointer to the observer and stream connection identification for the
sl@0
   100
HwDevice.
sl@0
   101
sl@0
   102
These stream connections are defined as follows:
sl@0
   103
- SrcStream is the source data stream to the HwDevice for a decoder/player.
sl@0
   104
- OutStream is the counterpart stream of data out of the HwDevice of
sl@0
   105
processed source data.
sl@0
   106
- InStream is the input stream of data to the HwDevice for an
sl@0
   107
encoder/recorder. 
sl@0
   108
- DestStream is the destination data stream of
sl@0
   109
this InStream after it has been processed.
sl@0
   110
sl@0
   111
The last element is a pointer to a buffer of the rest of the initialization
sl@0
   112
data for the HwDevice. This data will vary for different HwDevices.
sl@0
   113
However, the first element is always the number of internal connections (TUint8)
sl@0
   114
required by the HwDevice. Following this, is an element (TUint8) for each of
sl@0
   115
the required connection ID's. The elements following this are only known by
sl@0
   116
the HwDevice.
sl@0
   117
*/
sl@0
   118
class THwDeviceInitParams
sl@0
   119
	{
sl@0
   120
	public:
sl@0
   121
		THwDeviceInitParams() : iHwDeviceInitArgsPtr(0,0){};
sl@0
   122
		/** Pointer to an observer.
sl@0
   123
		*/
sl@0
   124
		MMMFHwDeviceObserver* iHwDeviceObserver;
sl@0
   125
		/** Source stream attributes.
sl@0
   126
		*/
sl@0
   127
		TConnection           iSrcStream;
sl@0
   128
		/** Destination stream attributes.
sl@0
   129
		*/
sl@0
   130
		TConnection           iDestStream;
sl@0
   131
		/** Input stream attributes.
sl@0
   132
		*/
sl@0
   133
		TConnection           iInStream;
sl@0
   134
		/** Output stream attributes.
sl@0
   135
		*/
sl@0
   136
		TConnection           iOutStream;
sl@0
   137
		/** Pointer to a buffer.
sl@0
   138
		*/
sl@0
   139
		TPtr8                 iHwDeviceInitArgsPtr;
sl@0
   140
	};
sl@0
   141
sl@0
   142
sl@0
   143
/**
sl@0
   144
@publishedPartner
sl@0
   145
@released
sl@0
   146
sl@0
   147
The observer class interface for a hardware device listener class.
sl@0
   148
sl@0
   149
MMMFHwDeviceObserver provides a generic interface which should be implemented
sl@0
   150
by the classes that are interested in receiving events from the CMMFHwDevice
sl@0
   151
implementation class.
sl@0
   152
*/
sl@0
   153
class MMMFHwDeviceObserver
sl@0
   154
	{
sl@0
   155
public:
sl@0
   156
sl@0
   157
	/**
sl@0
   158
	Handles CMMFHwDevice object’s data request event.
sl@0
   159
sl@0
   160
	This function is called by the CMMFHwDevice implementation class when it
sl@0
   161
	needs data for decoding.
sl@0
   162
sl@0
   163
	@param  aHwDataBuffer
sl@0
   164
	        The buffer to fill the data.
sl@0
   165
sl@0
   166
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   167
	        another of the system-wide error codes.
sl@0
   168
	*/
sl@0
   169
	virtual TInt FillThisHwBuffer(CMMFBuffer& aHwDataBuffer) = 0;
sl@0
   170
sl@0
   171
	/**
sl@0
   172
	Handles CMMFHwDevice object’s data request event.
sl@0
   173
	
sl@0
   174
	This function is called by the CMMFHwDevice implementation class when it
sl@0
   175
	fills encoded data into a buffer.
sl@0
   176
sl@0
   177
	@param  aHwDataBuffer
sl@0
   178
	        The buffer with encoded data.
sl@0
   179
sl@0
   180
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   181
	        another of the system-wide error codes.
sl@0
   182
	*/
sl@0
   183
	virtual TInt EmptyThisHwBuffer(CMMFBuffer& aHwDataBuffer) = 0;
sl@0
   184
sl@0
   185
	/**
sl@0
   186
	Handles the CMMFHwDevice object’s message event.
sl@0
   187
sl@0
   188
	This function is called by the CMMFHwDevice implementation class when a
sl@0
   189
	message is generated and passed back to the observer.
sl@0
   190
sl@0
   191
	@param  aMessageType
sl@0
   192
	        The type of message. Defines the contents of aMsg.
sl@0
   193
	@param  aMsg
sl@0
   194
	        The message packed in a descriptor.
sl@0
   195
sl@0
   196
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   197
	        another of the system-wide error codes.
sl@0
   198
	*/
sl@0
   199
	virtual TInt MsgFromHwDevice(TUid aMessageType, const TDesC8& aMsg)=0;
sl@0
   200
sl@0
   201
	/**
sl@0
   202
	Called by a CMMFHwDevice derived class when it stops a decoding/encoding task.
sl@0
   203
	*/
sl@0
   204
	virtual void Stopped() = 0;
sl@0
   205
sl@0
   206
	/**
sl@0
   207
	Called by a CMMFHwDevice derived class when it stops a decoding/encoding task.
sl@0
   208
	*/
sl@0
   209
	virtual void Error(TInt aError=KErrNone) = 0;
sl@0
   210
	};
sl@0
   211
sl@0
   212
/*
sl@0
   213
 *
sl@0
   214
 *	KMmfUidPluginInterfaceHwDevice
sl@0
   215
 *
sl@0
   216
 *	This UID is the INTERFACE_UID for CMMFHwDevice.  It is used to search for hardware device plugins in plugin DLLs.
sl@0
   217
 *	All hardware device plugin DLLs must include interface_uid = KMmfUidPluginInterfaceHwDevice in their .rss files.
sl@0
   218
 *
sl@0
   219
 */
sl@0
   220
sl@0
   221
/**
sl@0
   222
@publishedPartner
sl@0
   223
@released
sl@0
   224
sl@0
   225
ECom plugin class for a hardware device that decodes (plays) source data in a certain
sl@0
   226
FourCC coding type to another FourCC coding type or encodes (records) data from a certain
sl@0
   227
FourCC coding type to a another FourCC coding type.
sl@0
   228
sl@0
   229
The hardware device can be instantiated in 3 different ways:
sl@0
   230
sl@0
   231
1.	NewL(const TFourCC& aSrcDatatype, const TFourCC& aDstDataType)
sl@0
   232
sl@0
   233
This instantiate a hardware device that can encode or decode the aSrcDatatype to a aDstDataType.
sl@0
   234
sl@0
   235
2.	NewL(const TFourCC& aSrcDatatype, const TFourCC& aDstDataType, const TDesC& aPreferredSupplier)
sl@0
   236
sl@0
   237
This is similar to the above but is used where there may be multiple hardware devices that
sl@0
   238
perform the same conversion. Third party developers may use their own
sl@0
   239
hardware device implementations and can ensure the controller uses their implementation by setting
sl@0
   240
the preferred supplier to themselves.
sl@0
   241
sl@0
   242
3.	NewL(TUid aUid)
sl@0
   243
sl@0
   244
This is used to explicitly instantiate a hardware device where the UID is known.
sl@0
   245
sl@0
   246
4.	NewL(TFileName aFileName)
sl@0
   247
sl@0
   248
This is used to create an instance of a HwDevice implementation by loading the library
sl@0
   249
sl@0
   250
CMMFHwDevice provides a generic interface that every Hardware Device that decodes and/or encodes has to implement.
sl@0
   251
Based on parameters specified in Start, the device implementation will start decoding or encoding.
sl@0
   252
The source and destination of the decoding/encoding operations should be set up before starting the task by sending
sl@0
   253
THwDeviceInitParams to the Init() function.
sl@0
   254
*/
sl@0
   255
class CMMFHwDevice  : public CBase
sl@0
   256
	{
sl@0
   257
public:
sl@0
   258
	static CMMFHwDevice* NewL(const TFourCC& aSrcDatatype, const TFourCC& aDstDataType);
sl@0
   259
	static CMMFHwDevice* NewL(const TFourCC& aSrcDatatype, const TFourCC& aDstDataType, const TDesC& aPreferredSupplier);
sl@0
   260
	inline static CMMFHwDevice* NewL(TUid aUid);
sl@0
   261
	static CMMFHwDevice* NewL(TFileName aFileName);
sl@0
   262
sl@0
   263
	/**
sl@0
   264
	Starts Encoding or Decoding task(s) based on the parameter specified.
sl@0
   265
sl@0
   266
	@param  aFuncCmd
sl@0
   267
	        The device function specifying the requested service i.e. decode or encode.
sl@0
   268
	@param  aFlowCmd
sl@0
   269
	        The device flow directions for the requested service.
sl@0
   270
sl@0
   271
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   272
	        another of the system-wide error codes.
sl@0
   273
	*/
sl@0
   274
	virtual TInt Start(TDeviceFunc aFuncCmd, TDeviceFlow aFlowCmd) = 0;
sl@0
   275
sl@0
   276
	/**
sl@0
   277
	Stops the current on-going task.
sl@0
   278
sl@0
   279
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   280
	        another of the system-wide error codes.
sl@0
   281
	*/
sl@0
   282
	virtual TInt Stop() = 0;
sl@0
   283
sl@0
   284
	/**
sl@0
   285
	Temporarily suspends the current task of decoding or encoding.
sl@0
   286
sl@0
   287
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   288
	        another of the system-wide error codes.
sl@0
   289
	*/
sl@0
   290
	virtual TInt Pause() = 0;
sl@0
   291
sl@0
   292
	/**
sl@0
   293
	Initializes the hardware device tasks.
sl@0
   294
sl@0
   295
	@param  aDevInfo
sl@0
   296
	        The device initialization parameters.
sl@0
   297
sl@0
   298
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   299
	        another of the system-wide error codes.
sl@0
   300
	*/
sl@0
   301
	virtual TInt Init(THwDeviceInitParams& aDevInfo) = 0;
sl@0
   302
sl@0
   303
	/**
sl@0
   304
	Retrieves a custom interface to the device.
sl@0
   305
sl@0
   306
	@param  aInterfaceId
sl@0
   307
	        The interface UID, defined with the custom interface.
sl@0
   308
sl@0
   309
	@return A pointer to the interface implementation, or NULL if the device does not
sl@0
   310
	        implement the interface requested. The return value must be cast to the
sl@0
   311
	        correct type by the user.
sl@0
   312
	*/
sl@0
   313
	virtual TAny* CustomInterface(TUid aInterfaceId) = 0;
sl@0
   314
sl@0
   315
	/**
sl@0
   316
	Call this function to notify hardware device implementation that
sl@0
   317
	data is available in aFillBufferPtr for decoding.
sl@0
   318
sl@0
   319
	@param  aFillBufferPtr
sl@0
   320
	        The data buffer filled by the observer.
sl@0
   321
sl@0
   322
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   323
	        another of the system-wide error codes.
sl@0
   324
	*/
sl@0
   325
	virtual TInt ThisHwBufferFilled(CMMFBuffer& aFillBufferPtr) = 0;
sl@0
   326
sl@0
   327
	/**
sl@0
   328
	Call this function to notify hardware device implementation that
sl@0
   329
	data in aEmptyBufferPtr from encoding is processed.
sl@0
   330
sl@0
   331
	@param  aEmptyBufferPtr
sl@0
   332
	        The data buffer processed by the observer.
sl@0
   333
sl@0
   334
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   335
	        another of the system-wide error codes.
sl@0
   336
	*/
sl@0
   337
	virtual TInt ThisHwBufferEmptied(CMMFBuffer& aEmptyBufferPtr) = 0;
sl@0
   338
sl@0
   339
	/**
sl@0
   340
    Used to configure the sample rate and stereo mode of a CMMFHwDevice plugin.
sl@0
   341
sl@0
   342
	The configuration of HwDevices is device specific and is not used in any of the reference
sl@0
   343
	devices that return KErrNotSupported.
sl@0
   344
sl@0
   345
	@param  aConfig
sl@0
   346
	        The device configuration.
sl@0
   347
	*/
sl@0
   348
	virtual TInt SetConfig(TTaskConfig& aConfig) = 0;
sl@0
   349
sl@0
   350
	/**
sl@0
   351
	Call this function to stop and then delete a codec. This is used to allow resources to be freed 
sl@0
   352
	when using a DSP or similar hardware.
sl@0
   353
sl@0
   354
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   355
	        another of the system-wide error codes.
sl@0
   356
	*/
sl@0
   357
	virtual TInt StopAndDeleteCodec() = 0;
sl@0
   358
sl@0
   359
	/**
sl@0
   360
	Call this function to delete a codec. 
sl@0
   361
sl@0
   362
	This is used to allow resources to be freed when using a DSP or similar hardware.
sl@0
   363
sl@0
   364
	@return An error code indicating if the function call was successful. KErrNone on success, otherwise
sl@0
   365
	        another of the system-wide error codes.
sl@0
   366
	*/
sl@0
   367
	virtual TInt DeleteCodec() = 0;
sl@0
   368
sl@0
   369
	/**
sl@0
   370
	Destructor.
sl@0
   371
sl@0
   372
	The destructor is called by ECom framework allowing derived classes
sl@0
   373
	to clean up the implementation specific resources.
sl@0
   374
	*/
sl@0
   375
	inline virtual ~CMMFHwDevice();
sl@0
   376
sl@0
   377
private:
sl@0
   378
	static void SelectByPreference( RImplInfoPtrArray& aPlugInArray, const TDesC& aPreferredSupplier ) ;
sl@0
   379
sl@0
   380
protected:
sl@0
   381
	/**
sl@0
   382
	A pointer to the hardware device observer.
sl@0
   383
	*/
sl@0
   384
	MMMFHwDeviceObserver* iHwDeviceObserver;
sl@0
   385
sl@0
   386
//Attributes
sl@0
   387
private:
sl@0
   388
	TUid iDtor_ID_Key;
sl@0
   389
	};
sl@0
   390
	
sl@0
   391
#include <mmf/server/mmfhwdevice.inl>
sl@0
   392
sl@0
   393
#endif
sl@0
   394