os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/ilbcencoderconfigci.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/ilbcencoderconfigci.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,460 @@
     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 "ilbcencoderconfigci.h"
    1.25 +
    1.26 +
    1.27 +// MUX //
    1.28 +
    1.29 +TInt CMMFIlbcEncoderIntfcMux::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 = {KMmfUidCustomInterfaceIlbcEncoderIntfcDeMux};
    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 CMMFIlbcEncoderIntfcMux::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 CMMFIlbcEncoderIntfcMux::PassDestructorKey(TUid aDestructorKey)
    1.64 +	{
    1.65 +	// store the destructor key
    1.66 +	iKey = aDestructorKey;
    1.67 +	}
    1.68 +
    1.69 +
    1.70 +void CMMFIlbcEncoderIntfcMux::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* CMMFIlbcEncoderIntfcMux::NewL()
    1.78 +	{
    1.79 +	CMMFIlbcEncoderIntfcMux* self = new (ELeave) CMMFIlbcEncoderIntfcMux;
    1.80 +	return self;
    1.81 +	}
    1.82 +
    1.83 +
    1.84 +TAny* CMMFIlbcEncoderIntfcMux::CustomInterface(TUid /*aInterfaceId*/)
    1.85 +	{
    1.86 +	MIlbcEncoderIntfc* interface = this;
    1.87 +	return interface;
    1.88 +	}
    1.89 +
    1.90 +
    1.91 +CMMFIlbcEncoderIntfcMux::CMMFIlbcEncoderIntfcMux() :
    1.92 +	iRemoteHandle(-1)
    1.93 +	{
    1.94 +	}
    1.95 +
    1.96 +
    1.97 +CMMFIlbcEncoderIntfcMux::~CMMFIlbcEncoderIntfcMux()
    1.98 +	{
    1.99 +	}
   1.100 +
   1.101 +
   1.102 +// from MIlbcEncoderIntfc
   1.103 +TInt CMMFIlbcEncoderIntfcMux::SetEncoderMode(TEncodeMode aEncodeMode)
   1.104 +	{
   1.105 +	TInt result = KErrBadHandle;
   1.106 +
   1.107 +	if (iRemoteHandle > 0)
   1.108 +		{
   1.109 +		// send encodeMode in the sync command.
   1.110 +		TPckgBuf<TEncodeMode> encodeMode(aEncodeMode);
   1.111 +
   1.112 +		// any return code other than zero is an error
   1.113 +		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
   1.114 +												EMMFDevSoundCIIlbcEncoderIntfcSetEncoderMode,
   1.115 +												encodeMode);
   1.116 +		}
   1.117 +
   1.118 +	return result;
   1.119 +	}
   1.120 +
   1.121 +
   1.122 +// from MIlbcEncoderIntfc
   1.123 +TInt CMMFIlbcEncoderIntfcMux::GetEncoderMode(TEncodeMode& aEncodeMode)
   1.124 +	{
   1.125 +	TInt result = KErrBadHandle;
   1.126 +
   1.127 +	if (iRemoteHandle > 0)
   1.128 +		{
   1.129 +		// send encodeMode in the sync command.
   1.130 +		TPckgBuf<TEncodeMode> retEncodeMode;
   1.131 +
   1.132 +		// any return code other than zero is an error
   1.133 +		result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
   1.134 +													  EMMFDevSoundCIIlbcEncoderIntfcGetEncoderMode,
   1.135 +													  KNullDesC8,
   1.136 +													  retEncodeMode);
   1.137 +
   1.138 +		// assign return values to aEncodeMode. Do nothing if there is an error
   1.139 +		if(result == KErrNone)
   1.140 +			{
   1.141 +			aEncodeMode = retEncodeMode();
   1.142 +			}
   1.143 +		}
   1.144 +
   1.145 +	return result;
   1.146 +	}
   1.147 +
   1.148 +
   1.149 +// from MIlbcEncoderIntfc
   1.150 +TInt CMMFIlbcEncoderIntfcMux::SetVadMode (TBool aVadModeOn)
   1.151 +	{
   1.152 +	TInt result = KErrBadHandle;
   1.153 +
   1.154 +	if (iRemoteHandle > 0)
   1.155 +		{
   1.156 +		// send vadModeOn in the sync command.
   1.157 +		TPckgBuf<TBool> vadModeOn(aVadModeOn);
   1.158 +
   1.159 +		// any return code other than zero is an error
   1.160 +		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
   1.161 +												EMMFDevSoundCIIlbcEncoderIntfcSetVadMode,
   1.162 +												vadModeOn);
   1.163 +		}
   1.164 +
   1.165 +	return result;
   1.166 +	}
   1.167 +
   1.168 +
   1.169 +// from MIlbcEncoderIntfc
   1.170 +TInt CMMFIlbcEncoderIntfcMux::GetVadMode (TBool& aVadModeOn)
   1.171 +	{
   1.172 +	TInt result = KErrBadHandle;
   1.173 +
   1.174 +	if (iRemoteHandle > 0)
   1.175 +		{
   1.176 +		// holds the returned value.
   1.177 +		TPckgBuf<TBool> retVadModeOn;
   1.178 +
   1.179 +		// any return code other than zero is an error
   1.180 +		result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
   1.181 +													  EMMFDevSoundCIIlbcEncoderIntfcGetVadMode,
   1.182 +													  KNullDesC8,
   1.183 +													  retVadModeOn);
   1.184 +
   1.185 +		// assign return values to aVadModeOn. Do nothing if there is an error
   1.186 +		if(result == KErrNone)
   1.187 +			{
   1.188 +			aVadModeOn = retVadModeOn();
   1.189 +			}
   1.190 +		}
   1.191 +
   1.192 +	return result;
   1.193 +	}
   1.194 +
   1.195 +
   1.196 +
   1.197 +// DEMUX //	
   1.198 +
   1.199 +TInt CMMFIlbcEncoderIntfcDeMux::OpenInterface(TUid /*aInterfaceId*/)
   1.200 +	{
   1.201 +	return KErrNone;
   1.202 +	}
   1.203 +
   1.204 +
   1.205 +void CMMFIlbcEncoderIntfcDeMux::Release()
   1.206 +	{
   1.207 +	TUid key = iKey;
   1.208 +
   1.209 +	delete this;
   1.210 +
   1.211 +	// tell ECom to destroy us
   1.212 +	REComSession::DestroyedImplementation(key);
   1.213 +	}
   1.214 +
   1.215 +
   1.216 +void CMMFIlbcEncoderIntfcDeMux::PassDestructorKey(TUid aDestructorKey)
   1.217 +	{
   1.218 +	// store the destructor key
   1.219 +	iKey = aDestructorKey;
   1.220 +	}
   1.221 +
   1.222 +
   1.223 +void CMMFIlbcEncoderIntfcDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
   1.224 +	{
   1.225 +	iTarget = aTarget;
   1.226 +	}
   1.227 +
   1.228 +
   1.229 +void CMMFIlbcEncoderIntfcDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
   1.230 +	{
   1.231 +	// store a pointer to the utility
   1.232 +	iUtility = aCustomUtility;
   1.233 +	}
   1.234 +
   1.235 +
   1.236 +void CMMFIlbcEncoderIntfcDeMux::RefreshL()
   1.237 +	{
   1.238 +	// refetch the Ilbc encoder intfc custom interface if we already have a target
   1.239 +	if (iTarget)
   1.240 +		{
   1.241 +		iInterfaceIlbcEncoderIntfc = static_cast <MIlbcEncoderIntfc*> (iTarget->CustomInterface(KUidIlbcEncoderIntfc));
   1.242 +
   1.243 +		if (!iInterfaceIlbcEncoderIntfc)
   1.244 +			{
   1.245 +			iInterfaceIlbcEncoderIntfc = NULL;
   1.246 +			User::Leave(KErrNotSupported);
   1.247 +			}
   1.248 +		}
   1.249 +	}
   1.250 +
   1.251 +
   1.252 +MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFIlbcEncoderIntfcDeMux::NewL()
   1.253 +	{
   1.254 +	CMMFIlbcEncoderIntfcDeMux* self = new (ELeave) CMMFIlbcEncoderIntfcDeMux;
   1.255 +	return self;
   1.256 +	}
   1.257 +
   1.258 +
   1.259 +CMMFIlbcEncoderIntfcDeMux::CMMFIlbcEncoderIntfcDeMux()
   1.260 +	{
   1.261 +	}
   1.262 +
   1.263 +
   1.264 +CMMFIlbcEncoderIntfcDeMux::~CMMFIlbcEncoderIntfcDeMux()
   1.265 +	{
   1.266 +	}
   1.267 +
   1.268 +
   1.269 +TInt CMMFIlbcEncoderIntfcDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
   1.270 +	{
   1.271 +	// fetch the Ilbc encoder intfc Hw Device custom interface
   1.272 +	iInterfaceIlbcEncoderIntfc = static_cast<MIlbcEncoderIntfc*> (iTarget->CustomInterface(KUidIlbcEncoderIntfc)); 
   1.273 +
   1.274 +	if (!iInterfaceIlbcEncoderIntfc)
   1.275 +		{
   1.276 +		iInterfaceIlbcEncoderIntfc = NULL;
   1.277 +		User::Leave(KErrNotSupported);
   1.278 +		}
   1.279 +
   1.280 +	return KErrNone;
   1.281 +	}
   1.282 +
   1.283 +
   1.284 +void CMMFIlbcEncoderIntfcDeMux::DoCloseSlaveL(TInt /*aHandle*/)
   1.285 +	{
   1.286 +	// nothing to do
   1.287 +	}
   1.288 +
   1.289 +
   1.290 +// original RMessage is supplied so that remote demux plugin can extract necessary details
   1.291 +// using DeMux utility
   1.292 +TInt CMMFIlbcEncoderIntfcDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
   1.293 +	{
   1.294 +	TMMFDevSoundCIMessageData data;
   1.295 +	TInt result = KErrGeneral;
   1.296 +
   1.297 +	// decode message
   1.298 +	iUtility->GetSyncMessageDataL(aMessage, data);
   1.299 +
   1.300 +	switch (data.iCommand)
   1.301 +		{
   1.302 +		case EMMFDevSoundCIIlbcEncoderIntfcSetEncoderMode:
   1.303 +			{
   1.304 +			TPckgBuf<MIlbcEncoderIntfc::TEncodeMode> encodeMode; 
   1.305 +			iUtility->ReadFromInputDesL(aMessage, &encodeMode);
   1.306 +
   1.307 +			result = DoSetEncoderModeL(encodeMode());
   1.308 +
   1.309 +			break;
   1.310 +			}
   1.311 +		case EMMFDevSoundCIIlbcEncoderIntfcSetVadMode:
   1.312 +			{
   1.313 +			TPckgBuf<TBool> vadModeOn; 
   1.314 +			iUtility->ReadFromInputDesL(aMessage, &vadModeOn);
   1.315 +
   1.316 +			result = DoSetVadModeL(vadModeOn());
   1.317 +
   1.318 +			break;
   1.319 +			}
   1.320 +		default:
   1.321 +			{
   1.322 +			User::Leave(KErrNotSupported);
   1.323 +			}
   1.324 +		}
   1.325 +
   1.326 +	return result;
   1.327 +	}
   1.328 +
   1.329 +
   1.330 +// original RMessage is supplied so that remote demux plugin can extract necessary details
   1.331 +// using DeMux utility
   1.332 +TInt CMMFIlbcEncoderIntfcDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
   1.333 +	{
   1.334 +	TMMFDevSoundCIMessageData data;
   1.335 +	TInt result = KErrNone;
   1.336 +
   1.337 +	// decode message
   1.338 +	iUtility->GetSyncMessageDataL(aMessage, data);
   1.339 +
   1.340 +	switch (data.iCommand)
   1.341 +		{
   1.342 +		case EMMFDevSoundCIIlbcEncoderIntfcGetEncoderMode:
   1.343 +			{
   1.344 +			TPckgBuf<MIlbcEncoderIntfc::TEncodeMode> encodeMode; 
   1.345 +			iUtility->ReadFromInputDesL(aMessage, &encodeMode);
   1.346 +
   1.347 +			result = DoGetEncoderModeL(encodeMode());
   1.348 +
   1.349 +			TPckgBuf<TBool> des(encodeMode());
   1.350 +			iUtility->WriteToOutputDesL(aMessage, des);
   1.351 +
   1.352 +			break;
   1.353 +			}
   1.354 +		case EMMFDevSoundCIIlbcEncoderIntfcGetVadMode:
   1.355 +			{
   1.356 +			TPckgBuf<TBool> vadModeOn; 
   1.357 +			iUtility->ReadFromInputDesL(aMessage, &vadModeOn);
   1.358 +
   1.359 +			result = DoGetVadModeL(vadModeOn());
   1.360 +
   1.361 +			TPckgBuf<TBool> des(vadModeOn());
   1.362 +			iUtility->WriteToOutputDesL(aMessage, des);
   1.363 +
   1.364 +			break;
   1.365 +			}
   1.366 +		default:
   1.367 +			{
   1.368 +			User::Leave(KErrNotSupported);
   1.369 +			}
   1.370 +		}
   1.371 +
   1.372 +	return result;
   1.373 +	}
   1.374 +
   1.375 +
   1.376 +void CMMFIlbcEncoderIntfcDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
   1.377 +	{
   1.378 +	// not used in this interface
   1.379 +	}
   1.380 +
   1.381 +
   1.382 +void CMMFIlbcEncoderIntfcDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   1.383 +	{
   1.384 +	// not used in this interface
   1.385 +	}
   1.386 +
   1.387 +
   1.388 +// Ilbc encoder intfc custom interface implementation
   1.389 +TInt CMMFIlbcEncoderIntfcDeMux::DoSetEncoderModeL(MIlbcEncoderIntfc::TEncodeMode aEncodeMode)
   1.390 +	{
   1.391 +	TInt result = KErrNotFound;
   1.392 +
   1.393 +	if (iInterfaceIlbcEncoderIntfc)
   1.394 +		{
   1.395 +		result = iInterfaceIlbcEncoderIntfc->SetEncoderMode(aEncodeMode);
   1.396 +		}
   1.397 +
   1.398 +	return result;
   1.399 +	}
   1.400 +
   1.401 +
   1.402 +// Ilbc encoder intfc custom interface implementation
   1.403 +TInt CMMFIlbcEncoderIntfcDeMux::DoGetEncoderModeL(MIlbcEncoderIntfc::TEncodeMode& aEncodeMode)
   1.404 +	{
   1.405 +	TInt result = KErrNotFound;
   1.406 +
   1.407 +	if (iInterfaceIlbcEncoderIntfc)
   1.408 +		{
   1.409 +		result = iInterfaceIlbcEncoderIntfc->GetEncoderMode(aEncodeMode);
   1.410 +		}
   1.411 +
   1.412 +	return result;
   1.413 +	}
   1.414 +
   1.415 +
   1.416 +// Ilbc encoder intfc custom interface implementation
   1.417 +TInt CMMFIlbcEncoderIntfcDeMux::DoSetVadModeL(TBool aVadModeOn)
   1.418 +	{
   1.419 +	TInt result = KErrNotFound;
   1.420 +
   1.421 +	if (iInterfaceIlbcEncoderIntfc)
   1.422 +		{
   1.423 +		result = iInterfaceIlbcEncoderIntfc->SetVadMode(aVadModeOn);
   1.424 +		}
   1.425 +
   1.426 +	return result;
   1.427 +	}
   1.428 +
   1.429 +
   1.430 +// Ilbc encoder intfc custom interface implementation
   1.431 +TInt CMMFIlbcEncoderIntfcDeMux::DoGetVadModeL(TBool& aVadModeOn)
   1.432 +	{
   1.433 +	TInt result = KErrNotFound;
   1.434 +
   1.435 +	if (iInterfaceIlbcEncoderIntfc)
   1.436 +		{
   1.437 +		result = iInterfaceIlbcEncoderIntfc->GetVadMode(aVadModeOn);
   1.438 +		}
   1.439 +
   1.440 +	return result;
   1.441 +	}
   1.442 +
   1.443 +
   1.444 +//
   1.445 +// ImplementationTable
   1.446 +//
   1.447 +const TImplementationProxy ImplementationTable[] = 
   1.448 +	{
   1.449 +	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceIlbcEncoderIntfcMux,	CMMFIlbcEncoderIntfcMux::NewL),
   1.450 +	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceIlbcEncoderIntfcDeMux,	CMMFIlbcEncoderIntfcDeMux::NewL),
   1.451 +	};
   1.452 +
   1.453 +//
   1.454 +// ImplementationGroupProxy
   1.455 +//
   1.456 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   1.457 +	{
   1.458 +	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   1.459 +
   1.460 +	return ImplementationTable;
   1.461 +	}
   1.462 +
   1.463 +