os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/underflowautostopcontrolci.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 "underflowautostopcontrolci.h"
26 TInt CMMFUnderflowAutoStopControlMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceUnderflowAutoStopCtrlDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
43 void CMMFUnderflowAutoStopControlMux::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 CMMFUnderflowAutoStopControlMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iKey = aDestructorKey;
67 void CMMFUnderflowAutoStopControlMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFUnderflowAutoStopControlMux::NewL()
76 CMMFUnderflowAutoStopControlMux* self = new (ELeave) CMMFUnderflowAutoStopControlMux;
81 TAny* CMMFUnderflowAutoStopControlMux::CustomInterface(TUid /*aInterfaceId*/)
83 MMMFUnderflowAutoStopControl* interface = this;
88 CMMFUnderflowAutoStopControlMux::CMMFUnderflowAutoStopControlMux() :
94 CMMFUnderflowAutoStopControlMux::~CMMFUnderflowAutoStopControlMux()
99 // from MMMFUnderflowAutoStopControl
100 TInt CMMFUnderflowAutoStopControlMux::MmuascTurnOffUnderflowAutoStop ()
102 TInt result = KErrGeneral;
104 if (iRemoteHandle > 0)
106 // any return code other than zero is an error
107 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
108 EMMFDevSoundCIUnderflowAutoStopCtrlTurnOffUnderflowAutoStop,
119 TInt CMMFUnderflowAutoStopControlDeMux::OpenInterface(TUid /*aInterfaceId*/)
125 void CMMFUnderflowAutoStopControlDeMux::Release()
131 // tell ECom to destroy us
132 REComSession::DestroyedImplementation(key);
136 void CMMFUnderflowAutoStopControlDeMux::PassDestructorKey(TUid aDestructorKey)
138 // store the destructor key
139 iKey = aDestructorKey;
143 void CMMFUnderflowAutoStopControlDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
149 void CMMFUnderflowAutoStopControlDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
151 // store a pointer to the utility
152 iUtility = aCustomUtility;
156 void CMMFUnderflowAutoStopControlDeMux::RefreshL()
158 // refetch the UnderflowAutoStop Control custom interface if we already have a target
161 iInterfaceUnderflowAutoStopCtrl = static_cast <MMMFUnderflowAutoStopControl*> (iTarget->CustomInterface(KUidUnderflowAutoStopControl));
163 if (!iInterfaceUnderflowAutoStopCtrl)
165 iInterfaceUnderflowAutoStopCtrl = NULL;
166 User::Leave(KErrNotSupported);
172 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFUnderflowAutoStopControlDeMux::NewL()
174 CMMFUnderflowAutoStopControlDeMux* self = new (ELeave) CMMFUnderflowAutoStopControlDeMux;
179 CMMFUnderflowAutoStopControlDeMux::CMMFUnderflowAutoStopControlDeMux()
184 CMMFUnderflowAutoStopControlDeMux::~CMMFUnderflowAutoStopControlDeMux()
189 TInt CMMFUnderflowAutoStopControlDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
191 // fetch the UnderflowAutoStop Control Hw Device custom interface
192 iInterfaceUnderflowAutoStopCtrl = static_cast<MMMFUnderflowAutoStopControl*> (iTarget->CustomInterface(KUidUnderflowAutoStopControl));
194 if (!iInterfaceUnderflowAutoStopCtrl)
196 iInterfaceUnderflowAutoStopCtrl = NULL;
197 User::Leave(KErrNotSupported);
204 void CMMFUnderflowAutoStopControlDeMux::DoCloseSlaveL(TInt /*aHandle*/)
210 // original RMessage is supplied so that remote demux plugin can extract necessary details
211 // using DeMux utility
212 TInt CMMFUnderflowAutoStopControlDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
214 TMMFDevSoundCIMessageData data;
215 TInt result = KErrGeneral;
218 iUtility->GetSyncMessageDataL(aMessage, data);
220 switch (data.iCommand)
222 case EMMFDevSoundCIUnderflowAutoStopCtrlTurnOffUnderflowAutoStop:
224 result = DoMmuascTurnOffUnderflowAutoStopL();
230 User::Leave(KErrNotSupported);
238 // original RMessage is supplied so that remote demux plugin can extract necessary details
239 // using DeMux utility
240 TInt CMMFUnderflowAutoStopControlDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
246 void CMMFUnderflowAutoStopControlDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
248 // not used in this interface
252 void CMMFUnderflowAutoStopControlDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
254 // not used in this interface
258 TInt CMMFUnderflowAutoStopControlDeMux::DoMmuascTurnOffUnderflowAutoStopL()
260 TInt result = KErrNotFound;
262 if (iInterfaceUnderflowAutoStopCtrl)
264 result = iInterfaceUnderflowAutoStopCtrl->MmuascTurnOffUnderflowAutoStop();
272 // ImplementationTable
274 const TImplementationProxy ImplementationTable[] =
276 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceUnderflowAutoStopCtrlMux, CMMFUnderflowAutoStopControlMux::NewL),
277 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceUnderflowAutoStopCtrlDeMux, CMMFUnderflowAutoStopControlDeMux::NewL),
281 // ImplementationGroupProxy
283 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
285 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
287 return ImplementationTable;