1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/sbcencoderci.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,394 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#ifndef SBCENCODERCI_H
1.20 +#define SBCENCODERCI_H
1.21 +
1.22 +#include <e32base.h>
1.23 +#include <mmf/common/mmfipc.h>
1.24 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.25 +#include <mmf/common/mmfipcserver.h>
1.26 +#endif
1.27 +#include <mmf/server/mmfdevsoundcustominterface.h>
1.28 +#include <mmf/server/mmfdevsoundcustomcommands.h>
1.29 +#include <mmf/server/devsoundstandardcustominterfaces.h>
1.30 +#include <mmf/plugin/mmfdevsoundcustominterface.hrh>
1.31 +
1.32 +/**
1.33 + Enum to represent the methods called by this custom interface
1.34 + @internalComponent
1.35 + @prototype
1.36 + @file
1.37 + */
1.38 +enum TMMFDevSoundCISbcEncoderCommands
1.39 + {
1.40 + EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesCount = 0,
1.41 + EMMFDevSoundCISbcEncoderGetSupportedSamplingFrequenciesArray,
1.42 + EMMFDevSoundCISbcEncoderGetSupportedChannelModesCount,
1.43 + EMMFDevSoundCISbcEncoderGetSupportedChannelModesArray,
1.44 + EMMFDevSoundCISbcEncoderGetSupportedSubbandsCount,
1.45 + EMMFDevSoundCISbcEncoderGetSupportedSubbandsArray,
1.46 + EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsCount,
1.47 + EMMFDevSoundCISbcEncoderGetSupportedAllocationMethodsArray,
1.48 + EMMFDevSoundCISbcEncoderGetSupportedBlocksCount,
1.49 + EMMFDevSoundCISbcEncoderGetSupportedBlocksArray,
1.50 + EMMFDevSoundCISbcEncoderGetSupportedBitpoolRange,
1.51 + EMMFDevSoundCISbcEncoderSetSamplingFrequency,
1.52 + EMMFDevSoundCISbcEncoderSetChannelMode,
1.53 + EMMFDevSoundCISbcEncoderSetSubbands,
1.54 + EMMFDevSoundCISbcEncoderSetBlocks,
1.55 + EMMFDevSoundCISbcEncoderSetAllocationMethod,
1.56 + EMMFDevSoundCISbcEncoderSetBitpoolSize,
1.57 + EMMFDevSoundCISbcEncoderApplyConfig,
1.58 + EMMFDevSoundCISbcEncoderGetSamplingFrequency,
1.59 + EMMFDevSoundCISbcEncoderGetChannelMode,
1.60 + EMMFDevSoundCISbcEncoderGetSubbands,
1.61 + EMMFDevSoundCISbcEncoderGetBlocks,
1.62 + EMMFDevSoundCISbcEncoderGetAllocationMethod,
1.63 + EMMFDevSoundCISbcEncoderGetBitpoolSize
1.64 + };
1.65 +
1.66 +
1.67 +/**
1.68 + CMMFSbcEncoderMux implementation of the SBC encoder custom interface pair
1.69 + @internalComponent
1.70 + @prototype
1.71 + @file
1.72 + */
1.73 +class CMMFSbcEncoderMux : public CBase,
1.74 + public MMMFDevSoundCustomInterfaceMuxPlugin,
1.75 + public MSbcEncoderIntfc
1.76 + {
1.77 +public:
1.78 +
1.79 + // from MMMFDevSoundCustomInterfaceMuxPlugin
1.80 + /**
1.81 + Attempt to open the interface.
1.82 + @param aInterfaceId
1.83 + The UID of the interface to open.
1.84 + @return One of the system wide error codes
1.85 + */
1.86 + virtual TInt OpenInterface(TUid aInterfaceId);
1.87 +
1.88 + /**
1.89 + Equivalent to destructor. Called to destroy plugin.
1.90 + */
1.91 + virtual void Release();
1.92 +
1.93 + /**
1.94 + Pass destructor key.
1.95 + Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
1.96 + @param aDestructorKey
1.97 + The Uid returned by REComSession::CreateImplementationL() or similar
1.98 + */
1.99 + virtual void PassDestructorKey(TUid aDestructorKey);
1.100 +
1.101 + /**
1.102 + Complete construction.
1.103 + Pass additional values from the construction phase, used subsequently by the plugin.
1.104 + @param aCustomUtility
1.105 + The custom interface utility used by the plugin to communicate with the remote
1.106 + server side DeMux plugin
1.107 + @leave This method may leave with one of the system-wide error codes.
1.108 + */
1.109 + virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
1.110 +
1.111 + /**
1.112 + Return the custom interface
1.113 + @param aInterfaceId
1.114 + The UID of the required custom interface
1.115 + @return The custom interface supported by this plugin
1.116 + */
1.117 + virtual TAny* CustomInterface(TUid aInterfaceId);
1.118 +
1.119 + /**
1.120 + Instantiate a CI Mux class
1.121 + @leave This method may leave with one of the system-wide error codes.
1.122 + @return The pointer to the new class, cast to the Mux plugin mixin
1.123 + */
1.124 + static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
1.125 +
1.126 + // from MSbcEncoderIntfc
1.127 + /**
1.128 + @see MSbcEncoderIntfc
1.129 + */
1.130 + virtual TInt GetSupportedSamplingFrequencies(RArray<TUint>& aSamplingFrequencies);
1.131 +
1.132 + /**
1.133 + @see MSbcEncoderIntfc
1.134 + */
1.135 + virtual TInt GetSupportedChannelModes(RArray<TSbcChannelMode>& aChannelModes);
1.136 +
1.137 + /**
1.138 + @see MSbcEncoderIntfc
1.139 + */
1.140 + virtual TInt GetSupportedNumOfSubbands(RArray<TUint>& aNumOfSubbands);
1.141 +
1.142 + /**
1.143 + @see MSbcEncoderIntfc
1.144 + */
1.145 + virtual TInt GetSupportedAllocationMethods(RArray<TSbcAllocationMethod>& aAllocationMethods);
1.146 +
1.147 + /**
1.148 + @see MSbcEncoderIntfc
1.149 + */
1.150 + virtual TInt GetSupportedNumOfBlocks(RArray<TUint>& aNumOfBlocks);
1.151 +
1.152 + /**
1.153 + @see MSbcEncoderIntfc
1.154 + */
1.155 + virtual TInt GetSupportedBitpoolRange(TUint& aMinSupportedBitpoolSize, TUint& aMaxSupportedBitpoolSize);
1.156 +
1.157 + /**
1.158 + @see MSbcEncoderIntfc
1.159 + */
1.160 + virtual void SetSamplingFrequency(TUint aSamplingFrequency);
1.161 +
1.162 + /**
1.163 + @see MSbcEncoderIntfc
1.164 + */
1.165 + virtual void SetChannelMode(TSbcChannelMode aChannelMode);
1.166 +
1.167 + /**
1.168 + @see MSbcEncoderIntfc
1.169 + */
1.170 + virtual void SetNumOfSubbands(TUint aNumOfSubbands);
1.171 +
1.172 + /**
1.173 + @see MSbcEncoderIntfc
1.174 + */
1.175 + virtual void SetNumOfBlocks(TUint aNumOfBlocks);
1.176 +
1.177 + /**
1.178 + @see MSbcEncoderIntfc
1.179 + */
1.180 + virtual void SetAllocationMethod(TSbcAllocationMethod aAllocationMethod);
1.181 +
1.182 + /**
1.183 + @see MSbcEncoderIntfc
1.184 + */
1.185 + virtual void SetBitpoolSize(TUint aBitpoolSize);
1.186 +
1.187 + /**
1.188 + @see MSbcEncoderIntfc
1.189 + */
1.190 + virtual TInt ApplyConfig();
1.191 +
1.192 + /**
1.193 + @see MSbcEncoderIntfc
1.194 + */
1.195 + virtual TInt GetSamplingFrequency(TUint& aSamplingFrequency);
1.196 +
1.197 + /**
1.198 + @see MSbcEncoderIntfc
1.199 + */
1.200 + virtual TInt GetChannelMode(TSbcChannelMode& aChannelMode);
1.201 +
1.202 + /**
1.203 + @see MSbcEncoderIntfc
1.204 + */
1.205 + virtual TInt GetNumOfSubbands(TUint& aNumOfSubbands);
1.206 +
1.207 + /**
1.208 + @see MSbcEncoderIntfc
1.209 + */
1.210 + virtual TInt GetNumOfBlocks(TUint& aNumOfBlocks);
1.211 +
1.212 + /**
1.213 + @see MSbcEncoderIntfc
1.214 + */
1.215 + virtual TInt GetAllocationMethod(TSbcAllocationMethod& aAllocationMethod);
1.216 +
1.217 + /**
1.218 + @see MSbcEncoderIntfc
1.219 + */
1.220 + virtual TInt GetBitpoolSize(TUint& aBitpoolSize);
1.221 +
1.222 +protected:
1.223 + CMMFSbcEncoderMux();
1.224 + ~CMMFSbcEncoderMux();
1.225 +
1.226 +private:
1.227 + void DoGetTUintArrayL(RArray<TUint>& aArray, TInt aCount, TMMFDevSoundCISbcEncoderCommands aCommand);
1.228 + void DoGetChannelModesArrayL(RArray<TSbcChannelMode>& aChannelModes, TInt aCount);
1.229 + void DoGetAllocMethodsArrayL(RArray<TSbcAllocationMethod>& aAllocationMethods, TInt aCount);
1.230 + void DoWriteArrayToClientL(const RMmfIpcMessage& aMessage);
1.231 +
1.232 +protected:
1.233 + TUid iDestructorKey;
1.234 + TInt iRemoteHandle;
1.235 + MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
1.236 + };
1.237 +
1.238 +/**
1.239 + CMMFSbcEncoderDeMux - DeMux side of pair
1.240 + @internalComponent
1.241 + @prototype
1.242 + @file
1.243 + */
1.244 +class CMMFSbcEncoderDeMux : public CBase,
1.245 + public MMMFDevSoundCustomInterfaceDeMuxPlugin
1.246 + {
1.247 +public:
1.248 + /**
1.249 + Instantiate a CMMFSbcEncoderDeMux class
1.250 + @leave This method may leave with one of the system-wide error codes.
1.251 + @return A pointer to the new class cast to the DeMux plugin mixin
1.252 + */
1.253 + static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
1.254 +
1.255 + /**
1.256 + Attempt to open the interface.
1.257 + @param aInterfaceId
1.258 + The UID of the interface to open.
1.259 + @return a handle to the remote plugin
1.260 + */
1.261 + virtual TInt OpenInterface(TUid aInterfaceId);
1.262 +
1.263 + /**
1.264 + Equivalent to destructor. Called to destroy plugin.
1.265 + */
1.266 + virtual void Release();
1.267 +
1.268 + /**
1.269 + Pass destructor key.
1.270 + Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
1.271 + @param aDestructorKey
1.272 + The Uid returned by REComSession::CreateImplementationL() or similar
1.273 + */
1.274 + virtual void PassDestructorKey(TUid aDestructorKey);
1.275 +
1.276 + /**
1.277 + Set the target of the custom interface call
1.278 + @param aTarget
1.279 + The DevSound to call the custom interface on.
1.280 + */
1.281 + virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
1.282 +
1.283 + /**
1.284 + Complete construction.
1.285 + @param aUtility
1.286 + The DeMux utility to use
1.287 + @leave This method may leave with one of the system-wide error codes.
1.288 + */
1.289 + virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
1.290 +
1.291 + /**
1.292 + Refresh the current custom interface connections
1.293 + @leave This method may leave with one of the system-wide error codes.
1.294 + */
1.295 + virtual void RefreshL();
1.296 +
1.297 + // from MMMFDevSoundCustomInterfaceDeMuxPlugin
1.298 + /**
1.299 + Open the slave
1.300 + @param aInterface
1.301 + The UID of the requested interface
1.302 + @param aPackageBuf
1.303 + A package of data that can be supplied for initialisation
1.304 + @leave This method may leave with one of the system-wide error codes.
1.305 + @return The result of the operation
1.306 + */
1.307 + virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
1.308 +
1.309 + /**
1.310 + Close the slave
1.311 + @param aHandle
1.312 + The handle of the slave plugin
1.313 + @leave This method may leave with one of the system-wide error codes.
1.314 + */
1.315 + virtual void DoCloseSlaveL(TInt aHandle);
1.316 +
1.317 + // original RMessage is supplied so that remote demux plugin can extract necessary details
1.318 + // using DeMux utility
1.319 +
1.320 + /**
1.321 + Relay the synchronous custom command onto the slave
1.322 + @param aMessage
1.323 + The IPC message to be sent to the slave
1.324 + @leave This method may leave with one of the system-wide error codes.
1.325 + @return The result of the operation
1.326 + */
1.327 + virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
1.328 +
1.329 + /**
1.330 + Relay the synchronous custom command onto the slave and obtain a result
1.331 + @param aMessage
1.332 + The IPC message to be sent to the slave
1.333 + @leave This method may leave with one of the system-wide error codes.
1.334 + @return The result of the operation
1.335 + */
1.336 + virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
1.337 +
1.338 + /**
1.339 + Relay an asynchronous command onto the slave
1.340 + @param aMessage
1.341 + The IPC message to be sent to the slave
1.342 + @leave This method may leave with one of the system-wide error codes.
1.343 + */
1.344 + virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
1.345 +
1.346 + /**
1.347 + Relay an asynchronous command onto the slave and obtain a result
1.348 + @param aMessage
1.349 + The IPC message to be sent to the slave@param aMessage
1.350 + @leave This method may leave with one of the system-wide error codes.
1.351 + */
1.352 + virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
1.353 +
1.354 +protected:
1.355 + ~CMMFSbcEncoderDeMux();
1.356 + CMMFSbcEncoderDeMux();
1.357 +
1.358 + // mirrors MSbcEncoderIntfc methods.
1.359 + TInt DoGetSupportedSamplingFrequencies (RArray<TUint>& aSamplingFrequencies );
1.360 + TInt DoGetSupportedChannelModes (RArray<MSbcEncoderIntfc::TSbcChannelMode>& aChannelModes );
1.361 + TInt DoGetSupportedNumOfSubbands (RArray<TUint>& aNumOfSubbands );
1.362 + TInt DoGetSupportedAllocationMethods (RArray<MSbcEncoderIntfc::TSbcAllocationMethod>& aAllocationMethods );
1.363 + TInt DoGetSupportedNumOfBlocks (RArray<TUint>& aNumOfBlocks );
1.364 + TInt DoGetSupportedBitpoolRange (TUint& aMinSupportedBitpoolSize, TUint& aMaxSupportedBitpoolSize);
1.365 + void DoSetSamplingFrequency (TUint aSamplingFrequency );
1.366 + void DoSetChannelMode (MSbcEncoderIntfc::TSbcChannelMode aChannelMode );
1.367 + void DoSetNumOfSubbands (TUint aNumOfSubbands );
1.368 + void DoSetNumOfBlocks (TUint aNumOfBlocks );
1.369 + void DoSetAllocationMethod (MSbcEncoderIntfc::TSbcAllocationMethod aAllocationMethod );
1.370 + void DoSetBitpoolSize (TUint aBitpoolSize );
1.371 + TInt DoApplyConfig();
1.372 + TInt DoGetSamplingFrequency (TUint& aSamplingFrequency );
1.373 + TInt DoGetChannelMode (MSbcEncoderIntfc::TSbcChannelMode& aChannelMode );
1.374 + TInt DoGetNumOfSubbands (TUint& aNumOfSubbands );
1.375 + TInt DoGetNumOfBlocks (TUint& aNumOfBlocks );
1.376 + TInt DoGetAllocationMethod (MSbcEncoderIntfc::TSbcAllocationMethod& aAllocationMethod );
1.377 + TInt DoGetBitpoolSize (TUint& aBitpoolSize );
1.378 +
1.379 +private:
1.380 + void DoWriteArrayToClientL(const RMmfIpcMessage& aMessage, RArray<TUint>& aArray);
1.381 + void DoWriteArrayToClientL(const RMmfIpcMessage& aMessage, TBool aWriteChannelModeArray);
1.382 +
1.383 +protected:
1.384 + MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
1.385 + MMMFDevSoundCustomInterfaceTarget* iTarget;
1.386 + TUid iDestructorKey;
1.387 + MSbcEncoderIntfc* iInterfaceSbcEncoder;
1.388 +
1.389 +private:
1.390 + RArray<TUint> iSamplingFrequencies;
1.391 + RArray<TUint> iNumOfSubbands;
1.392 + RArray<TUint> iNumOfBlocks;
1.393 + RArray<MSbcEncoderIntfc::TSbcAllocationMethod> iAllocationMethods;
1.394 + RArray<MSbcEncoderIntfc::TSbcChannelMode> iChannelModes;
1.395 + };
1.396 +
1.397 +#endif // SBCENCODERCI_H