os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/cmmfdevsoundcifileblocklength.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2006-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
//
sl@0
    15
sl@0
    16
#ifndef CMMFDEVSOUNDCIFILEBLOCKLENGTH_H
sl@0
    17
#define CMMFDEVSOUNDCIFILEBLOCKLENGTH_H
sl@0
    18
sl@0
    19
#include <e32base.h>
sl@0
    20
#include <mmf/common/mmfipc.h>
sl@0
    21
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
    22
#include <mmf/common/mmfipcserver.h>
sl@0
    23
#endif
sl@0
    24
#include <mmf/server/mmfdevsoundcustominterface.h>
sl@0
    25
#include <mmf/server/mmfdevsoundcustomcommands.h>
sl@0
    26
#include <mmf/server/devsoundstandardcustominterfaces.h>
sl@0
    27
sl@0
    28
sl@0
    29
enum TMMFDevSoundCIBlockLengthCommands
sl@0
    30
	{
sl@0
    31
	EMMFDevSoundCIBlockLengthSetFileBlockLength = 0
sl@0
    32
	};
sl@0
    33
sl@0
    34
/**
sl@0
    35
 * CMMFDevSoundCIFileBlockLengthMux
sl@0
    36
 *
sl@0
    37
 * implementation of the FileBlockLength custom interface pair
sl@0
    38
 */
sl@0
    39
class CMMFDevSoundCIFileBlockLengthMux : public CBase,
sl@0
    40
			      	 			 public MMMFDevSoundCustomInterfaceMuxPlugin,
sl@0
    41
			      	 			 public MMMFDevSoundCustomInterfaceFileBlockLength
sl@0
    42
	{
sl@0
    43
public:
sl@0
    44
	/**
sl@0
    45
	Attempt to open the interface.
sl@0
    46
	@param aInterfaceId
sl@0
    47
		   The UID of the interface to open.
sl@0
    48
	@return one of the system wide error codes
sl@0
    49
	*/
sl@0
    50
	virtual TInt OpenInterface(TUid aInterfaceId);
sl@0
    51
sl@0
    52
	/**
sl@0
    53
	Equivalent to destructor.  Called to destroy plugin.
sl@0
    54
	*/
sl@0
    55
	virtual void Release();
sl@0
    56
	/**
sl@0
    57
	Pass destructor key.
sl@0
    58
	Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
sl@0
    59
	@param aDestructorKey
sl@0
    60
	       The Uid returned by REComSession::CreateImplementationL() or similar
sl@0
    61
	*/
sl@0
    62
	virtual void PassDestructorKey(TUid aDestructorKey);
sl@0
    63
	
sl@0
    64
	/**
sl@0
    65
	Complete construction.
sl@0
    66
	Pass additional values from the construction phase, used subsequently by the plugin.
sl@0
    67
	@param aCustomUtility
sl@0
    68
	       The custom interface utility used by the plugin to communicate with the remote
sl@0
    69
		   server side DeMux plugin
sl@0
    70
	*/
sl@0
    71
	virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
sl@0
    72
sl@0
    73
	/** 
sl@0
    74
	Return the custom interface
sl@0
    75
	@param aInterfaceId
sl@0
    76
		   The UID of the required custom interface
sl@0
    77
	@return the custom interface supported by this plugin
sl@0
    78
	*/
sl@0
    79
	virtual TAny* CustomInterface(TUid aInterfaceId);
sl@0
    80
sl@0
    81
	/**
sl@0
    82
	Instantiate a CMMFDevSoundCIFileBlockLengthMux class
sl@0
    83
	@return the pointer to the new class, cast to the Mux plugin mixin
sl@0
    84
	*/
sl@0
    85
	static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
sl@0
    86
sl@0
    87
protected:
sl@0
    88
	// from MMMFDevSoundCustomInterfaceFileBlockLength
sl@0
    89
	virtual void SetFileBlockLength(TUint aBlockAlign);
sl@0
    90
sl@0
    91
	CMMFDevSoundCIFileBlockLengthMux();
sl@0
    92
	~CMMFDevSoundCIFileBlockLengthMux();
sl@0
    93
sl@0
    94
protected:
sl@0
    95
	TUid iKey;
sl@0
    96
	TInt iRemoteHandle;
sl@0
    97
	MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
sl@0
    98
	};
sl@0
    99
sl@0
   100
sl@0
   101
/**
sl@0
   102
 * DeMux side of pair
sl@0
   103
 */
sl@0
   104
sl@0
   105
class CMMFDevSoundCIFileBlockLengthDeMux : public CBase,
sl@0
   106
			      	   			   public MMMFDevSoundCustomInterfaceDeMuxPlugin
