os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/ilbcdecoderconfigci.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 "ilbcdecoderconfigci.h"
    22 
    23 
    24 // MUX //
    25 
    26 TInt CMMFIlbcDecoderIntfcMux::OpenInterface(TUid /*aInterfaceId*/)
    27 	{
    28 	// attempt to open the interface link with the
    29 	// remote slave device
    30 	iRemoteHandle = -1;
    31 	TUid slaveId = {KMmfUidCustomInterfaceIlbcDecoderIntfcDeMux};
    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 CMMFIlbcDecoderIntfcMux::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 CMMFIlbcDecoderIntfcMux::PassDestructorKey(TUid aDestructorKey)
    61 	{
    62 	// store the destructor key
    63 	iKey = aDestructorKey;
    64 	}
    65 
    66 
    67 void CMMFIlbcDecoderIntfcMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
    68 	{
    69 	// store a pointer to the utility
    70 	iUtility = aCustomUtility;
    71 	}
    72 
    73 
    74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFIlbcDecoderIntfcMux::NewL()
    75 	{
    76 	CMMFIlbcDecoderIntfcMux* self = new (ELeave) CMMFIlbcDecoderIntfcMux;
    77 	return self;
    78 	}
    79 
    80 
    81 TAny* CMMFIlbcDecoderIntfcMux::CustomInterface(TUid /*aInterfaceId*/)
    82 	{
    83 	MIlbcDecoderIntfc* interface = this;
    84 	return interface;
    85 	}
    86 
    87 
    88 CMMFIlbcDecoderIntfcMux::CMMFIlbcDecoderIntfcMux() :
    89 iRemoteHandle(-1)
    90 	{
    91 	}
    92 
    93 
    94 CMMFIlbcDecoderIntfcMux::~CMMFIlbcDecoderIntfcMux()
    95 	{
    96 	}
    97 
    98 
    99 // from MIlbcDecoderIntfc
   100 TInt CMMFIlbcDecoderIntfcMux::SetDecoderMode(TDecodeMode aDecodeMode)
   101 	{
   102 	TInt result = KErrBadHandle;
   103 
   104 	if (iRemoteHandle > 0)
   105 		{
   106 		// send the decodeMode in the sync command
   107 		TPckgBuf<TDecodeMode> decodeMode(aDecodeMode);
   108 
   109 		// any return code other than zero is an error
   110 		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
   111 												EMMFDevSoundCIIlbcDecoderIntfcSetDecoderMode,
   112 												decodeMode);
   113 		}
   114 
   115 	return result;
   116 	}
   117 
   118 
   119 // from MIlbcDecoderIntfc
   120 TInt CMMFIlbcDecoderIntfcMux::SetComfortNoiseGeneration(TBool aCng)
   121 	{
   122 	TInt result = KErrBadHandle;
   123 
   124 	if (iRemoteHandle > 0)
   125 		{
   126 		// send the cng in the sync command
   127 		TPckgBuf<TBool> cng(aCng);
   128 
   129 		// any return code other than zero is an error
   130 		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
   131 												EMMFDevSoundCIIlbcDecoderIntfcSetComfortNoiseGeneration,
   132 												cng);
   133 		}
   134 
   135 	return result;
   136 	}
   137 
   138 
   139 // from MIlbcDecoderIntfc
   140 TInt CMMFIlbcDecoderIntfcMux::GetComfortNoiseGeneration(TBool& aCng)
   141 	{
   142 	TInt result = KErrBadHandle;
   143 
   144 	if (iRemoteHandle > 0)
   145 		{
   146 		// holds the returned value.
   147 		TPckgBuf<TBool> retCng;
   148 
   149 		// any return code other than zero is an error
   150 		result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
   151 													  EMMFDevSoundCIIlbcDecoderIntfcGetComfortNoiseGeneration,
   152 													  KNullDesC8,
   153 													  retCng);
   154 
   155 		// assign return values to aCng. Do nothing if there is an error
   156 		if(result == KErrNone)
   157 			{
   158 			aCng = retCng();
   159 			}
   160 		}
   161 
   162 	return result;
   163 	}
   164 
   165 
   166 
   167 // DEMUX //	
   168 
   169 TInt CMMFIlbcDecoderIntfcDeMux::OpenInterface(TUid /*aInterfaceId*/)
   170 	{
   171 	return KErrNone;
   172 	}
   173 
   174 
   175 void CMMFIlbcDecoderIntfcDeMux::Release()
   176 	{
   177 	TUid key = iKey;
   178 
   179 	delete this;
   180 
   181 	// tell ECom to destroy us
   182 	REComSession::DestroyedImplementation(key);
   183 	}
   184 
   185 
   186 void CMMFIlbcDecoderIntfcDeMux::PassDestructorKey(TUid aDestructorKey)
   187 	{
   188 	// store the destructor key
   189 	iKey = aDestructorKey;
   190 	}
   191 
   192 
   193 void CMMFIlbcDecoderIntfcDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
   194 	{
   195 	iTarget = aTarget;
   196 	}
   197 
   198 
   199 void CMMFIlbcDecoderIntfcDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
   200 	{
   201 	// store a pointer to the utility
   202 	iUtility = aCustomUtility;
   203 	}
   204 
   205 
   206 void CMMFIlbcDecoderIntfcDeMux::RefreshL()
   207 	{
   208 	// refetch the Ilbc decoder intfc custom interface if we already have a target
   209 	if (iTarget)
   210 		{
   211 		iInterfaceIlbcDecoderIntfc = static_cast <MIlbcDecoderIntfc*> (iTarget->CustomInterface(KUidIlbcDecoderIntfc));
   212 
   213 		if (!iInterfaceIlbcDecoderIntfc)
   214 			{
   215 			iInterfaceIlbcDecoderIntfc = NULL;
   216 			User::Leave(KErrNotSupported);
   217 			}
   218 		}
   219 	}
   220 
   221 
   222 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFIlbcDecoderIntfcDeMux::NewL()
   223 	{
   224 	CMMFIlbcDecoderIntfcDeMux* self = new (ELeave) CMMFIlbcDecoderIntfcDeMux;
   225 	return self;
   226 	}
   227 
   228 
   229 CMMFIlbcDecoderIntfcDeMux::CMMFIlbcDecoderIntfcDeMux()
   230 	{
   231 	}
   232 
   233 
   234 CMMFIlbcDecoderIntfcDeMux::~CMMFIlbcDecoderIntfcDeMux()
   235 	{
   236 	}
   237 
   238 
   239 TInt CMMFIlbcDecoderIntfcDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
   240 	{
   241 	// fetch the Ilbc decoder intfc Hw Device custom interface
   242 	iInterfaceIlbcDecoderIntfc = static_cast<MIlbcDecoderIntfc*> (iTarget->CustomInterface(KUidIlbcDecoderIntfc)); 
   243 
   244 	if (!iInterfaceIlbcDecoderIntfc)
   245 		{
   246 		iInterfaceIlbcDecoderIntfc = NULL;
   247 		User::Leave(KErrNotSupported);
   248 		}
   249 
   250 	return KErrNone;
   251 	}
   252 
   253 
   254 void CMMFIlbcDecoderIntfcDeMux::DoCloseSlaveL(TInt /*aHandle*/)
   255 	{
   256 	// nothing to do
   257 	}
   258 
   259 
   260 // original RMessage is supplied so that remote demux plugin can extract necessary details
   261 // using DeMux utility
   262 TInt CMMFIlbcDecoderIntfcDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
   263 	{
   264 	TMMFDevSoundCIMessageData data;
   265 	TInt result = KErrGeneral;
   266 
   267 	// decode message
   268 	iUtility->GetSyncMessageDataL(aMessage, data);
   269 
   270 	switch (data.iCommand)
   271 		{
   272 		case EMMFDevSoundCIIlbcDecoderIntfcSetDecoderMode:
   273 			{
   274 			TPckgBuf<MIlbcDecoderIntfc::TDecodeMode> decodeMode; 
   275 			iUtility->ReadFromInputDesL(aMessage, &decodeMode);
   276 
   277 			result = DoSetDecoderMode(decodeMode());
   278 
   279 			break;
   280 			}
   281 		case EMMFDevSoundCIIlbcDecoderIntfcSetComfortNoiseGeneration:
   282 			{
   283 			TPckgBuf<TBool> cng; 
   284 			iUtility->ReadFromInputDesL(aMessage, &cng);
   285 
   286 			result = DoSetComfortNoiseGenerationL(cng());
   287 
   288 			break;
   289 			}
   290 		default:
   291 			{
   292 			User::Leave(KErrNotSupported);
   293 			}
   294 		}
   295 
   296 	return result;
   297 	}
   298 
   299 
   300 // original RMessage is supplied so that remote demux plugin can extract necessary details
   301 // using DeMux utility
   302 TInt CMMFIlbcDecoderIntfcDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
   303 	{
   304 	TMMFDevSoundCIMessageData data;
   305 	TInt result = KErrGeneral;
   306 
   307 	// decode message
   308 	iUtility->GetSyncMessageDataL(aMessage, data);
   309 
   310 	switch (data.iCommand)
   311 		{
   312 		case EMMFDevSoundCIIlbcDecoderIntfcGetComfortNoiseGeneration:
   313 			{
   314 			TPckgBuf<TBool> cng; 
   315 			iUtility->ReadFromInputDesL(aMessage, &cng);
   316 
   317 			result = DoGetComfortNoiseGenerationL(cng());
   318 
   319 			TPckgBuf<TBool> des(cng());
   320 			iUtility->WriteToOutputDesL(aMessage, des);
   321 
   322 			break;
   323 			}
   324 		default:
   325 			{
   326 			User::Leave(KErrNotSupported);
   327 			}
   328 		}
   329 
   330 	return result;
   331 	}
   332 
   333 
   334 void CMMFIlbcDecoderIntfcDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
   335 	{
   336 	// not used in this interface
   337 	}
   338 
   339 
   340 void CMMFIlbcDecoderIntfcDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   341 	{
   342 	// not used in this interface
   343 	}
   344 
   345 
   346 // Ilbc decoder intfc custom interface implementation
   347 TInt CMMFIlbcDecoderIntfcDeMux::DoSetDecoderMode(MIlbcDecoderIntfc::TDecodeMode aDecodeMode)
   348 	{
   349 	TInt result = KErrNotFound;
   350 
   351 	if (iInterfaceIlbcDecoderIntfc)
   352 		{
   353 		result = iInterfaceIlbcDecoderIntfc->SetDecoderMode(aDecodeMode);
   354 		}
   355 
   356 	return result;
   357 	}
   358 
   359 
   360 // Ilbc decoder intfc custom interface implementation
   361 TInt CMMFIlbcDecoderIntfcDeMux::DoSetComfortNoiseGenerationL(TBool aCng)
   362 	{
   363 	TInt result = KErrNotFound;
   364 
   365 	if (iInterfaceIlbcDecoderIntfc)
   366 		{
   367 		result = iInterfaceIlbcDecoderIntfc->SetComfortNoiseGeneration(aCng);
   368 		}
   369 
   370 	return result;
   371 	}
   372 
   373 
   374 // Ilbc decoder intfc custom interface implementation
   375 TInt CMMFIlbcDecoderIntfcDeMux::DoGetComfortNoiseGenerationL(TBool& aCng)
   376 	{
   377 	TInt result = KErrNotFound;
   378 
   379 	if (iInterfaceIlbcDecoderIntfc)
   380 		{
   381 		result = iInterfaceIlbcDecoderIntfc->GetComfortNoiseGeneration(aCng);
   382 		}
   383 
   384 	return result;
   385 	}
   386 
   387 
   388 //
   389 // ImplementationTable
   390 //
   391 const TImplementationProxy ImplementationTable[] = 
   392 	{
   393 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceIlbcDecoderIntfcMux,	CMMFIlbcDecoderIntfcMux::NewL),
   394 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceIlbcDecoderIntfcDeMux,	CMMFIlbcDecoderIntfcDeMux::NewL),
   395 	};
   396 
   397 //
   398 // ImplementationGroupProxy
   399 //
   400 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   401 	{
   402 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   403 
   404 	return ImplementationTable;
   405 	}