os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/aacdecoderconfigci.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 "aacdecoderconfigci.h"
sl@0
    22
sl@0
    23
sl@0
    24
// MUX //
sl@0
    25
sl@0
    26
TInt CMMFAacDecoderConfigMux::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 = {KMmfUidCustomInterfaceAacDecoderConfigDeMux};
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 CMMFAacDecoderConfigMux::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 CMMFAacDecoderConfigMux::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 CMMFAacDecoderConfigMux::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* CMMFAacDecoderConfigMux::NewL()
sl@0
    75
	{
sl@0
    76
	CMMFAacDecoderConfigMux* self = new (ELeave) CMMFAacDecoderConfigMux;
sl@0
    77
	return self;
sl@0
    78
	}
sl@0
    79
sl@0
    80
sl@0
    81
TAny* CMMFAacDecoderConfigMux::CustomInterface(TUid /*aInterfaceId*/)
sl@0
    82
	{
sl@0
    83
	MAacDecoderConfig* interface = this;
sl@0
    84
	return interface;
sl@0
    85
	}
sl@0
    86
sl@0
    87
sl@0
    88
CMMFAacDecoderConfigMux::CMMFAacDecoderConfigMux() :
sl@0
    89
iRemoteHandle(-1)
sl@0
    90
	{
sl@0
    91
	}
sl@0
    92
sl@0
    93
sl@0
    94
CMMFAacDecoderConfigMux::~CMMFAacDecoderConfigMux()
sl@0
    95
	{
sl@0
    96
	}
sl@0
    97
sl@0
    98
sl@0
    99
// from MAacDecoderConfig
sl@0
   100
TInt CMMFAacDecoderConfigMux::SetAudioConfig(TAudioConfig& aAudioConfig)
sl@0
   101
	{
sl@0
   102
	TInt result = -1;
sl@0
   103
sl@0
   104
	if (iRemoteHandle > 0)
sl@0
   105
		{
sl@0
   106
		// send the status in the sync command
sl@0
   107
		TPckgBuf<TAudioConfig> audioConfig(aAudioConfig);
sl@0
   108
sl@0
   109
		// any return code other than zero is an error
sl@0
   110
		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
sl@0
   111
												EMMFDevSoundCIAacDecoderConfigSetAudioConfig,
sl@0
   112
												audioConfig);
sl@0
   113
		}
sl@0
   114
sl@0
   115
	return result;
sl@0
   116
	}
sl@0
   117
sl@0
   118
sl@0
   119
// from MAacDecoderConfig
sl@0
   120
TInt CMMFAacDecoderConfigMux::GetSupportedAudioConfigs(RArray<TAudioConfig>& aSupportedAudioConfigs)
sl@0
   121
	{
sl@0
   122
	TInt result = KErrNone;
sl@0
   123
sl@0
   124
	if (iRemoteHandle == -1)
sl@0
   125
		{
sl@0
   126
		return KErrBadHandle;
sl@0
   127
		}
sl@0
   128
sl@0
   129
	// first clear out the array
sl@0
   130
	aSupportedAudioConfigs.Reset();
sl@0
   131
sl@0
   132
	// now fetch the count from the server
sl@0
   133
	TInt count = -1;
sl@0
   134
	count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
sl@0
   135
										   EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfig,
sl@0
   136
										   KNullDesC8);
sl@0
   137
sl@0
   138
	// if count is negative then the server side left with an error
sl@0
   139
	if (count < 0)
sl@0
   140
		{
sl@0
   141
		result = KErrNotReady;
sl@0
   142
		}
sl@0
   143
sl@0
   144
	// no point getting the data if the count is zero
sl@0
   145
	if ( (count != 0) && (result == KErrNone) )
sl@0
   146
		{
sl@0
   147
		// allocate a temporary buffer to hold the audio configuration
sl@0
   148
		HBufC8* buf = NULL;
sl@0
   149
		TRAP(result, buf = HBufC8::NewL(count * sizeof(TAudioConfig)));
sl@0
   150
sl@0
   151
		if (result != KErrNone)
sl@0
   152
			{
sl@0
   153
			return result;
sl@0
   154
			}
sl@0
   155
sl@0
   156
		TPtr8 ptr = buf->Des();
sl@0
   157
sl@0
   158
		// fetch the audio configurations - but send over the received count to be sure
sl@0
   159
		TPckgBuf<TInt> countBuf(count);
sl@0
   160
		iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
sl@0
   161
											 EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfigArray,
sl@0
   162
											 countBuf,
sl@0
   163
											 ptr);
sl@0
   164
