os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/underflowautostopcontrolci.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/underflowautostopcontrolci.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,289 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <ecom/implementationproxy.h>
1.20 +#include <ecom/implementationproxy.h>
1.21 +#include <ecom/ecom.h>
1.22 +#include <s32mem.h>
1.23 +
1.24 +#include "underflowautostopcontrolci.h"
1.25 +
1.26 +
1.27 +// MUX //
1.28 +
1.29 +TInt CMMFUnderflowAutoStopControlMux::OpenInterface(TUid /*aInterfaceId*/)
1.30 + {
1.31 + // attempt to open the interface link with the
1.32 + // remote slave device
1.33 + iRemoteHandle = -1;
1.34 + TUid slaveId = {KMmfUidCustomInterfaceUnderflowAutoStopCtrlDeMux};
1.35 +
1.36 + TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
1.37 + if (handle >= 0)
1.38 + {
1.39 + iRemoteHandle = handle;
1.40 + }
1.41 +
1.42 + return iRemoteHandle;
1.43 + }
1.44 +
1.45 +
1.46 +void CMMFUnderflowAutoStopControlMux::Release()
1.47 + {
1.48 + // close the slave device if it exists
1.49 + if (iRemoteHandle > 0)
1.50 + {
1.51 + // we assume the slave is closed correctly
1.52 + iUtility->CloseSlave(iRemoteHandle);
1.53 + }
1.54 +
1.55 + TUid key = iKey;
1.56 + delete this;
1.57 +
1.58 + // tell ECom to destroy us
1.59 + REComSession::DestroyedImplementation(key);
1.60 + }
1.61 +
1.62 +
1.63 +void CMMFUnderflowAutoStopControlMux::PassDestructorKey(TUid aDestructorKey)
1.64 + {
1.65 + // store the destructor key
1.66 + iKey = aDestructorKey;
1.67 + }
1.68 +
1.69 +
1.70 +void CMMFUnderflowAutoStopControlMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
1.71 + {
1.72 + // store a pointer to the utility
1.73 + iUtility = aCustomUtility;
1.74 + }
1.75 +
1.76 +
1.77 +MMMFDevSoundCustomInterfaceMuxPlugin* CMMFUnderflowAutoStopControlMux::NewL()
1.78 + {
1.79 + CMMFUnderflowAutoStopControlMux* self = new (ELeave) CMMFUnderflowAutoStopControlMux;
1.80 + return self;
1.81 + }
1.82 +
1.83 +
1.84 +TAny* CMMFUnderflowAutoStopControlMux::CustomInterface(TUid /*aInterfaceId*/)
1.85 + {
1.86 + MMMFUnderflowAutoStopControl* interface = this;
1.87 + return interface;
1.88 + }
1.89 +
1.90 +
1.91 +CMMFUnderflowAutoStopControlMux::CMMFUnderflowAutoStopControlMux() :
1.92 + iRemoteHandle(-1)
1.93 + {
1.94 + }
1.95 +
1.96 +
1.97 +CMMFUnderflowAutoStopControlMux::~CMMFUnderflowAutoStopControlMux()
1.98 + {
1.99 + }
1.100 +
1.101 +
1.102 +// from MMMFUnderflowAutoStopControl
1.103 +TInt CMMFUnderflowAutoStopControlMux::MmuascTurnOffUnderflowAutoStop ()
1.104 + {
1.105 + TInt result = KErrGeneral;
1.106 +
1.107 + if (iRemoteHandle > 0)
1.108 + {
1.109 + // any return code other than zero is an error
1.110 + result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
1.111 + EMMFDevSoundCIUnderflowAutoStopCtrlTurnOffUnderflowAutoStop,
1.112 + KNullDesC8);
1.113 + }
1.114 +
1.115 + return result;
1.116 + }
1.117 +
1.118 +
1.119 +
1.120 +// DEMUX //
1.121 +
1.122 +TInt CMMFUnderflowAutoStopControlDeMux::OpenInterface(TUid /*aInterfaceId*/)
1.123 + {
1.124 + return KErrNone;
1.125 + }
1.126 +
1.127 +
1.128 +void CMMFUnderflowAutoStopControlDeMux::Release()
1.129 + {
1.130 + TUid key = iKey;
1.131 +
1.132 + delete this;
1.133 +
1.134 + // tell ECom to destroy us
1.135 + REComSession::DestroyedImplementation(key);
1.136 + }
1.137 +
1.138 +
1.139 +void CMMFUnderflowAutoStopControlDeMux::PassDestructorKey(TUid aDestructorKey)
1.140 + {
1.141 + // store the destructor key
1.142 + iKey = aDestructorKey;
1.143 + }
1.144 +
1.145 +
1.146 +void CMMFUnderflowAutoStopControlDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
1.147 + {
1.148 + iTarget = aTarget;
1.149 + }
1.150 +
1.151 +
1.152 +void CMMFUnderflowAutoStopControlDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
1.153 + {
1.154 + // store a pointer to the utility
1.155 + iUtility = aCustomUtility;
1.156 + }
1.157 +
1.158 +
1.159 +void CMMFUnderflowAutoStopControlDeMux::RefreshL()
1.160 + {
1.161 + // refetch the UnderflowAutoStop Control custom interface if we already have a target
1.162 + if (iTarget)
1.163 + {
1.164 + iInterfaceUnderflowAutoStopCtrl = static_cast <MMMFUnderflowAutoStopControl*> (iTarget->CustomInterface(KUidUnderflowAutoStopControl));
1.165 +
1.166 + if (!iInterfaceUnderflowAutoStopCtrl)
1.167 + {
1.168 + iInterfaceUnderflowAutoStopCtrl = NULL;
1.169 + User::Leave(KErrNotSupported);
1.170 + }
1.171 + }
1.172 + }
1.173 +
1.174 +
1.175 +MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFUnderflowAutoStopControlDeMux::NewL()
1.176 + {
1.177 + CMMFUnderflowAutoStopControlDeMux* self = new (ELeave) CMMFUnderflowAutoStopControlDeMux;
1.178 + return self;
1.179 + }
1.180 +
1.181 +
1.182 +CMMFUnderflowAutoStopControlDeMux::CMMFUnderflowAutoStopControlDeMux()
1.183 + {
1.184 + }
1.185 +
1.186 +
1.187 +CMMFUnderflowAutoStopControlDeMux::~CMMFUnderflowAutoStopControlDeMux()
1.188 + {
1.189 + }
1.190 +
1.191 +
1.192 +TInt CMMFUnderflowAutoStopControlDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
1.193 + {
1.194 + // fetch the UnderflowAutoStop Control Hw Device custom interface
1.195 + iInterfaceUnderflowAutoStopCtrl = static_cast<MMMFUnderflowAutoStopControl*> (iTarget->CustomInterface(KUidUnderflowAutoStopControl));
1.196 +
1.197 + if (!iInterfaceUnderflowAutoStopCtrl)
1.198 + {
1.199 + iInterfaceUnderflowAutoStopCtrl = NULL;
1.200 + User::Leave(KErrNotSupported);
1.201 + }
1.202 +
1.203 + return KErrNone;
1.204 + }
1.205 +
1.206 +
1.207 +void CMMFUnderflowAutoStopControlDeMux::DoCloseSlaveL(TInt /*aHandle*/)
1.208 + {
1.209 + // nothing to do
1.210 + }
1.211 +
1.212 +
1.213 +// original RMessage is supplied so that remote demux plugin can extract necessary details
1.214 +// using DeMux utility
1.215 +TInt CMMFUnderflowAutoStopControlDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
1.216 + {
1.217 + TMMFDevSoundCIMessageData data;
1.218 + TInt result = KErrGeneral;
1.219 +
1.220 + // decode message
1.221 + iUtility->GetSyncMessageDataL(aMessage, data);
1.222 +
1.223 + switch (data.iCommand)
1.224 + {
1.225 + case EMMFDevSoundCIUnderflowAutoStopCtrlTurnOffUnderflowAutoStop:
1.226 + {
1.227 + result = DoMmuascTurnOffUnderflowAutoStopL();
1.228 +
1.229 + break;
1.230 + }
1.231 + default:
1.232 + {
1.233 + User::Leave(KErrNotSupported);
1.234 + }
1.235 + }
1.236 +
1.237 + return result;
1.238 + }
1.239 +
1.240 +
1.241 +// original RMessage is supplied so that remote demux plugin can extract necessary details
1.242 +// using DeMux utility
1.243 +TInt CMMFUnderflowAutoStopControlDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
1.244 + {
1.245 + return KErrNone;
1.246 + }
1.247 +
1.248 +
1.249 +void CMMFUnderflowAutoStopControlDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
1.250 + {
1.251 + // not used in this interface
1.252 + }
1.253 +
1.254 +
1.255 +void CMMFUnderflowAutoStopControlDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
1.256 + {
1.257 + // not used in this interface
1.258 + }
1.259 +
1.260 +
1.261 +TInt CMMFUnderflowAutoStopControlDeMux::DoMmuascTurnOffUnderflowAutoStopL()
1.262 + {
1.263 + TInt result = KErrNotFound;
1.264 +
1.265 + if (iInterfaceUnderflowAutoStopCtrl)
1.266 + {
1.267 + result = iInterfaceUnderflowAutoStopCtrl->MmuascTurnOffUnderflowAutoStop();
1.268 + }
1.269 +
1.270 + return result;
1.271 + }
1.272 +
1.273 +
1.274 +//
1.275 +// ImplementationTable
1.276 +//
1.277 +const TImplementationProxy ImplementationTable[] =
1.278 + {
1.279 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceUnderflowAutoStopCtrlMux, CMMFUnderflowAutoStopControlMux::NewL),
1.280 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceUnderflowAutoStopCtrlDeMux, CMMFUnderflowAutoStopControlDeMux::NewL),
1.281 + };
1.282 +
1.283 +//
1.284 +// ImplementationGroupProxy
1.285 +//
1.286 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
1.287 + {
1.288 + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
1.289 +
1.290 + return ImplementationTable;
1.291 + }
1.292 +