os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/g711decoderconfigci.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 "g711decoderconfigci.h"
26 TInt CMMFG711DecoderIntfcMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceG711DecoderIntfcDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
43 void CMMFG711DecoderIntfcMux::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 CMMFG711DecoderIntfcMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iKey = aDestructorKey;
67 void CMMFG711DecoderIntfcMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFG711DecoderIntfcMux::NewL()
76 CMMFG711DecoderIntfcMux* self = new (ELeave) CMMFG711DecoderIntfcMux;
81 TAny* CMMFG711DecoderIntfcMux::CustomInterface(TUid /*aInterfaceId*/)
83 MG711DecoderIntfc* interface = this;
88 CMMFG711DecoderIntfcMux::CMMFG711DecoderIntfcMux() :
94 CMMFG711DecoderIntfcMux::~CMMFG711DecoderIntfcMux()
99 // from MG711DecoderIntfc
100 TInt CMMFG711DecoderIntfcMux::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 EMMFDevSoundCIG711DecoderIntfcSetDecoderMode,
119 // from MG711DecoderIntfc
120 TInt CMMFG711DecoderIntfcMux::GetDecoderMode(TDecodeMode& aDecodeMode)
122 TInt result = KErrBadHandle;
124 if (iRemoteHandle > 0)
126 // send the decodeMode in the sync command
127 TPckgBuf<TDecodeMode> retDecodeMode;
129 // any return code other than zero is an error
130 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
131 EMMFDevSoundCIG711DecoderIntfcGetDecoderMode,
135 // assign return values to aDecodeMode. Do nothing if there is an error
136 if(result == KErrNone)
138 aDecodeMode = retDecodeMode();
146 // from MG711DecoderIntfc
147 TInt CMMFG711DecoderIntfcMux::SetComfortNoiseGeneration(TBool aCng)
149 TInt result = KErrBadHandle;
151 if (iRemoteHandle > 0)
153 // send the cng in the sync command
154 TPckgBuf<TBool> cng(aCng);
156 // any return code other than zero is an error
157 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
158 EMMFDevSoundCIG711DecoderIntfcSetComfortNoiseGeneration,
166 // from MG711DecoderIntfc
167 TInt CMMFG711DecoderIntfcMux::GetComfortNoiseGeneration(TBool& aCng)
169 TInt result = KErrBadHandle;
171 if (iRemoteHandle > 0)
173 // holds the returned value.
174 TPckgBuf<TBool> retCng;
176 // any return code other than zero is an error
177 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
178 EMMFDevSoundCIG711DecoderIntfcGetComfortNoiseGeneration,
182 // assign return values to aCng. Do nothing if there is an error
183 if(result == KErrNone)
193 // from MG711DecoderIntfc
194 TInt CMMFG711DecoderIntfcMux::SetPacketLossConcealment(TBool aPlc)
196 TInt result = KErrBadHandle;
198 if (iRemoteHandle > 0)
200 // send the plc in the sync command
201 TPckgBuf<TBool> plc(aPlc);
203 // any return code other than zero is an error
204 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
205 EMMFDevSoundCIG711DecoderIntfcSetPacketLossConcealment,
213 // from MG711DecoderIntfc
214 TInt CMMFG711DecoderIntfcMux::GetPacketLossConcealment(TBool& aPlc)
216 TInt result = KErrBadHandle;
218 if (iRemoteHandle > 0)
220 // send the plc in the sync command
221 TPckgBuf<TBool> retPlc;
223 // any return code other than zero is an error
224 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
225 EMMFDevSoundCIG711DecoderIntfcGetPacketLossConcealment,
229 // assign return values to aPlc. Do nothing if there is an error
230 if(result == KErrNone)
243 TInt CMMFG711DecoderIntfcDeMux::OpenInterface(TUid /*aInterfaceId*/)
249 void CMMFG711DecoderIntfcDeMux::Release()
255 // tell ECom to destroy us
256 REComSession::DestroyedImplementation(key);
260 void CMMFG711DecoderIntfcDeMux::PassDestructorKey(TUid aDestructorKey)
262 // store the destructor key
263 iKey = aDestructorKey;
267 void CMMFG711DecoderIntfcDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
273 void CMMFG711DecoderIntfcDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
275 // store a pointer to the utility
276 iUtility = aCustomUtility;
280 void CMMFG711DecoderIntfcDeMux::RefreshL()
282 // refetch the G711 decoder intfc custom interface if we already have a target
285 iInterfaceG711DecoderIntfc = static_cast <MG711DecoderIntfc*> (iTarget->CustomInterface(KUidG711DecoderIntfc));
287 if (!iInterfaceG711DecoderIntfc)
289 iInterfaceG711DecoderIntfc = NULL;
290 User::Leave(KErrNotSupported);
296 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFG711DecoderIntfcDeMux::NewL()
298 CMMFG711DecoderIntfcDeMux* self = new (ELeave) CMMFG711DecoderIntfcDeMux;
303 CMMFG711DecoderIntfcDeMux::CMMFG711DecoderIntfcDeMux()
308 CMMFG711DecoderIntfcDeMux::~CMMFG711DecoderIntfcDeMux()
313 TInt CMMFG711DecoderIntfcDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
315 // fetch the G711 decoder intfc Hw Device custom interface
316 iInterfaceG711DecoderIntfc = static_cast<MG711DecoderIntfc*> (iTarget->CustomInterface(KUidG711DecoderIntfc));
318 if (!iInterfaceG711DecoderIntfc)
320 iInterfaceG711DecoderIntfc = NULL;
321 User::Leave(KErrNotSupported);
328 void CMMFG711DecoderIntfcDeMux::DoCloseSlaveL(TInt /*aHandle*/)
334 // original RMessage is supplied so that remote demux plugin can extract necessary details
335 // using DeMux utility
336 TInt CMMFG711DecoderIntfcDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
338 TMMFDevSoundCIMessageData data;
339 TInt result = KErrGeneral;
342 iUtility->GetSyncMessageDataL(aMessage, data);
344 switch (data.iCommand)
346 case EMMFDevSoundCIG711DecoderIntfcSetDecoderMode:
348 TPckgBuf<MG711DecoderIntfc::TDecodeMode> decodeMode;
349 iUtility->ReadFromInputDesL(aMessage, &decodeMode);
351 result = DoSetDecoderModeL(decodeMode());
355 case EMMFDevSoundCIG711DecoderIntfcSetComfortNoiseGeneration:
358 iUtility->ReadFromInputDesL(aMessage, &cng);
360 result = DoSetComfortNoiseGenerationL(cng());
363 case EMMFDevSoundCIG711DecoderIntfcSetPacketLossConcealment:
366 iUtility->ReadFromInputDesL(aMessage, &plc);
368 result = DoSetPacketLossConcealmentL(plc());
373 User::Leave(KErrNotSupported);
381 // original RMessage is supplied so that remote demux plugin can extract necessary details
382 // using DeMux utility
383 TInt CMMFG711DecoderIntfcDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
385 TMMFDevSoundCIMessageData data;
386 TInt result = KErrGeneral;
389 iUtility->GetSyncMessageDataL(aMessage, data);
391 switch (data.iCommand)
393 case EMMFDevSoundCIG711DecoderIntfcGetDecoderMode:
395 TPckgBuf<MG711DecoderIntfc::TDecodeMode> decodeMode;
396 iUtility->ReadFromInputDesL(aMessage, &decodeMode);
398 result = DoGetDecoderModeL(decodeMode());
400 TPckgBuf<TBool> des(decodeMode());
401 iUtility->WriteToOutputDesL(aMessage, des);
405 case EMMFDevSoundCIG711DecoderIntfcGetComfortNoiseGeneration:
408 iUtility->ReadFromInputDesL(aMessage, &cng);
410 result = DoGetComfortNoiseGenerationL(cng());
412 TPckgBuf<TBool> des(cng());
413 iUtility->WriteToOutputDesL(aMessage, des);
417 case EMMFDevSoundCIG711DecoderIntfcGetPacketLossConcealment:
420 iUtility->ReadFromInputDesL(aMessage, &plc);
422 result = DoGetPacketLossConcealmentL(plc());
424 TPckgBuf<TBool> des(plc());
425 iUtility->WriteToOutputDesL(aMessage, des);
431 User::Leave(KErrNotSupported);
439 void CMMFG711DecoderIntfcDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
441 // not used in this interface
445 void CMMFG711DecoderIntfcDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
447 // not used in this interface
451 // G711 decoder intfc custom interface implementation
452 TInt CMMFG711DecoderIntfcDeMux::DoSetDecoderModeL(MG711DecoderIntfc::TDecodeMode aDecodeMode)
454 TInt result = KErrNotFound;
456 if (iInterfaceG711DecoderIntfc)
458 result = iInterfaceG711DecoderIntfc->SetDecoderMode(aDecodeMode);
465 // G711 decoder intfc custom interface implementation
466 TInt CMMFG711DecoderIntfcDeMux::DoGetDecoderModeL(MG711DecoderIntfc::TDecodeMode& aDecodeMode)
468 TInt result = KErrNotFound;
470 if (iInterfaceG711DecoderIntfc)
472 result = iInterfaceG711DecoderIntfc->GetDecoderMode(aDecodeMode);
479 // G711 decoder intfc custom interface implementation
480 TInt CMMFG711DecoderIntfcDeMux::DoSetComfortNoiseGenerationL(TBool aCng)
482 TInt result = KErrNotFound;
484 if (iInterfaceG711DecoderIntfc)
486 result = iInterfaceG711DecoderIntfc->SetComfortNoiseGeneration(aCng);
493 // G711 decoder intfc custom interface implementation
494 TInt CMMFG711DecoderIntfcDeMux::DoGetComfortNoiseGenerationL(TBool& aCng)
496 TInt result = KErrNotFound;
498 if (iInterfaceG711DecoderIntfc)
500 result = iInterfaceG711DecoderIntfc->GetComfortNoiseGeneration(aCng);
507 // G711 decoder intfc custom interface implementation
508 TInt CMMFG711DecoderIntfcDeMux::DoSetPacketLossConcealmentL(TBool aPlc)
510 TInt result = KErrNotFound;
512 if (iInterfaceG711DecoderIntfc)
514 result = iInterfaceG711DecoderIntfc->SetPacketLossConcealment(aPlc);
521 // G711 decoder intfc custom interface implementation
522 TInt CMMFG711DecoderIntfcDeMux::DoGetPacketLossConcealmentL(TBool& aPlc)
524 TInt result = KErrNotFound;
526 if (iInterfaceG711DecoderIntfc)
528 result = iInterfaceG711DecoderIntfc->GetPacketLossConcealment(aPlc);
536 // ImplementationTable
538 const TImplementationProxy ImplementationTable[] =
540 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG711DecoderIntfcMux, CMMFG711DecoderIntfcMux::NewL),
541 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG711DecoderIntfcDeMux, CMMFG711DecoderIntfcDeMux::NewL),
545 // ImplementationGroupProxy
547 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
549 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
551 return ImplementationTable;