sl@0
   165
		if (result != KErrNone)
sl@0
   166
			{
sl@0
   167
			return result;
sl@0
   168
			}
sl@0
   169
sl@0
   170
		// stream data into the pointer
sl@0
   171
		RDesReadStream stream(ptr);
sl@0
   172
sl@0
   173
		TInt err = KErrNone;
sl@0
   174
		for (TInt i = 0; i < count; i++)
sl@0
   175
			{
sl@0
   176
			TAudioConfig audioConfig;
sl@0
   177
sl@0
   178
			TRAP(result, audioConfig.iAudioObjectType = static_cast<TAudioConfig::TAudioObjectType>(stream.ReadInt32L());
sl@0
   179
sl@0
   180
			err = aSupportedAudioConfigs.Append(audioConfig));
sl@0
   181
sl@0
   182
			if ( (err != KErrNone) || (result != KErrNone) )
sl@0
   183
				{
sl@0
   184
				// note we don't destroy array because we don't own it
sl@0
   185
				// but we do reset it if it is incomplete
sl@0
   186
				aSupportedAudioConfigs.Reset();
sl@0
   187
				result = KErrCorrupt;
sl@0
   188
				}
sl@0
   189
			}
sl@0
   190
sl@0
   191
		stream.Close();
sl@0
   192
		stream.Release();
sl@0
   193
		delete buf;
sl@0
   194
		}
sl@0
   195
sl@0
   196
	return result;
sl@0
   197
	}
sl@0
   198
sl@0
   199
sl@0
   200
sl@0
   201
// DEMUX //
sl@0
   202
sl@0
   203
TInt CMMFAacDecoderConfigDeMux::OpenInterface(TUid /*aInterfaceId*/)
sl@0
   204
	{
sl@0
   205
	return KErrNone;
sl@0
   206
	}
sl@0
   207
sl@0
   208
sl@0
   209
void CMMFAacDecoderConfigDeMux::Release()
sl@0
   210
	{
sl@0
   211
	TUid key = iKey;
sl@0
   212
sl@0
   213
	delete this;
sl@0
   214
sl@0
   215
	// tell ECom to destroy us
sl@0
   216
	REComSession::DestroyedImplementation(key);
sl@0
   217
	}
sl@0
   218
sl@0
   219
sl@0
   220
void CMMFAacDecoderConfigDeMux::PassDestructorKey(TUid aDestructorKey)
sl@0
   221
	{
sl@0
   222
	// store the destructor key
sl@0
   223
	iKey = aDestructorKey;
sl@0
   224
	}
sl@0
   225
sl@0
   226
sl@0
   227
void CMMFAacDecoderConfigDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
sl@0
   228
	{
sl@0
   229
	iTarget = aTarget;
sl@0
   230
	}
sl@0
   231
sl@0
   232
sl@0
   233
void CMMFAacDecoderConfigDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
sl@0
   234
	{
sl@0
   235
	// store a pointer to the utility
sl@0
   236
	iUtility = aCustomUtility;
sl@0
   237
	}
sl@0
   238
sl@0
   239
sl@0
   240
void CMMFAacDecoderConfigDeMux::RefreshL()
sl@0
   241
	{
sl@0
   242
	// refetch the aac decoder config custom interface if we already have a target
sl@0
   243
	if (iTarget)
sl@0
   244
		{
sl@0
   245
		iInterfaceAacDecoderConfig = static_cast <MAacDecoderConfig*> (iTarget->CustomInterface(KUidAacDecoderConfig));
sl@0
   246
sl@0
   247
		if (!iInterfaceAacDecoderConfig)
sl@0
   248
			{
sl@0
   249
			iInterfaceAacDecoderConfig = NULL;
sl@0
   250
			User::Leave(KErrNotSupported);
sl@0
   251
			}
sl@0
   252
		}
sl@0
   253
	}
sl@0
   254
sl@0
   255
sl@0
   256
MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFAacDecoderConfigDeMux::NewL()
sl@0
   257
	{
sl@0
   258
	CMMFAacDecoderConfigDeMux* self = new (ELeave) CMMFAacDecoderConfigDeMux;
sl@0
   259
	return self;
sl@0
   260
	}
sl@0
   261
sl@0
   262
sl@0
   263
CMMFAacDecoderConfigDeMux::CMMFAacDecoderConfigDeMux()
sl@0
   264
	{
sl@0
   265
	}
sl@0
   266
sl@0
   267
sl@0
   268
