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>
20 #include "gettimestampsci.h"
22 class TPositionTimestamp
25 TTimeIntervalMicroSeconds iBufferPosition;
30 /*****************************************************************************/
32 TInt CMMFGetTimestampsMux::OpenInterface(TUid /*aInterfaceId*/)
34 // attempt to open the interface link with the
35 // remote slave device
37 TUid slaveId = {KMmfUidCustomInterfaceGetTimestampsDeMux};
39 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
42 iRemoteHandle = handle;
48 /*****************************************************************************/
49 void CMMFGetTimestampsMux::Release()
51 // close the slave device if it exists
52 if (iRemoteHandle > 0)
54 // we assume the slave is closed correctly
55 iUtility->CloseSlave(iRemoteHandle);
58 TUid key = iDestructorKey;
61 // tell ECom to destroy us
62 REComSession::DestroyedImplementation(key);
65 /*****************************************************************************/
66 void CMMFGetTimestampsMux::PassDestructorKey(TUid aDestructorKey)
68 // store the destructor key
69 iDestructorKey = aDestructorKey;
72 /*****************************************************************************/
73 void CMMFGetTimestampsMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
75 // store a pointer to the utility
76 iUtility = aCustomUtility;
79 /*****************************************************************************/
80 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFGetTimestampsMux::NewL()
82 CMMFGetTimestampsMux* self = new (ELeave) CMMFGetTimestampsMux;
86 /*****************************************************************************/
87 TAny* CMMFGetTimestampsMux::CustomInterface(TUid /*aInterfaceId*/)
89 MMMFGetTimestamps* interface = this;
93 /*****************************************************************************/
94 CMMFGetTimestampsMux::CMMFGetTimestampsMux() :
99 /*****************************************************************************/
100 CMMFGetTimestampsMux::~CMMFGetTimestampsMux()
104 /*****************************************************************************/
105 // from MMMFGetTimestamps
106 TInt CMMFGetTimestampsMux::MmgtSetRecordSystemTimestampsEnabled(TBool aEnable)
108 if (iRemoteHandle > 0)
110 // send the enable flag in the sync command
111 TPckgBuf<TBool> flag(aEnable);
113 // any return code other than zero is an error
114 return iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIGetTimestampsEnable, flag);
122 TInt CMMFGetTimestampsMux::MmgtGetSystemTimestampForBuffer(const TTimeIntervalMicroSeconds& aBufferPosition,
123 TTime& aTimestamp) const
125 TInt err = KErrNotReady;
126 if (iRemoteHandle > 0)
128 // send the position and timestamp in the sync command
129 TPositionTimestamp value;
130 value.iBufferPosition = aBufferPosition;
131 value.iTimestamp = aTimestamp;
132 TPckgBuf<TPositionTimestamp> pckgBuffer(value);
134 // any return code other than zero is an error
135 err = iUtility->SendSlaveSyncCommandResult(iRemoteHandle, EMMFDevSoundCIGetTimestampsForBuffer,
136 pckgBuffer, pckgBuffer);
137 aTimestamp = pckgBuffer().iTimestamp;
146 /*****************************************************************************/
147 TInt CMMFGetTimestampsDeMux::OpenInterface(TUid /*aInterfaceId*/)
152 /*****************************************************************************/
153 void CMMFGetTimestampsDeMux::Release()
155 TUid key = iDestructorKey;
159 // tell ECom to destroy us
160 REComSession::DestroyedImplementation(key);
163 /*****************************************************************************/
164 void CMMFGetTimestampsDeMux::PassDestructorKey(TUid aDestructorKey)
166 // store the destructor key
167 iDestructorKey = aDestructorKey;
170 /*****************************************************************************/
171 void CMMFGetTimestampsDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
176 /*****************************************************************************/
177 void CMMFGetTimestampsDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
179 // store a pointer to the utility
180 iUtility = aCustomUtility;
183 /*****************************************************************************/
184 void CMMFGetTimestampsDeMux::RefreshL()
186 // refetch the play back status custom interface if we already have a target
189 MMMFGetTimestamps* ptr = NULL;
191 ptr = static_cast <MMMFGetTimestamps*> (iTarget->CustomInterface(KUidGetTimestamps));
195 iInterfaceGetTimestamps = NULL;
196 User::Leave(KErrNotSupported);
200 iInterfaceGetTimestamps = ptr;
205 /*****************************************************************************/
206 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFGetTimestampsDeMux::NewL()
208 CMMFGetTimestampsDeMux* self = new (ELeave) CMMFGetTimestampsDeMux;
212 /*****************************************************************************/
213 CMMFGetTimestampsDeMux::CMMFGetTimestampsDeMux()
217 /*****************************************************************************/
218 CMMFGetTimestampsDeMux::~CMMFGetTimestampsDeMux()
222 /*****************************************************************************/
223 TInt CMMFGetTimestampsDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
225 // fetch the Playback status Hw Device custom interface
226 MMMFGetTimestamps* ptr = NULL;
228 ptr = static_cast<MMMFGetTimestamps*> (iTarget->CustomInterface(KUidGetTimestamps));
232 iInterfaceGetTimestamps = NULL;
233 User::Leave(KErrNotSupported);
237 iInterfaceGetTimestamps = ptr;
242 /*****************************************************************************/
243 void CMMFGetTimestampsDeMux::DoCloseSlaveL(TInt /*aHandle*/)
248 /*****************************************************************************/
249 // original RMessage is supplied so that remote demux plugin can extract necessary details
250 // using DeMux utility
251 TInt CMMFGetTimestampsDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
253 TMMFDevSoundCIMessageData data;
255 TInt retVal = KErrNone;
258 iUtility->GetSyncMessageDataL(aMessage, data);
260 switch (data.iCommand)
262 case EMMFDevSoundCIGetTimestampsEnable:
264 TPckgBuf<TBool> flag;
265 iUtility->ReadFromInputDesL(aMessage, &flag);
266 retVal = DoMmgtSetRecordSystemTimestampsEnabled(flag());
271 User::Leave(KErrNotSupported);
277 /*****************************************************************************/
278 TInt CMMFGetTimestampsDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
280 TMMFDevSoundCIMessageData data;
282 TInt retVal = KErrNone;
285 iUtility->GetSyncMessageDataL(aMessage, data);
287 switch (data.iCommand)
289 case EMMFDevSoundCIGetTimestampsForBuffer:
291 TPckgBuf<TPositionTimestamp> value;
292 iUtility->ReadFromInputDesL(aMessage, &value);
293 retVal = DoMmgtGetSystemTimestampForBuffer(value().iBufferPosition, value().iTimestamp);
294 iUtility->WriteToOutputDesL(aMessage, value);
299 User::Leave(KErrNotSupported);
305 /*****************************************************************************/
306 void CMMFGetTimestampsDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
308 // not used in this interface
311 /*****************************************************************************/
312 void CMMFGetTimestampsDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
314 // not used in this interface
317 /*****************************************************************************/
318 // Get Timestamp custom interface implementation
319 TInt CMMFGetTimestampsDeMux::DoMmgtSetRecordSystemTimestampsEnabled(TBool aEnable)
321 if (!iInterfaceGetTimestamps)
327 return iInterfaceGetTimestamps->MmgtSetRecordSystemTimestampsEnabled(aEnable);
331 TInt CMMFGetTimestampsDeMux::DoMmgtGetSystemTimestampForBuffer(const TTimeIntervalMicroSeconds& aBufferPosition,
334 if (!iInterfaceGetTimestamps)
340 return iInterfaceGetTimestamps->MmgtGetSystemTimestampForBuffer(aBufferPosition, aTimestamp);
343 /*****************************************************************************/
345 // ImplementationTable
348 const TImplementationProxy ImplementationTable[] =
350 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceGetTimestampsMux, CMMFGetTimestampsMux::NewL),
351 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceGetTimestampsDeMux, CMMFGetTimestampsDeMux::NewL),
354 /*****************************************************************************/
356 // ImplementationGroupProxy
360 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
362 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
364 return ImplementationTable;