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