CMMFAacDecoderConfigDeMux::~CMMFAacDecoderConfigDeMux()
sl@0
   269
	{
sl@0
   270
	iSupportedAudioConfigs.Reset();
sl@0
   271
	iSupportedAudioConfigs.Close();
sl@0
   272
	}
sl@0
   273
sl@0
   274
sl@0
   275
TInt CMMFAacDecoderConfigDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
sl@0
   276
	{
sl@0
   277
	// fetch the Aac Decoder Config Hw Device custom interface
sl@0
   278
	iInterfaceAacDecoderConfig = static_cast<MAacDecoderConfig*> (iTarget->CustomInterface(KUidAacDecoderConfig)); 
sl@0
   279
sl@0
   280
	if (!iInterfaceAacDecoderConfig)
sl@0
   281
		{
sl@0
   282
		iInterfaceAacDecoderConfig = NULL;
sl@0
   283
		User::Leave(KErrNotSupported);
sl@0
   284
		}
sl@0
   285
sl@0
   286
	return KErrNone;
sl@0
   287
	}
sl@0
   288
sl@0
   289
sl@0
   290
void CMMFAacDecoderConfigDeMux::DoCloseSlaveL(TInt /*aHandle*/)
sl@0
   291
	{
sl@0
   292
	// nothing to do
sl@0
   293
	}
sl@0
   294
sl@0
   295
sl@0
   296
// original RMessage is supplied so that remote demux plugin can extract necessary details
sl@0
   297
// using DeMux utility
sl@0
   298
TInt CMMFAacDecoderConfigDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
sl@0
   299
	{
sl@0
   300
	TMMFDevSoundCIMessageData data;
sl@0
   301
	TInt result = KErrNotSupported;
sl@0
   302
sl@0
   303
	// decode message
sl@0
   304
	iUtility->GetSyncMessageDataL(aMessage, data);
sl@0
   305
sl@0
   306
	switch (data.iCommand)
sl@0
   307
		{
sl@0
   308
		case EMMFDevSoundCIAacDecoderConfigSetAudioConfig:
sl@0
   309
			{
sl@0
   310
			TPckgBuf<MAacDecoderConfig::TAudioConfig> audioConfig; 
sl@0
   311
			iUtility->ReadFromInputDesL(aMessage, &audioConfig);
sl@0
   312
sl@0
   313
			result = DoSetAudioConfigL(audioConfig());
sl@0
   314
sl@0
   315
			break;
sl@0
   316
			}
sl@0
   317
		case EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfig:
sl@0
   318
			{
sl@0
   319
			// reset the current AudioConfig array
sl@0
   320
			iSupportedAudioConfigs.Reset();
sl@0
   321
			result = DoGetSupportedAudioConfigsL(iSupportedAudioConfigs);
sl@0
   322
sl@0
   323
			// send back the array count
sl@0
   324
			TInt count = iSupportedAudioConfigs.Count();
sl@0
   325
			result = count;
sl@0
   326
sl@0
   327
			break;
sl@0
   328
			}
sl@0
   329
		default:
sl@0
   330
			{
sl@0
   331
			User::Leave(KErrNotSupported);
sl@0
   332
			}
sl@0
   333
		}
sl@0
   334
sl@0
   335
	return result;
sl@0
   336
	}
sl@0
   337
sl@0
   338
sl@0
   339
TInt CMMFAacDecoderConfigDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
sl@0
   340
	{
sl@0
   341
	TMMFDevSoundCIMessageData data;
sl@0
   342
	TInt result = KErrNotSupported;
sl@0
   343
sl@0
   344
	// decode message
sl@0
   345
	iUtility->GetSyncMessageDataL(aMessage, data);
sl@0
   346
sl@0
   347
	switch (data.iCommand)
sl@0
   348
		{
sl@0
   349
		case EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfigArray:
sl@0
   350
			{
sl@0
   351
sl@0
   352
			DoCopyAudioConfigsBufferToClientL(aMessage);
sl@0
   353
sl@0
   354
			break;
sl@0
   355
			}
sl@0
   356
		default:
sl@0
   357
			{
sl@0
   358
			User::Leave(KErrNotSupported);
sl@0
   359
			}
sl@0
   360
		}
sl@0
   361
sl@0
   362
	return result;
sl@0
   363
	}
sl@0
   364
sl@0
   365
sl@0
   366
void CMMFAacDecoderConfigDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
sl@0
   367
	{
sl@0
   368
	// not used in this interface
sl@0
   369
	}
sl@0
   370
sl@0
   371
sl@0
   372
void CMMFAacDecoderConfigDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
sl@0
   373
	{
sl@0
   374
	// not used in this interface
sl@0
   375
	}
