os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/audiovibracontrolci.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/audiovibracontrolci.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,319 @@
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 "audiovibracontrolci.h"
1.25 +
1.26 +
1.27 +// MUX //
1.28 +
1.29 +TInt CMMFAudioVibraControlMux::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 = {KMmfUidCustomInterfaceAudioVibraControlDeMux};
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 CMMFAudioVibraControlMux::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 CMMFAudioVibraControlMux::PassDestructorKey(TUid aDestructorKey)
1.64 + {
1.65 + // store the destructor key
1.66 + iKey = aDestructorKey;
1.67 + }
1.68 +
1.69 +
1.70 +void CMMFAudioVibraControlMux::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* CMMFAudioVibraControlMux::NewL()
1.78 + {
1.79 + CMMFAudioVibraControlMux* self = new (ELeave) CMMFAudioVibraControlMux;
1.80 + return self;
1.81 + }
1.82 +
1.83 +
1.84 +TAny* CMMFAudioVibraControlMux::CustomInterface(TUid /*aInterfaceId*/)
1.85 + {
1.86 + MAudioVibraControl* interface = this;
1.87 + return interface;
1.88 + }
1.89 +
1.90 +
1.91 +CMMFAudioVibraControlMux::CMMFAudioVibraControlMux() :
1.92 + iRemoteHandle(-1)
1.93 + {
1.94 + }
1.95 +
1.96 +
1.97 +CMMFAudioVibraControlMux::~CMMFAudioVibraControlMux()
1.98 + {
1.99 + }
1.100 +
1.101 +
1.102 +// from MAudioVibraControl
1.103 +TInt CMMFAudioVibraControlMux::StartVibra()
1.104 + {
1.105 + TInt result = KErrBadHandle;
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 + EMMFDevSoundCIAudioVibraControlStartVibra,
1.112 + KNullDesC8);
1.113 + }
1.114 +
1.115 + return result;
1.116 + }
1.117 +
1.118 +
1.119 +// from MAudioVibraControl
1.120 +TInt CMMFAudioVibraControlMux::StopVibra()
1.121 + {
1.122 + TInt result = KErrBadHandle;
1.123 +
1.124 + if (iRemoteHandle > 0)
1.125 + {
1.126 + // any return code other than zero is an error
1.127 + result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
1.128 + EMMFDevSoundCIAudioVibraControlStopVibra,
1.129 + KNullDesC8);
1.130 + }
1.131 +
1.132 + return result;
1.133 + }
1.134 +
1.135 +
1.136 +
1.137 +// DEMUX //
1.138 +
1.139 +TInt CMMFAudioVibraControlDeMux::OpenInterface(TUid /*aInterfaceId*/)
1.140 + {
1.141 + return KErrNone;
1.142 + }
1.143 +
1.144 +
1.145 +void CMMFAudioVibraControlDeMux::Release()
1.146 + {
1.147 + TUid key = iKey;
1.148 +
1.149 + delete this;
1.150 +
1.151 + // tell ECom to destroy us
1.152 + REComSession::DestroyedImplementation(key);
1.153 + }
1.154 +
1.155 +
1.156 +void CMMFAudioVibraControlDeMux::PassDestructorKey(TUid aDestructorKey)
1.157 + {
1.158 + // store the destructor key
1.159 + iKey = aDestructorKey;
1.160 + }
1.161 +
1.162 +
1.163 +void CMMFAudioVibraControlDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
1.164 + {
1.165 + iTarget = aTarget;
1.166 + }
1.167 +
1.168 +
1.169 +void CMMFAudioVibraControlDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
1.170 + {
1.171 + // store a pointer to the utility
1.172 + iUtility = aCustomUtility;
1.173 + }
1.174 +
1.175 +
1.176 +void CMMFAudioVibraControlDeMux::RefreshL()
1.177 + {
1.178 + // refetch the Audio vibra control custom interface if we already have a target
1.179 + if (iTarget)
1.180 + {
1.181 + iInterfaceAudioVibraControl = static_cast <MAudioVibraControl*> (iTarget->CustomInterface(KUidAudioVibraControl));
1.182 +
1.183 + if (!iInterfaceAudioVibraControl)
1.184 + {
1.185 + iInterfaceAudioVibraControl = NULL;
1.186 + User::Leave(KErrNotSupported);
1.187 + }
1.188 + }
1.189 + }
1.190 +
1.191 +
1.192 +MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFAudioVibraControlDeMux::NewL()
1.193 + {
1.194 + CMMFAudioVibraControlDeMux* self = new (ELeave) CMMFAudioVibraControlDeMux;
1.195 + return self;
1.196 + }
1.197 +
1.198 +
1.199 +CMMFAudioVibraControlDeMux::CMMFAudioVibraControlDeMux()
1.200 + {
1.201 + }
1.202 +
1.203 +
1.204 +CMMFAudioVibraControlDeMux::~CMMFAudioVibraControlDeMux()
1.205 + {
1.206 + }
1.207 +
1.208 +
1.209 +TInt CMMFAudioVibraControlDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
1.210 + {
1.211 + // fetch the Audio vibra control Hw Device custom interface
1.212 + iInterfaceAudioVibraControl = static_cast<MAudioVibraControl*> (iTarget->CustomInterface(KUidAudioVibraControl));
1.213 +
1.214 + if (!iInterfaceAudioVibraControl)
1.215 + {
1.216 + iInterfaceAudioVibraControl = NULL;
1.217 + User::Leave(KErrNotSupported);
1.218 + }
1.219 +
1.220 + return KErrNone;
1.221 + }
1.222 +
1.223 +
1.224 +void CMMFAudioVibraControlDeMux::DoCloseSlaveL(TInt /*aHandle*/)
1.225 + {
1.226 + // nothing to do
1.227 + }
1.228 +
1.229 +
1.230 +// original RMessage is supplied so that remote demux plugin can extract necessary details
1.231 +// using DeMux utility
1.232 +TInt CMMFAudioVibraControlDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
1.233 + {
1.234 + TMMFDevSoundCIMessageData data;
1.235 + TInt result = KErrGeneral;
1.236 +
1.237 + // decode message
1.238 + iUtility->GetSyncMessageDataL(aMessage, data);
1.239 +
1.240 + switch (data.iCommand)
1.241 + {
1.242 + case EMMFDevSoundCIAudioVibraControlStartVibra:
1.243 + {
1.244 + result = DoStartVibraL();
1.245 + break;
1.246 + }
1.247 + case EMMFDevSoundCIAudioVibraControlStopVibra:
1.248 + {
1.249 + result = DoStopVibraL();
1.250 + break;
1.251 + }
1.252 + default:
1.253 + {
1.254 + User::Leave(KErrNotSupported);
1.255 + }
1.256 + }
1.257 +
1.258 + return result;
1.259 + }
1.260 +
1.261 +
1.262 +TInt CMMFAudioVibraControlDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
1.263 + {
1.264 + return KErrNone;
1.265 + }
1.266 +
1.267 +
1.268 +void CMMFAudioVibraControlDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
1.269 + {
1.270 + // not used in this interface
1.271 + }
1.272 +
1.273 +
1.274 +void CMMFAudioVibraControlDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
1.275 + {
1.276 + // not used in this interface
1.277 + }
1.278 +
1.279 +
1.280 +TInt CMMFAudioVibraControlDeMux::DoStartVibraL()
1.281 + {
1.282 + TInt result = KErrNotFound;
1.283 +
1.284 + if (iInterfaceAudioVibraControl)
1.285 + {
1.286 + result = iInterfaceAudioVibraControl->StartVibra();
1.287 + }
1.288 +
1.289 + return result;
1.290 + }
1.291 +
1.292 +
1.293 +TInt CMMFAudioVibraControlDeMux::DoStopVibraL()
1.294 + {
1.295 + TInt result = KErrNotFound;
1.296 +
1.297 + if (iInterfaceAudioVibraControl)
1.298 + {
1.299 + result = iInterfaceAudioVibraControl->StopVibra();
1.300 + }
1.301 +
1.302 + return result;
1.303 + }
1.304 +
1.305 +//
1.306 +// ImplementationTable
1.307 +//
1.308 +const TImplementationProxy ImplementationTable[] =
1.309 + {
1.310 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAudioVibraControlMux, CMMFAudioVibraControlMux::NewL),
1.311 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAudioVibraControlDeMux, CMMFAudioVibraControlDeMux::NewL),
1.312 + };
1.313 +
1.314 +//
1.315 +// ImplementationGroupProxy
1.316 +//
1.317 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
1.318 + {
1.319 + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
1.320 +
1.321 + return ImplementationTable;
1.322 + }