os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/dspcontrolci.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// Implementation of DSP control custom interface pair
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef DSPCONTROLCI_H
sl@0
    19
#define DSPCONTROLCI_H
sl@0
    20
sl@0
    21
#include <e32base.h>
sl@0
    22
#include <mmf/common/mmfipc.h>
sl@0
    23
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    24
#include <mmf/common/mmfipc.h>
sl@0
    25
#endif
sl@0
    26
#include <mmf/server/mmfdevsoundcustominterface.h>
sl@0
    27
#include <mmf/server/mmfdevsoundcustomcommands.h>
sl@0
    28
#include <mmf/server/devsoundstandardcustominterfaces.h>
sl@0
    29
#include <mmf/plugin/mmfdevsoundcustominterface.hrh>
sl@0
    30
sl@0
    31
/**
sl@0
    32
Enum to represent the method called by this custom interface
sl@0
    33
@internalComponent
sl@0
    34
@prototype
sl@0
    35
@file
sl@0
    36
*/
sl@0
    37
enum TMMFDevSoundCIDspControlCommands
sl@0
    38
	{
sl@0
    39
	EMMFDevSoundCIDspCtrlGetAudioPlaybackInfo,
sl@0
    40
	EMMFDevSoundCIDspCtrlAcceptRecordBuffersInvalidFollowingStop,
sl@0
    41
	EMMFDevSoundCIDspCtrlAcceptPlaybackBuffersInvalidFollowingStop
sl@0
    42
	};
sl@0
    43
sl@0
    44
/**
sl@0
    45
class to hold the paramenters to MmdspcGetAudioPlaybackInfo for message passing
sl@0
    46
@internalComponent
sl@0
    47
@prototype
sl@0
    48
@file
sl@0
    49
*/
sl@0
    50
class TAudioPlaybackInfo 
sl@0
    51
	{
sl@0
    52
public:
sl@0
    53
	TInt64 iSamplesPlayed;
sl@0
    54
	TInt64 iSystemTime;
sl@0
    55
	TUint  iBytesDecoderConsumed;
sl@0
    56
	TUint  iBytesDecoderDecoded;
sl@0
    57
	};
sl@0
    58
sl@0
    59
/**
sl@0
    60
Implementation of the DSP control custom interface Mux
sl@0
    61
@internalComponent
sl@0
    62
@prototype
sl@0
    63
@file
sl@0
    64
*/
sl@0
    65
class CMMFDspControlMux : public CBase,
sl@0
    66
						  public MMMFDevSoundCustomInterfaceMuxPlugin,
sl@0
    67
						  public MMMFDSPControl
