os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/cmmfdevsoundcibitrate.h
Update contrib.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef CMMFDEVSOUNDCIBITRATE_H
17 #define CMMFDEVSOUNDCIBITRATE_H
20 #include <mmf/common/mmfipc.h>
21 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
22 #include <mmf/common/mmfipcserver.h>
24 #include <mmf/server/mmfdevsoundcustominterface.h>
25 #include <mmf/server/mmfdevsoundcustomcommands.h>
26 #include <mmf/server/devsoundstandardcustominterfaces.h>
34 enum TMMFDevSoundCIBitRateCommands
36 EMMFDevSoundCIBitRateBitRate = 0,
37 EMMFDevSoundCIBitRateSetBitRate,
38 EMMFDevSoundCIBitRateGetSupportedBitRates,
39 EMMFDevSoundCIBitRateGetSupportedBitRatesArray
43 * CMMFDevSoundCIBitRate
45 * implementation of the BitRate custom interface pair
47 class CMMFDevSoundCIBitRateMux : public CBase,
48 public MMMFDevSoundCustomInterfaceMuxPlugin,
49 public MMMFDevSoundCustomInterfaceBitRate
53 Attempt to open the interface.
55 The UID of the interface to open.
56 @return one of the system wide error codes
58 virtual TInt OpenInterface(TUid aInterfaceId);
61 Equivalent to destructor. Called to destroy plugin.
63 virtual void Release();
66 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
68 The Uid returned by REComSession::CreateImplementationL() or similar
70 virtual void PassDestructorKey(TUid aDestructorKey);
73 Complete construction.
74 Pass additional values from the construction phase, used subsequently by the plugin.
76 The custom interface utility used by the plugin to communicate with the remote
77 server side DeMux plugin
79 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
82 Return the custom interface
84 The UID of the required custom interface
85 @return the custom interface supported by this plugin
87 virtual TAny* CustomInterface(TUid aInterfaceId);
90 Instantiate a CMMFDevSoundCIBitRateMux class
91 @return the pointer to the new class, cast to the Mux plugin mixin
93 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
96 // from MMMFDevSoundCustomInterfaceBitRate
97 virtual void GetSupportedBitRatesL(RArray<TInt>& aSupportedBitRates);
98 virtual TInt BitRateL();
99 virtual void SetBitRateL(TInt aBitRate);
101 CMMFDevSoundCIBitRateMux();
102 ~CMMFDevSoundCIBitRateMux();
107 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
115 class CMMFDevSoundCIBitRateDeMux : public CBase,
116 public MMMFDevSoundCustomInterfaceDeMuxPlugin
120 Instantiate a CMMFDevSoundCIBitRateDeMux class
121 @return a pointer to the new class cast to the DeMux plugin mixin
123 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
126 Attempt to open the interface.
128 The UID of the interface to open.
129 @return a handle to the remote plugin
131 virtual TInt OpenInterface(TUid aInterfaceId);
134 Equivalent to destructor. Called to destroy plugin.
136 virtual void Release();
139 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
140 @param aDestructorKey
141 The Uid returned by REComSession::CreateImplementationL() or similar
143 virtual void PassDestructorKey(TUid aDestructorKey);
146 Set the target of the custom interface call
148 The DevSound to call the custom interface on.
150 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
153 Complete construction.
155 The DeMux utility to use
157 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
160 Refresh the current custom interface connections
162 virtual void RefreshL();
164 // from MMMFDeMuxInterface
168 The UID of the requested interface
170 A package of data that can be supplied for initialisation
171 @return the result of the operation
173 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
178 The handle of the slave plugin
180 virtual void DoCloseSlaveL(TInt aHandle);
182 // original RMessage is supplied so that remote demux plugin can extract necessary details
183 // using DeMux utility
186 Relay the synchronous custom command onto the slave
188 The IPC message to be sent to the slave
189 @return the result of the operation
191 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
194 Relay the synchronous custom command onto the slave and obtain a result
196 The IPC message to be sent to the slave
197 @return the result of the operation
199 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
202 Relay an asynchronous command onto the slave
204 The IPC message to be sent to the slave
206 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
209 Relay an asynchronous command onto the slave and obtain a result
211 The IPC message to be sent to the slave@param aMessage
213 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
216 ~CMMFDevSoundCIBitRateDeMux();
217 CMMFDevSoundCIBitRateDeMux();
219 // implementation of bitrate custom interface
220 void DoGetSupportedBitRatesL(RArray<TInt>& aSupportedBitRates);
221 void DoCopyBitRateBufferToClientL(const RMmfIpcMessage& aMessage);
223 void DoSetBitRateL(TInt aBitRate);
226 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
227 MMMFDevSoundCustomInterfaceTarget* iTarget;
228 MMMFDevSoundCustomInterfaceBitRate* iBitRateInterface;
231 // array for bitrates
232 RArray<TInt> iBitRateArray;