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