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>
19 #include "playbackstatusci.h"
23 /*****************************************************************************/
25 TInt CMMFPlayBackStatusMux::OpenInterface(TUid /*aInterfaceId*/)
27 // attempt to open the interface link with the
28 // remote slave device
30 TUid slaveId = {KMmfUidCustomInterfacePlayBackStatusDeMux};
32 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
35 iRemoteHandle = handle;
41 /*****************************************************************************/
42 void CMMFPlayBackStatusMux::Release()
44 // close the slave device if it exists
45 if (iRemoteHandle > 0)
47 // we assume the slave is closed correctly
48 iUtility->CloseSlave(iRemoteHandle);
51 TUid key = iDestructorKey;
54 // tell ECom to destroy us
55 REComSession::DestroyedImplementation(key);
58 /*****************************************************************************/
59 void CMMFPlayBackStatusMux::PassDestructorKey(TUid aDestructorKey)
61 // store the destructor key
62 iDestructorKey = aDestructorKey;
65 /*****************************************************************************/
66 void CMMFPlayBackStatusMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
68 // store a pointer to the utility
69 iUtility = aCustomUtility;
72 /*****************************************************************************/
73 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFPlayBackStatusMux::NewL()
75 CMMFPlayBackStatusMux* self = new (ELeave) CMMFPlayBackStatusMux;
79 /*****************************************************************************/
80 TAny* CMMFPlayBackStatusMux::CustomInterface(TUid /*aInterfaceId*/)
82 MMMFPlaybackStatus* interface = this;
86 /*****************************************************************************/
87 CMMFPlayBackStatusMux::CMMFPlayBackStatusMux() :
92 /*****************************************************************************/
93 CMMFPlayBackStatusMux::~CMMFPlayBackStatusMux()
97 /*****************************************************************************/
98 // from MMMFPlaybackStatus
99 TInt CMMFPlayBackStatusMux::MmpsGetPlaybackStatusInformation(TMMFPlaybackStatus& aStatus)
102 if (iRemoteHandle > 0)
104 // send the status in the sync command
105 TPckgBuf<MMMFPlaybackStatus::TMMFPlaybackStatus> status(aStatus);
107 TPckgBuf<MMMFPlaybackStatus::TMMFPlaybackStatus> retStatus;
109 // any return code other than zero is an error
110 err = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
111 EMMFDevSoundCIPlayBackStatus,
114 // assign return values to aStatus. Do nothing if there is an error
117 aStatus = retStatus();
123 TInt CMMFPlayBackStatusMux::MmpsRequestLossOfSyncNotification()
126 if (iRemoteHandle > 0)
128 // any return code other than zero is an error
129 err = iUtility->SendSlaveSyncCommand(iRemoteHandle,
130 EMMFDevSoundCIPlayBackStatusReqSyncLossNotification,
136 TInt CMMFPlayBackStatusMux::MmpsCancelLossOfSyncNotification()
139 if (iRemoteHandle > 0)
141 // any return code other than zero is an error
142 err = iUtility->SendSlaveSyncCommand(iRemoteHandle,
143 EMMFDevSoundCIPlayBackStatusCancelSyncLossNotification,
151 /*****************************************************************************/
152 TInt CMMFPlayBackStatusDeMux::OpenInterface(TUid /*aInterfaceId*/)
157 /*****************************************************************************/
158 void CMMFPlayBackStatusDeMux::Release()
160 TUid key = iDestructorKey;
164 // tell ECom to destroy us
165 REComSession::DestroyedImplementation(key);
168 /*****************************************************************************/
169 void CMMFPlayBackStatusDeMux::PassDestructorKey(TUid aDestructorKey)
171 // store the destructor key
172 iDestructorKey = aDestructorKey;
175 /*****************************************************************************/
176 void CMMFPlayBackStatusDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
181 /*****************************************************************************/
182 void CMMFPlayBackStatusDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
184 // store a pointer to the utility
185 iUtility = aCustomUtility;
188 /*****************************************************************************/
189 void CMMFPlayBackStatusDeMux::RefreshL()
191 // refetch the play back status custom interface if we already have a target
194 iInterfacePlayBackStatus = static_cast<MMMFPlaybackStatus*>(iTarget->
195 CustomInterface(KUidPlaybackStatus));
197 if (!iInterfacePlayBackStatus)
199 User::Leave(KErrNotSupported);
204 /*****************************************************************************/
205 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFPlayBackStatusDeMux::NewL()
207 CMMFPlayBackStatusDeMux* self = new (ELeave) CMMFPlayBackStatusDeMux;
211 /*****************************************************************************/
212 CMMFPlayBackStatusDeMux::CMMFPlayBackStatusDeMux()
216 /*****************************************************************************/
217 CMMFPlayBackStatusDeMux::~CMMFPlayBackStatusDeMux()
221 /*****************************************************************************/
222 TInt CMMFPlayBackStatusDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
224 // fetch the Playback status Hw Device custom interface
225 MMMFPlaybackStatus* ptr = NULL;
227 ptr = static_cast<MMMFPlaybackStatus*> (iTarget->CustomInterface(KUidPlaybackStatus));
231 iInterfacePlayBackStatus = NULL;
232 User::Leave(KErrNotSupported);
236 iInterfacePlayBackStatus = ptr;
241 /*****************************************************************************/
242 void CMMFPlayBackStatusDeMux::DoCloseSlaveL(TInt /*aHandle*/)
247 /*****************************************************************************/
248 // original RMessage is supplied so that remote demux plugin can extract necessary details
249 // using DeMux utility
250 TInt CMMFPlayBackStatusDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
252 TMMFDevSoundCIMessageData data;
253 iUtility->GetSyncMessageDataL(aMessage, data);
256 switch(data.iCommand)
258 case EMMFDevSoundCIPlayBackStatusReqSyncLossNotification:
260 err = DoMmpsRequestLossOfSyncNotification();
263 case EMMFDevSoundCIPlayBackStatusCancelSyncLossNotification:
265 err = DoMmpsCancelLossOfSyncNotification();
270 User::Leave(KErrNotSupported);
276 /*****************************************************************************/
277 TInt CMMFPlayBackStatusDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
279 TMMFDevSoundCIMessageData data;
282 iUtility->GetSyncMessageDataL(aMessage, data);
284 switch (data.iCommand)
286 case EMMFDevSoundCIPlayBackStatus:
288 TPckgBuf<MMMFPlaybackStatus::TMMFPlaybackStatus> status;
289 iUtility->ReadFromInputDesL(aMessage, &status);
291 DoMmpsGetPlaybackStatusInformation(status());
293 TPckgBuf<MMMFPlaybackStatus::TMMFPlaybackStatus> des(status());
294 iUtility->WriteToOutputDesL(aMessage, des);
299 User::Leave(KErrNotSupported);
305 /*****************************************************************************/
306 void CMMFPlayBackStatusDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
308 // not used in this interface
311 /*****************************************************************************/
312 void CMMFPlayBackStatusDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
314 // not used in this interface
317 /*****************************************************************************/
318 // Play Back Status custom interface implementation
319 TInt CMMFPlayBackStatusDeMux::DoMmpsGetPlaybackStatusInformation(MMMFPlaybackStatus::TMMFPlaybackStatus& aStatus)
321 TInt err = KErrNotReady;
322 if (iInterfacePlayBackStatus)
324 err = iInterfacePlayBackStatus->MmpsGetPlaybackStatusInformation(aStatus);
329 TInt CMMFPlayBackStatusDeMux::DoMmpsRequestLossOfSyncNotification()
331 TInt err = KErrNotReady;
332 if (iInterfacePlayBackStatus)
334 err = iInterfacePlayBackStatus->MmpsRequestLossOfSyncNotification();
339 TInt CMMFPlayBackStatusDeMux::DoMmpsCancelLossOfSyncNotification()
341 TInt err = KErrNotReady;
342 if (iInterfacePlayBackStatus)
344 err = iInterfacePlayBackStatus->MmpsCancelLossOfSyncNotification();
349 /*****************************************************************************/
351 // ImplementationTable
354 const TImplementationProxy ImplementationTable[] =
356 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfacePlayBackStatusMux, CMMFPlayBackStatusMux::NewL),
357 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfacePlayBackStatusDeMux, CMMFPlayBackStatusDeMux::NewL),
360 /*****************************************************************************/
362 // ImplementationGroupProxy
366 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
368 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
370 return ImplementationTable;