sl@0
    68
	{
sl@0
    69
public:
sl@0
    70
sl@0
    71
	// from MMMFDevSoundCustomInterfaceMuxPlugin
sl@0
    72
	/**
sl@0
    73
	Attempt to open the interface.
sl@0
    74
	@param  aInterfaceId
sl@0
    75
		    The UID of the interface to open.
sl@0
    76
	@return one of the system wide error codes
sl@0
    77
	*/
sl@0
    78
	virtual TInt OpenInterface(TUid aInterfaceId);
sl@0
    79
sl@0
    80
	/**
sl@0
    81
	Equivalent to destructor.  Called to destroy plugin.
sl@0
    82
	*/
sl@0
    83
	virtual void Release();
sl@0
    84
sl@0
    85
	/**
sl@0
    86
	Pass destructor key.
sl@0
    87
	Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
sl@0
    88
	@param aDestructorKey
sl@0
    89
		   The Uid returned by REComSession::CreateImplementationL() or similar
sl@0
    90
	*/
sl@0
    91
	virtual void PassDestructorKey(TUid aDestructorKey);
sl@0
    92
sl@0
    93
	/**
sl@0
    94
	Complete construction.
sl@0
    95
	Pass additional values from the construction phase, used subsequently by the plugin.
sl@0
    96
	@param aCustomUtility
sl@0
    97
		   The custom interface utility used by the plugin to communicate with the remote
sl@0
    98
		   server side DeMux plugin
sl@0
    99
	@leave This method may leave with one of the system-wide error codes.
sl@0
   100
	*/
sl@0
   101
	virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
sl@0
   102
sl@0
   103
	/**
sl@0
   104
	Return the custom interface
sl@0
   105
	@param  aInterfaceId
sl@0
   106
		    The UID of the required custom interface
sl@0
   107
	@return the custom interface supported by this plugin
sl@0
   108
	*/
sl@0
   109
	virtual TAny* CustomInterface(TUid aInterfaceId);
sl@0
   110
sl@0
   111
	/**
sl@0
   112
	Instantiate a CI Mux class
sl@0
   113
	@return the pointer to the new class, cast to the Mux plugin mixin
sl@0
   114
	@leave  This method may leave with one of the system-wide error codes.
sl@0
   115
	*/
sl@0
   116
	static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
sl@0
   117
sl@0
   118
	// from MMMFDSPControl
sl@0
   119
	//@see MMMFDSPControl
sl@0
   120
	virtual TInt MmdspcGetAudioPlaybackInfo(TInt64& aSamplesPlayed,
sl@0
   121
											TInt64& aSystemTime,
sl@0
   122
											TUint& aBytesDecoderConsumed,
sl@0
   123
											TUint& aBytesDecoderDecoded);
sl@0
   124
	//@see MMMFDSPControl
sl@0
   125
	virtual TInt MmdspcAcceptRecordBuffersInvalidFollowingStop();
sl@0
   126
	//@see MMMFDSPControl
sl@0
   127
	virtual TInt MmdspcAcceptPlaybackBuffersInvalidFollowingStop();
sl@0
   128
sl@0
   129
protected:
sl@0
   130
	CMMFDspControlMux();
sl@0
   131
	~CMMFDspControlMux();
sl@0
   132
sl@0
   133
protected:
sl@0
   134
	TUid iKey;
sl@0
   135
	TInt iRemoteHandle;
sl@0
   136
	MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
sl@0
   137
	};
sl@0
   138
sl@0
   139
sl@0
   140
/**
sl@0
   141
Implementation of the DSP control custom interface DeMux
sl@0
   142
@internalComponent
sl@0
   143
@prototype
sl@0
   144
@file
sl@0
   145
*/
sl@0
   146
class CMMFDspControlDeMux : public CBase,
sl@0
   147
							public MMMFDevSoundCustomInterfaceDeMuxPlugin
