os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/bufferframesconfigci.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/bufferframesconfigci.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,360 @@
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 +#include <ecom/implementationproxy.h>
1.20 +#include <ecom/implementationproxy.h>
1.21 +#include <ecom/ecom.h>
1.22 +#include "bufferframesconfigci.h"
1.23 +
1.24 +// Helper class to pass data over process boundary
1.25 +class TFrameInfo
1.26 + {
1.27 +public:
1.28 + TInt iFrameCount;
1.29 + TInt iSamplesPerFrame;
1.30 + };
1.31 +
1.32 +// MUX //
1.33 +/*****************************************************************************/
1.34 +
1.35 +TInt CMMFBufferFramesConfigMux::OpenInterface(TUid /*aInterfaceId*/)
1.36 + {
1.37 + // attempt to open the interface link with the
1.38 + // remote slave device
1.39 + iRemoteHandle = -1;
1.40 + TUid slaveId = {KMmfUidCustomInterfaceBufferFramesConfigDeMux};
1.41 +
1.42 + TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
1.43 + if (handle >= 0)
1.44 + {
1.45 + iRemoteHandle = handle;
1.46 + }
1.47 +
1.48 + return iRemoteHandle;
1.49 + }
1.50 +
1.51 +/*****************************************************************************/
1.52 +void CMMFBufferFramesConfigMux::Release()
1.53 + {
1.54 + // close the slave device if it exists
1.55 + if (iRemoteHandle > 0)
1.56 + {
1.57 + // we assume the slave is closed correctly
1.58 + iUtility->CloseSlave(iRemoteHandle);
1.59 + }
1.60 +
1.61 + TUid key = iDestructorKey;
1.62 + delete this;
1.63 +
1.64 + // tell ECom to destroy us
1.65 + REComSession::DestroyedImplementation(key);
1.66 + }
1.67 +
1.68 +/*****************************************************************************/
1.69 +void CMMFBufferFramesConfigMux::PassDestructorKey(TUid aDestructorKey)
1.70 + {
1.71 + // store the destructor key
1.72 + iDestructorKey = aDestructorKey;
1.73 + }
1.74 +
1.75 +/*****************************************************************************/
1.76 +void CMMFBufferFramesConfigMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
1.77 + {
1.78 + // store a pointer to the utility
1.79 + iUtility = aCustomUtility;
1.80 + }
1.81 +
1.82 +/*****************************************************************************/
1.83 +MMMFDevSoundCustomInterfaceMuxPlugin* CMMFBufferFramesConfigMux::NewL()
1.84 + {
1.85 + CMMFBufferFramesConfigMux* self = new (ELeave) CMMFBufferFramesConfigMux;
1.86 + return self;
1.87 + }
1.88 +
1.89 +/*****************************************************************************/
1.90 +TAny* CMMFBufferFramesConfigMux::CustomInterface(TUid /*aInterfaceId*/)
1.91 + {
1.92 + MMMFBufferFramesConfig* interface = this;
1.93 + return interface;
1.94 + }
1.95 +
1.96 +/*****************************************************************************/
1.97 +CMMFBufferFramesConfigMux::CMMFBufferFramesConfigMux() :
1.98 + iRemoteHandle(-1)
1.99 + {
1.100 + }
1.101 +
1.102 +/*****************************************************************************/
1.103 +CMMFBufferFramesConfigMux::~CMMFBufferFramesConfigMux()
1.104 + {
1.105 + }
1.106 +
1.107 +/*****************************************************************************/
1.108 +// from MMMFBufferFramesConfig
1.109 +TInt CMMFBufferFramesConfigMux::MmbfcSetNumberOfFramesPerInputBuffer(TInt aFrameCount, TInt aSamplesPerFrame)
1.110 + {
1.111 + if (iRemoteHandle > 0)
1.112 + {
1.113 + TFrameInfo info;
1.114 + info.iFrameCount = aFrameCount;
1.115 + info.iSamplesPerFrame = aSamplesPerFrame;
1.116 +
1.117 + TPckgBuf<TFrameInfo> pckgBuf(info);
1.118 + // send the frame information in the sync command
1.119 + // any return code other than zero is an error
1.120 + return iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIInputBufferFramesConfig,
1.121 + pckgBuf);
1.122 + }
1.123 + else
1.124 + {
1.125 + return KErrNotReady;
1.126 + }
1.127 + }
1.128 +
1.129 +TInt CMMFBufferFramesConfigMux::MmbfcSetNumberOfFramesPerOutputBuffer(TInt aFrameCount, TInt aSamplesPerFrame)
1.130 + {
1.131 + if (iRemoteHandle > 0)
1.132 + {
1.133 + TFrameInfo info;
1.134 + info.iFrameCount = aFrameCount;
1.135 + info.iSamplesPerFrame = aSamplesPerFrame;
1.136 +
1.137 + TPckgBuf<TFrameInfo> pckgBuf(info);
1.138 + // send the frame information in the sync command
1.139 + // any return code other than zero is an error
1.140 + return iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIOutputBufferFramesConfig,
1.141 + pckgBuf);
1.142 + }
1.143 + else
1.144 + {
1.145 + return KErrNotReady;
1.146 + }
1.147 + }
1.148 +
1.149 +
1.150 +
1.151 +// DEMUX //
1.152 +/*****************************************************************************/
1.153 +TInt CMMFBufferFramesConfigDeMux::OpenInterface(TUid /*aInterfaceId*/)
1.154 + {
1.155 + return KErrNone;
1.156 + }
1.157 +
1.158 +/*****************************************************************************/
1.159 +void CMMFBufferFramesConfigDeMux::Release()
1.160 + {
1.161 + TUid key = iDestructorKey;
1.162 +
1.163 + delete this;
1.164 +
1.165 + // tell ECom to destroy us
1.166 + REComSession::DestroyedImplementation(key);
1.167 + }
1.168 +
1.169 +/*****************************************************************************/
1.170 +void CMMFBufferFramesConfigDeMux::PassDestructorKey(TUid aDestructorKey)
1.171 + {
1.172 + // store the destructor key
1.173 + iDestructorKey = aDestructorKey;
1.174 + }
1.175 +
1.176 +/*****************************************************************************/
1.177 +void CMMFBufferFramesConfigDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
1.178 + {
1.179 + iTarget = aTarget;
1.180 + }
1.181 +
1.182 +/*****************************************************************************/
1.183 +void CMMFBufferFramesConfigDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
1.184 + {
1.185 + // store a pointer to the utility
1.186 + iUtility = aCustomUtility;
1.187 + }
1.188 +
1.189 +/*****************************************************************************/
1.190 +void CMMFBufferFramesConfigDeMux::RefreshL()
1.191 + {
1.192 + // refetch the buffer frames configuration custom interface if we already have a target
1.193 + if (iTarget)
1.194 + {
1.195 + MMMFBufferFramesConfig* ptr = NULL;
1.196 +
1.197 + ptr = static_cast <MMMFBufferFramesConfig*> (iTarget->CustomInterface(KUidBufferFramesConfig));
1.198 +
1.199 + if (!ptr)
1.200 + {
1.201 + iInterfaceBufferFramesConfig = NULL;
1.202 + User::Leave(KErrNotSupported);
1.203 + }
1.204 + else
1.205 + {
1.206 + iInterfaceBufferFramesConfig = ptr;
1.207 + }
1.208 + }
1.209 + }
1.210 +
1.211 +/*****************************************************************************/
1.212 +MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFBufferFramesConfigDeMux::NewL()
1.213 + {
1.214 + CMMFBufferFramesConfigDeMux* self = new (ELeave) CMMFBufferFramesConfigDeMux;
1.215 + return self;
1.216 + }
1.217 +
1.218 +/*****************************************************************************/
1.219 +CMMFBufferFramesConfigDeMux::CMMFBufferFramesConfigDeMux()
1.220 + {
1.221 + }
1.222 +
1.223 +/*****************************************************************************/
1.224 +CMMFBufferFramesConfigDeMux::~CMMFBufferFramesConfigDeMux()
1.225 + {
1.226 + }
1.227 +
1.228 +/*****************************************************************************/
1.229 +TInt CMMFBufferFramesConfigDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
1.230 + {
1.231 + // fetch the buffer frames configuration Hw Device custom interface
1.232 + MMMFBufferFramesConfig* ptr = NULL;
1.233 +
1.234 + ptr = static_cast<MMMFBufferFramesConfig*> (iTarget->CustomInterface(KUidBufferFramesConfig));
1.235 +
1.236 + if (!ptr)
1.237 + {
1.238 + iInterfaceBufferFramesConfig = NULL;
1.239 + User::Leave(KErrNotSupported);
1.240 + }
1.241 + else
1.242 + {
1.243 + iInterfaceBufferFramesConfig = ptr;
1.244 + }
1.245 + return KErrNone;
1.246 + }
1.247 +
1.248 +/*****************************************************************************/
1.249 +void CMMFBufferFramesConfigDeMux::DoCloseSlaveL(TInt /*aHandle*/)
1.250 + {
1.251 + // nothing to do
1.252 + }
1.253 +
1.254 +/*****************************************************************************/
1.255 +// original RMessage is supplied so that remote demux plugin can extract necessary details
1.256 +// using DeMux utility
1.257 +TInt CMMFBufferFramesConfigDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
1.258 + {
1.259 + TMMFDevSoundCIMessageData data;
1.260 +
1.261 + TInt retVal = KErrNone;
1.262 +
1.263 + // decode message
1.264 + iUtility->GetSyncMessageDataL(aMessage, data);
1.265 +
1.266 + switch (data.iCommand)
1.267 + {
1.268 + case EMMFDevSoundCIInputBufferFramesConfig:
1.269 + {
1.270 + TPckgBuf<TFrameInfo> info;
1.271 + iUtility->ReadFromInputDesL(aMessage, &info);
1.272 +
1.273 + retVal = DoMmbfcSetNumberOfFramesPerInputBuffer(info().iFrameCount, info().iSamplesPerFrame);
1.274 + break;
1.275 + }
1.276 + case EMMFDevSoundCIOutputBufferFramesConfig:
1.277 + {
1.278 + TPckgBuf<TFrameInfo> info;
1.279 + iUtility->ReadFromInputDesL(aMessage, &info);
1.280 + retVal = DoMmbfcSetNumberOfFramesPerOutputBuffer(info().iFrameCount, info().iSamplesPerFrame);
1.281 + break;
1.282 + }
1.283 + default:
1.284 + {
1.285 + User::Leave(KErrNotSupported);
1.286 + }
1.287 + }
1.288 + return retVal;
1.289 + }
1.290 +
1.291 +/*****************************************************************************/
1.292 +TInt CMMFBufferFramesConfigDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
1.293 + {
1.294 + return KErrNone;
1.295 + }
1.296 +
1.297 +/*****************************************************************************/
1.298 +void CMMFBufferFramesConfigDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
1.299 + {
1.300 + // not used in this interface
1.301 + }
1.302 +
1.303 +/*****************************************************************************/
1.304 +void CMMFBufferFramesConfigDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
1.305 + {
1.306 + // not used in this interface
1.307 + }
1.308 +
1.309 +/*****************************************************************************/
1.310 +// Buffer frames config custom interface implementation
1.311 +TInt CMMFBufferFramesConfigDeMux::DoMmbfcSetNumberOfFramesPerInputBuffer(TInt aFrameCount,
1.312 + TInt aSamplesPerFrame)
1.313 + {
1.314 + if (!iInterfaceBufferFramesConfig)
1.315 + {
1.316 + return KErrNotReady;
1.317 + }
1.318 + else
1.319 + {
1.320 + return iInterfaceBufferFramesConfig->MmbfcSetNumberOfFramesPerInputBuffer(aFrameCount,
1.321 + aSamplesPerFrame);
1.322 + }
1.323 + }
1.324 +
1.325 +TInt CMMFBufferFramesConfigDeMux::DoMmbfcSetNumberOfFramesPerOutputBuffer(TInt aFrameCount,
1.326 + TInt aSamplesPerFrame)
1.327 + {
1.328 + if (!iInterfaceBufferFramesConfig)
1.329 + {
1.330 + return KErrNotReady;
1.331 + }
1.332 + else
1.333 + {
1.334 + return iInterfaceBufferFramesConfig->MmbfcSetNumberOfFramesPerOutputBuffer(aFrameCount,
1.335 + aSamplesPerFrame);
1.336 + }
1.337 + }
1.338 +
1.339 +/*****************************************************************************/
1.340 +//
1.341 +// ImplementationTable
1.342 +//
1.343 +
1.344 +const TImplementationProxy ImplementationTable[] =
1.345 + {
1.346 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceBufferFramesConfigMux, CMMFBufferFramesConfigMux::NewL),
1.347 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceBufferFramesConfigDeMux, CMMFBufferFramesConfigDeMux::NewL),
1.348 + };
1.349 +
1.350 +/*****************************************************************************/
1.351 +//
1.352 +// ImplementationGroupProxy
1.353 +//
1.354 +//
1.355 +
1.356 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
1.357 + {
1.358 + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
1.359 +
1.360 + return ImplementationTable;
1.361 + }
1.362 +
1.363 +