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