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