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 "setdrmprotectedci.h"
24 /*****************************************************************************/
26 TInt CMMFSetDRMProtectedMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceSetDRMProtectedDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
42 /*****************************************************************************/
43 void CMMFSetDRMProtectedMux::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);
52 TUid key = iDestructorKey;
55 // tell ECom to destroy us
56 REComSession::DestroyedImplementation(key);
59 /*****************************************************************************/
60 void CMMFSetDRMProtectedMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iDestructorKey = aDestructorKey;
66 /*****************************************************************************/
67 void CMMFSetDRMProtectedMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
73 /*****************************************************************************/
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFSetDRMProtectedMux::NewL()
76 CMMFSetDRMProtectedMux* self = new (ELeave) CMMFSetDRMProtectedMux;
80 /*****************************************************************************/
81 TAny* CMMFSetDRMProtectedMux::CustomInterface(TUid /*aInterfaceId*/)
83 MMMFSetDRMProtected* interface = this;
87 /*****************************************************************************/
88 CMMFSetDRMProtectedMux::CMMFSetDRMProtectedMux() :
93 /*****************************************************************************/
94 CMMFSetDRMProtectedMux::~CMMFSetDRMProtectedMux()
98 /*****************************************************************************/
99 // from MMMFSetDRMProtected
100 TInt CMMFSetDRMProtectedMux::MmsdpMarkDataAsDRMProtected(TBool aDRMProtected)
102 if (iRemoteHandle > 0)
104 // send the DRM protected flag in the sync command
105 TPckgBuf<TBool> flag(aDRMProtected);
107 // any return code other than zero is an error
108 return iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCISetDRMProtected, flag);
119 /*****************************************************************************/
120 TInt CMMFSetDRMProtectedDeMux::OpenInterface(TUid /*aInterfaceId*/)
125 /*****************************************************************************/
126 void CMMFSetDRMProtectedDeMux::Release()
128 TUid key = iDestructorKey;
132 // tell ECom to destroy us
133 REComSession::DestroyedImplementation(key);
136 /*****************************************************************************/
137 void CMMFSetDRMProtectedDeMux::PassDestructorKey(TUid aDestructorKey)
139 // store the destructor key
140 iDestructorKey = aDestructorKey;
143 /*****************************************************************************/
144 void CMMFSetDRMProtectedDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
149 /*****************************************************************************/
150 void CMMFSetDRMProtectedDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
152 // store a pointer to the utility
153 iUtility = aCustomUtility;
156 /*****************************************************************************/
157 void CMMFSetDRMProtectedDeMux::RefreshL()
159 // refetch the DRM protected custom interface if we already have a target
162 MMMFSetDRMProtected* ptr = NULL;
164 ptr = static_cast <MMMFSetDRMProtected*> (iTarget->CustomInterface(KUidSetDRMProtected));
168 iInterfaceSetDRMProtected = NULL;
169 User::Leave(KErrNotSupported);
173 iInterfaceSetDRMProtected = ptr;
178 /*****************************************************************************/
179 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFSetDRMProtectedDeMux::NewL()
181 CMMFSetDRMProtectedDeMux* self = new (ELeave) CMMFSetDRMProtectedDeMux;
185 /*****************************************************************************/
186 CMMFSetDRMProtectedDeMux::CMMFSetDRMProtectedDeMux()
190 /*****************************************************************************/
191 CMMFSetDRMProtectedDeMux::~CMMFSetDRMProtectedDeMux()
195 /*****************************************************************************/
196 TInt CMMFSetDRMProtectedDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
198 // fetch the Playback status Hw Device custom interface
199 MMMFSetDRMProtected* ptr = NULL;
201 ptr = static_cast<MMMFSetDRMProtected*> (iTarget->CustomInterface(KUidSetDRMProtected));
205 iInterfaceSetDRMProtected = NULL;
206 User::Leave(KErrNotSupported);
210 iInterfaceSetDRMProtected = ptr;
215 /*****************************************************************************/
216 void CMMFSetDRMProtectedDeMux::DoCloseSlaveL(TInt /*aHandle*/)
221 /*****************************************************************************/
222 // original RMessage is supplied so that remote demux plugin can extract necessary details
223 // using DeMux utility
224 TInt CMMFSetDRMProtectedDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
226 TMMFDevSoundCIMessageData data;
228 TInt retVal = KErrNone;
231 iUtility->GetSyncMessageDataL(aMessage, data);
233 switch (data.iCommand)
235 case EMMFDevSoundCISetDRMProtected:
237 TPckgBuf<TBool> flag;
238 iUtility->ReadFromInputDesL(aMessage, &flag);
239 retVal = DoMmsdpMarkDataAsDRMProtected(flag());
244 User::Leave(KErrNotSupported);
250 /*****************************************************************************/
251 TInt CMMFSetDRMProtectedDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
256 /*****************************************************************************/
257 void CMMFSetDRMProtectedDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
259 // not used in this interface
262 /*****************************************************************************/
263 void CMMFSetDRMProtectedDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
265 // not used in this interface
268 /*****************************************************************************/
269 // Set DRM protected custom interface implementation
270 TInt CMMFSetDRMProtectedDeMux::DoMmsdpMarkDataAsDRMProtected(TBool aDRMProtected)
272 if (!iInterfaceSetDRMProtected)
278 return iInterfaceSetDRMProtected->MmsdpMarkDataAsDRMProtected(aDRMProtected);
282 /*****************************************************************************/
284 // ImplementationTable
287 const TImplementationProxy ImplementationTable[] =
289 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSetDRMProtectedMux, CMMFSetDRMProtectedMux::NewL),
290 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSetDRMProtectedDeMux, CMMFSetDRMProtectedDeMux::NewL),
293 /*****************************************************************************/
295 // ImplementationGroupProxy
299 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
301 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
303 return ImplementationTable;