1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/gettimestampsci.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,367 @@
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 +
1.23 +#include "gettimestampsci.h"
1.24 +
1.25 +class TPositionTimestamp
1.26 + {
1.27 +public:
1.28 + TTimeIntervalMicroSeconds iBufferPosition;
1.29 + TTime iTimestamp;
1.30 + };
1.31 +
1.32 +// MUX //
1.33 +/*****************************************************************************/
1.34 +
1.35 +TInt CMMFGetTimestampsMux::OpenInterface(TUid /*aInterfaceId*/)
1.36 + {
1.37 + // attempt to open the interface link with the
1.38 + // remote slave device
1.39 + iRemoteHandle = -1;
1.40 + TUid slaveId = {KMmfUidCustomInterfaceGetTimestampsDeMux};
1.41 +
1.42 + TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
1.43 + if (handle >= 0)
1.44 + {
1.45 + iRemoteHandle = handle;
1.46 + }
1.47 +
1.48 + return iRemoteHandle;
1.49 + }
1.50 +
1.51 +/*****************************************************************************/
1.52 +void CMMFGetTimestampsMux::Release()
1.53 + {
1.54 + // close the slave device if it exists
1.55 + if (iRemoteHandle > 0)
1.56 + {
1.57 + // we assume the slave is closed correctly
1.58 + iUtility->CloseSlave(iRemoteHandle);
1.59 + }
1.60 +
1.61 + TUid key = iDestructorKey;
1.62 + delete this;
1.63 +
1.64 + // tell ECom to destroy us
1.65 + REComSession::DestroyedImplementation(key);
1.66 + }
1.67 +
1.68 +/*****************************************************************************/
1.69 +void CMMFGetTimestampsMux::PassDestructorKey(TUid aDestructorKey)
1.70 + {
1.71 + // store the destructor key
1.72 + iDestructorKey = aDestructorKey;
1.73 + }
1.74 +
1.75 +/*****************************************************************************/
1.76 +void CMMFGetTimestampsMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
1.77 + {
1.78 + // store a pointer to the utility
1.79 + iUtility = aCustomUtility;
1.80 + }
1.81 +
1.82 +/*****************************************************************************/
1.83 +MMMFDevSoundCustomInterfaceMuxPlugin* CMMFGetTimestampsMux::NewL()
1.84 + {
1.85 + CMMFGetTimestampsMux* self = new (ELeave) CMMFGetTimestampsMux;
1.86 + return self;
1.87 + }
1.88 +
1.89 +/*****************************************************************************/
1.90 +TAny* CMMFGetTimestampsMux::CustomInterface(TUid /*aInterfaceId*/)
1.91 + {
1.92 + MMMFGetTimestamps* interface = this;
1.93 + return interface;
1.94 + }
1.95 +
1.96 +/*****************************************************************************/
1.97 +CMMFGetTimestampsMux::CMMFGetTimestampsMux() :
1.98 + iRemoteHandle(-1)
1.99 + {
1.100 + }
1.101 +
1.102 +/*****************************************************************************/
1.103 +CMMFGetTimestampsMux::~CMMFGetTimestampsMux()
1.104 + {
1.105 + }
1.106 +
1.107 +/*****************************************************************************/
1.108 +// from MMMFGetTimestamps
1.109 +TInt CMMFGetTimestampsMux::MmgtSetRecordSystemTimestampsEnabled(TBool aEnable)
1.110 + {
1.111 + if (iRemoteHandle > 0)
1.112 + {
1.113 + // send the enable flag in the sync command
1.114 + TPckgBuf<TBool> flag(aEnable);
1.115 +
1.116 + // any return code other than zero is an error
1.117 + return iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIGetTimestampsEnable, flag);
1.118 + }
1.119 + else
1.120 + {
1.121 + return KErrNotReady;
1.122 + }
1.123 + }
1.124 +
1.125 +TInt CMMFGetTimestampsMux::MmgtGetSystemTimestampForBuffer(const TTimeIntervalMicroSeconds& aBufferPosition,
1.126 + TTime& aTimestamp) const
1.127 + {
1.128 + TInt err = KErrNotReady;
1.129 + if (iRemoteHandle > 0)
1.130 + {
1.131 + // send the position and timestamp in the sync command
1.132 + TPositionTimestamp value;
1.133 + value.iBufferPosition = aBufferPosition;
1.134 + value.iTimestamp = aTimestamp;
1.135 + TPckgBuf<TPositionTimestamp> pckgBuffer(value);
1.136 +
1.137 + // any return code other than zero is an error
1.138 + err = iUtility->SendSlaveSyncCommandResult(iRemoteHandle, EMMFDevSoundCIGetTimestampsForBuffer,
1.139 + pckgBuffer, pckgBuffer);
1.140 + aTimestamp = pckgBuffer().iTimestamp;
1.141 + }
1.142 +
1.143 + return err;
1.144 + }
1.145 +
1.146 +
1.147 +
1.148 +// DEMUX //
1.149 +/*****************************************************************************/
1.150 +TInt CMMFGetTimestampsDeMux::OpenInterface(TUid /*aInterfaceId*/)
1.151 + {
1.152 + return KErrNone;
1.153 + }
1.154 +
1.155 +/*****************************************************************************/
1.156 +void CMMFGetTimestampsDeMux::Release()
1.157 + {
1.158 + TUid key = iDestructorKey;
1.159 +
1.160 + delete this;
1.161 +
1.162 + // tell ECom to destroy us
1.163 + REComSession::DestroyedImplementation(key);
1.164 + }
1.165 +
1.166 +/*****************************************************************************/
1.167 +void CMMFGetTimestampsDeMux::PassDestructorKey(TUid aDestructorKey)
1.168 + {
1.169 + // store the destructor key
1.170 + iDestructorKey = aDestructorKey;
1.171 + }
1.172 +
1.173 +/*****************************************************************************/
1.174 +void CMMFGetTimestampsDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
1.175 + {
1.176 + iTarget = aTarget;
1.177 + }
1.178 +
1.179 +/*****************************************************************************/
1.180 +void CMMFGetTimestampsDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
1.181 + {
1.182 + // store a pointer to the utility
1.183 + iUtility = aCustomUtility;
1.184 + }
1.185 +
1.186 +/*****************************************************************************/
1.187 +void CMMFGetTimestampsDeMux::RefreshL()
1.188 + {
1.189 + // refetch the play back status custom interface if we already have a target
1.190 + if (iTarget)
1.191 + {
1.192 + MMMFGetTimestamps* ptr = NULL;
1.193 +
1.194 + ptr = static_cast <MMMFGetTimestamps*> (iTarget->CustomInterface(KUidGetTimestamps));
1.195 +
1.196 + if (!ptr)
1.197 + {
1.198 + iInterfaceGetTimestamps = NULL;
1.199 + User::Leave(KErrNotSupported);
1.200 + }
1.201 + else
1.202 + {
1.203 + iInterfaceGetTimestamps = ptr;
1.204 + }
1.205 + }
1.206 + }
1.207 +
1.208 +/*****************************************************************************/
1.209 +MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFGetTimestampsDeMux::NewL()
1.210 + {
1.211 + CMMFGetTimestampsDeMux* self = new (ELeave) CMMFGetTimestampsDeMux;
1.212 + return self;
1.213 + }
1.214 +
1.215 +/*****************************************************************************/
1.216 +CMMFGetTimestampsDeMux::CMMFGetTimestampsDeMux()
1.217 + {
1.218 + }
1.219 +
1.220 +/*****************************************************************************/
1.221 +CMMFGetTimestampsDeMux::~CMMFGetTimestampsDeMux()
1.222 + {
1.223 + }
1.224 +
1.225 +/*****************************************************************************/
1.226 +TInt CMMFGetTimestampsDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
1.227 + {
1.228 + // fetch the Playback status Hw Device custom interface
1.229 + MMMFGetTimestamps* ptr = NULL;
1.230 +
1.231 + ptr = static_cast<MMMFGetTimestamps*> (iTarget->CustomInterface(KUidGetTimestamps));
1.232 +
1.233 + if (!ptr)
1.234 + {
1.235 + iInterfaceGetTimestamps = NULL;
1.236 + User::Leave(KErrNotSupported);
1.237 + }
1.238 + else
1.239 + {
1.240 + iInterfaceGetTimestamps = ptr;
1.241 + }
1.242 + return KErrNone;
1.243 + }
1.244 +
1.245 +/*****************************************************************************/
1.246 +void CMMFGetTimestampsDeMux::DoCloseSlaveL(TInt /*aHandle*/)
1.247 + {
1.248 + // nothing to do
1.249 + }
1.250 +
1.251 +/*****************************************************************************/
1.252 +// original RMessage is supplied so that remote demux plugin can extract necessary details
1.253 +// using DeMux utility
1.254 +TInt CMMFGetTimestampsDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
1.255 + {
1.256 + TMMFDevSoundCIMessageData data;
1.257 +
1.258 + TInt retVal = KErrNone;
1.259 +
1.260 + // decode message
1.261 + iUtility->GetSyncMessageDataL(aMessage, data);
1.262 +
1.263 + switch (data.iCommand)
1.264 + {
1.265 + case EMMFDevSoundCIGetTimestampsEnable:
1.266 + {
1.267 + TPckgBuf<TBool> flag;
1.268 + iUtility->ReadFromInputDesL(aMessage, &flag);
1.269 + retVal = DoMmgtSetRecordSystemTimestampsEnabled(flag());
1.270 + break;
1.271 + }
1.272 + default:
1.273 + {
1.274 + User::Leave(KErrNotSupported);
1.275 + }
1.276 + }
1.277 + return retVal;
1.278 + }
1.279 +
1.280 +/*****************************************************************************/
1.281 +TInt CMMFGetTimestampsDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
1.282 + {
1.283 + TMMFDevSoundCIMessageData data;
1.284 +
1.285 + TInt retVal = KErrNone;
1.286 +
1.287 + // decode message
1.288 + iUtility->GetSyncMessageDataL(aMessage, data);
1.289 +
1.290 + switch (data.iCommand)
1.291 + {
1.292 + case EMMFDevSoundCIGetTimestampsForBuffer:
1.293 + {
1.294 + TPckgBuf<TPositionTimestamp> value;
1.295 + iUtility->ReadFromInputDesL(aMessage, &value);
1.296 + retVal = DoMmgtGetSystemTimestampForBuffer(value().iBufferPosition, value().iTimestamp);
1.297 + iUtility->WriteToOutputDesL(aMessage, value);
1.298 + break;
1.299 + }
1.300 + default:
1.301 + {
1.302 + User::Leave(KErrNotSupported);
1.303 + }
1.304 + }
1.305 + return retVal;
1.306 + }
1.307 +
1.308 +/*****************************************************************************/
1.309 +void CMMFGetTimestampsDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
1.310 + {
1.311 + // not used in this interface
1.312 + }
1.313 +
1.314 +/*****************************************************************************/
1.315 +void CMMFGetTimestampsDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
1.316 + {
1.317 + // not used in this interface
1.318 + }
1.319 +
1.320 +/*****************************************************************************/
1.321 +// Get Timestamp custom interface implementation
1.322 +TInt CMMFGetTimestampsDeMux::DoMmgtSetRecordSystemTimestampsEnabled(TBool aEnable)
1.323 + {
1.324 + if (!iInterfaceGetTimestamps)
1.325 + {
1.326 + return KErrNotReady;
1.327 + }
1.328 + else
1.329 + {
1.330 + return iInterfaceGetTimestamps->MmgtSetRecordSystemTimestampsEnabled(aEnable);
1.331 + }
1.332 + }
1.333 +
1.334 +TInt CMMFGetTimestampsDeMux::DoMmgtGetSystemTimestampForBuffer(const TTimeIntervalMicroSeconds& aBufferPosition,
1.335 + TTime& aTimestamp)
1.336 + {
1.337 + if (!iInterfaceGetTimestamps)
1.338 + {
1.339 + return KErrNotReady;
1.340 + }
1.341 + else
1.342 + {
1.343 + return iInterfaceGetTimestamps->MmgtGetSystemTimestampForBuffer(aBufferPosition, aTimestamp);
1.344 + }
1.345 + }
1.346 +/*****************************************************************************/
1.347 +//
1.348 +// ImplementationTable
1.349 +//
1.350 +
1.351 +const TImplementationProxy ImplementationTable[] =
1.352 + {
1.353 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceGetTimestampsMux, CMMFGetTimestampsMux::NewL),
1.354 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceGetTimestampsDeMux, CMMFGetTimestampsDeMux::NewL),
1.355 + };
1.356 +
1.357 +/*****************************************************************************/
1.358 +//
1.359 +// ImplementationGroupProxy
1.360 +//
1.361 +//
1.362 +
1.363 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
1.364 + {
1.365 + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
1.366 +
1.367 + return ImplementationTable;
1.368 + }
1.369 +
1.370 +