os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/aacdecoderconfigci.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/aacdecoderconfigci.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,463 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include <ecom/implementationproxy.h>
    1.20 +#include <ecom/implementationproxy.h>
    1.21 +#include <ecom/ecom.h>
    1.22 +#include <s32mem.h>
    1.23 +
    1.24 +#include "aacdecoderconfigci.h"
    1.25 +
    1.26 +
    1.27 +// MUX //
    1.28 +
    1.29 +TInt CMMFAacDecoderConfigMux::OpenInterface(TUid /*aInterfaceId*/)
    1.30 +	{
    1.31 +	// attempt to open the interface link with the
    1.32 +	// remote slave device
    1.33 +	iRemoteHandle = -1;
    1.34 +	TUid slaveId = {KMmfUidCustomInterfaceAacDecoderConfigDeMux};
    1.35 +
    1.36 +	TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
    1.37 +	if (handle >= 0)
    1.38 +		{
    1.39 +		iRemoteHandle = handle;
    1.40 +		}
    1.41 +
    1.42 +	return iRemoteHandle;
    1.43 +	}
    1.44 +
    1.45 +
    1.46 +void CMMFAacDecoderConfigMux::Release()
    1.47 +	{
    1.48 +	// close the slave device if it exists
    1.49 +	if (iRemoteHandle > 0)
    1.50 +		{
    1.51 +		// we assume the slave is closed correctly
    1.52 +		iUtility->CloseSlave(iRemoteHandle);
    1.53 +		}
    1.54 +
    1.55 +	TUid key = iKey;
    1.56 +	delete this;
    1.57 +
    1.58 +	// tell ECom to destroy us
    1.59 +	REComSession::DestroyedImplementation(key);
    1.60 +	}
    1.61 +
    1.62 +
    1.63 +void CMMFAacDecoderConfigMux::PassDestructorKey(TUid aDestructorKey)
    1.64 +	{
    1.65 +	// store the destructor key
    1.66 +	iKey = aDestructorKey;
    1.67 +	}
    1.68 +
    1.69 +
    1.70 +void CMMFAacDecoderConfigMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
    1.71 +	{
    1.72 +	// store a pointer to the utility
    1.73 +	iUtility = aCustomUtility;
    1.74 +	}
    1.75 +
    1.76 +
    1.77 +MMMFDevSoundCustomInterfaceMuxPlugin* CMMFAacDecoderConfigMux::NewL()
    1.78 +	{
    1.79 +	CMMFAacDecoderConfigMux* self = new (ELeave) CMMFAacDecoderConfigMux;
    1.80 +	return self;
    1.81 +	}
    1.82 +
    1.83 +
    1.84 +TAny* CMMFAacDecoderConfigMux::CustomInterface(TUid /*aInterfaceId*/)
    1.85 +	{
    1.86 +	MAacDecoderConfig* interface = this;
    1.87 +	return interface;
    1.88 +	}
    1.89 +
    1.90 +
    1.91 +CMMFAacDecoderConfigMux::CMMFAacDecoderConfigMux() :
    1.92 +iRemoteHandle(-1)
    1.93 +	{
    1.94 +	}
    1.95 +
    1.96 +
    1.97 +CMMFAacDecoderConfigMux::~CMMFAacDecoderConfigMux()
    1.98 +	{
    1.99 +	}
   1.100 +
   1.101 +
   1.102 +// from MAacDecoderConfig
   1.103 +TInt CMMFAacDecoderConfigMux::SetAudioConfig(TAudioConfig& aAudioConfig)
   1.104 +	{
   1.105 +	TInt result = -1;
   1.106 +
   1.107 +	if (iRemoteHandle > 0)
   1.108 +		{
   1.109 +		// send the status in the sync command
   1.110 +		TPckgBuf<TAudioConfig> audioConfig(aAudioConfig);
   1.111 +
   1.112 +		// any return code other than zero is an error
   1.113 +		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
   1.114 +												EMMFDevSoundCIAacDecoderConfigSetAudioConfig,
   1.115 +												audioConfig);
   1.116 +		}
   1.117 +
   1.118 +	return result;
   1.119 +	}
   1.120 +
   1.121 +
   1.122 +// from MAacDecoderConfig
   1.123 +TInt CMMFAacDecoderConfigMux::GetSupportedAudioConfigs(RArray<TAudioConfig>& aSupportedAudioConfigs)
   1.124 +	{
   1.125 +	TInt result = KErrNone;
   1.126 +
   1.127 +	if (iRemoteHandle == -1)
   1.128 +		{
   1.129 +		return KErrBadHandle;
   1.130 +		}
   1.131 +
   1.132 +	// first clear out the array
   1.133 +	aSupportedAudioConfigs.Reset();
   1.134 +
   1.135 +	// now fetch the count from the server
   1.136 +	TInt count = -1;
   1.137 +	count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
   1.138 +										   EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfig,
   1.139 +										   KNullDesC8);
   1.140 +
   1.141 +	// if count is negative then the server side left with an error
   1.142 +	if (count < 0)
   1.143 +		{
   1.144 +		result = KErrNotReady;
   1.145 +		}
   1.146 +
   1.147 +	// no point getting the data if the count is zero
   1.148 +	if ( (count != 0) && (result == KErrNone) )
   1.149 +		{
   1.150 +		// allocate a temporary buffer to hold the audio configuration
   1.151 +		HBufC8* buf = NULL;
   1.152 +		TRAP(result, buf = HBufC8::NewL(count * sizeof(TAudioConfig)));
   1.153 +
   1.154 +		if (result != KErrNone)
   1.155 +			{
   1.156 +			return result;
   1.157 +			}
   1.158 +
   1.159 +		TPtr8 ptr = buf->Des();
   1.160 +
   1.161 +		// fetch the audio configurations - but send over the received count to be sure
   1.162 +		TPckgBuf<TInt> countBuf(count);
   1.163 +		iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
   1.164 +											 EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfigArray,
   1.165 +											 countBuf,
   1.166 +											 ptr);
   1.167 +
   1.168 +		if (result != KErrNone)
   1.169 +			{
   1.170 +			return result;
   1.171 +			}
   1.172 +
   1.173 +		// stream data into the pointer
   1.174 +		RDesReadStream stream(ptr);
   1.175 +
   1.176 +		TInt err = KErrNone;
   1.177 +		for (TInt i = 0; i < count; i++)
   1.178 +			{
   1.179 +			TAudioConfig audioConfig;
   1.180 +
   1.181 +			TRAP(result, audioConfig.iAudioObjectType = static_cast<TAudioConfig::TAudioObjectType>(stream.ReadInt32L());
   1.182 +
   1.183 +			err = aSupportedAudioConfigs.Append(audioConfig));
   1.184 +
   1.185 +			if ( (err != KErrNone) || (result != KErrNone) )
   1.186 +				{
   1.187 +				// note we don't destroy array because we don't own it
   1.188 +				// but we do reset it if it is incomplete
   1.189 +				aSupportedAudioConfigs.Reset();
   1.190 +				result = KErrCorrupt;
   1.191 +				}
   1.192 +			}
   1.193 +
   1.194 +		stream.Close();
   1.195 +		stream.Release();
   1.196 +		delete buf;
   1.197 +		}
   1.198 +
   1.199 +	return result;
   1.200 +	}
   1.201 +
   1.202 +
   1.203 +
   1.204 +// DEMUX //
   1.205 +
   1.206 +TInt CMMFAacDecoderConfigDeMux::OpenInterface(TUid /*aInterfaceId*/)
   1.207 +	{
   1.208 +	return KErrNone;
   1.209 +	}
   1.210 +
   1.211 +
   1.212 +void CMMFAacDecoderConfigDeMux::Release()
   1.213 +	{
   1.214 +	TUid key = iKey;
   1.215 +
   1.216 +	delete this;
   1.217 +
   1.218 +	// tell ECom to destroy us
   1.219 +	REComSession::DestroyedImplementation(key);
   1.220 +	}
   1.221 +
   1.222 +
   1.223 +void CMMFAacDecoderConfigDeMux::PassDestructorKey(TUid aDestructorKey)
   1.224 +	{
   1.225 +	// store the destructor key
   1.226 +	iKey = aDestructorKey;
   1.227 +	}
   1.228 +
   1.229 +
   1.230 +void CMMFAacDecoderConfigDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
   1.231 +	{
   1.232 +	iTarget = aTarget;
   1.233 +	}
   1.234 +
   1.235 +
   1.236 +void CMMFAacDecoderConfigDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
   1.237 +	{
   1.238 +	// store a pointer to the utility
   1.239 +	iUtility = aCustomUtility;
   1.240 +	}
   1.241 +
   1.242 +
   1.243 +void CMMFAacDecoderConfigDeMux::RefreshL()
   1.244 +	{
   1.245 +	// refetch the aac decoder config custom interface if we already have a target
   1.246 +	if (iTarget)
   1.247 +		{
   1.248 +		iInterfaceAacDecoderConfig = static_cast <MAacDecoderConfig*> (iTarget->CustomInterface(KUidAacDecoderConfig));
   1.249 +
   1.250 +		if (!iInterfaceAacDecoderConfig)
   1.251 +			{
   1.252 +			iInterfaceAacDecoderConfig = NULL;
   1.253 +			User::Leave(KErrNotSupported);
   1.254 +			}
   1.255 +		}
   1.256 +	}
   1.257 +
   1.258 +
   1.259 +MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFAacDecoderConfigDeMux::NewL()
   1.260 +	{
   1.261 +	CMMFAacDecoderConfigDeMux* self = new (ELeave) CMMFAacDecoderConfigDeMux;
   1.262 +	return self;
   1.263 +	}
   1.264 +
   1.265 +
   1.266 +CMMFAacDecoderConfigDeMux::CMMFAacDecoderConfigDeMux()
   1.267 +	{
   1.268 +	}
   1.269 +
   1.270 +
   1.271 +CMMFAacDecoderConfigDeMux::~CMMFAacDecoderConfigDeMux()
   1.272 +	{
   1.273 +	iSupportedAudioConfigs.Reset();
   1.274 +	iSupportedAudioConfigs.Close();
   1.275 +	}
   1.276 +
   1.277 +
   1.278 +TInt CMMFAacDecoderConfigDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
   1.279 +	{
   1.280 +	// fetch the Aac Decoder Config Hw Device custom interface
   1.281 +	iInterfaceAacDecoderConfig = static_cast<MAacDecoderConfig*> (iTarget->CustomInterface(KUidAacDecoderConfig)); 
   1.282 +
   1.283 +	if (!iInterfaceAacDecoderConfig)
   1.284 +		{
   1.285 +		iInterfaceAacDecoderConfig = NULL;
   1.286 +		User::Leave(KErrNotSupported);
   1.287 +		}
   1.288 +
   1.289 +	return KErrNone;
   1.290 +	}
   1.291 +
   1.292 +
   1.293 +void CMMFAacDecoderConfigDeMux::DoCloseSlaveL(TInt /*aHandle*/)
   1.294 +	{
   1.295 +	// nothing to do
   1.296 +	}
   1.297 +
   1.298 +
   1.299 +// original RMessage is supplied so that remote demux plugin can extract necessary details
   1.300 +// using DeMux utility
   1.301 +TInt CMMFAacDecoderConfigDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
   1.302 +	{
   1.303 +	TMMFDevSoundCIMessageData data;
   1.304 +	TInt result = KErrNotSupported;
   1.305 +
   1.306 +	// decode message
   1.307 +	iUtility->GetSyncMessageDataL(aMessage, data);
   1.308 +
   1.309 +	switch (data.iCommand)
   1.310 +		{
   1.311 +		case EMMFDevSoundCIAacDecoderConfigSetAudioConfig:
   1.312 +			{
   1.313 +			TPckgBuf<MAacDecoderConfig::TAudioConfig> audioConfig; 
   1.314 +			iUtility->ReadFromInputDesL(aMessage, &audioConfig);
   1.315 +
   1.316 +			result = DoSetAudioConfigL(audioConfig());
   1.317 +
   1.318 +			break;
   1.319 +			}
   1.320 +		case EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfig:
   1.321 +			{
   1.322 +			// reset the current AudioConfig array
   1.323 +			iSupportedAudioConfigs.Reset();
   1.324 +			result = DoGetSupportedAudioConfigsL(iSupportedAudioConfigs);
   1.325 +
   1.326 +			// send back the array count
   1.327 +			TInt count = iSupportedAudioConfigs.Count();
   1.328 +			result = count;
   1.329 +
   1.330 +			break;
   1.331 +			}
   1.332 +		default:
   1.333 +			{
   1.334 +			User::Leave(KErrNotSupported);
   1.335 +			}
   1.336 +		}
   1.337 +
   1.338 +	return result;
   1.339 +	}
   1.340 +
   1.341 +
   1.342 +TInt CMMFAacDecoderConfigDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
   1.343 +	{
   1.344 +	TMMFDevSoundCIMessageData data;
   1.345 +	TInt result = KErrNotSupported;
   1.346 +
   1.347 +	// decode message
   1.348 +	iUtility->GetSyncMessageDataL(aMessage, data);
   1.349 +
   1.350 +	switch (data.iCommand)
   1.351 +		{
   1.352 +		case EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfigArray:
   1.353 +			{
   1.354 +
   1.355 +			DoCopyAudioConfigsBufferToClientL(aMessage);
   1.356 +
   1.357 +			break;
   1.358 +			}
   1.359 +		default:
   1.360 +			{
   1.361 +			User::Leave(KErrNotSupported);
   1.362 +			}
   1.363 +		}
   1.364 +
   1.365 +	return result;
   1.366 +	}
   1.367 +
   1.368 +
   1.369 +void CMMFAacDecoderConfigDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
   1.370 +	{
   1.371 +	// not used in this interface
   1.372 +	}
   1.373 +
   1.374 +
   1.375 +void CMMFAacDecoderConfigDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   1.376 +	{
   1.377 +	// not used in this interface
   1.378 +	}
   1.379 +
   1.380 +
   1.381 +// Aac Decoder Config custom interface implementation
   1.382 +TInt CMMFAacDecoderConfigDeMux::DoSetAudioConfigL(MAacDecoderConfig::TAudioConfig& aAudioConfig)
   1.383 +	{
   1.384 +	TInt result = KErrNotFound;
   1.385 +
   1.386 +	if (iInterfaceAacDecoderConfig)
   1.387 +		{
   1.388 +		result = iInterfaceAacDecoderConfig->SetAudioConfig(aAudioConfig);
   1.389 +		}
   1.390 +
   1.391 +	return result;
   1.392 +	}
   1.393 +
   1.394 +
   1.395 +// Aac Decoder Config custom interface implementation
   1.396 +TInt CMMFAacDecoderConfigDeMux::DoGetSupportedAudioConfigsL(RArray<MAacDecoderConfig::TAudioConfig>& aSupportedAudioConfigs)
   1.397 +	{
   1.398 +	TInt result = KErrNotFound;
   1.399 +
   1.400 +	if (iInterfaceAacDecoderConfig)
   1.401 +		{
   1.402 +		result = iInterfaceAacDecoderConfig->GetSupportedAudioConfigs(aSupportedAudioConfigs);
   1.403 +		}
   1.404 +
   1.405 +	return result;
   1.406 +	}
   1.407 +
   1.408 +
   1.409 +// Aac Decoder Config custom interface implementation
   1.410 +void CMMFAacDecoderConfigDeMux::DoCopyAudioConfigsBufferToClientL(const RMmfIpcMessage& aMessage)
   1.411 +	{
   1.412 +	if (!iInterfaceAacDecoderConfig)
   1.413 +		{
   1.414 +		User::Leave(KErrNotReady);
   1.415 +		}
   1.416 +
   1.417 +	// check our count is the same as the client's
   1.418 +	TPckgBuf<TInt> countBuffer;
   1.419 +	iUtility->ReadFromInputDesL(aMessage, &countBuffer);
   1.420 +
   1.421 +	TInt count = countBuffer();
   1.422 +	if (count != iSupportedAudioConfigs.Count())
   1.423 +		{
   1.424 +		User::Leave(KErrCorrupt);
   1.425 +		}
   1.426 +
   1.427 +	// send back the array - the client has the count already
   1.428 +	const TInt KBufExpandSize8 = 8; //two TInt's
   1.429 +	CBufFlat* dataCopyBuffer = CBufFlat::NewL(KBufExpandSize8);
   1.430 +	CleanupStack::PushL(dataCopyBuffer);
   1.431 +	RBufWriteStream stream;
   1.432 +	stream.Open(*dataCopyBuffer);
   1.433 +	CleanupClosePushL(stream);
   1.434 +
   1.435 +	for (TInt i = 0; i < count; i++)
   1.436 +		{
   1.437 +		stream.WriteInt32L(iSupportedAudioConfigs[i].iAudioObjectType);
   1.438 +		}
   1.439 +
   1.440 +	// write the data to the supplied descriptor buffer
   1.441 +	TPtr8 ptrBuf = dataCopyBuffer->Ptr(0);
   1.442 +	iUtility->WriteToOutputDesL(aMessage, ptrBuf);
   1.443 +	stream.Close();
   1.444 +
   1.445 +	CleanupStack::PopAndDestroy(2, dataCopyBuffer); // dataCopyBuffer, stream
   1.446 +	}
   1.447 +
   1.448 +
   1.449 +//
   1.450 +// ImplementationTable
   1.451 +//
   1.452 +const TImplementationProxy ImplementationTable[] = 
   1.453 +	{
   1.454 +	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAacDecoderConfigMux,	CMMFAacDecoderConfigMux::NewL),
   1.455 +	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAacDecoderConfigDeMux,	CMMFAacDecoderConfigDeMux::NewL),
   1.456 +	};
   1.457 +
   1.458 +//
   1.459 +// ImplementationGroupProxy
   1.460 +//
   1.461 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   1.462 +	{
   1.463 +	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   1.464 +
   1.465 +	return ImplementationTable;
   1.466 +	}