os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/playbackstatusci.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
#include "playbackstatusci.h"
sl@0
    20
sl@0
    21
sl@0
    22
// MUX //
sl@0
    23
/*****************************************************************************/
sl@0
    24
sl@0
    25
TInt CMMFPlayBackStatusMux::OpenInterface(TUid /*aInterfaceId*/)
sl@0
    26
	{
sl@0
    27
	// attempt to open the interface link with the
sl@0
    28
	// remote slave device
sl@0
    29
	iRemoteHandle = -1;
sl@0
    30
	TUid slaveId = {KMmfUidCustomInterfacePlayBackStatusDeMux};
sl@0
    31
		
sl@0
    32
	TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
sl@0
    33
	if (handle >= 0)
sl@0
    34
		{
sl@0
    35
		iRemoteHandle = handle;
sl@0
    36
		}
sl@0
    37
		
sl@0
    38
	return iRemoteHandle;
sl@0
    39
	}
sl@0
    40
sl@0
    41
/*****************************************************************************/
sl@0
    42
void CMMFPlayBackStatusMux::Release()
sl@0
    43
	{
sl@0
    44
	// close the slave device if it exists
sl@0
    45
	if (iRemoteHandle > 0)
sl@0
    46
		{
sl@0
    47
		// we assume the slave is closed correctly
sl@0
    48
		iUtility->CloseSlave(iRemoteHandle);
sl@0
    49
		}
sl@0
    50
	
sl@0
    51
	TUid key = iDestructorKey;
sl@0
    52
	delete this;
sl@0
    53
	
sl@0
    54
	// tell ECom to destroy us
sl@0
    55
	REComSession::DestroyedImplementation(key);
sl@0
    56
	}
sl@0
    57
sl@0
    58
/*****************************************************************************/	
sl@0
    59
void CMMFPlayBackStatusMux::PassDestructorKey(TUid aDestructorKey)
sl@0
    60
	{
sl@0
    61
	// store the destructor key
sl@0
    62
	iDestructorKey = aDestructorKey;
sl@0
    63
	}
sl@0
    64
sl@0
    65
/*****************************************************************************/
sl@0
    66
void CMMFPlayBackStatusMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
sl@0
    67
	{
sl@0
    68
	// store a pointer to the utility
sl@0
    69
	iUtility = aCustomUtility;
sl@0
    70
	}
sl@0
    71
sl@0
    72
/*****************************************************************************/	
sl@0
    73
MMMFDevSoundCustomInterfaceMuxPlugin* CMMFPlayBackStatusMux::NewL()
sl@0
    74
	{
sl@0
    75
	CMMFPlayBackStatusMux* self = new (ELeave) CMMFPlayBackStatusMux;
sl@0
    76
	return self;
sl@0
    77
	}
sl@0
    78
sl@0
    79
/*****************************************************************************/	
sl@0
    80
TAny* CMMFPlayBackStatusMux::CustomInterface(TUid /*aInterfaceId*/)
sl@0
    81
	{
sl@0
    82
	MMMFPlaybackStatus* interface = this;
sl@0
    83
	return interface;
sl@0
    84
	}
sl@0
    85
	
sl@0
    86
/*****************************************************************************/
sl@0
    87
CMMFPlayBackStatusMux::CMMFPlayBackStatusMux() :
sl@0
    88
	iRemoteHandle(-1)
sl@0
    89
	{	
sl@0
    90
	}
sl@0
    91
sl@0
    92
/*****************************************************************************/
sl@0
    93
CMMFPlayBackStatusMux::~CMMFPlayBackStatusMux()
sl@0
    94
	{	
sl@0
    95
	}
sl@0
    96
sl@0
    97
/*****************************************************************************/
sl@0
    98
// from MMMFPlaybackStatus
sl@0
    99
