os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/audiobufferprefillci.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
#include <s32mem.h>
sl@0
    20
sl@0
    21
#include "audiobufferprefillci.h"
sl@0
    22
sl@0
    23
sl@0
    24
// MUX //
sl@0
    25
sl@0
    26
TInt CMMFSampleBufferingMux::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 = {KMmfUidCustomInterfaceSampleBufferingDeMux};
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 CMMFSampleBufferingMux::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 = iKey;
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 CMMFSampleBufferingMux::PassDestructorKey(TUid aDestructorKey)
sl@0
    61
	{
sl@0
    62
	// store the destructor key
sl@0
    63
	iKey = aDestructorKey;
sl@0
    64
	}
sl@0
    65
sl@0
    66
sl@0
    67
void CMMFSampleBufferingMux::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* CMMFSampleBufferingMux::NewL()
sl@0
    75
	{
sl@0
    76
	CMMFSampleBufferingMux* self = new (ELeave) CMMFSampleBufferingMux;
sl@0
    77
	return self;
sl@0
    78
	}
sl@0
    79
sl@0
    80
sl@0
    81
TAny* CMMFSampleBufferingMux::CustomInterface(TUid /*aInterfaceId*/)
sl@0
    82
	{
sl@0
    83
	MMMFSampleBuffering* interface = this;
sl@0
    84
	return interface;
sl@0
    85
	}
sl@0
    86
sl@0
    87
sl@0
    88
CMMFSampleBufferingMux::CMMFSampleBufferingMux() :
sl@0
    89
iRemoteHandle(-1) 
sl@0
    90
	{
sl@0
    91
	}
sl@0
    92
sl@0
    93
sl@0
    94
CMMFSampleBufferingMux::~CMMFSampleBufferingMux()
sl@0
    95
	{
sl@0
    96
	}
sl@0
    97
sl@0
    98
sl@0
    99
// from MMMFSampleBuffering
sl@0
   100
TInt CMMFSampleBufferingMux::MmsbEnableSampleBufferingBeforePlayback()
sl@0
   101
	{
sl@0
   102
	TInt result = KErrBadHandle;
sl@0
   103
sl@0
   104
	if (iRemoteHandle > 0)
sl@0
   105
		{
sl@0
   106
		// any return code other than zero is an error
sl@0
   107
		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
sl@0
   108
												EMMFDevSoundCIEnableSampleBufferingBeforePlayback,
sl@0
   109
												KNullDesC8);
sl@0
   110
		}
sl@0
   111
sl@0
   112
	return result;
sl@0
   113
	}
sl@0
   114
sl@0
   115
sl@0
   116
// from MMMFSampleBuffering
sl@0
   117
TInt CMMFSampleBufferingMux::MmsbDisableSampleBufferingBeforePlayback()
sl@0
   118
	{
sl@0
   119
	TInt result = KErrBadHandle;
sl@0
   120
sl@0
   121
	if (iRemoteHandle > 0)
sl@0
   122
		{
sl@0
   123
		// any return code other than zero is an error
sl@0
   124
		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
sl@0
   125
												EMMFDevSoundCIDisableSampleBufferingBeforePlayback,
sl@0
   126
												KNullDesC8);
sl@0
   127
		}
sl@0
   128
sl@0
   129
	return result;
sl@0
   130
	}
sl@0
   131
sl@0
   132
sl@0
   133
// from MMMFSampleBuffering
sl@0
   134
void CMMFSampleBufferingMux::MmsbNotifyPlayStarted(TRequestStatus& aStatus)
sl@0
   135
	{
sl@0
   136
	if (iRemoteHandle > 0)
sl@0
   137
		{
sl@0
   138
		// package the handle and command, and send in the Async command
sl@0
   139
		iCmdPkg().iHandle = iRemoteHandle;
sl@0
   140
		iCmdPkg().iCommand = EMMFDevSoundCINotifyPlayStarted;
sl@0
   141
sl@0
   142
		// any return code other than zero is an error
sl@0
   143
		iUtility->SendSlaveAsyncCommand(iCmdPkg, aStatus, KNullDesC8);
sl@0
   144
		}
sl@0
   145
	}
