os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/g711encoderconfigci.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 "g711encoderconfigci.h"
    22 
    23 
    24 // MUX //
    25 
    26 TInt CMMFG711EncoderIntfcMux::OpenInterface(TUid /*aInterfaceId*/)
    27 	{
    28 	// attempt to open the interface link with the
    29 	// remote slave device
    30 	iRemoteHandle = -1;
    31 	TUid slaveId = {KMmfUidCustomInterfaceG711EncoderIntfcDeMux};
    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 CMMFG711EncoderIntfcMux::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 CMMFG711EncoderIntfcMux::PassDestructorKey(TUid aDestructorKey)
    61 	{
    62 	// store the destructor key
    63 	iKey = aDestructorKey;
    64 	}
    65 
    66 
    67 void CMMFG711EncoderIntfcMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
    68 	{
    69 	// store a pointer to the utility
    70 	iUtility = aCustomUtility;
    71 	}
    72 
    73 
    74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFG711EncoderIntfcMux::NewL()
    75 	{
    76 	CMMFG711EncoderIntfcMux* self = new (ELeave) CMMFG711EncoderIntfcMux;
    77 	return self;
    78 	}
    79 
    80 
    81 TAny* CMMFG711EncoderIntfcMux::CustomInterface(TUid /*aInterfaceId*/)
    82 	{
    83 	MG711EncoderIntfc* interface = this;
    84 	return interface;
    85 	}
    86 
    87 
    88 CMMFG711EncoderIntfcMux::CMMFG711EncoderIntfcMux() :
    89 iRemoteHandle(-1)
    90 	{
    91 	}
    92 
    93 
    94 CMMFG711EncoderIntfcMux::~CMMFG711EncoderIntfcMux()
    95 	{
    96 	}
    97 
    98 
    99 // from MG711EncoderIntfc
   100 TInt CMMFG711EncoderIntfcMux::SetEncoderMode(TEncodeMode aEncodeMode)
   101 	{
   102 	TInt result = KErrBadHandle;
   103 
   104 	if (iRemoteHandle > 0)
   105 		{
   106 		// send the 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 												EMMFDevSoundCIG711EncoderIntfcSetEncoderMode,
   112 												encodeMode);
   113 		}
   114 
   115 	return result;
   116 	}
   117 
   118 
   119 // from MG711EncoderIntfc
   120 TInt CMMFG711EncoderIntfcMux::SetVadMode (TBool aVadModeOn)
   121 	{
   122 	TInt result = KErrBadHandle;
   123 
   124 	if (iRemoteHandle > 0)
   125 		{
   126 		// send the vadMondeOn in the sync command
   127 		TPckgBuf<TBool> vadModeOn(aVadModeOn);
   128 
   129 		// any return code other than zero is an error
   130 		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
   131 												EMMFDevSoundCIG711EncoderIntfcSetVadMode,
   132 												vadModeOn);
   133 		}
   134 
   135 	return result;
   136 	}
   137 
   138 
   139 // from MG711EncoderIntfc
   140 TInt CMMFG711EncoderIntfcMux::GetVadMode (TBool& aVadModeOn)
   141 	{
   142 	TInt result = KErrBadHandle;
   143 
   144 	if (iRemoteHandle > 0)
   145 		{
   146 		// holds the returned value.
   147 		TPckgBuf<TBool> retVadModeOn;
   148 
   149 		// any return code other than zero is an error
   150 		result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
   151 													  EMMFDevSoundCIG711EncoderIntfcGetVadMode,
   152 													  KNullDesC8,
   153 													  retVadModeOn);
   154 
   155 		// assign return values to aVadModeOn. Do nothing if there is an error
   156 		if(result == KErrNone)
   157 			{
   158 			aVadModeOn = retVadModeOn();
   159 			}
   160 		}
   161 
   162 	return result;
   163 	}
   164 
   165 
   166 
   167 // DEMUX //	
   168 
   169 TInt CMMFG711EncoderIntfcDeMux::OpenInterface(TUid /*aInterfaceId*/)
   170 	{
   171 	return KErrNone;
   172 	}
   173 
   174 
   175 void CMMFG711EncoderIntfcDeMux::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 CMMFG711EncoderIntfcDeMux::PassDestructorKey(TUid aDestructorKey)
   187 	{
   188 	// store the destructor key
   189 	iKey = aDestructorKey;
   190 	}
   191 
   192 
   193 void CMMFG711EncoderIntfcDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
   194 	{
   195 	iTarget = aTarget;
   196 	}
   197 
   198 
   199 void CMMFG711EncoderIntfcDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
   200 	{
   201 	// store a pointer to the utility
   202 	iUtility = aCustomUtility;
   203 	}
   204 
   205 
   206 void CMMFG711EncoderIntfcDeMux::RefreshL()
   207 	{
   208 	// refetch the G711 encoder intfc custom interface if we already have a target
   209 	if (iTarget)
   210 		{
   211 		iInterfaceG711EncoderIntfc = static_cast <MG711EncoderIntfc*> (iTarget->CustomInterface(KUidG711EncoderIntfc));
   212 
   213 		if (!iInterfaceG711EncoderIntfc)
   214 			{
   215 			iInterfaceG711EncoderIntfc = NULL;
   216 			User::Leave(KErrNotSupported);
   217 			}
   218 		}
   219 	}
   220 
   221 
   222 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFG711EncoderIntfcDeMux::NewL()
   223 	{
   224 	CMMFG711EncoderIntfcDeMux* self = new (ELeave) CMMFG711EncoderIntfcDeMux;
   225 	return self;
   226 	}
   227 
   228 
   229 CMMFG711EncoderIntfcDeMux::CMMFG711EncoderIntfcDeMux()
   230 	{
   231 	}
   232 
   233 
   234 CMMFG711EncoderIntfcDeMux::~CMMFG711EncoderIntfcDeMux()
   235 	{
   236 	}
   237 
   238 
   239 TInt CMMFG711EncoderIntfcDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
   240 	{
   241 	// fetch the G711 encoder intfc Hw Device custom interface
   242 	iInterfaceG711EncoderIntfc = static_cast<MG711EncoderIntfc*> (iTarget->CustomInterface(KUidG711EncoderIntfc)); 
   243 
   244 	if (!iInterfaceG711EncoderIntfc)
   245 		{
   246 		iInterfaceG711EncoderIntfc = NULL;
   247 		User::Leave(KErrNotSupported);
   248 		}
   249 
   250 	return KErrNone;
   251 	}
   252 
   253 
   254 void CMMFG711EncoderIntfcDeMux::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 CMMFG711EncoderIntfcDeMux::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 EMMFDevSoundCIG711EncoderIntfcSetEncoderMode:
   273 			{
   274 			TPckgBuf<MG711EncoderIntfc::TEncodeMode> encodeMode; 
   275 			iUtility->ReadFromInputDesL(aMessage, &encodeMode);
   276 
   277 			result = DoSetEncoderMode(encodeMode());
   278 
   279 			break;
   280 			}
   281 		case EMMFDevSoundCIG711EncoderIntfcSetVadMode:
   282 			{
   283 			TPckgBuf<TBool> vadModeOn; 
   284 			iUtility->ReadFromInputDesL(aMessage, &vadModeOn);
   285 
   286 			result = DoSetVadMode(vadModeOn());
   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 CMMFG711EncoderIntfcDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
   303 	{
   304 	TMMFDevSoundCIMessageData data;
   305 	TInt result = KErrNone;
   306 
   307 	// decode message
   308 	iUtility->GetSyncMessageDataL(aMessage, data);
   309 
   310 	switch (data.iCommand)
   311 		{
   312 		case EMMFDevSoundCIG711EncoderIntfcGetVadMode:
   313 			{
   314 			TPckgBuf<TBool> vadModeOn; 
   315 			iUtility->ReadFromInputDesL(aMessage, &vadModeOn);
   316 
   317 			result = DoGetVadMode(vadModeOn());
   318 
   319 			TPckgBuf<TBool> des(vadModeOn());
   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 CMMFG711EncoderIntfcDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
   335 	{
   336 	// not used in this interface
   337 	}
   338 
   339 
   340 void CMMFG711EncoderIntfcDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   341 	{
   342 	// not used in this interface
   343 	}
   344 
   345 
   346 // G711 encoder intfc custom interface implementation
   347 TInt CMMFG711EncoderIntfcDeMux::DoSetEncoderMode(MG711EncoderIntfc::TEncodeMode aEncodeMode)
   348 	{
   349 	TInt result = KErrNotFound;
   350 
   351 	if (iInterfaceG711EncoderIntfc)
   352 		{
   353 		result = iInterfaceG711EncoderIntfc->SetEncoderMode(aEncodeMode);
   354 		}
   355 
   356 	return result;
   357 	}
   358 
   359 
   360 // G711 encoder intfc custom interface implementation
   361 TInt CMMFG711EncoderIntfcDeMux::DoSetVadMode(TBool aVadModeOn)
   362 	{
   363 	TInt result = KErrNotFound;
   364 
   365 	if (iInterfaceG711EncoderIntfc)
   366 		{
   367 		result = iInterfaceG711EncoderIntfc->SetVadMode(aVadModeOn);
   368 		}
   369 
   370 	return result;
   371 	}
   372 
   373 
   374 // G711 encoder intfc custom interface implementation
   375 TInt CMMFG711EncoderIntfcDeMux::DoGetVadMode(TBool& aVadModeOn)
   376 	{
   377 	TInt result = KErrNotFound;
   378 
   379 	if (iInterfaceG711EncoderIntfc)
   380 		{
   381 		result = iInterfaceG711EncoderIntfc->GetVadMode(aVadModeOn);
   382 		}
   383 
   384 	return result;
   385 	}
   386 
   387 
   388 //
   389 // ImplementationTable
   390 //
   391 const TImplementationProxy ImplementationTable[] = 
   392 	{
   393 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG711EncoderIntfcMux,	CMMFG711EncoderIntfcMux::NewL),
   394 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG711EncoderIntfcDeMux,	CMMFG711EncoderIntfcDeMux::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 	}