os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/cmmfdevsoundcibitrate.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/cmmfdevsoundcibitrate.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,459 @@
1.4 +/*
1.5 +* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#include "cmmfdevsoundcibitrateimplementationuid.hrh"
1.23 +
1.24 +#include <ecom/implementationproxy.h>
1.25 +#include <ecom/ecom.h>
1.26 +#include <s32mem.h>
1.27 +
1.28 +#include "cmmfdevsoundcibitrate.h"
1.29 +
1.30 +// __________________________________________________________________________
1.31 +// Implementation
1.32 +
1.33 +////////////////////////////////////////// MUX /////////////////////
1.34 +
1.35 +TInt CMMFDevSoundCIBitRateMux::OpenInterface(TUid /*aInterfaceId*/)
1.36 + {
1.37 + // attempt to open the interface link with the
1.38 + // remote slave device
1.39 + iRemoteHandle = -1;
1.40 + TUid slaveId = {KMmfUidCustomInterfaceBitRateDeMux};
1.41 +
1.42 + TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
1.43 + if (handle >= 0)
1.44 + {
1.45 + iRemoteHandle = handle;
1.46 + }
1.47 +
1.48 + return iRemoteHandle;
1.49 + }
1.50 +
1.51 +void CMMFDevSoundCIBitRateMux::Release()
1.52 + {
1.53 + // close the slave device if it exists
1.54 + if (iRemoteHandle != -1)
1.55 + {
1.56 + // we assume the slave is closed correctly
1.57 + iUtility->CloseSlave(iRemoteHandle);
1.58 + }
1.59 +
1.60 + TUid key = iKey;
1.61 + delete this;
1.62 +
1.63 + // tell ECom to destroy us
1.64 + REComSession::DestroyedImplementation(key);
1.65 + }
1.66 +
1.67 +void CMMFDevSoundCIBitRateMux::PassDestructorKey(TUid aDestructorKey)
1.68 + {
1.69 + // store the destructor key
1.70 + iKey = aDestructorKey;
1.71 + }
1.72 +
1.73 +void CMMFDevSoundCIBitRateMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
1.74 + {
1.75 + // store a pointer to the utility
1.76 + iUtility = aCustomUtility;
1.77 + }
1.78 +
1.79 +MMMFDevSoundCustomInterfaceMuxPlugin* CMMFDevSoundCIBitRateMux::NewL()
1.80 + {
1.81 + CMMFDevSoundCIBitRateMux* self = new (ELeave) CMMFDevSoundCIBitRateMux;
1.82 + return self;
1.83 + }
1.84 +
1.85 +TAny* CMMFDevSoundCIBitRateMux::CustomInterface(TUid /*aInterfaceId*/)
1.86 + {
1.87 + MMMFDevSoundCustomInterfaceBitRate* interface = this;
1.88 + return interface;
1.89 + }
1.90 +
1.91 +CMMFDevSoundCIBitRateMux::CMMFDevSoundCIBitRateMux() :
1.92 + iRemoteHandle(-1)
1.93 + {
1.94 + }
1.95 +
1.96 +CMMFDevSoundCIBitRateMux::~CMMFDevSoundCIBitRateMux()
1.97 + {
1.98 + }
1.99 +
1.100 +// from MMMFDevSoundCustomInterfaceBitRate
1.101 +void CMMFDevSoundCIBitRateMux::GetSupportedBitRatesL(RArray<TInt>& aSupportedBitRates)
1.102 + {
1.103 + if (iRemoteHandle == -1)
1.104 + {
1.105 + User::Leave(KErrNotReady);
1.106 + }
1.107 +
1.108 + // first clear out the array
1.109 + aSupportedBitRates.Reset();
1.110 +
1.111 + // now fetch the count from the server
1.112 + TInt count = -1;
1.113 + count = iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIBitRateGetSupportedBitRates, KNullDesC8);
1.114 +
1.115 + // if count is negative then the server side left with an error
1.116 + if (count < 0)
1.117 + {
1.118 + User::Leave(count);
1.119 + }
1.120 +
1.121 + // no point getting the data if the count is zero
1.122 + if (count != 0)
1.123 + {
1.124 + // allocate a temporary buffer to hold the bitrates
1.125 + HBufC8* buf = HBufC8::NewLC(count * sizeof(TInt32));
1.126 + TPtr8 ptr = buf->Des();
1.127 +
1.128 + // fetch the bitrates - but send over the received count to be sure
1.129 + TPckgBuf<TInt> countBuf(count);
1.130 + User::LeaveIfError(iUtility->SendSlaveSyncCommandResult(
1.131 + iRemoteHandle,
1.132 + EMMFDevSoundCIBitRateGetSupportedBitRatesArray,
1.133 + countBuf, ptr));
1.134 +
1.135 + // stream data into the pointer
1.136 + RDesReadStream stream(ptr);
1.137 + CleanupClosePushL(stream);
1.138 +
1.139 + TInt err = KErrNone;
1.140 + for (TInt i = 0; i < count; i++)
1.141 + {
1.142 + // note we don't destroy array because we don't own it
1.143 + // but we do reset it as it is incomplete
1.144 + err = aSupportedBitRates.Append(stream.ReadInt32L());
1.145 + if (err != KErrNone)
1.146 + {
1.147 + aSupportedBitRates.Reset();
1.148 + User::Leave(KErrCorrupt);
1.149 + }
1.150 + }
1.151 +
1.152 + CleanupStack::PopAndDestroy(2, buf);// stream, buf
1.153 + }
1.154 + }
1.155 +
1.156 +TInt CMMFDevSoundCIBitRateMux::BitRateL()
1.157 + {
1.158 + if (iRemoteHandle == -1)
1.159 + {
1.160 + User::Leave(KErrNotReady);
1.161 + }
1.162 +
1.163 + // send EMMFDevSoundCIBitRateBitRate command to slave
1.164 + TInt bitrate = 0;
1.165 + bitrate = iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIBitRateBitRate, KNullDesC8);
1.166 +
1.167 + // if bitrate is negative then remote side left with an error
1.168 + if (bitrate < 0)
1.169 + {
1.170 + User::Leave(bitrate);
1.171 + }
1.172 +
1.173 + return bitrate;
1.174 + }
1.175 +
1.176 +void CMMFDevSoundCIBitRateMux::SetBitRateL(TInt aBitRate)
1.177 + {
1.178 + if (iRemoteHandle == -1)
1.179 + {
1.180 + User::Leave(KErrNotReady);
1.181 + }
1.182 +
1.183 + // send the bitrate in the sync command
1.184 + TPckgBuf<TInt> bitBuffer(aBitRate);
1.185 +
1.186 + // any return code other than zero is an error
1.187 + User::LeaveIfError(iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIBitRateSetBitRate, bitBuffer));
1.188 + }
1.189 +
1.190 +/////////////////////////////////////// DEMUX //////////////////////
1.191 +
1.192 +
1.193 +TInt CMMFDevSoundCIBitRateDeMux::OpenInterface(TUid /*aInterfaceId*/)
1.194 + {
1.195 + return KErrNone;
1.196 + }
1.197 +
1.198 +void CMMFDevSoundCIBitRateDeMux::Release()
1.199 + {
1.200 + TUid key = iKey;
1.201 +
1.202 + delete this;
1.203 +
1.204 + // tell ECom to destroy us
1.205 + REComSession::DestroyedImplementation(key);
1.206 + }
1.207 +
1.208 +void CMMFDevSoundCIBitRateDeMux::PassDestructorKey(TUid aDestructorKey)
1.209 + {
1.210 + // store the destructor key
1.211 + iKey = aDestructorKey;
1.212 + }
1.213 +
1.214 +void CMMFDevSoundCIBitRateDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
1.215 + {
1.216 + iTarget = aTarget;
1.217 + }
1.218 +
1.219 +void CMMFDevSoundCIBitRateDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
1.220 + {
1.221 + // store a pointer to the utility
1.222 + iUtility = aCustomUtility;
1.223 + }
1.224 +
1.225 +void CMMFDevSoundCIBitRateDeMux::RefreshL()
1.226 + {
1.227 + // refetch the bitrate custom interface if we already have a target
1.228 + if (iTarget)
1.229 + {
1.230 + MMMFDevSoundCustomInterfaceBitRate* ptr = NULL;
1.231 + ptr = static_cast <MMMFDevSoundCustomInterfaceBitRate*> (iTarget->CustomInterface(KUidCustomInterfaceDevSoundBitRate));
1.232 +
1.233 + if (!ptr)
1.234 + {
1.235 + iBitRateInterface = NULL;
1.236 + User::Leave(KErrNotSupported);
1.237 + }
1.238 + else
1.239 + {
1.240 + iBitRateInterface = ptr;
1.241 + }
1.242 + }
1.243 + }
1.244 +
1.245 +
1.246 +MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFDevSoundCIBitRateDeMux::NewL()
1.247 + {
1.248 + CMMFDevSoundCIBitRateDeMux* self = new (ELeave) CMMFDevSoundCIBitRateDeMux;
1.249 + return self;
1.250 + }
1.251 +
1.252 +CMMFDevSoundCIBitRateDeMux::CMMFDevSoundCIBitRateDeMux()
1.253 + {
1.254 +
1.255 + }
1.256 +
1.257 +CMMFDevSoundCIBitRateDeMux::~CMMFDevSoundCIBitRateDeMux()
1.258 + {
1.259 + iBitRateArray.Reset();
1.260 + iBitRateArray.Close();
1.261 + }
1.262 +
1.263 +
1.264 +TInt CMMFDevSoundCIBitRateDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
1.265 + {
1.266 + // fetch the bitrate custom interface
1.267 + MMMFDevSoundCustomInterfaceBitRate* ptr = NULL;
1.268 + ptr = static_cast <MMMFDevSoundCustomInterfaceBitRate*> (iTarget->CustomInterface(KUidCustomInterfaceDevSoundBitRate));
1.269 +
1.270 + if (!ptr)
1.271 + {
1.272 + iBitRateInterface = NULL;
1.273 + User::Leave(KErrNotSupported);
1.274 + }
1.275 + else
1.276 + {
1.277 + iBitRateInterface = ptr;
1.278 + }
1.279 + return KErrNone;
1.280 + }
1.281 +
1.282 +void CMMFDevSoundCIBitRateDeMux::DoCloseSlaveL(TInt /*aHandle*/)
1.283 + {
1.284 + // nothing to do
1.285 + }
1.286 +
1.287 +// original RMessage is supplied so that remote demux plugin can extract necessary details
1.288 +// using DeMux utility
1.289 +TInt CMMFDevSoundCIBitRateDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
1.290 + {
1.291 + TMMFDevSoundCIMessageData data;
1.292 +
1.293 + // decode message
1.294 + iUtility->GetSyncMessageDataL(aMessage, data);
1.295 + TInt retVal = -1;
1.296 +
1.297 + switch (data.iCommand)
1.298 + {
1.299 + case EMMFDevSoundCIBitRateBitRate:
1.300 + {
1.301 + retVal = DoBitRateL();
1.302 + break;
1.303 + }
1.304 + case EMMFDevSoundCIBitRateSetBitRate:
1.305 + {
1.306 + // we know that offset 2 contains a TInt
1.307 + TPckgBuf<TInt> bitBuffer;
1.308 + iUtility->ReadFromInputDesL(aMessage, &bitBuffer);
1.309 +
1.310 + DoSetBitRateL(bitBuffer());
1.311 + retVal = KErrNone;
1.312 + break;
1.313 + }
1.314 + case EMMFDevSoundCIBitRateGetSupportedBitRates:
1.315 + {
1.316 + // reset the current bitrate array
1.317 + iBitRateArray.Reset();
1.318 + DoGetSupportedBitRatesL(iBitRateArray);
1.319 +
1.320 + // send back the array count
1.321 + TInt count = iBitRateArray.Count();
1.322 + retVal = count;
1.323 + break;
1.324 + }
1.325 + default:
1.326 + {
1.327 + User::Leave(KErrNotSupported);
1.328 + }
1.329 + }
1.330 +
1.331 + return retVal;
1.332 + }
1.333 +
1.334 +TInt CMMFDevSoundCIBitRateDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
1.335 + {
1.336 + TMMFDevSoundCIMessageData data;
1.337 +
1.338 + // decode message
1.339 + iUtility->GetSyncMessageDataL(aMessage, data);
1.340 +
1.341 + switch (data.iCommand)
1.342 + {
1.343 + case EMMFDevSoundCIBitRateGetSupportedBitRatesArray:
1.344 + {
1.345 + DoCopyBitRateBufferToClientL(aMessage);
1.346 + break;
1.347 + }
1.348 + default:
1.349 + {
1.350 + User::Leave(KErrNotSupported);
1.351 + }
1.352 + }
1.353 + return KErrNone;
1.354 + }
1.355 +
1.356 +void CMMFDevSoundCIBitRateDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
1.357 + {
1.358 + // not used in this interface
1.359 + }
1.360 +
1.361 +void CMMFDevSoundCIBitRateDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
1.362 + {
1.363 + // not used in this interface
1.364 + }
1.365 +
1.366 +// bitrate custom interface implementation
1.367 +void CMMFDevSoundCIBitRateDeMux::DoGetSupportedBitRatesL(RArray<TInt>& aSupportedBitRates)
1.368 + {
1.369 + if (!iBitRateInterface)
1.370 + {
1.371 + User::Leave(KErrNotReady);
1.372 + }
1.373 +
1.374 + iBitRateInterface->GetSupportedBitRatesL(aSupportedBitRates);
1.375 + }
1.376 +
1.377 +
1.378 +void CMMFDevSoundCIBitRateDeMux::DoCopyBitRateBufferToClientL(const RMmfIpcMessage& aMessage)
1.379 + {
1.380 + if (!iBitRateInterface)
1.381 + {
1.382 + User::Leave(KErrNotReady);
1.383 + }
1.384 +
1.385 + // check our count is the same as the client's
1.386 + TPckgBuf<TInt> countBuffer;
1.387 + iUtility->ReadFromInputDesL(aMessage, &countBuffer);
1.388 +
1.389 + TInt count = countBuffer();
1.390 + if (count != iBitRateArray.Count())
1.391 + {
1.392 + User::Leave(KErrCorrupt);
1.393 + }
1.394 +
1.395 + // send back the array - the client has the count already
1.396 + const TInt KBufExpandSize8 = 8; //two TInt's
1.397 + CBufFlat* dataCopyBuffer = CBufFlat::NewL(KBufExpandSize8);
1.398 + CleanupStack::PushL(dataCopyBuffer);
1.399 + RBufWriteStream stream;
1.400 + stream.Open(*dataCopyBuffer);
1.401 + CleanupClosePushL(stream);
1.402 +
1.403 + for (TInt i = 0; i < count; i++)
1.404 + {
1.405 + stream.WriteInt32L(iBitRateArray[i]);
1.406 + }
1.407 +
1.408 + // write the data to the supplied descriptor buffer
1.409 + TPtr8 ptrBuf = dataCopyBuffer->Ptr(0);
1.410 + iUtility->WriteToOutputDesL(aMessage, ptrBuf);
1.411 + stream.Close();
1.412 +
1.413 + CleanupStack::PopAndDestroy(2); // iDataCopyBuffer, stream
1.414 + }
1.415 +
1.416 +
1.417 +TInt CMMFDevSoundCIBitRateDeMux::DoBitRateL()
1.418 + {
1.419 + if (!iBitRateInterface)
1.420 + {
1.421 + User::Leave(KErrNotReady);
1.422 + }
1.423 + return iBitRateInterface->BitRateL();
1.424 + }
1.425 +
1.426 +void CMMFDevSoundCIBitRateDeMux::DoSetBitRateL(TInt aBitRate)
1.427 + {
1.428 + if (!iBitRateInterface)
1.429 + {
1.430 + User::Leave(KErrNotReady);
1.431 + }
1.432 +
1.433 + // set the bitrate
1.434 + iBitRateInterface->SetBitRateL(aBitRate);
1.435 + }
1.436 +
1.437 +
1.438 +
1.439 +//
1.440 +// ImplementationTable
1.441 +//
1.442 +
1.443 +const TImplementationProxy ImplementationTable[] =
1.444 + {
1.445 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceBitRateMux, CMMFDevSoundCIBitRateMux::NewL),
1.446 + IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceBitRateDeMux, CMMFDevSoundCIBitRateDeMux::NewL),
1.447 + };
1.448 +
1.449 +
1.450 +//
1.451 +// ImplementationGroupProxy
1.452 +//
1.453 +////////////////////////////////////////////////////////////////////////////////
1.454 +
1.455 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
1.456 + {
1.457 + aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
1.458 +
1.459 + return ImplementationTable;
1.460 + }
1.461 +
1.462 +