sl@0
   146
sl@0
   147
sl@0
   148
// from MMMFSampleBuffering
sl@0
   149
void CMMFSampleBufferingMux::MmsbCancelNotifyPlayStarted()
sl@0
   150
	{
sl@0
   151
	if (iRemoteHandle > 0)
sl@0
   152
		{
sl@0
   153
		// any return code other than zero is an error
sl@0
   154
		TInt result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
sl@0
   155
													 EMMFDevSoundCICancelNotifyPlayStarted,
sl@0
   156
													 KNullDesC8);
sl@0
   157
		}
sl@0
   158
	}
sl@0
   159
sl@0
   160
sl@0
   161
sl@0
   162
// DEMUX //	
sl@0
   163
sl@0
   164
TInt CMMFSampleBufferingDeMux::OpenInterface(TUid /*aInterfaceId*/)
sl@0
   165
	{
sl@0
   166
	return KErrNone;
sl@0
   167
	}
sl@0
   168
sl@0
   169
sl@0
   170
void CMMFSampleBufferingDeMux::Release()
sl@0
   171
	{
sl@0
   172
	TUid key = iKey;
sl@0
   173
sl@0
   174
	delete this;
sl@0
   175
sl@0
   176
	// tell ECom to destroy us
sl@0
   177
	REComSession::DestroyedImplementation(key);
sl@0
   178
	}
sl@0
   179
sl@0
   180
sl@0
   181
void CMMFSampleBufferingDeMux::PassDestructorKey(TUid aDestructorKey)
sl@0
   182
	{
sl@0
   183
	// store the destructor key
sl@0
   184
	iKey = aDestructorKey;
sl@0
   185
	}
sl@0
   186
sl@0
   187
sl@0
   188
void CMMFSampleBufferingDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
sl@0
   189
	{
sl@0
   190
	iTarget = aTarget;
sl@0
   191
	}
sl@0
   192
sl@0
   193
sl@0
   194
void CMMFSampleBufferingDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
sl@0
   195
	{
sl@0
   196
	// store a pointer to the utility
sl@0
   197
	iUtility = aCustomUtility;
sl@0
   198
	}
sl@0
   199
sl@0
   200
sl@0
   201
void CMMFSampleBufferingDeMux::RefreshL()
sl@0
   202
	{
sl@0
   203
	// refetch the Sample Buffering  custom interface if we already have a target
sl@0
   204
	if (iTarget)
sl@0
   205
		{
sl@0
   206
		iInterfaceSampleBuffering = static_cast <MMMFSampleBuffering*> (iTarget->CustomInterface(KUidSampleBuffering ));
sl@0
   207
sl@0
   208
		if (!iInterfaceSampleBuffering)
sl@0
   209
			{
sl@0
   210
			iInterfaceSampleBuffering = NULL;
sl@0
   211
			User::Leave(KErrNotSupported);
sl@0
   212
			}
sl@0
   213
		}
sl@0
   214
	}
sl@0
   215
sl@0
   216
sl@0
   217
MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFSampleBufferingDeMux::NewL()
sl@0
   218
	{
sl@0
   219
	CMMFSampleBufferingDeMux* self = new (ELeave) CMMFSampleBufferingDeMux;
sl@0
   220
	return self;
sl@0
   221
	}
sl@0
   222
sl@0
   223
sl@0
   224
CMMFSampleBufferingDeMux::CMMFSampleBufferingDeMux() : CActive(CActive::EPriorityStandard)
sl@0
   225
	{
sl@0
   226
	CActiveScheduler::Add(this);
sl@0
   227
	}
sl@0
   228
sl@0
   229
sl@0
   230
CMMFSampleBufferingDeMux::~CMMFSampleBufferingDeMux()
sl@0
   231
	{
sl@0
   232
	Cancel();
sl@0
   233
	}
sl@0
   234
sl@0
   235
sl@0
   236