TInt CMMFPlayBackStatusMux::MmpsGetPlaybackStatusInformation(TMMFPlaybackStatus& aStatus)
sl@0
   100
	{
sl@0
   101
	TInt err = KErrNone;
sl@0
   102
	if (iRemoteHandle > 0)
sl@0
   103
		{
sl@0
   104
		// send the status in the sync command
sl@0
   105
		TPckgBuf<MMMFPlaybackStatus::TMMFPlaybackStatus> status(aStatus);
sl@0
   106
		
sl@0
   107
		TPckgBuf<MMMFPlaybackStatus::TMMFPlaybackStatus> retStatus;
sl@0
   108
		
sl@0
   109
		// any return code other than zero is an error
sl@0
   110
		err = iUtility->SendSlaveSyncCommandResult(iRemoteHandle, 
sl@0
   111
													EMMFDevSoundCIPlayBackStatus, 
sl@0
   112
													status,
sl@0
   113
													retStatus);
sl@0
   114
		// assign return values to aStatus. Do nothing if there is an error
sl@0
   115
		if(err == KErrNone)
sl@0
   116
			{
sl@0
   117
			aStatus = retStatus();
sl@0
   118
			}
sl@0
   119
		}
sl@0
   120
	return err;
sl@0
   121
	}
sl@0
   122
sl@0
   123
TInt CMMFPlayBackStatusMux::MmpsRequestLossOfSyncNotification()
sl@0
   124
	{
sl@0
   125
	TInt err = KErrNone;
sl@0
   126
	if (iRemoteHandle > 0)
sl@0
   127
		{
sl@0
   128
		// any return code other than zero is an error
sl@0
   129
		err = iUtility->SendSlaveSyncCommand(iRemoteHandle, 
sl@0
   130
												EMMFDevSoundCIPlayBackStatusReqSyncLossNotification, 
sl@0
   131
												KNullDesC8);
sl@0
   132
		}
sl@0
   133
	return err;
sl@0
   134
	}
sl@0
   135
	
sl@0
   136
TInt CMMFPlayBackStatusMux::MmpsCancelLossOfSyncNotification()
sl@0
   137
	{
sl@0
   138
	TInt err = KErrNone;
sl@0
   139
	if (iRemoteHandle > 0)
sl@0
   140
		{
sl@0
   141
		// any return code other than zero is an error
sl@0
   142
		err = iUtility->SendSlaveSyncCommand(iRemoteHandle, 
sl@0
   143
												EMMFDevSoundCIPlayBackStatusCancelSyncLossNotification, 
sl@0
   144
												KNullDesC8);
sl@0
   145
		}
sl@0
   146
	return err;
sl@0
   147
	}
sl@0
   148
sl@0
   149
sl@0
   150
// DEMUX //	
sl@0
   151
/*****************************************************************************/
sl@0
   152
TInt CMMFPlayBackStatusDeMux::OpenInterface(TUid /*aInterfaceId*/)
sl@0
   153
	{
sl@0
   154
	return KErrNone;
sl@0
   155
	}
sl@0
   156
sl@0
   157
/*****************************************************************************/	
sl@0
   158
void CMMFPlayBackStatusDeMux::Release()
sl@0
   159
	{
sl@0
   160
	TUid key = iDestructorKey;
sl@0
   161
	
sl@0
   162
	delete this;
sl@0
   163
	
sl@0
   164
	// tell ECom to destroy us
sl@0
   165
	REComSession::DestroyedImplementation(key);
sl@0
   166
	}
sl@0
   167
	
sl@0
   168
/*****************************************************************************/	
sl@0
   169
void CMMFPlayBackStatusDeMux::PassDestructorKey(TUid aDestructorKey)
sl@0
   170
	{
sl@0
   171
	// store the destructor key
sl@0
   172
	iDestructorKey = aDestructorKey;
sl@0
   173
	}
sl@0
   174
	
sl@0
   175
/*****************************************************************************/	
sl@0
   176
void CMMFPlayBackStatusDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
sl@0
   177
	{
sl@0
   178
	iTarget = aTarget;
sl@0
   179
	}
sl@0
   180
sl@0
   181
/*****************************************************************************/	
sl@0
   182
void CMMFPlayBackStatusDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
sl@0
   183
	{
sl@0
   184
	// store a pointer to the utility
sl@0
   185
	iUtility = aCustomUtility;
sl@0
   186
	}
sl@0
   187
sl@0
   188
/*****************************************************************************/
sl@0
   189
