os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/audiovibracontrolci.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 "audiovibracontrolci.h"
26 TInt CMMFAudioVibraControlMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceAudioVibraControlDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
43 void CMMFAudioVibraControlMux::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 CMMFAudioVibraControlMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iKey = aDestructorKey;
67 void CMMFAudioVibraControlMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFAudioVibraControlMux::NewL()
76 CMMFAudioVibraControlMux* self = new (ELeave) CMMFAudioVibraControlMux;
81 TAny* CMMFAudioVibraControlMux::CustomInterface(TUid /*aInterfaceId*/)
83 MAudioVibraControl* interface = this;
88 CMMFAudioVibraControlMux::CMMFAudioVibraControlMux() :
94 CMMFAudioVibraControlMux::~CMMFAudioVibraControlMux()
99 // from MAudioVibraControl
100 TInt CMMFAudioVibraControlMux::StartVibra()
102 TInt result = KErrBadHandle;
104 if (iRemoteHandle > 0)
106 // any return code other than zero is an error
107 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
108 EMMFDevSoundCIAudioVibraControlStartVibra,
116 // from MAudioVibraControl
117 TInt CMMFAudioVibraControlMux::StopVibra()
119 TInt result = KErrBadHandle;
121 if (iRemoteHandle > 0)
123 // any return code other than zero is an error
124 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
125 EMMFDevSoundCIAudioVibraControlStopVibra,
136 TInt CMMFAudioVibraControlDeMux::OpenInterface(TUid /*aInterfaceId*/)
142 void CMMFAudioVibraControlDeMux::Release()
148 // tell ECom to destroy us
149 REComSession::DestroyedImplementation(key);
153 void CMMFAudioVibraControlDeMux::PassDestructorKey(TUid aDestructorKey)
155 // store the destructor key
156 iKey = aDestructorKey;
160 void CMMFAudioVibraControlDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
166 void CMMFAudioVibraControlDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
168 // store a pointer to the utility
169 iUtility = aCustomUtility;
173 void CMMFAudioVibraControlDeMux::RefreshL()
175 // refetch the Audio vibra control custom interface if we already have a target
178 iInterfaceAudioVibraControl = static_cast <MAudioVibraControl*> (iTarget->CustomInterface(KUidAudioVibraControl));
180 if (!iInterfaceAudioVibraControl)
182 iInterfaceAudioVibraControl = NULL;
183 User::Leave(KErrNotSupported);
189 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFAudioVibraControlDeMux::NewL()
191 CMMFAudioVibraControlDeMux* self = new (ELeave) CMMFAudioVibraControlDeMux;
196 CMMFAudioVibraControlDeMux::CMMFAudioVibraControlDeMux()
201 CMMFAudioVibraControlDeMux::~CMMFAudioVibraControlDeMux()
206 TInt CMMFAudioVibraControlDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
208 // fetch the Audio vibra control Hw Device custom interface
209 iInterfaceAudioVibraControl = static_cast<MAudioVibraControl*> (iTarget->CustomInterface(KUidAudioVibraControl));
211 if (!iInterfaceAudioVibraControl)
213 iInterfaceAudioVibraControl = NULL;
214 User::Leave(KErrNotSupported);
221 void CMMFAudioVibraControlDeMux::DoCloseSlaveL(TInt /*aHandle*/)
227 // original RMessage is supplied so that remote demux plugin can extract necessary details
228 // using DeMux utility
229 TInt CMMFAudioVibraControlDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
231 TMMFDevSoundCIMessageData data;
232 TInt result = KErrGeneral;
235 iUtility->GetSyncMessageDataL(aMessage, data);
237 switch (data.iCommand)
239 case EMMFDevSoundCIAudioVibraControlStartVibra:
241 result = DoStartVibraL();
244 case EMMFDevSoundCIAudioVibraControlStopVibra:
246 result = DoStopVibraL();
251 User::Leave(KErrNotSupported);
259 TInt CMMFAudioVibraControlDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
265 void CMMFAudioVibraControlDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
267 // not used in this interface
271 void CMMFAudioVibraControlDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
273 // not used in this interface
277 TInt CMMFAudioVibraControlDeMux::DoStartVibraL()
279 TInt result = KErrNotFound;
281 if (iInterfaceAudioVibraControl)
283 result = iInterfaceAudioVibraControl->StartVibra();
290 TInt CMMFAudioVibraControlDeMux::DoStopVibraL()
292 TInt result = KErrNotFound;
294 if (iInterfaceAudioVibraControl)
296 result = iInterfaceAudioVibraControl->StopVibra();
303 // ImplementationTable
305 const TImplementationProxy ImplementationTable[] =
307 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAudioVibraControlMux, CMMFAudioVibraControlMux::NewL),
308 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAudioVibraControlDeMux, CMMFAudioVibraControlDeMux::NewL),
312 // ImplementationGroupProxy
314 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
316 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
318 return ImplementationTable;