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