os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/setdrmprotectedci.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <ecom/implementationproxy.h>
    17 #include <ecom/implementationproxy.h>
    18 #include <ecom/ecom.h>
    19 
    20 #include "setdrmprotectedci.h"
    21 
    22 
    23 // MUX //
    24 /*****************************************************************************/
    25 
    26 TInt CMMFSetDRMProtectedMux::OpenInterface(TUid /*aInterfaceId*/)
    27 	{
    28 	// attempt to open the interface link with the
    29 	// remote slave device
    30 	iRemoteHandle = -1;
    31 	TUid slaveId = {KMmfUidCustomInterfaceSetDRMProtectedDeMux};
    32 		
    33 	TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
    34 	if (handle >= 0)
    35 		{
    36 		iRemoteHandle = handle;
    37 		}
    38 		
    39 	return iRemoteHandle;
    40 	}
    41 
    42 /*****************************************************************************/
    43 void CMMFSetDRMProtectedMux::Release()
    44 	{
    45 	// close the slave device if it exists
    46 	if (iRemoteHandle > 0)
    47 		{
    48 		// we assume the slave is closed correctly
    49 		iUtility->CloseSlave(iRemoteHandle);
    50 		}
    51 	
    52 	TUid key = iDestructorKey;
    53 	delete this;
    54 	
    55 	// tell ECom to destroy us
    56 	REComSession::DestroyedImplementation(key);
    57 	}
    58 
    59 /*****************************************************************************/	
    60 void CMMFSetDRMProtectedMux::PassDestructorKey(TUid aDestructorKey)
    61 	{
    62 	// store the destructor key
    63 	iDestructorKey = aDestructorKey;
    64 	}
    65 
    66 /*****************************************************************************/
    67 void CMMFSetDRMProtectedMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
    68 	{
    69 	// store a pointer to the utility
    70 	iUtility = aCustomUtility;
    71 	}
    72 
    73 /*****************************************************************************/	
    74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFSetDRMProtectedMux::NewL()
    75 	{
    76 	CMMFSetDRMProtectedMux* self = new (ELeave) CMMFSetDRMProtectedMux;
    77 	return self;
    78 	}
    79 
    80 /*****************************************************************************/	
    81 TAny* CMMFSetDRMProtectedMux::CustomInterface(TUid /*aInterfaceId*/)
    82 	{
    83 	MMMFSetDRMProtected* interface = this;
    84 	return interface;
    85 	}
    86 	
    87 /*****************************************************************************/
    88 CMMFSetDRMProtectedMux::CMMFSetDRMProtectedMux() :
    89 	iRemoteHandle(-1)
    90 	{	
    91 	}
    92 
    93 /*****************************************************************************/
    94 CMMFSetDRMProtectedMux::~CMMFSetDRMProtectedMux()
    95 	{	
    96 	}
    97 
    98 /*****************************************************************************/
    99 // from MMMFSetDRMProtected
   100 TInt CMMFSetDRMProtectedMux::MmsdpMarkDataAsDRMProtected(TBool aDRMProtected)
   101 	{
   102 	if (iRemoteHandle > 0)
   103 		{
   104 		// send the DRM protected flag in the sync command
   105 		TPckgBuf<TBool> flag(aDRMProtected);
   106 
   107 		// any return code other than zero is an error
   108 		return iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCISetDRMProtected, flag);
   109 		}
   110 	else
   111 		{
   112 		return KErrNotReady;
   113 		}
   114 	}
   115 
   116 
   117 
   118 // DEMUX //	
   119 /*****************************************************************************/
   120 TInt CMMFSetDRMProtectedDeMux::OpenInterface(TUid /*aInterfaceId*/)
   121 	{
   122 	return KErrNone;
   123 	}
   124 
   125 /*****************************************************************************/	
   126 void CMMFSetDRMProtectedDeMux::Release()
   127 	{
   128 	TUid key = iDestructorKey;
   129 	
   130 	delete this;
   131 	
   132 	// tell ECom to destroy us
   133 	REComSession::DestroyedImplementation(key);
   134 	}
   135 	
   136 /*****************************************************************************/	
   137 void CMMFSetDRMProtectedDeMux::PassDestructorKey(TUid aDestructorKey)
   138 	{
   139 	// store the destructor key
   140 	iDestructorKey = aDestructorKey;
   141 	}
   142 	
   143 /*****************************************************************************/	
   144 void CMMFSetDRMProtectedDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
   145 	{
   146 	iTarget = aTarget;
   147 	}
   148 
   149 /*****************************************************************************/	
   150 void CMMFSetDRMProtectedDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
   151 	{
   152 	// store a pointer to the utility
   153 	iUtility = aCustomUtility;
   154 	}
   155 
   156 /*****************************************************************************/
   157 void CMMFSetDRMProtectedDeMux::RefreshL()
   158 	{
   159 	// refetch the DRM protected custom interface if we already have a target
   160 	if (iTarget)
   161 		{
   162 		MMMFSetDRMProtected* ptr = NULL;
   163 
   164 		ptr = static_cast <MMMFSetDRMProtected*> (iTarget->CustomInterface(KUidSetDRMProtected));
   165 	
   166 		if (!ptr)
   167 			{
   168 			iInterfaceSetDRMProtected = NULL;
   169 			User::Leave(KErrNotSupported);
   170 			}
   171 		else
   172 			{
   173 			iInterfaceSetDRMProtected = ptr;
   174 			}	
   175 		}
   176 	}
   177 
   178 /*****************************************************************************/
   179 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFSetDRMProtectedDeMux::NewL()
   180 	{
   181 	CMMFSetDRMProtectedDeMux* self = new (ELeave) CMMFSetDRMProtectedDeMux;
   182 	return self;
   183 	}
   184 
   185 /*****************************************************************************/	
   186 CMMFSetDRMProtectedDeMux::CMMFSetDRMProtectedDeMux()
   187 	{	
   188 	}
   189 
   190 /*****************************************************************************/
   191 CMMFSetDRMProtectedDeMux::~CMMFSetDRMProtectedDeMux()
   192 	{
   193 	}
   194 
   195 /*****************************************************************************/
   196 TInt CMMFSetDRMProtectedDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
   197 	{
   198 	// fetch the Playback status Hw Device custom interface
   199 	MMMFSetDRMProtected* ptr = NULL;
   200 
   201 	ptr = static_cast<MMMFSetDRMProtected*> (iTarget->CustomInterface(KUidSetDRMProtected)); 
   202 	
   203 	if (!ptr)
   204 		{
   205 		iInterfaceSetDRMProtected = NULL;
   206 		User::Leave(KErrNotSupported);
   207 		}
   208 	else
   209 		{
   210 		iInterfaceSetDRMProtected = ptr;
   211 		}
   212 	return KErrNone;
   213 	}
   214 	
   215 /*****************************************************************************/	
   216 void CMMFSetDRMProtectedDeMux::DoCloseSlaveL(TInt /*aHandle*/)
   217 	{
   218 	// nothing to do
   219 	}
   220 
   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)
   225 	{
   226 	TMMFDevSoundCIMessageData data;
   227 
   228 	TInt retVal = KErrNone;
   229 	
   230 	// decode message
   231 	iUtility->GetSyncMessageDataL(aMessage, data);
   232 	
   233 	switch (data.iCommand)
   234 		{
   235 		case EMMFDevSoundCISetDRMProtected:
   236 			{
   237 			TPckgBuf<TBool> flag; 
   238 			iUtility->ReadFromInputDesL(aMessage, &flag);
   239 			retVal = DoMmsdpMarkDataAsDRMProtected(flag());
   240 			break;
   241 			}
   242 		default:
   243 			{
   244 			User::Leave(KErrNotSupported);
   245 			}
   246 		}
   247 	return retVal;
   248 	}
   249 	
   250 /*****************************************************************************/	
   251 TInt CMMFSetDRMProtectedDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   252 	{
   253 	return KErrNone;
   254 	}
   255 	
   256 /*****************************************************************************/	
   257 void CMMFSetDRMProtectedDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
   258 	{
   259 	// not used in this interface
   260 	}
   261 	
   262 /*****************************************************************************/	
   263 void CMMFSetDRMProtectedDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   264 	{
   265 	// not used in this interface
   266 	}
   267 
   268 /*****************************************************************************/
   269 // Set DRM protected custom interface implementation
   270 TInt CMMFSetDRMProtectedDeMux::DoMmsdpMarkDataAsDRMProtected(TBool aDRMProtected)
   271 	{
   272 	if (!iInterfaceSetDRMProtected)
   273 		{
   274 		return KErrNotReady;
   275 		}
   276 	else
   277 		{
   278 		return iInterfaceSetDRMProtected->MmsdpMarkDataAsDRMProtected(aDRMProtected);
   279 		}		
   280 	}
   281 
   282 /*****************************************************************************/
   283 //
   284 // ImplementationTable
   285 //
   286 
   287 const TImplementationProxy ImplementationTable[] = 
   288 	{
   289 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSetDRMProtectedMux, CMMFSetDRMProtectedMux::NewL),
   290 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSetDRMProtectedDeMux, CMMFSetDRMProtectedDeMux::NewL),
   291 	};
   292 
   293 /*****************************************************************************/
   294 //
   295 // ImplementationGroupProxy
   296 //
   297 //
   298 
   299 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   300 	{
   301 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   302 
   303 	return ImplementationTable;
   304 	}
   305 
   306