TInt CMMFSampleBufferingDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
sl@0
   237
	{
sl@0
   238
	// fetch the Sample Buffering  Hw Device custom interface
sl@0
   239
	iInterfaceSampleBuffering = static_cast<MMMFSampleBuffering*> (iTarget->CustomInterface(KUidSampleBuffering)); 
sl@0
   240
sl@0
   241
	if (!iInterfaceSampleBuffering)
sl@0
   242
		{
sl@0
   243
		iInterfaceSampleBuffering = NULL;
sl@0
   244
		User::Leave(KErrNotSupported);
sl@0
   245
		}
sl@0
   246
sl@0
   247
	return KErrNone;
sl@0
   248
	}
sl@0
   249
sl@0
   250
sl@0
   251
void CMMFSampleBufferingDeMux::DoCloseSlaveL(TInt /*aHandle*/)
sl@0
   252
	{
sl@0
   253
	// nothing to do
sl@0
   254
	}
sl@0
   255
sl@0
   256
sl@0
   257
// original RMessage is supplied so that remote demux plugin can extract necessary details
sl@0
   258
// using DeMux utility
sl@0
   259
TInt CMMFSampleBufferingDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
sl@0
   260
	{
sl@0
   261
	TMMFDevSoundCIMessageData data;
sl@0
   262
	TInt result = KErrGeneral;
sl@0
   263
sl@0
   264
	// decode message
sl@0
   265
	iUtility->GetSyncMessageDataL(aMessage, data);
sl@0
   266
sl@0
   267
	switch (data.iCommand)
sl@0
   268
		{
sl@0
   269
		case EMMFDevSoundCIEnableSampleBufferingBeforePlayback:
sl@0
   270
			{
sl@0
   271
			result = DoMmsbEnableSampleBufferingBeforePlaybackL();
sl@0
   272
			break;
sl@0
   273
			}
sl@0
   274
		case EMMFDevSoundCIDisableSampleBufferingBeforePlayback:
sl@0
   275
			{
sl@0
   276
			result = DoMmsbDisableSampleBufferingBeforePlaybackL();
sl@0
   277
			break;
sl@0
   278
			}
sl@0
   279
		case EMMFDevSoundCICancelNotifyPlayStarted:
sl@0
   280
			{
sl@0
   281
			DoMmsbCancelNotifyPlayStartedL();
sl@0
   282
			break;
sl@0
   283
			}
sl@0
   284
		default:
sl@0
   285
			{
sl@0
   286
			User::Leave(KErrNotSupported);
sl@0
   287
			}
sl@0
   288
		}
sl@0
   289
sl@0
   290
	return result;
sl@0
   291
	}
sl@0
   292
sl@0
   293
sl@0
   294
TInt CMMFSampleBufferingDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
sl@0
   295
	{
sl@0
   296
	return KErrNone;
sl@0
   297
	}
sl@0
   298
sl@0
   299
sl@0
   300
void CMMFSampleBufferingDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage)
sl@0
   301
	{
sl@0
   302
	TMMFDevSoundCIMessageData data;
sl@0
   303
sl@0
   304
	// decode message
sl@0
   305
	iUtility->GetAsyncMessageDataL(aMessage, data);
sl@0
   306
sl@0
   307
	switch (data.iCommand)
sl@0
   308
		{
sl@0
   309
		case EMMFDevSoundCINotifyPlayStarted:
sl@0
   310
			{
sl@0
   311
			DoMmsbNotifyPlayStartedL(aMessage);
sl@0
   312
			break;
sl@0
   313
			}
sl@0
   314
		default:
sl@0
   315
			{
sl@0
   316
			User::Leave(KErrNotSupported);
sl@0
   317
			}
sl@0
   318
		}
sl@0
   319
	}
sl@0
   320
sl@0
   321
sl@0
   322
void CMMFSampleBufferingDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
sl@0
   323
	{
sl@0
   324
	// not used in this interface
sl@0
   325
	}
sl@0
   326
sl@0
   327
sl@0
   328
