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