sl@0
   148
	{
sl@0
   149
public:
sl@0
   150
	/**
sl@0
   151
	Instantiate a CMMFDspControlDeMux class
sl@0
   152
	@return a pointer to the new class cast to the DeMux plugin mixin
sl@0
   153
	@leave  This method may leave with one of the system-wide error codes.
sl@0
   154
	*/
sl@0
   155
	static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
sl@0
   156
sl@0
   157
	/**
sl@0
   158
	Attempt to open the interface.
sl@0
   159
	@param  aInterfaceId
sl@0
   160
		    The UID of the interface to open.
sl@0
   161
	@return a handle to the remote plugin
sl@0
   162
	*/
sl@0
   163
	virtual TInt OpenInterface(TUid aInterfaceId);
sl@0
   164
sl@0
   165
	/**
sl@0
   166
	Equivalent to destructor.  Called to destroy plugin.
sl@0
   167
	*/
sl@0
   168
	virtual void Release();
sl@0
   169
sl@0
   170
	/**
sl@0
   171
	Pass destructor key.
sl@0
   172
	Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
sl@0
   173
	@param aDestructorKey
sl@0
   174
		   The Uid returned by REComSession::CreateImplementationL() or similar
sl@0
   175
	*/
sl@0
   176
	virtual void PassDestructorKey(TUid aDestructorKey);
sl@0
   177
sl@0
   178
	/**
sl@0
   179
	Set the target of the custom interface call
sl@0
   180
	@param aTarget
sl@0
   181
		   The DevSound to call the custom interface on.
sl@0
   182
	*/
sl@0
   183
	virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
sl@0
   184
sl@0
   185
	/**
sl@0
   186
	Complete construction.
sl@0
   187
	@param aUtility
sl@0
   188
		   The DeMux utility to use
sl@0
   189
	@leave This method may leave with one of the system-wide error codes.
sl@0
   190
	*/
sl@0
   191
	virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
sl@0
   192
sl@0
   193
	/**
sl@0
   194
	Refresh the current custom interface connections
sl@0
   195
	@leave This method may leave with one of the system-wide error codes.
sl@0
   196
	*/
sl@0
   197
	virtual void RefreshL();
sl@0
   198
sl@0
   199
	// from MMMFDevSoundCustomInterfaceDeMuxPlugin
sl@0
   200
	/**
sl@0
   201
	Open the slave
sl@0
   202
	@param  aInterface
sl@0
   203
		    The UID of the requested interface
sl@0
   204
	@param  aPackageBuf
sl@0
   205
		    A package of data that can be supplied for initialisation
sl@0
   206
	@return the result of the operation
sl@0
   207
	@leave  This method may leave with one of the system-wide error codes.
sl@0
   208
	*/
sl@0
   209
	virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
sl@0
   210
sl@0
   211
	/**
sl@0
   212
	Close the slave
sl@0
   213
	@param aHandle
sl@0
   214
		   The handle of the slave plugin
sl@0
   215
	@leave This method may leave with one of the system-wide error codes.
sl@0
   216
	*/
sl@0
   217
	virtual void DoCloseSlaveL(TInt aHandle);
sl@0
   218
sl@0
   219
	// original RMessage is supplied so that remote DeMux plugin can extract necessary details
sl@0
   220
	// using DeMux utility
sl@0
   221
sl@0
   222
	/**
sl@0
   223
	Relay the synchronous custom command onto the slave
sl@0
   224
	@param  aMessage
sl@0
   225
		    The IPC message to be sent to the slave
sl@0
   226
	@return the result of the operation
sl@0
   227
	@leave  This method may leave with one of the system-wide error codes.
sl@0
   228
	*/
sl@0
   229
	virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
sl@0
   230
sl@0
   231
	/**
sl@0
   232
	Relay the synchronous custom command onto the slave and obtain a result
sl@0
   233
	@param  aMessage
sl@0
   234
		    The IPC message to be sent to the slave
sl@0
   235
	@return the result of the operation
sl@0
   236
	@leave  This method may leave with one of the system-wide error codes.
sl@0
   237
	*/
sl@0
   238
	virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
sl@0
   239
sl@0
   240
	/**
sl@0
   241
	Relay an asynchronous command onto the slave
sl@0
   242
	@param aMessage
sl@0
   243
		   The IPC message to be sent to the slave
sl@0
   244
	@leave This method may leave with one of the system-wide error codes.
sl@0
   245
	*/
sl@0
   246
	virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
sl@0
   247
sl@0
   248
	/**
sl@0
   249
	Relay an asynchronous command onto the slave and obtain a result
sl@0
   250
	@param aMessage
sl@0
   251
		   The IPC message to be sent to the slave@param aMessage
sl@0
   252
	@leave This method may leave with one of the system-wide error codes.
sl@0
   253
	*/
sl@0
   254
	virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
sl@0
   255
sl@0
   256
protected:
sl@0
   257
	~CMMFDspControlDeMux();
sl@0
   258
	CMMFDspControlDeMux();
sl@0
   259
sl@0
   260
	// from mirror MMMFDSPControl method.
sl@0
   261
	TInt DoMmdspcGetAudioPlaybackInfoL(TInt64& aSamplesPlayed, TInt64& aSystemTime, TUint& aB, TUint& aT);
sl@0
   262
	TInt DoMmdspcAcceptRecordBuffersInvalidFollowingStopL();
sl@0
   263
	TInt DoMmdspcAcceptPlaybackBuffersInvalidFollowingStopL(); 
sl@0
   264
sl@0
   265
protected:
sl@0
   266
	MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
sl@0
   267
	MMMFDevSoundCustomInterfaceTarget*		 iTarget;
sl@0
   268
	TUid			iKey;
sl@0
   269
	MMMFDSPControl* iInterfaceDspControl; 
sl@0
   270
	};
sl@0
   271
sl@0
   272
#endif