void CMMFPlayBackStatusDeMux::RefreshL()
sl@0
   190
	{
sl@0
   191
	// refetch the play back status custom interface if we already have a target
sl@0
   192
	if (iTarget)
sl@0
   193
		{
sl@0
   194
		iInterfacePlayBackStatus = static_cast<MMMFPlaybackStatus*>(iTarget->
sl@0
   195
																	CustomInterface(KUidPlaybackStatus));
sl@0
   196
	
sl@0
   197
		if (!iInterfacePlayBackStatus)
sl@0
   198
			{
sl@0
   199
			User::Leave(KErrNotSupported);
sl@0
   200
			}
sl@0
   201
		}
sl@0
   202
	}
sl@0
   203
	
sl@0
   204
/*****************************************************************************/
sl@0
   205
MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFPlayBackStatusDeMux::NewL()
sl@0
   206
	{
sl@0
   207
	CMMFPlayBackStatusDeMux* self = new (ELeave) CMMFPlayBackStatusDeMux;
sl@0
   208
	return self;
sl@0
   209
	}
sl@0
   210
sl@0
   211
/*****************************************************************************/	
sl@0
   212
CMMFPlayBackStatusDeMux::CMMFPlayBackStatusDeMux()
sl@0
   213
	{	
sl@0
   214
	}
sl@0
   215
sl@0
   216
/*****************************************************************************/
sl@0
   217
CMMFPlayBackStatusDeMux::~CMMFPlayBackStatusDeMux()
sl@0
   218
	{
sl@0
   219
	}
sl@0
   220
sl@0
   221
/*****************************************************************************/
sl@0
   222
TInt CMMFPlayBackStatusDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
sl@0
   223
	{
sl@0
   224
	// fetch the Playback status Hw Device custom interface
sl@0
   225
	MMMFPlaybackStatus* ptr = NULL;
sl@0
   226
sl@0
   227
	ptr = static_cast<MMMFPlaybackStatus*> (iTarget->CustomInterface(KUidPlaybackStatus)); 
sl@0
   228
	
sl@0
   229
	if (!ptr)
sl@0
   230
		{
sl@0
   231
		iInterfacePlayBackStatus = NULL;
sl@0
   232
		User::Leave(KErrNotSupported);
sl@0
   233
		}
sl@0
   234
	else
sl@0
   235
		{
sl@0
   236
		iInterfacePlayBackStatus = ptr;
sl@0
   237
		}
sl@0
   238
	return KErrNone;
sl@0
   239
	}
sl@0
   240
	
sl@0
   241
/*****************************************************************************/	
sl@0
   242
void CMMFPlayBackStatusDeMux::DoCloseSlaveL(TInt /*aHandle*/)
sl@0
   243
	{
sl@0
   244
	// nothing to do
sl@0
   245
	}
sl@0
   246
sl@0
   247
/*****************************************************************************/
sl@0
   248
// original RMessage is supplied so that remote demux plugin can extract necessary details
sl@0
   249
// using DeMux utility
sl@0
   250
TInt CMMFPlayBackStatusDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
sl@0
   251
	{
sl@0
   252
	TMMFDevSoundCIMessageData data;
sl@0
   253
	iUtility->GetSyncMessageDataL(aMessage, data);
sl@0
   254
	
sl@0
   255
	TInt err = KErrNone;
sl@0
   256
	switch(data.iCommand)
sl@0
   257
		{
sl@0
   258
		case EMMFDevSoundCIPlayBackStatusReqSyncLossNotification:
sl@0
   259
			{
sl@0
   260
			err = DoMmpsRequestLossOfSyncNotification();
sl@0
   261
			break;
sl@0
   262
			}
sl@0
   263
		case EMMFDevSoundCIPlayBackStatusCancelSyncLossNotification:
sl@0
   264
			{
sl@0
   265
			err = DoMmpsCancelLossOfSyncNotification();
sl@0
   266
			break;
sl@0
   267
			}
sl@0
   268
		default:
sl@0
   269
			{
sl@0
   270
			User::Leave(KErrNotSupported);
sl@0
   271
			}
sl@0
   272
		}
sl@0
   273
	return err;
sl@0
   274
	}
sl@0
   275
	
sl@0
   276
/*****************************************************************************/	
sl@0
   277
TInt CMMFPlayBackStatusDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
sl@0
   278
	{
sl@0
   279
	TMMFDevSoundCIMessageData data;
sl@0
   280
	
sl@0
   281
	// decode message
sl@0
   282
	iUtility->GetSyncMessageDataL(aMessage, data);
sl@0
   283
	
sl@0
   284
	switch (data.iCommand)
sl@0
   285
		{
sl@0
   286
		case EMMFDevSoundCIPlayBackStatus:
sl@0
   287
			{
sl@0
   288
			TPckgBuf<MMMFPlaybackStatus::TMMFPlaybackStatus> status; 
sl@0
   289
			iUtility->ReadFromInputDesL(aMessage, &status);
sl@0
   290
sl@0
   291
			DoMmpsGetPlaybackStatusInformation(status());
sl@0
   292
			
sl@0
   293
			TPckgBuf<MMMFPlaybackStatus::TMMFPlaybackStatus> des(status());
sl@0
   294
			iUtility->WriteToOutputDesL(aMessage, des);
sl@0
   295
			break;
sl@0
   296
			}
sl@0
   297
		default:
sl@0
   298
			{
sl@0
   299
			User::Leave(KErrNotSupported);
sl@0
   300
			}
sl@0
   301
		}
sl@0
   302
	return KErrNone;
sl@0
   303
	}
sl@0
   304
	
sl@0
   305
/*****************************************************************************/	
sl@0
   306
void CMMFPlayBackStatusDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
sl@0
   307
	{
sl@0
   308
	// not used in this interface
sl@0
   309
	}
sl@0
   310
	
sl@0
   311
/*****************************************************************************/	
sl@0
   312
void CMMFPlayBackStatusDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
sl@0
   313
	{
sl@0
   314
	// not used in this interface
sl@0
   315
	}
sl@0
   316
sl@0
   317
/*****************************************************************************/
sl@0
   318
// Play Back Status custom interface implementation
sl@0
   319
TInt CMMFPlayBackStatusDeMux::DoMmpsGetPlaybackStatusInformation(MMMFPlaybackStatus::TMMFPlaybackStatus& aStatus)
sl@0
   320
	{
sl@0
   321
	TInt err = KErrNotReady;
sl@0
   322
	if (iInterfacePlayBackStatus)
sl@0
   323
		{
sl@0
   324
		err = iInterfacePlayBackStatus->MmpsGetPlaybackStatusInformation(aStatus);
sl@0
   325
		}
sl@0
   326
	return err;	
sl@0
   327
	}
sl@0
   328
sl@0
   329
TInt CMMFPlayBackStatusDeMux::DoMmpsRequestLossOfSyncNotification()
sl@0
   330
	{
sl@0
   331
	TInt err = KErrNotReady;
sl@0
   332
	if (iInterfacePlayBackStatus)
sl@0
   333
		{
sl@0
   334
		err = iInterfacePlayBackStatus->MmpsRequestLossOfSyncNotification();
sl@0
   335
		}
sl@0
   336
	return err;
sl@0
   337
	}
sl@0
   338
	
sl@0
   339
TInt CMMFPlayBackStatusDeMux::DoMmpsCancelLossOfSyncNotification()
sl@0
   340
	{
sl@0
   341
	TInt err = KErrNotReady;
sl@0
   342
	if (iInterfacePlayBackStatus)
sl@0
   343
		{
sl@0
   344
		err = iInterfacePlayBackStatus->MmpsCancelLossOfSyncNotification();
sl@0
   345
		}
sl@0
   346
	return err;
sl@0
   347
	}
sl@0
   348
sl@0
   349
/*****************************************************************************/
sl@0
   350
//
sl@0
   351
// ImplementationTable
sl@0
   352
//
sl@0
   353
sl@0
   354
const TImplementationProxy ImplementationTable[] = 
sl@0
   355
	{
sl@0
   356
	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfacePlayBackStatusMux,	CMMFPlayBackStatusMux::NewL),
sl@0
   357
	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfacePlayBackStatusDeMux, CMMFPlayBackStatusDeMux::NewL),
sl@0
   358
	};
sl@0
   359
sl@0
   360
/*****************************************************************************/
sl@0
   361
//
sl@0
   362
// ImplementationGroupProxy
sl@0
   363
//
sl@0
   364
//
sl@0
   365
sl@0
   366
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
sl@0
   367
	{
sl@0
   368
	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
sl@0
   369
sl@0
   370
	return ImplementationTable;
sl@0
   371
	}
sl@0
   372
sl@0
   373