os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/g729decoderconfigci.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 "g729decoderconfigci.h"
    22 
    23 
    24 // MUX //
    25 
    26 TInt CMMFG729DecoderIntfcMux::OpenInterface(TUid /*aInterfaceId*/)
    27 	{
    28 	// attempt to open the interface link with the
    29 	// remote slave device
    30 	iRemoteHandle = -1;
    31 	TUid slaveId = {KMmfUidCustomInterfaceG729DecoderIntfcDeMux};
    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 CMMFG729DecoderIntfcMux::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 CMMFG729DecoderIntfcMux::PassDestructorKey(TUid aDestructorKey)
    61 	{
    62 	// store the destructor key
    63 	iKey = aDestructorKey;
    64 	}
    65 
    66 
    67 void CMMFG729DecoderIntfcMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
    68 	{
    69 	// store a pointer to the utility
    70 	iUtility = aCustomUtility;
    71 	}
    72 
    73 
    74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFG729DecoderIntfcMux::NewL()
    75 	{
    76 	CMMFG729DecoderIntfcMux* self = new (ELeave) CMMFG729DecoderIntfcMux;
    77 	return self;
    78 	}
    79 
    80 
    81 TAny* CMMFG729DecoderIntfcMux::CustomInterface(TUid /*aInterfaceId*/)
    82 	{
    83 	MG729DecoderIntfc* interface = this;
    84 	return interface;
    85 	}
    86 
    87 
    88 CMMFG729DecoderIntfcMux::CMMFG729DecoderIntfcMux() :
    89 	iRemoteHandle(-1)
    90 	{
    91 	}
    92 
    93 
    94 CMMFG729DecoderIntfcMux::~CMMFG729DecoderIntfcMux()
    95 	{
    96 	}
    97 
    98 
    99 // from MG729DecoderIntfc
   100 TInt CMMFG729DecoderIntfcMux::BadLsfNextBuffer()
   101 	{
   102 	TInt result = KErrBadHandle;
   103 
   104 	if (iRemoteHandle > 0)
   105 		{
   106 		// any return code other than zero is an error
   107 		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
   108 												EMMFDevSoundCIG729DecoderIntfcBadLsfNextBuffer,
   109 												KNullDesC8);
   110 		}
   111 
   112 	return result;
   113 	}
   114 
   115 
   116 
   117 // DEMUX //	
   118 
   119 TInt CMMFG729DecoderIntfcDeMux::OpenInterface(TUid /*aInterfaceId*/)
   120 	{
   121 	return KErrNone;
   122 	}
   123 
   124 
   125 void CMMFG729DecoderIntfcDeMux::Release()
   126 	{
   127 	TUid key = iKey;
   128 
   129 	delete this;
   130 
   131 	// tell ECom to destroy us
   132 	REComSession::DestroyedImplementation(key);
   133 	}
   134 
   135 
   136 void CMMFG729DecoderIntfcDeMux::PassDestructorKey(TUid aDestructorKey)
   137 	{
   138 	// store the destructor key
   139 	iKey = aDestructorKey;
   140 	}
   141 
   142 
   143 void CMMFG729DecoderIntfcDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
   144 	{
   145 	iTarget = aTarget;
   146 	}
   147 
   148 
   149 void CMMFG729DecoderIntfcDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
   150 	{
   151 	// store a pointer to the utility
   152 	iUtility = aCustomUtility;
   153 	}
   154 
   155 
   156 void CMMFG729DecoderIntfcDeMux::RefreshL()
   157 	{
   158 	// refetch the G729 decoder intfc custom interface if we already have a target
   159 	if (iTarget)
   160 		{
   161 		iInterfaceG729DecoderIntfc = static_cast <MG729DecoderIntfc*> (iTarget->CustomInterface(KUidG729DecoderIntfc));
   162 
   163 		if (!iInterfaceG729DecoderIntfc)
   164 			{
   165 			iInterfaceG729DecoderIntfc = NULL;
   166 			User::Leave(KErrNotSupported);
   167 			}
   168 		}
   169 	}
   170 
   171 
   172 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFG729DecoderIntfcDeMux::NewL()
   173 	{
   174 	CMMFG729DecoderIntfcDeMux* self = new (ELeave) CMMFG729DecoderIntfcDeMux;
   175 	return self;
   176 	}
   177 
   178 
   179 CMMFG729DecoderIntfcDeMux::CMMFG729DecoderIntfcDeMux()
   180 	{
   181 	}
   182 
   183 
   184 CMMFG729DecoderIntfcDeMux::~CMMFG729DecoderIntfcDeMux()
   185 	{
   186 	}
   187 
   188 
   189 TInt CMMFG729DecoderIntfcDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
   190 	{
   191 	// fetch the G729 decoder intfc Hw Device custom interface
   192 	iInterfaceG729DecoderIntfc = static_cast<MG729DecoderIntfc*> (iTarget->CustomInterface(KUidG729DecoderIntfc));
   193 
   194 	if (!iInterfaceG729DecoderIntfc)
   195 		{
   196 		iInterfaceG729DecoderIntfc = NULL;
   197 		User::Leave(KErrNotSupported);
   198 		}
   199 
   200 	return KErrNone;
   201 	}
   202 
   203 
   204 void CMMFG729DecoderIntfcDeMux::DoCloseSlaveL(TInt /*aHandle*/)
   205 	{
   206 	// nothing to do
   207 	}
   208 
   209 
   210 // original RMessage is supplied so that remote demux plugin can extract necessary details
   211 // using DeMux utility
   212 TInt CMMFG729DecoderIntfcDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
   213 	{
   214 	TMMFDevSoundCIMessageData data;
   215 	TInt result = KErrGeneral;
   216 
   217 	// decode message
   218 	iUtility->GetSyncMessageDataL(aMessage, data);
   219 
   220 	switch (data.iCommand)
   221 		{
   222 		case EMMFDevSoundCIG729DecoderIntfcBadLsfNextBuffer:
   223 			{
   224 			result = DoBadLsfNextBufferL();
   225 			break;
   226 			}
   227 		default:
   228 			{
   229 			User::Leave(KErrNotSupported);
   230 			}
   231 		}
   232 
   233 	return result;
   234 	}
   235 
   236 
   237 TInt CMMFG729DecoderIntfcDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   238 	{
   239 	return KErrNone;
   240 	}
   241 
   242 
   243 void CMMFG729DecoderIntfcDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
   244 	{
   245 	// not used in this interface
   246 	}
   247 
   248 
   249 void CMMFG729DecoderIntfcDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   250 	{
   251 	// not used in this interface
   252 	}
   253 
   254 
   255 TInt CMMFG729DecoderIntfcDeMux::DoBadLsfNextBufferL()
   256 	{
   257 	TInt result = KErrNotFound;
   258 
   259 	if (iInterfaceG729DecoderIntfc)
   260 		{
   261 		result = iInterfaceG729DecoderIntfc->BadLsfNextBuffer();
   262 		}
   263 
   264 	return result;
   265 	}
   266 
   267 
   268 //
   269 // ImplementationTable
   270 //
   271 
   272 const TImplementationProxy ImplementationTable[] = 
   273 	{
   274 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG729DecoderIntfcMux,	CMMFG729DecoderIntfcMux::NewL),
   275 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceG729DecoderIntfcDeMux,	CMMFG729DecoderIntfcDeMux::NewL),
   276 	};
   277 
   278 //
   279 // ImplementationGroupProxy
   280 //
   281 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   282 	{
   283 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   284 
   285 	return ImplementationTable;
   286 	}