First public contribution.
1 // Copyright (c) 2007-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 SBCENCODERCI_H
17 #define SBCENCODERCI_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>
27 #include <mmf/plugin/mmfdevsoundcustominterface.hrh>
30 Enum to represent the methods called by this custom interface
35 enum TMMFDevSoundCISbcEncoderCommands
37 EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesCount = 0,
38 EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesArray,
39 EMMFDevSoundCISbcEncoderGetSupportedChannelModesCount,
40 EMMFDevSoundCISbcEncoderGetSupportedChannelModesArray,
41 EMMFDevSoundCISbcEncoderGetSupportedSubbandsCount,
42 EMMFDevSoundCISbcEncoderGetSupportedSubbandsArray,
43 EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsCount,
44 EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsArray,
45 EMMFDevSoundCISbcEncoderGetSupportedBlocksCount,
46 EMMFDevSoundCISbcEncoderGetSupportedBlocksArray,
47 EMMFDevSoundCISbcEncoderGetSupportedBitpoolRange,
48 EMMFDevSoundCISbcEncoderSetSamplingFrequency,
49 EMMFDevSoundCISbcEncoderSetChannelMode,
50 EMMFDevSoundCISbcEncoderSetSubbands,
51 EMMFDevSoundCISbcEncoderSetBlocks,
52 EMMFDevSoundCISbcEncoderSetAllocationMethod,
53 EMMFDevSoundCISbcEncoderSetBitpoolSize,
54 EMMFDevSoundCISbcEncoderApplyConfig,
55 EMMFDevSoundCISbcEncoderGetSamplingFrequency,
56 EMMFDevSoundCISbcEncoderGetChannelMode,
57 EMMFDevSoundCISbcEncoderGetSubbands,
58 EMMFDevSoundCISbcEncoderGetBlocks,
59 EMMFDevSoundCISbcEncoderGetAllocationMethod,
60 EMMFDevSoundCISbcEncoderGetBitpoolSize
65 CMMFSbcEncoderMux implementation of the SBC encoder custom interface pair
70 class CMMFSbcEncoderMux : public CBase,
71 public MMMFDevSoundCustomInterfaceMuxPlugin,
72 public MSbcEncoderIntfc
76 // from MMMFDevSoundCustomInterfaceMuxPlugin
78 Attempt to open the interface.
80 The UID of the interface to open.
81 @return One of the system wide error codes
83 virtual TInt OpenInterface(TUid aInterfaceId);
86 Equivalent to destructor. Called to destroy plugin.
88 virtual void Release();
92 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
94 The Uid returned by REComSession::CreateImplementationL() or similar
96 virtual void PassDestructorKey(TUid aDestructorKey);
99 Complete construction.
100 Pass additional values from the construction phase, used subsequently by the plugin.
101 @param aCustomUtility
102 The custom interface utility used by the plugin to communicate with the remote
103 server side DeMux plugin
104 @leave This method may leave with one of the system-wide error codes.
106 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
109 Return the custom interface
111 The UID of the required custom interface
112 @return The custom interface supported by this plugin
114 virtual TAny* CustomInterface(TUid aInterfaceId);
117 Instantiate a CI Mux class
118 @leave This method may leave with one of the system-wide error codes.
119 @return The pointer to the new class, cast to the Mux plugin mixin
121 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
123 // from MSbcEncoderIntfc
125 @see MSbcEncoderIntfc
127 virtual TInt GetSupportedSamplingFrequencies(RArray<TUint>& aSamplingFrequencies);
130 @see MSbcEncoderIntfc
132 virtual TInt GetSupportedChannelModes(RArray<TSbcChannelMode>& aChannelModes);
135 @see MSbcEncoderIntfc
137 virtual TInt GetSupportedNumOfSubbands(RArray<TUint>& aNumOfSubbands);
140 @see MSbcEncoderIntfc
142 virtual TInt GetSupportedAllocationMethods(RArray<TSbcAllocationMethod>& aAllocationMethods);
145 @see MSbcEncoderIntfc
147 virtual TInt GetSupportedNumOfBlocks(RArray<TUint>& aNumOfBlocks);
150 @see MSbcEncoderIntfc
152 virtual TInt GetSupportedBitpoolRange(TUint& aMinSupportedBitpoolSize, TUint& aMaxSupportedBitpoolSize);
155 @see MSbcEncoderIntfc
157 virtual void SetSamplingFrequency(TUint aSamplingFrequency);
160 @see MSbcEncoderIntfc
162 virtual void SetChannelMode(TSbcChannelMode aChannelMode);
165 @see MSbcEncoderIntfc
167 virtual void SetNumOfSubbands(TUint aNumOfSubbands);
170 @see MSbcEncoderIntfc
172 virtual void SetNumOfBlocks(TUint aNumOfBlocks);
175 @see MSbcEncoderIntfc
177 virtual void SetAllocationMethod(TSbcAllocationMethod aAllocationMethod);
180 @see MSbcEncoderIntfc
182 virtual void SetBitpoolSize(TUint aBitpoolSize);
185 @see MSbcEncoderIntfc
187 virtual TInt ApplyConfig();
190 @see MSbcEncoderIntfc
192 virtual TInt GetSamplingFrequency(TUint& aSamplingFrequency);
195 @see MSbcEncoderIntfc
197 virtual TInt GetChannelMode(TSbcChannelMode& aChannelMode);
200 @see MSbcEncoderIntfc
202 virtual TInt GetNumOfSubbands(TUint& aNumOfSubbands);
205 @see MSbcEncoderIntfc
207 virtual TInt GetNumOfBlocks(TUint& aNumOfBlocks);
210 @see MSbcEncoderIntfc
212 virtual TInt GetAllocationMethod(TSbcAllocationMethod& aAllocationMethod);
215 @see MSbcEncoderIntfc
217 virtual TInt GetBitpoolSize(TUint& aBitpoolSize);
221 ~CMMFSbcEncoderMux();
224 void DoGetTUintArrayL(RArray<TUint>& aArray, TInt aCount, TMMFDevSoundCISbcEncoderCommands aCommand);
225 void DoGetChannelModesArrayL(RArray<TSbcChannelMode>& aChannelModes, TInt aCount);
226 void DoGetAllocMethodsArrayL(RArray<TSbcAllocationMethod>& aAllocationMethods, TInt aCount);
227 void DoWriteArrayToClientL(const RMmfIpcMessage& aMessage);
232 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
236 CMMFSbcEncoderDeMux - DeMux side of pair
241 class CMMFSbcEncoderDeMux : public CBase,
242 public MMMFDevSoundCustomInterfaceDeMuxPlugin
246 Instantiate a CMMFSbcEncoderDeMux class
247 @leave This method may leave with one of the system-wide error codes.
248 @return A pointer to the new class cast to the DeMux plugin mixin
250 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
253 Attempt to open the interface.
255 The UID of the interface to open.
256 @return a handle to the remote plugin
258 virtual TInt OpenInterface(TUid aInterfaceId);
261 Equivalent to destructor. Called to destroy plugin.
263 virtual void Release();
267 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
268 @param aDestructorKey
269 The Uid returned by REComSession::CreateImplementationL() or similar
271 virtual void PassDestructorKey(TUid aDestructorKey);
274 Set the target of the custom interface call
276 The DevSound to call the custom interface on.
278 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
281 Complete construction.
283 The DeMux utility to use
284 @leave This method may leave with one of the system-wide error codes.
286 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
289 Refresh the current custom interface connections
290 @leave This method may leave with one of the system-wide error codes.
292 virtual void RefreshL();
294 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
298 The UID of the requested interface
300 A package of data that can be supplied for initialisation
301 @leave This method may leave with one of the system-wide error codes.
302 @return The result of the operation
304 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
309 The handle of the slave plugin
310 @leave This method may leave with one of the system-wide error codes.
312 virtual void DoCloseSlaveL(TInt aHandle);
314 // original RMessage is supplied so that remote demux plugin can extract necessary details
315 // using DeMux utility
318 Relay the synchronous custom command onto the slave
320 The IPC message to be sent to the slave
321 @leave This method may leave with one of the system-wide error codes.
322 @return The result of the operation
324 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
327 Relay the synchronous custom command onto the slave and obtain a result
329 The IPC message to be sent to the slave
330 @leave This method may leave with one of the system-wide error codes.
331 @return The result of the operation
333 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
336 Relay an asynchronous command onto the slave
338 The IPC message to be sent to the slave
339 @leave This method may leave with one of the system-wide error codes.
341 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
344 Relay an asynchronous command onto the slave and obtain a result
346 The IPC message to be sent to the slave@param aMessage
347 @leave This method may leave with one of the system-wide error codes.
349 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
352 ~CMMFSbcEncoderDeMux();
353 CMMFSbcEncoderDeMux();
355 // mirrors MSbcEncoderIntfc methods.
356 TInt DoGetSupportedSamplingFrequencies (RArray<TUint>& aSamplingFrequencies );
357 TInt DoGetSupportedChannelModes (RArray<MSbcEncoderIntfc::TSbcChannelMode>& aChannelModes );
358 TInt DoGetSupportedNumOfSubbands (RArray<TUint>& aNumOfSubbands );
359 TInt DoGetSupportedAllocationMethods (RArray<MSbcEncoderIntfc::TSbcAllocationMethod>& aAllocationMethods );
360 TInt DoGetSupportedNumOfBlocks (RArray<TUint>& aNumOfBlocks );
361 TInt DoGetSupportedBitpoolRange (TUint& aMinSupportedBitpoolSize, TUint& aMaxSupportedBitpoolSize);
362 void DoSetSamplingFrequency (TUint aSamplingFrequency );
363 void DoSetChannelMode (MSbcEncoderIntfc::TSbcChannelMode aChannelMode );
364 void DoSetNumOfSubbands (TUint aNumOfSubbands );
365 void DoSetNumOfBlocks (TUint aNumOfBlocks );
366 void DoSetAllocationMethod (MSbcEncoderIntfc::TSbcAllocationMethod aAllocationMethod );
367 void DoSetBitpoolSize (TUint aBitpoolSize );
368 TInt DoApplyConfig();
369 TInt DoGetSamplingFrequency (TUint& aSamplingFrequency );
370 TInt DoGetChannelMode (MSbcEncoderIntfc::TSbcChannelMode& aChannelMode );
371 TInt DoGetNumOfSubbands (TUint& aNumOfSubbands );
372 TInt DoGetNumOfBlocks (TUint& aNumOfBlocks );
373 TInt DoGetAllocationMethod (MSbcEncoderIntfc::TSbcAllocationMethod& aAllocationMethod );
374 TInt DoGetBitpoolSize (TUint& aBitpoolSize );
377 void DoWriteArrayToClientL(const RMmfIpcMessage& aMessage, RArray<TUint>& aArray);
378 void DoWriteArrayToClientL(const RMmfIpcMessage& aMessage, TBool aWriteChannelModeArray);
381 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
382 MMMFDevSoundCustomInterfaceTarget* iTarget;
384 MSbcEncoderIntfc* iInterfaceSbcEncoder;
387 RArray<TUint> iSamplingFrequencies;
388 RArray<TUint> iNumOfSubbands;
389 RArray<TUint> iNumOfBlocks;
390 RArray<MSbcEncoderIntfc::TSbcAllocationMethod> iAllocationMethods;
391 RArray<MSbcEncoderIntfc::TSbcChannelMode> iChannelModes;
394 #endif // SBCENCODERCI_H