os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/g729encoderconfigci.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 "g729encoderconfigci.h"
26 TInt CMMFG729EncoderIntfcMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceG729EncoderIntfcDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
43 void CMMFG729EncoderIntfcMux::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 CMMFG729EncoderIntfcMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iKey = aDestructorKey;
67 void CMMFG729EncoderIntfcMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFG729EncoderIntfcMux::NewL()
76 CMMFG729EncoderIntfcMux* self = new (ELeave) CMMFG729EncoderIntfcMux;
81 TAny* CMMFG729EncoderIntfcMux::CustomInterface(TUid /*aInterfaceId*/)
83 MG729EncoderIntfc* interface = this;
88 CMMFG729EncoderIntfcMux::CMMFG729EncoderIntfcMux() :
94 CMMFG729EncoderIntfcMux::~CMMFG729EncoderIntfcMux()
99 // from MG729EncoderIntfc
100 TInt CMMFG729EncoderIntfcMux::SetVadMode (TBool aVadModeOn)
102 TInt result = KErrBadHandle;
104 if (iRemoteHandle > 0)
106 // send the vadMode in the sync command
107 TPckgBuf<TBool> vadModeOn(aVadModeOn);
109 // any return code other than zero is an error
110 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
111 EMMFDevSoundCIG729EncoderIntfcSetVadMode,
119 // from MG729EncoderIntfc
120 TInt CMMFG729EncoderIntfcMux::GetVadMode (TBool& aVadModeOn)
122 TInt result = KErrBadHandle;
124 if (iRemoteHandle > 0)
126 //holds the returned value
127 TPckgBuf<TBool> retVadModeOn;
129 // any return code other than zero is an error
130 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
131 EMMFDevSoundCIG729EncoderIntfcGetVadMode,
135 // assign return values to aVadModeOn. Do nothing if there is an error
136 if(result == KErrNone)
138 aVadModeOn = retVadModeOn();
149 TInt CMMFG729EncoderIntfcDeMux::OpenInterface(TUid /*aInterfaceId*/)
155 void CMMFG729EncoderIntfcDeMux::Release()
161 // tell ECom to destroy us
162 REComSession::DestroyedImplementation(key);
166 void CMMFG729EncoderIntfcDeMux::PassDestructorKey(TUid aDestructorKey)
168 // store the destructor key
169 iKey = aDestructorKey;
173 void CMMFG729EncoderIntfcDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
179 void CMMFG729EncoderIntfcDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
181 // store a pointer to the utility
182 iUtility = aCustomUtility;
186 void CMMFG729EncoderIntfcDeMux::RefreshL()
188 // refetch the G729 encoder intfc custom interface if we already have a target
191 iInterfaceG729EncoderIntfc = static_cast <MG729EncoderIntfc*> (iTarget->CustomInterface(KUidG729EncoderIntfc));
193 if (!iInterfaceG729EncoderIntfc)
195 iInterfaceG729EncoderIntfc = NULL;
196 User::Leave(KErrNotSupported);
202 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFG729EncoderIntfcDeMux::NewL()
204 CMMFG729EncoderIntfcDeMux* self = new (ELeave) CMMFG729EncoderIntfcDeMux;
209 CMMFG729EncoderIntfcDeMux::CMMFG729EncoderIntfcDeMux()
214 CMMFG729EncoderIntfcDeMux::~CMMFG729EncoderIntfcDeMux()
219 TInt CMMFG729EncoderIntfcDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
221 // fetch the G729 encoder intfc Hw Device custom interface
222 iInterfaceG729EncoderIntfc = static_cast<MG729EncoderIntfc*> (iTarget->CustomInterface(KUidG729EncoderIntfc));
224 if (!iInterfaceG729EncoderIntfc)
226 iInterfaceG729EncoderIntfc = NULL;
227 User::Leave(KErrNotSupported);
234 void CMMFG729EncoderIntfcDeMux::DoCloseSlaveL(TInt /*aHandle*/)
240 // original RMessage is supplied so that remote demux plugin can extract necessary details
241 // using DeMux utility
242 TInt CMMFG729EncoderIntfcDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
244 TMMFDevSoundCIMessageData data;
245 TInt result = KErrGeneral;
248 iUtility->GetSyncMessageDataL(aMessage, data);
250 switch (data.iCommand)
252 case EMMFDevSoundCIG729EncoderIntfcSetVadMode:
254 TPckgBuf<TBool> vadModeOn;
255 iUtility->ReadFromInputDesL(aMessage, &vadModeOn);
257 result = DoSetVadModeL(vadModeOn());
263 User::Leave(KErrNotSupported);
271 TInt CMMFG729EncoderIntfcDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
273 TMMFDevSoundCIMessageData data;
274 TInt result = KErrNone;
277 iUtility->GetSyncMessageDataL(aMessage, data);
279 switch (data.iCommand)
281 case EMMFDevSoundCIG729EncoderIntfcGetVadMode:
283 TPckgBuf<TBool> vadModeOn;
284 iUtility->ReadFromInputDesL(aMessage, &vadModeOn);
286 result = DoGetVadModeL(vadModeOn());
288 TPckgBuf<TBool> des(vadModeOn());
289 iUtility->WriteToOutputDesL(aMessage, des);
295 User::Leave(KErrNotSupported);
303 void CMMFG729EncoderIntfcDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
305 // not used in this interface
309 void CMMFG729EncoderIntfcDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
311 // not used in this interface
315 TInt CMMFG729EncoderIntfcDeMux::DoSetVadModeL(TBool aVadModeOn)
317 TInt result = KErrNotFound;
319 if (iInterfaceG729EncoderIntfc)
321 result = iInterfaceG729EncoderIntfc->SetVadMode(aVadModeOn);
328 TInt CMMFG729EncoderIntfcDeMux::DoGetVadModeL(TBool& aVadModeOn)
330 TInt result = KErrNotFound;
332 if (iInterfaceG729EncoderIntfc)
334 result = iInterfaceG729EncoderIntfc->GetVadMode(aVadModeOn);
342 // ImplementationTable
344 const TImplementationProxy ImplementationTable[] =
346 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG729EncoderIntfcMux, CMMFG729EncoderIntfcMux::NewL),
347 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG729EncoderIntfcDeMux, CMMFG729EncoderIntfcDeMux::NewL),
351 // ImplementationGroupProxy
353 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
355 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
357 return ImplementationTable;