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