sl@0
   376
sl@0
   377
sl@0
   378
// Aac Decoder Config custom interface implementation
sl@0
   379
TInt CMMFAacDecoderConfigDeMux::DoSetAudioConfigL(MAacDecoderConfig::TAudioConfig& aAudioConfig)
sl@0
   380
	{
sl@0
   381
	TInt result = KErrNotFound;
sl@0
   382
sl@0
   383
	if (iInterfaceAacDecoderConfig)
sl@0
   384
		{
sl@0
   385
		result = iInterfaceAacDecoderConfig->SetAudioConfig(aAudioConfig);
sl@0
   386
		}
sl@0
   387
sl@0
   388
	return result;
sl@0
   389
	}
sl@0
   390
sl@0
   391
sl@0
   392
// Aac Decoder Config custom interface implementation
sl@0
   393
TInt CMMFAacDecoderConfigDeMux::DoGetSupportedAudioConfigsL(RArray<MAacDecoderConfig::TAudioConfig>& aSupportedAudioConfigs)
sl@0
   394
	{
sl@0
   395
	TInt result = KErrNotFound;
sl@0
   396
sl@0
   397
	if (iInterfaceAacDecoderConfig)
sl@0
   398
		{
sl@0
   399
		result = iInterfaceAacDecoderConfig->GetSupportedAudioConfigs(aSupportedAudioConfigs);
sl@0
   400
		}
sl@0
   401
sl@0
   402
	return result;
sl@0
   403
	}
sl@0
   404
sl@0
   405
sl@0
   406
// Aac Decoder Config custom interface implementation
sl@0
   407
void CMMFAacDecoderConfigDeMux::DoCopyAudioConfigsBufferToClientL(const RMmfIpcMessage& aMessage)
sl@0
   408
	{
sl@0
   409
	if (!iInterfaceAacDecoderConfig)
sl@0
   410
		{
sl@0
   411
		User::Leave(KErrNotReady);
sl@0
   412
		}
sl@0
   413
sl@0
   414
	// check our count is the same as the client's
sl@0
   415
	TPckgBuf<TInt> countBuffer;
sl@0
   416
	iUtility->ReadFromInputDesL(aMessage, &countBuffer);
sl@0
   417
sl@0
   418
	TInt count = countBuffer();
sl@0
   419
	if (count != iSupportedAudioConfigs.Count())
sl@0
   420
		{
sl@0
   421
		User::Leave(KErrCorrupt);
sl@0
   422
		}
sl@0
   423
sl@0
   424
	// send back the array - the client has the count already
sl@0
   425
	const TInt KBufExpandSize8 = 8; //two TInt's
sl@0
   426
	CBufFlat* dataCopyBuffer = CBufFlat::NewL(KBufExpandSize8);
sl@0
   427
	CleanupStack::PushL(dataCopyBuffer);
sl@0
   428
	RBufWriteStream stream;
sl@0
   429
	stream.Open(*dataCopyBuffer);
sl@0
   430
	CleanupClosePushL(stream);
sl@0
   431
sl@0
   432
	for (TInt i = 0; i < count; i++)
sl@0
   433
		{
sl@0
   434
		stream.WriteInt32L(iSupportedAudioConfigs[i].iAudioObjectType);
sl@0
   435
		}
sl@0
   436
sl@0
   437
	// write the data to the supplied descriptor buffer
sl@0
   438
	TPtr8 ptrBuf = dataCopyBuffer->Ptr(0);
sl@0
   439
	iUtility->WriteToOutputDesL(aMessage, ptrBuf);
sl@0
   440
	stream.Close();
sl@0
   441
sl@0
   442
	CleanupStack::PopAndDestroy(2, dataCopyBuffer); // dataCopyBuffer, stream
sl@0
   443
	}
sl@0
   444
sl@0
   445
sl@0
   446
//
sl@0
   447
// ImplementationTable
sl@0
   448
//
sl@0
   449
const TImplementationProxy ImplementationTable[] = 
sl@0
   450
	{
sl@0
   451
	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAacDecoderConfigMux,	CMMFAacDecoderConfigMux::NewL),
sl@0
   452
	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAacDecoderConfigDeMux,	CMMFAacDecoderConfigDeMux::NewL),
sl@0
   453
	};
sl@0
   454
sl@0
   455
//
sl@0
   456
// ImplementationGroupProxy
sl@0
   457
//
sl@0
   458
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
sl@0
   459
	{
sl@0
   460
	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
sl@0
   461
sl@0
   462
	return ImplementationTable;
sl@0
   463
	}