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 "gsmconfigci.h"
26 TInt CMMFGsmConfigMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceGsmConfigDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
43 void CMMFGsmConfigMux::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 CMMFGsmConfigMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iKey = aDestructorKey;
67 void CMMFGsmConfigMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFGsmConfigMux::NewL()
76 CMMFGsmConfigMux* self = new (ELeave) CMMFGsmConfigMux;
81 TAny* CMMFGsmConfigMux::CustomInterface(TUid /*aInterfaceId*/)
83 MMMFGsmConfig* interface = this;
88 CMMFGsmConfigMux::CMMFGsmConfigMux() :
94 CMMFGsmConfigMux::~CMMFGsmConfigMux()
100 TInt CMMFGsmConfigMux::SetConversionFormat(TMMFGsmConversionFormat aConvFormat)
102 TInt result = KErrGeneral;
104 if (iRemoteHandle > 0)
106 // send the convFormat in the sync command
107 TPckgBuf<TMMFGsmConversionFormat> convFormat(aConvFormat);
109 // any return code other than zero is an error
110 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
111 EMMFDevSoundCIGsmConfigSetConversionFormat,
119 // from MMMFGsmConfig
120 TInt CMMFGsmConfigMux::ConversionFormat(TMMFGsmConversionFormat& aConvFormat) const
122 TInt result = KErrGeneral;
124 if (iRemoteHandle > 0)
126 // send the retConvFormat in the sync command
127 TPckgBuf<TMMFGsmConversionFormat> retConvFormat;
129 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
130 EMMFDevSoundCIGsmConfigGetConversionFormat,
134 // assign return values to aConvFormat. Do nothing if there is an error
135 if(result == KErrNone)
137 aConvFormat = retConvFormat();
148 TInt CMMFGsmConfigDeMux::OpenInterface(TUid /*aInterfaceId*/)
154 void CMMFGsmConfigDeMux::Release()
160 // tell ECom to destroy us
161 REComSession::DestroyedImplementation(key);
165 void CMMFGsmConfigDeMux::PassDestructorKey(TUid aDestructorKey)
167 // store the destructor key
168 iKey = aDestructorKey;
172 void CMMFGsmConfigDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
178 void CMMFGsmConfigDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
180 // store a pointer to the utility
181 iUtility = aCustomUtility;
185 void CMMFGsmConfigDeMux::RefreshL()
187 // refetch the Gsm config custom interface if we already have a target
190 iInterfaceGsmConfig = static_cast <MMMFGsmConfig*> (iTarget->CustomInterface(KUidGsmConfig));
192 if (!iInterfaceGsmConfig)
194 iInterfaceGsmConfig = NULL;
195 User::Leave(KErrNotSupported);
201 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFGsmConfigDeMux::NewL()
203 CMMFGsmConfigDeMux* self = new (ELeave) CMMFGsmConfigDeMux;
208 CMMFGsmConfigDeMux::CMMFGsmConfigDeMux()
213 CMMFGsmConfigDeMux::~CMMFGsmConfigDeMux()
218 TInt CMMFGsmConfigDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
220 // fetch the Gsm Config Hw Device custom interface
221 iInterfaceGsmConfig = static_cast<MMMFGsmConfig*> (iTarget->CustomInterface(KUidGsmConfig));
223 if (!iInterfaceGsmConfig)
225 iInterfaceGsmConfig = NULL;
226 User::Leave(KErrNotSupported);
233 void CMMFGsmConfigDeMux::DoCloseSlaveL(TInt /*aHandle*/)
239 // original RMessage is supplied so that remote demux plugin can extract necessary details
240 // using DeMux utility
241 TInt CMMFGsmConfigDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
243 TMMFDevSoundCIMessageData data;
244 TInt result = KErrNotSupported;
247 iUtility->GetSyncMessageDataL(aMessage, data);
249 switch (data.iCommand)
251 case EMMFDevSoundCIGsmConfigSetConversionFormat:
253 TPckgBuf<MMMFGsmConfig::TMMFGsmConversionFormat> convFormat;
254 iUtility->ReadFromInputDesL(aMessage, &convFormat);
256 result = DoSetConversionFormatL(convFormat());
262 User::Leave(KErrNotSupported);
270 TInt CMMFGsmConfigDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
272 TMMFDevSoundCIMessageData data;
273 TInt result = KErrNotSupported;
276 iUtility->GetSyncMessageDataL(aMessage, data);
278 switch (data.iCommand)
280 case EMMFDevSoundCIGsmConfigGetConversionFormat:
282 TPckgBuf<MMMFGsmConfig::TMMFGsmConversionFormat> convFormat;
283 iUtility->ReadFromInputDesL(aMessage, &convFormat);
285 result = DoConversionFormatL(convFormat());
287 TPckgBuf<TBool> des(convFormat());
288 iUtility->WriteToOutputDesL(aMessage, des);
293 User::Leave(KErrNotSupported);
301 void CMMFGsmConfigDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
303 // not used in this interface
307 void CMMFGsmConfigDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
309 // not used in this interface
313 // Gsm Config custom interface implementation
314 TInt CMMFGsmConfigDeMux::DoSetConversionFormatL(MMMFGsmConfig::TMMFGsmConversionFormat aConvFormat)
316 TInt result = KErrNotFound;
318 if (iInterfaceGsmConfig)
320 result = iInterfaceGsmConfig->SetConversionFormat(aConvFormat);
327 // Gsm Config custom interface implementation
328 TInt CMMFGsmConfigDeMux::DoConversionFormatL(MMMFGsmConfig::TMMFGsmConversionFormat& aConvFormat) const
330 TInt result = KErrNotFound;
332 if (iInterfaceGsmConfig)
334 result = iInterfaceGsmConfig->ConversionFormat(aConvFormat);
342 // ImplementationTable
344 const TImplementationProxy ImplementationTable[] =
346 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceGsmConfigMux, CMMFGsmConfigMux::NewL),
347 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceGsmConfigDeMux, CMMFGsmConfigDeMux::NewL),
351 // ImplementationGroupProxy
353 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
355 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
357 return ImplementationTable;