os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/audiobufferprefillci.cpp
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>
21 #include "audiobufferprefillci.h"
26 TInt CMMFSampleBufferingMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceSampleBufferingDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
43 void CMMFSampleBufferingMux::Release()
45 // close the slave device if it exists
46 if (iRemoteHandle > 0)
48 // we assume the slave is closed correctly
49 iUtility->CloseSlave(iRemoteHandle);
55 // tell ECom to destroy us
56 REComSession::DestroyedImplementation(key);
60 void CMMFSampleBufferingMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iKey = aDestructorKey;
67 void CMMFSampleBufferingMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFSampleBufferingMux::NewL()
76 CMMFSampleBufferingMux* self = new (ELeave) CMMFSampleBufferingMux;
81 TAny* CMMFSampleBufferingMux::CustomInterface(TUid /*aInterfaceId*/)
83 MMMFSampleBuffering* interface = this;
88 CMMFSampleBufferingMux::CMMFSampleBufferingMux() :
94 CMMFSampleBufferingMux::~CMMFSampleBufferingMux()
99 // from MMMFSampleBuffering
100 TInt CMMFSampleBufferingMux::MmsbEnableSampleBufferingBeforePlayback()
102 TInt result = KErrBadHandle;
104 if (iRemoteHandle > 0)
106 // any return code other than zero is an error
107 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
108 EMMFDevSoundCIEnableSampleBufferingBeforePlayback,
116 // from MMMFSampleBuffering
117 TInt CMMFSampleBufferingMux::MmsbDisableSampleBufferingBeforePlayback()
119 TInt result = KErrBadHandle;
121 if (iRemoteHandle > 0)
123 // any return code other than zero is an error
124 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
125 EMMFDevSoundCIDisableSampleBufferingBeforePlayback,
133 // from MMMFSampleBuffering
134 void CMMFSampleBufferingMux::MmsbNotifyPlayStarted(TRequestStatus& aStatus)
136 if (iRemoteHandle > 0)
138 // package the handle and command, and send in the Async command
139 iCmdPkg().iHandle = iRemoteHandle;
140 iCmdPkg().iCommand = EMMFDevSoundCINotifyPlayStarted;
142 // any return code other than zero is an error
143 iUtility->SendSlaveAsyncCommand(iCmdPkg, aStatus, KNullDesC8);
148 // from MMMFSampleBuffering
149 void CMMFSampleBufferingMux::MmsbCancelNotifyPlayStarted()
151 if (iRemoteHandle > 0)
153 // any return code other than zero is an error
154 TInt result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
155 EMMFDevSoundCICancelNotifyPlayStarted,
164 TInt CMMFSampleBufferingDeMux::OpenInterface(TUid /*aInterfaceId*/)
170 void CMMFSampleBufferingDeMux::Release()
176 // tell ECom to destroy us
177 REComSession::DestroyedImplementation(key);
181 void CMMFSampleBufferingDeMux::PassDestructorKey(TUid aDestructorKey)
183 // store the destructor key
184 iKey = aDestructorKey;
188 void CMMFSampleBufferingDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
194 void CMMFSampleBufferingDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
196 // store a pointer to the utility
197 iUtility = aCustomUtility;
201 void CMMFSampleBufferingDeMux::RefreshL()
203 // refetch the Sample Buffering custom interface if we already have a target
206 iInterfaceSampleBuffering = static_cast <MMMFSampleBuffering*> (iTarget->CustomInterface(KUidSampleBuffering ));
208 if (!iInterfaceSampleBuffering)
210 iInterfaceSampleBuffering = NULL;
211 User::Leave(KErrNotSupported);
217 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFSampleBufferingDeMux::NewL()
219 CMMFSampleBufferingDeMux* self = new (ELeave) CMMFSampleBufferingDeMux;
224 CMMFSampleBufferingDeMux::CMMFSampleBufferingDeMux() : CActive(CActive::EPriorityStandard)
226 CActiveScheduler::Add(this);
230 CMMFSampleBufferingDeMux::~CMMFSampleBufferingDeMux()
236 TInt CMMFSampleBufferingDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
238 // fetch the Sample Buffering Hw Device custom interface
239 iInterfaceSampleBuffering = static_cast<MMMFSampleBuffering*> (iTarget->CustomInterface(KUidSampleBuffering));
241 if (!iInterfaceSampleBuffering)
243 iInterfaceSampleBuffering = NULL;
244 User::Leave(KErrNotSupported);
251 void CMMFSampleBufferingDeMux::DoCloseSlaveL(TInt /*aHandle*/)
257 // original RMessage is supplied so that remote demux plugin can extract necessary details
258 // using DeMux utility
259 TInt CMMFSampleBufferingDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
261 TMMFDevSoundCIMessageData data;
262 TInt result = KErrGeneral;
265 iUtility->GetSyncMessageDataL(aMessage, data);
267 switch (data.iCommand)
269 case EMMFDevSoundCIEnableSampleBufferingBeforePlayback:
271 result = DoMmsbEnableSampleBufferingBeforePlaybackL();
274 case EMMFDevSoundCIDisableSampleBufferingBeforePlayback:
276 result = DoMmsbDisableSampleBufferingBeforePlaybackL();
279 case EMMFDevSoundCICancelNotifyPlayStarted:
281 DoMmsbCancelNotifyPlayStartedL();
286 User::Leave(KErrNotSupported);
294 TInt CMMFSampleBufferingDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
300 void CMMFSampleBufferingDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage)
302 TMMFDevSoundCIMessageData data;
305 iUtility->GetAsyncMessageDataL(aMessage, data);
307 switch (data.iCommand)
309 case EMMFDevSoundCINotifyPlayStarted:
311 DoMmsbNotifyPlayStartedL(aMessage);
316 User::Leave(KErrNotSupported);
322 void CMMFSampleBufferingDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
324 // not used in this interface
328 // Sample Buffering custom interface implementation
329 TInt CMMFSampleBufferingDeMux::DoMmsbEnableSampleBufferingBeforePlaybackL()
331 TInt result = KErrNotFound;
333 if (iInterfaceSampleBuffering)
335 result = iInterfaceSampleBuffering->MmsbEnableSampleBufferingBeforePlayback();
342 // Sample Buffering custom interface implementation
343 TInt CMMFSampleBufferingDeMux::DoMmsbDisableSampleBufferingBeforePlaybackL()
345 TInt result = KErrNotFound;
347 if (iInterfaceSampleBuffering)
349 result = iInterfaceSampleBuffering->MmsbDisableSampleBufferingBeforePlayback();
356 // Sample Buffering custom interface implementation
357 void CMMFSampleBufferingDeMux::DoMmsbNotifyPlayStartedL(const RMmfIpcMessage& aMessage)
359 if (iInterfaceSampleBuffering)
361 // make a copy of the received message before jumping to the plugin.
362 // It will be used on the reply to the client.
363 iStoredMessage = aMessage;
365 iInterfaceSampleBuffering->MmsbNotifyPlayStarted(iStatus);
367 // check not already active
375 // Sample Buffering custom interface implementation
376 void CMMFSampleBufferingDeMux::DoMmsbCancelNotifyPlayStartedL()
378 if (iInterfaceSampleBuffering)
380 iInterfaceSampleBuffering->MmsbCancelNotifyPlayStarted();
385 // active object handling functions
386 void CMMFSampleBufferingDeMux::RunL()
388 TInt err = iStatus.Int();
390 // complete the client request
391 iStoredMessage.Complete(err);
395 void CMMFSampleBufferingDeMux::DoCancel()
400 // ImplementationTable
402 const TImplementationProxy ImplementationTable[] =
404 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSampleBufferingMux, CMMFSampleBufferingMux::NewL),
405 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSampleBufferingDeMux, CMMFSampleBufferingDeMux::NewL),
409 // ImplementationGroupProxy
411 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
413 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
415 return ImplementationTable;