// Sample Buffering  custom interface implementation
sl@0
   329
TInt CMMFSampleBufferingDeMux::DoMmsbEnableSampleBufferingBeforePlaybackL()
sl@0
   330
	{
sl@0
   331
	TInt result = KErrNotFound;
sl@0
   332
sl@0
   333
	if (iInterfaceSampleBuffering)
sl@0
   334
		{
sl@0
   335
		result = iInterfaceSampleBuffering->MmsbEnableSampleBufferingBeforePlayback();
sl@0
   336
		}
sl@0
   337
sl@0
   338
	return result;
sl@0
   339
	}
sl@0
   340
sl@0
   341
sl@0
   342
// Sample Buffering custom interface implementation
sl@0
   343
TInt CMMFSampleBufferingDeMux::DoMmsbDisableSampleBufferingBeforePlaybackL()
sl@0
   344
	{
sl@0
   345
	TInt result = KErrNotFound;
sl@0
   346
sl@0
   347
	if (iInterfaceSampleBuffering)
sl@0
   348
		{
sl@0
   349
		result = iInterfaceSampleBuffering->MmsbDisableSampleBufferingBeforePlayback();
sl@0
   350
		}
sl@0
   351
sl@0
   352
	return result;
sl@0
   353
	}
sl@0
   354
sl@0
   355
sl@0
   356
// Sample Buffering  custom interface implementation
sl@0
   357
void CMMFSampleBufferingDeMux::DoMmsbNotifyPlayStartedL(const RMmfIpcMessage& aMessage)
sl@0
   358
	{
sl@0
   359
	if (iInterfaceSampleBuffering)
sl@0
   360
		{
sl@0
   361
		// make a copy of the received message before jumping to the plugin.
sl@0
   362
		// It will be used on the reply to the client.
sl@0
   363
		iStoredMessage = aMessage;
sl@0
   364
sl@0
   365
		iInterfaceSampleBuffering->MmsbNotifyPlayStarted(iStatus);
sl@0
   366
sl@0
   367
		// check not already active
sl@0
   368
		ASSERT(!IsActive());
sl@0
   369
sl@0
   370
		SetActive();
sl@0
   371
		}
sl@0
   372
	}
sl@0
   373
sl@0
   374
sl@0
   375
// Sample Buffering custom interface implementation
sl@0
   376
void CMMFSampleBufferingDeMux::DoMmsbCancelNotifyPlayStartedL()
sl@0
   377
	{
sl@0
   378
	if (iInterfaceSampleBuffering)
sl@0
   379
		{
sl@0
   380
		iInterfaceSampleBuffering->MmsbCancelNotifyPlayStarted();
sl@0
   381
		}
sl@0
   382
	}
sl@0
   383
sl@0
   384
sl@0
   385
// active object handling functions
sl@0
   386
void CMMFSampleBufferingDeMux::RunL()
sl@0
   387
	{
sl@0
   388
	TInt err = iStatus.Int();
sl@0
   389
sl@0
   390
	// complete the client request
sl@0
   391
	iStoredMessage.Complete(err);
sl@0
   392
	}
sl@0
   393
sl@0
   394
sl@0
   395
void CMMFSampleBufferingDeMux::DoCancel()
sl@0
   396
	{
sl@0
   397
	}
sl@0
   398
sl@0
   399
//
sl@0
   400
// ImplementationTable
sl@0
   401
//
sl@0
   402
const TImplementationProxy ImplementationTable[] =
sl@0
   403
	{
sl@0
   404
	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSampleBufferingMux,	CMMFSampleBufferingMux::NewL),
sl@0
   405
	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSampleBufferingDeMux,	CMMFSampleBufferingDeMux::NewL),
sl@0
   406
	};
sl@0
   407
sl@0
   408
//
sl@0
   409
// ImplementationGroupProxy
sl@0
   410
//
sl@0
   411
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
sl@0
   412
	{
sl@0
   413
	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
sl@0
   414
sl@0
   415
	return ImplementationTable;
sl@0
   416
	}
sl@0
   417