sl@0
   107
	{
sl@0
   108
public:
sl@0
   109
	/**
sl@0
   110
	Instantiate a CMMFDevSoundCIFileBlockLengthDeMux class
sl@0
   111
	@return a pointer to the new class cast to the DeMux plugin mixin
sl@0
   112
	*/
sl@0
   113
	static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
sl@0
   114
		
sl@0
   115
	/**
sl@0
   116
	Attempt to open the interface.
sl@0
   117
	@param aInterfaceId
sl@0
   118
		   The UID of the interface to open.
sl@0
   119
	@return a handle to the remote plugin
sl@0
   120
	*/
sl@0
   121
	virtual TInt OpenInterface(TUid aInterfaceId);
sl@0
   122
sl@0
   123
	/**
sl@0
   124
	Equivalent to destructor.  Called to destroy plugin.
sl@0
   125
	*/
sl@0
   126
	virtual void Release();
sl@0
   127
	/**
sl@0
   128
	Pass destructor key.
sl@0
   129
	Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
sl@0
   130
	@param aDestructorKey
sl@0
   131
	       The Uid returned by REComSession::CreateImplementationL() or similar
sl@0
   132
	*/
sl@0
   133
	virtual void PassDestructorKey(TUid aDestructorKey);
sl@0
   134
	
sl@0
   135
	/**
sl@0
   136
	Set the target of the custom interface call
sl@0
   137
	@param aTarget
sl@0
   138
	       The DevSound to call the custom interface on.
sl@0
   139
	*/
sl@0
   140
	virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
sl@0
   141
	
sl@0
   142
	/**
sl@0
   143
	Complete construction.
sl@0
   144
	@param aUtility
sl@0
   145
	       The DeMux utility to use
sl@0
   146
	*/
sl@0
   147
	virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
sl@0
   148
sl@0
   149
	/**
sl@0
   150
	Refresh the current custom interface connections
sl@0
   151
	*/
sl@0
   152
	virtual void RefreshL();
sl@0
   153
sl@0
   154
	// from MMMFDeMuxInterface
sl@0
   155
	/**
sl@0
   156
	Open the slave
sl@0
   157
	@param aInterface
sl@0
   158
		   The UID of the requested interface
sl@0
   159
	@param aPackageBuf
sl@0
   160
		   A package of data that can be supplied for initialisation
sl@0
   161
	@return the result of the operation
sl@0
   162
	 */
sl@0
   163
	virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
sl@0
   164
sl@0
   165
	/** 
sl@0
   166
	Close the slave
sl@0
   167
	@param aHandle
sl@0
   168
		   The handle of the slave plugin
sl@0
   169
	 */
sl@0
   170
	virtual void DoCloseSlaveL(TInt aHandle);
sl@0
   171
sl@0
   172
	// original RMessage is supplied so that remote demux plugin can extract necessary details
sl@0
   173
	// using DeMux utility
sl@0
   174
sl@0
   175
	/**
sl@0
   176
	Relay the synchronous custom command onto the slave
sl@0
   177
	@param aMessage
sl@0
   178
		   The IPC message to be sent to the slave
sl@0
   179
	@return the result of the operation
sl@0
   180
	 */
sl@0
   181
	virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
sl@0
   182
sl@0
   183
	/**
sl@0
   184
	Relay the synchronous custom command onto the slave and obtain a result
sl@0
   185
	@param aMessage
sl@0
   186
		   The IPC message to be sent to the slave
sl@0
   187
	@return the result of the operation
sl@0
   188
	 */
sl@0
   189
	virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
sl@0
   190
sl@0
   191
	/**
sl@0
   192
	Relay an asynchronous command onto the slave
sl@0
   193
	@param aMessage
sl@0
   194
		   The IPC message to be sent to the slave
sl@0
   195
	 */
sl@0
   196
	virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
sl@0
   197
sl@0
   198
	/**
sl@0
   199
	Relay an asynchronous command onto the slave and obtain a result
sl@0
   200
	@param aMessage
sl@0
   201
		   The IPC message to be sent to the slave@param aMessage
sl@0
   202
	 */
sl@0
   203
	virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
sl@0
   204
 
sl@0
   205
protected:
sl@0
   206
	~CMMFDevSoundCIFileBlockLengthDeMux();
sl@0
   207
	CMMFDevSoundCIFileBlockLengthDeMux();
sl@0
   208
sl@0
   209
	// implementation of FileBlockLength custom interface
sl@0
   210
	void DoSetFileBlockLengthL(TUint aBlockAlign);
sl@0
   211
sl@0
   212
protected:
sl@0
   213
	MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
sl@0
   214
	MMMFDevSoundCustomInterfaceTarget* iTarget;
sl@0
   215
	MMMFDevSoundCustomInterfaceFileBlockLength* iFileBlockLengthInterface;
sl@0
   216
	TUid iKey;
sl@0
   217
sl@0
   218
	};
sl@0
   219
sl@0
   220
#endif