os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/ilbcdecoderconfigci.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>
21 #include "ilbcdecoderconfigci.h"
26 TInt CMMFIlbcDecoderIntfcMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceIlbcDecoderIntfcDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
43 void CMMFIlbcDecoderIntfcMux::Release()
45 // close the slave device if it exists
46 if (iRemoteHandle > 0)
48 // we assume the slave is closed correctly
49 iUtility->CloseSlave(iRemoteHandle);
55 // tell ECom to destroy us
56 REComSession::DestroyedImplementation(key);
60 void CMMFIlbcDecoderIntfcMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iKey = aDestructorKey;
67 void CMMFIlbcDecoderIntfcMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFIlbcDecoderIntfcMux::NewL()
76 CMMFIlbcDecoderIntfcMux* self = new (ELeave) CMMFIlbcDecoderIntfcMux;
81 TAny* CMMFIlbcDecoderIntfcMux::CustomInterface(TUid /*aInterfaceId*/)
83 MIlbcDecoderIntfc* interface = this;
88 CMMFIlbcDecoderIntfcMux::CMMFIlbcDecoderIntfcMux() :
94 CMMFIlbcDecoderIntfcMux::~CMMFIlbcDecoderIntfcMux()
99 // from MIlbcDecoderIntfc
100 TInt CMMFIlbcDecoderIntfcMux::SetDecoderMode(TDecodeMode aDecodeMode)
102 TInt result = KErrBadHandle;
104 if (iRemoteHandle > 0)
106 // send the decodeMode in the sync command
107 TPckgBuf<TDecodeMode> decodeMode(aDecodeMode);
109 // any return code other than zero is an error
110 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
111 EMMFDevSoundCIIlbcDecoderIntfcSetDecoderMode,
119 // from MIlbcDecoderIntfc
120 TInt CMMFIlbcDecoderIntfcMux::SetComfortNoiseGeneration(TBool aCng)
122 TInt result = KErrBadHandle;
124 if (iRemoteHandle > 0)
126 // send the cng in the sync command
127 TPckgBuf<TBool> cng(aCng);
129 // any return code other than zero is an error
130 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
131 EMMFDevSoundCIIlbcDecoderIntfcSetComfortNoiseGeneration,
139 // from MIlbcDecoderIntfc
140 TInt CMMFIlbcDecoderIntfcMux::GetComfortNoiseGeneration(TBool& aCng)
142 TInt result = KErrBadHandle;
144 if (iRemoteHandle > 0)
146 // holds the returned value.
147 TPckgBuf<TBool> retCng;
149 // any return code other than zero is an error
150 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
151 EMMFDevSoundCIIlbcDecoderIntfcGetComfortNoiseGeneration,
155 // assign return values to aCng. Do nothing if there is an error
156 if(result == KErrNone)
169 TInt CMMFIlbcDecoderIntfcDeMux::OpenInterface(TUid /*aInterfaceId*/)
175 void CMMFIlbcDecoderIntfcDeMux::Release()
181 // tell ECom to destroy us
182 REComSession::DestroyedImplementation(key);
186 void CMMFIlbcDecoderIntfcDeMux::PassDestructorKey(TUid aDestructorKey)
188 // store the destructor key
189 iKey = aDestructorKey;
193 void CMMFIlbcDecoderIntfcDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
199 void CMMFIlbcDecoderIntfcDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
201 // store a pointer to the utility
202 iUtility = aCustomUtility;
206 void CMMFIlbcDecoderIntfcDeMux::RefreshL()
208 // refetch the Ilbc decoder intfc custom interface if we already have a target
211 iInterfaceIlbcDecoderIntfc = static_cast <MIlbcDecoderIntfc*> (iTarget->CustomInterface(KUidIlbcDecoderIntfc));
213 if (!iInterfaceIlbcDecoderIntfc)
215 iInterfaceIlbcDecoderIntfc = NULL;
216 User::Leave(KErrNotSupported);
222 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFIlbcDecoderIntfcDeMux::NewL()
224 CMMFIlbcDecoderIntfcDeMux* self = new (ELeave) CMMFIlbcDecoderIntfcDeMux;
229 CMMFIlbcDecoderIntfcDeMux::CMMFIlbcDecoderIntfcDeMux()
234 CMMFIlbcDecoderIntfcDeMux::~CMMFIlbcDecoderIntfcDeMux()
239 TInt CMMFIlbcDecoderIntfcDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
241 // fetch the Ilbc decoder intfc Hw Device custom interface
242 iInterfaceIlbcDecoderIntfc = static_cast<MIlbcDecoderIntfc*> (iTarget->CustomInterface(KUidIlbcDecoderIntfc));
244 if (!iInterfaceIlbcDecoderIntfc)
246 iInterfaceIlbcDecoderIntfc = NULL;
247 User::Leave(KErrNotSupported);
254 void CMMFIlbcDecoderIntfcDeMux::DoCloseSlaveL(TInt /*aHandle*/)
260 // original RMessage is supplied so that remote demux plugin can extract necessary details
261 // using DeMux utility
262 TInt CMMFIlbcDecoderIntfcDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
264 TMMFDevSoundCIMessageData data;
265 TInt result = KErrGeneral;
268 iUtility->GetSyncMessageDataL(aMessage, data);
270 switch (data.iCommand)
272 case EMMFDevSoundCIIlbcDecoderIntfcSetDecoderMode:
274 TPckgBuf<MIlbcDecoderIntfc::TDecodeMode> decodeMode;
275 iUtility->ReadFromInputDesL(aMessage, &decodeMode);
277 result = DoSetDecoderMode(decodeMode());
281 case EMMFDevSoundCIIlbcDecoderIntfcSetComfortNoiseGeneration:
284 iUtility->ReadFromInputDesL(aMessage, &cng);
286 result = DoSetComfortNoiseGenerationL(cng());
292 User::Leave(KErrNotSupported);
300 // original RMessage is supplied so that remote demux plugin can extract necessary details
301 // using DeMux utility
302 TInt CMMFIlbcDecoderIntfcDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
304 TMMFDevSoundCIMessageData data;
305 TInt result = KErrGeneral;
308 iUtility->GetSyncMessageDataL(aMessage, data);
310 switch (data.iCommand)
312 case EMMFDevSoundCIIlbcDecoderIntfcGetComfortNoiseGeneration:
315 iUtility->ReadFromInputDesL(aMessage, &cng);
317 result = DoGetComfortNoiseGenerationL(cng());
319 TPckgBuf<TBool> des(cng());
320 iUtility->WriteToOutputDesL(aMessage, des);
326 User::Leave(KErrNotSupported);
334 void CMMFIlbcDecoderIntfcDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
336 // not used in this interface
340 void CMMFIlbcDecoderIntfcDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
342 // not used in this interface
346 // Ilbc decoder intfc custom interface implementation
347 TInt CMMFIlbcDecoderIntfcDeMux::DoSetDecoderMode(MIlbcDecoderIntfc::TDecodeMode aDecodeMode)
349 TInt result = KErrNotFound;
351 if (iInterfaceIlbcDecoderIntfc)
353 result = iInterfaceIlbcDecoderIntfc->SetDecoderMode(aDecodeMode);
360 // Ilbc decoder intfc custom interface implementation
361 TInt CMMFIlbcDecoderIntfcDeMux::DoSetComfortNoiseGenerationL(TBool aCng)
363 TInt result = KErrNotFound;
365 if (iInterfaceIlbcDecoderIntfc)
367 result = iInterfaceIlbcDecoderIntfc->SetComfortNoiseGeneration(aCng);
374 // Ilbc decoder intfc custom interface implementation
375 TInt CMMFIlbcDecoderIntfcDeMux::DoGetComfortNoiseGenerationL(TBool& aCng)
377 TInt result = KErrNotFound;
379 if (iInterfaceIlbcDecoderIntfc)
381 result = iInterfaceIlbcDecoderIntfc->GetComfortNoiseGeneration(aCng);
389 // ImplementationTable
391 const TImplementationProxy ImplementationTable[] =
393 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceIlbcDecoderIntfcMux, CMMFIlbcDecoderIntfcMux::NewL),
394 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceIlbcDecoderIntfcDeMux, CMMFIlbcDecoderIntfcDeMux::NewL),
398 // ImplementationGroupProxy
400 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
402 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
404 return ImplementationTable;