os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/bufferframesconfigci.cpp
Update contrib.
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 #include <ecom/implementationproxy.h>
17 #include <ecom/implementationproxy.h>
18 #include <ecom/ecom.h>
19 #include "bufferframesconfigci.h"
21 // Helper class to pass data over process boundary
26 TInt iSamplesPerFrame;
30 /*****************************************************************************/
32 TInt CMMFBufferFramesConfigMux::OpenInterface(TUid /*aInterfaceId*/)
34 // attempt to open the interface link with the
35 // remote slave device
37 TUid slaveId = {KMmfUidCustomInterfaceBufferFramesConfigDeMux};
39 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
42 iRemoteHandle = handle;
48 /*****************************************************************************/
49 void CMMFBufferFramesConfigMux::Release()
51 // close the slave device if it exists
52 if (iRemoteHandle > 0)
54 // we assume the slave is closed correctly
55 iUtility->CloseSlave(iRemoteHandle);
58 TUid key = iDestructorKey;
61 // tell ECom to destroy us
62 REComSession::DestroyedImplementation(key);
65 /*****************************************************************************/
66 void CMMFBufferFramesConfigMux::PassDestructorKey(TUid aDestructorKey)
68 // store the destructor key
69 iDestructorKey = aDestructorKey;
72 /*****************************************************************************/
73 void CMMFBufferFramesConfigMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
75 // store a pointer to the utility
76 iUtility = aCustomUtility;
79 /*****************************************************************************/
80 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFBufferFramesConfigMux::NewL()
82 CMMFBufferFramesConfigMux* self = new (ELeave) CMMFBufferFramesConfigMux;
86 /*****************************************************************************/
87 TAny* CMMFBufferFramesConfigMux::CustomInterface(TUid /*aInterfaceId*/)
89 MMMFBufferFramesConfig* interface = this;
93 /*****************************************************************************/
94 CMMFBufferFramesConfigMux::CMMFBufferFramesConfigMux() :
99 /*****************************************************************************/
100 CMMFBufferFramesConfigMux::~CMMFBufferFramesConfigMux()
104 /*****************************************************************************/
105 // from MMMFBufferFramesConfig
106 TInt CMMFBufferFramesConfigMux::MmbfcSetNumberOfFramesPerInputBuffer(TInt aFrameCount, TInt aSamplesPerFrame)
108 if (iRemoteHandle > 0)
111 info.iFrameCount = aFrameCount;
112 info.iSamplesPerFrame = aSamplesPerFrame;
114 TPckgBuf<TFrameInfo> pckgBuf(info);
115 // send the frame information in the sync command
116 // any return code other than zero is an error
117 return iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIInputBufferFramesConfig,
126 TInt CMMFBufferFramesConfigMux::MmbfcSetNumberOfFramesPerOutputBuffer(TInt aFrameCount, TInt aSamplesPerFrame)
128 if (iRemoteHandle > 0)
131 info.iFrameCount = aFrameCount;
132 info.iSamplesPerFrame = aSamplesPerFrame;
134 TPckgBuf<TFrameInfo> pckgBuf(info);
135 // send the frame information in the sync command
136 // any return code other than zero is an error
137 return iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIOutputBufferFramesConfig,
149 /*****************************************************************************/
150 TInt CMMFBufferFramesConfigDeMux::OpenInterface(TUid /*aInterfaceId*/)
155 /*****************************************************************************/
156 void CMMFBufferFramesConfigDeMux::Release()
158 TUid key = iDestructorKey;
162 // tell ECom to destroy us
163 REComSession::DestroyedImplementation(key);
166 /*****************************************************************************/
167 void CMMFBufferFramesConfigDeMux::PassDestructorKey(TUid aDestructorKey)
169 // store the destructor key
170 iDestructorKey = aDestructorKey;
173 /*****************************************************************************/
174 void CMMFBufferFramesConfigDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
179 /*****************************************************************************/
180 void CMMFBufferFramesConfigDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
182 // store a pointer to the utility
183 iUtility = aCustomUtility;
186 /*****************************************************************************/
187 void CMMFBufferFramesConfigDeMux::RefreshL()
189 // refetch the buffer frames configuration custom interface if we already have a target
192 MMMFBufferFramesConfig* ptr = NULL;
194 ptr = static_cast <MMMFBufferFramesConfig*> (iTarget->CustomInterface(KUidBufferFramesConfig));
198 iInterfaceBufferFramesConfig = NULL;
199 User::Leave(KErrNotSupported);
203 iInterfaceBufferFramesConfig = ptr;
208 /*****************************************************************************/
209 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFBufferFramesConfigDeMux::NewL()
211 CMMFBufferFramesConfigDeMux* self = new (ELeave) CMMFBufferFramesConfigDeMux;
215 /*****************************************************************************/
216 CMMFBufferFramesConfigDeMux::CMMFBufferFramesConfigDeMux()
220 /*****************************************************************************/
221 CMMFBufferFramesConfigDeMux::~CMMFBufferFramesConfigDeMux()
225 /*****************************************************************************/
226 TInt CMMFBufferFramesConfigDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
228 // fetch the buffer frames configuration Hw Device custom interface
229 MMMFBufferFramesConfig* ptr = NULL;
231 ptr = static_cast<MMMFBufferFramesConfig*> (iTarget->CustomInterface(KUidBufferFramesConfig));
235 iInterfaceBufferFramesConfig = NULL;
236 User::Leave(KErrNotSupported);
240 iInterfaceBufferFramesConfig = ptr;
245 /*****************************************************************************/
246 void CMMFBufferFramesConfigDeMux::DoCloseSlaveL(TInt /*aHandle*/)
251 /*****************************************************************************/
252 // original RMessage is supplied so that remote demux plugin can extract necessary details
253 // using DeMux utility
254 TInt CMMFBufferFramesConfigDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
256 TMMFDevSoundCIMessageData data;
258 TInt retVal = KErrNone;
261 iUtility->GetSyncMessageDataL(aMessage, data);
263 switch (data.iCommand)
265 case EMMFDevSoundCIInputBufferFramesConfig:
267 TPckgBuf<TFrameInfo> info;
268 iUtility->ReadFromInputDesL(aMessage, &info);
270 retVal = DoMmbfcSetNumberOfFramesPerInputBuffer(info().iFrameCount, info().iSamplesPerFrame);
273 case EMMFDevSoundCIOutputBufferFramesConfig:
275 TPckgBuf<TFrameInfo> info;
276 iUtility->ReadFromInputDesL(aMessage, &info);
277 retVal = DoMmbfcSetNumberOfFramesPerOutputBuffer(info().iFrameCount, info().iSamplesPerFrame);
282 User::Leave(KErrNotSupported);
288 /*****************************************************************************/
289 TInt CMMFBufferFramesConfigDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
294 /*****************************************************************************/
295 void CMMFBufferFramesConfigDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
297 // not used in this interface
300 /*****************************************************************************/
301 void CMMFBufferFramesConfigDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
303 // not used in this interface
306 /*****************************************************************************/
307 // Buffer frames config custom interface implementation
308 TInt CMMFBufferFramesConfigDeMux::DoMmbfcSetNumberOfFramesPerInputBuffer(TInt aFrameCount,
309 TInt aSamplesPerFrame)
311 if (!iInterfaceBufferFramesConfig)
317 return iInterfaceBufferFramesConfig->MmbfcSetNumberOfFramesPerInputBuffer(aFrameCount,
322 TInt CMMFBufferFramesConfigDeMux::DoMmbfcSetNumberOfFramesPerOutputBuffer(TInt aFrameCount,
323 TInt aSamplesPerFrame)
325 if (!iInterfaceBufferFramesConfig)
331 return iInterfaceBufferFramesConfig->MmbfcSetNumberOfFramesPerOutputBuffer(aFrameCount,
336 /*****************************************************************************/
338 // ImplementationTable
341 const TImplementationProxy ImplementationTable[] =
343 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceBufferFramesConfigMux, CMMFBufferFramesConfigMux::NewL),
344 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceBufferFramesConfigDeMux, CMMFBufferFramesConfigDeMux::NewL),
347 /*****************************************************************************/
349 // ImplementationGroupProxy
353 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
355 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
357 return ImplementationTable;