os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/audiobufferprefillci.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/audiobufferprefillci.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,417 @@
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 "audiobufferprefillci.h"
1.25 +
1.26 +
1.27 +// MUX //
1.28 +
1.29 +TInt CMMFSampleBufferingMux::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 = {KMmfUidCustomInterfaceSampleBufferingDeMux};
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 CMMFSampleBufferingMux::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 CMMFSampleBufferingMux::PassDestructorKey(TUid aDestructorKey)
1.64 + {
1.65 + // store the destructor key
1.66 + iKey = aDestructorKey;
1.67 + }
1.68 +
1.69 +
1.70 +void CMMFSampleBufferingMux::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* CMMFSampleBufferingMux::NewL()
1.78 + {
1.79 + CMMFSampleBufferingMux* self = new (ELeave) CMMFSampleBufferingMux;
1.80 + return self;
1.81 + }
1.82 +
1.83 +
1.84 +TAny* CMMFSampleBufferingMux::CustomInterface(TUid /*aInterfaceId*/)
1.85 + {
1.86 + MMMFSampleBuffering* interface = this;
1.87 + return interface;
1.88 + }
1.89 +
1.90 +
1.91 +CMMFSampleBufferingMux::CMMFSampleBufferingMux() :
1.92 +iRemoteHandle(-1)
1.93 + {
1.94 + }
1.95 +
1.96 +
1.97 +CMMFSampleBufferingMux::~CMMFSampleBufferingMux()
1.98 + {
1.99 + }
1.100 +
1.101 +
1.102 +// from MMMFSampleBuffering
1.103 +TInt CMMFSampleBufferingMux::MmsbEnableSampleBufferingBeforePlayback()
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 + EMMFDevSoundCIEnableSampleBufferingBeforePlayback,
1.112 + KNullDesC8);
1.113 + }
1.114 +
1.115 + return result;
1.116 + }
1.117 +
1.118 +
1.119 +// from MMMFSampleBuffering
1.120 +TInt CMMFSampleBufferingMux::MmsbDisableSampleBufferingBeforePlayback()
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 + EMMFDevSoundCIDisableSampleBufferingBeforePlayback,
1.129 + KNullDesC8);
1.130 + }
1.131 +
1.132 + return result;
1.133 + }
1.134 +
1.135 +
1.136 +// from MMMFSampleBuffering
1.137 +void CMMFSampleBufferingMux::MmsbNotifyPlayStarted(TRequestStatus& aStatus)
1.138 + {
1.139 + if (iRemoteHandle > 0)
1.140 + {
1.141 + // package the handle and command, and send in the Async command
1.142 + iCmdPkg().iHandle = iRemoteHandle;
1.143 + iCmdPkg().iCommand = EMMFDevSoundCINotifyPlayStarted;
1.144 +
1.145 + // any return code other than zero is an error
1.146 + iUtility->SendSlaveAsyncCommand(iCmdPkg, aStatus, KNullDesC8);
1.147 + }
1.148 + }
1.149 +
1.150 +
1.151 +// from MMMFSampleBuffering
1.152 +void CMMFSampleBufferingMux::MmsbCancelNotifyPlayStarted()
1.153 + {
1.154 + if (iRemoteHandle > 0)
1.155 + {
1.156 + // any return code other than zero is an error
1.157 + TInt result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
1.158 + EMMFDevSoundCICancelNotifyPlayStarted,
1.159 + KNullDesC8);
1.160 + }
1.161 + }
1.162 +
1.163 +
1.164 +
1.165 +// DEMUX //
1.166 +
1.167 +TInt CMMFSampleBufferingDeMux::OpenInterface(TUid /*aInterfaceId*/)
1.168 + {
1.169 + return KErrNone;
1.170 + }
1.171 +
1.172 +
1.173 +void CMMFSampleBufferingDeMux::Release()
1.174 + {
1.175 + TUid key = iKey;
1.176 +
1.177 + delete this;
1.178 +
1.179 + // tell ECom to destroy us
1.180 + REComSession::DestroyedImplementation(key);
1.181 + }
1.182 +
1.183 +
1.184 +void CMMFSampleBufferingDeMux::PassDestructorKey(TUid aDestructorKey)
1.185 + {
1.186 + // store the destructor key
1.187 + iKey = aDestructorKey;
1.188 + }
1.189 +
1.190 +
1.191 +void CMMFSampleBufferingDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
1.192 + {
1.193 + iTarget = aTarget;
1.194 + }
1.195 +
1.196 +
1.197 +void CMMFSampleBufferingDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
1.198 + {
1.199 + // store a pointer to the utility
1.200 + iUtility = aCustomUtility;
1.201 + }
1.202 +
1.203 +
1.204 +void CMMFSampleBufferingDeMux::RefreshL()
1.205 + {
1.206 + // refetch the Sample Buffering custom interface if we already have a target
1.207 + if (iTarget)
1.208 + {
1.209 + iInterfaceSampleBuffering = static_cast <MMMFSampleBuffering*> (iTarget->CustomInterface(KUidSampleBuffering ));
1.210 +
1.211 + if (!iInterfaceSampleBuffering)
1.212 + {
1.213 + iInterfaceSampleBuffering = NULL;
1.214 + User::Leave(KErrNotSupported);
1.215 + }
1.216 + }
1.217 + }
1.218 +
1.219 +
1.220 +MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFSampleBufferingDeMux::NewL()
1.221 + {
1.222 + CMMFSampleBufferingDeMux* self = new (ELeave) CMMFSampleBufferingDeMux;
1.223 + return self;
1.224 + }
1.225 +
1.226 +
1.227 +CMMFSampleBufferingDeMux::CMMFSampleBufferingDeMux() : CActive(CActive::EPriorityStandard)
1.228 + {
1.229 + CActiveScheduler::Add(this);
1.230 + }
1.231 +
1.232 +
1.233 +CMMFSampleBufferingDeMux::~CMMFSampleBufferingDeMux()
1.234 + {
1.235 + Cancel();
1.236 + }
1.237 +
1.238 +
1.239 +TInt CMMFSampleBufferingDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
1.240 + {
1.241 + // fetch the Sample Buffering Hw Device custom interface
1.242 + iInterfaceSampleBuffering = static_cast<MMMFSampleBuffering*> (iTarget->CustomInterface(KUidSampleBuffering));
1.243 +
1.244 + if (!iInterfaceSampleBuffering)
1.245 + {
1.246 + iInterfaceSampleBuffering = NULL;
1.247 + User::Leave(KErrNotSupported);
1.248 + }
1.249 +
1.250 + return KErrNone;
1.251 + }
1.252 +
1.253 +
1.254 +void CMMFSampleBufferingDeMux::DoCloseSlaveL(TInt /*aHandle*/)
1.255 + {
1.256 + // nothing to do
1.257 + }
1.258 +
1.259 +
1.260 +// original RMessage is supplied so that remote demux plugin can extract necessary details
1.261 +// using DeMux utility
1.262 +TInt CMMFSampleBufferingDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
1.263 + {
1.264 + TMMFDevSoundCIMessageData data;
1.265 + TInt result = KErrGeneral;
1.266 +
1.267 + // decode message
1.268 + iUtility->GetSyncMessageDataL(aMessage, data);
1.269 +
1.270 + switch (data.iCommand)
1.271 + {
1.272 + case EMMFDevSoundCIEnableSampleBufferingBeforePlayback:
1.273 + {
1.274 + result = DoMmsbEnableSampleBufferingBeforePlaybackL();
1.275 + break;
1.276 + }
1.277 + case EMMFDevSoundCIDisableSampleBufferingBeforePlayback:
1.278 + {
1.279 + result = DoMmsbDisableSampleBufferingBeforePlaybackL();
1.280 + break;
1.281 + }
1.282 + case EMMFDevSoundCICancelNotifyPlayStarted:
1.283 + {
1.284 + DoMmsbCancelNotifyPlayStartedL();
1.285 + break;
1.286 + }
1.287 + default:
1.288 + {
1.289 + User::Leave(KErrNotSupported);
1.290 + }
1.291 + }
1.292 +
1.293 + return result;
1.294 + }
1.295 +
1.296 +
1.297 +TInt CMMFSampleBufferingDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
1.298 + {
1.299 + return KErrNone;
1.300 + }
1.301 +
1.302 +
1.303 +void CMMFSampleBufferingDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage)
1.304 + {
1.305 + TMMFDevSoundCIMessageData data;
1.306 +
1.307 + // decode message
1.308 + iUtility->GetAsyncMessageDataL(aMessage, data);
1.309 +
1.310 + switch (data.iCommand)
1.311 + {
1.312 + case EMMFDevSoundCINotifyPlayStarted:
1.313 + {
1.314 + DoMmsbNotifyPlayStartedL(aMessage);
1.315 + break;
1.316 + }
1.317 + default:
1.318 + {
1.319 + User::Leave(KErrNotSupported);
1.320 + }
1.321 + }
1.322 + }
1.323 +
1.324 +
1.325 +void CMMFSampleBufferingDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
1.326 + {
1.327 + // not used in this interface
1.328 + }
1.329 +
1.330 +
1.331 +// Sample Buffering custom interface implementation
1.332 +TInt CMMFSampleBufferingDeMux::DoMmsbEnableSampleBufferingBeforePlaybackL()
1.333 + {
1.334 + TInt result = KErrNotFound;
1.335 +
1.336 + if (iInterfaceSampleBuffering)
1.337 + {
1.338 + result = iInterfaceSampleBuffering->MmsbEnableSampleBufferingBeforePlayback();
1.339 + }
1.340 +
1.341 + return result;
1.342 + }
1.343 +
1.344 +
1.345 +// Sample Buffering custom interface implementation
1.346 +TInt CMMFSampleBufferingDeMux::DoMmsbDisableSampleBufferingBeforePlaybackL()
1.347 + {
1.348 + TInt result = KErrNotFound;
1.349 +
1.350 + if (iInterfaceSampleBuffering)
1.351 + {
1.352 + result = iInterfaceSampleBuffering->MmsbDisableSampleBufferingBeforePlayback();
1.353 + }
1.354 +
1.355 + return result;
1.356 + }
1.357 +
1.358 +
1.359 +// Sample Buffering custom interface implementation
1.360 +void CMMFSampleBufferingDeMux::DoMmsbNotifyPlayStartedL(const RMmfIpcMessage& aMessage)
1.361 + {
1.362 + if (iInterfaceSampleBuffering)
1.363 + {
1.364 + // make a copy of the received message before jumping to the plugin.
1.365 + // It will be used on the reply to the client.
1.366 + iStoredMessage = aMessage;
1.367 +
1.368 + iInterfaceSampleBuffering->MmsbNotifyPlayStarted(iStatus);
1.369 +
1.370 + // check not already active
1.371 + ASSERT(!IsActive());
1.372 +
1.373 + SetActive();
1.374 + }
1.375 + }
1.376 +
1.377 +
1.378 +// Sample Buffering custom interface implementation
1.379 +void CMMFSampleBufferingDeMux::DoMmsbCancelNotifyPlayStartedL()
1.380 + {
1.381 + if (iInterfaceSampleBuffering)
1.382 + {
1.383 + iInterfaceSampleBuffering->MmsbCancelNotifyPlayStarted();
1.384 + }
1.385 + }
1.386 +
1.387 +
1.388 +// active object handling functions
1.389 +void CMMFSampleBufferingDeMux::RunL()
1.390 + {
1.391 + TInt err = iStatus.Int();
1.392 +
1.393 + // complete the client request
1.394 + iStoredMessage.Complete(err);
1.395 + }
1.396 +
1.397 +
1.398 +void CMMFSampleBufferingDeMux::DoCancel()
1.399 + {
1.400 + }
1.401 +
1.402 +//
1.403 +// ImplementationTable
1.404 +//
1.405 +const TImplementationProxy ImplementationTable[] =
1.406 + {
1.407 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSampleBufferingMux, CMMFSampleBufferingMux::NewL),
1.408 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSampleBufferingDeMux, CMMFSampleBufferingDeMux::NewL),
1.409 + };
1.410 +
1.411 +//
1.412 +// ImplementationGroupProxy
1.413 +//
1.414 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
1.415 + {
1.416 + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
1.417 +
1.418 + return ImplementationTable;
1.419 + }
1.420 +