os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/cmmfdevsoundcibitrate.cpp
Update contrib.
2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #include "cmmfdevsoundcibitrateimplementationuid.hrh"
21 #include <ecom/implementationproxy.h>
22 #include <ecom/ecom.h>
25 #include "cmmfdevsoundcibitrate.h"
27 // __________________________________________________________________________
30 ////////////////////////////////////////// MUX /////////////////////
32 TInt CMMFDevSoundCIBitRateMux::OpenInterface(TUid /*aInterfaceId*/)
34 // attempt to open the interface link with the
35 // remote slave device
37 TUid slaveId = {KMmfUidCustomInterfaceBitRateDeMux};
39 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
42 iRemoteHandle = handle;
48 void CMMFDevSoundCIBitRateMux::Release()
50 // close the slave device if it exists
51 if (iRemoteHandle != -1)
53 // we assume the slave is closed correctly
54 iUtility->CloseSlave(iRemoteHandle);
60 // tell ECom to destroy us
61 REComSession::DestroyedImplementation(key);
64 void CMMFDevSoundCIBitRateMux::PassDestructorKey(TUid aDestructorKey)
66 // store the destructor key
67 iKey = aDestructorKey;
70 void CMMFDevSoundCIBitRateMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
72 // store a pointer to the utility
73 iUtility = aCustomUtility;
76 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFDevSoundCIBitRateMux::NewL()
78 CMMFDevSoundCIBitRateMux* self = new (ELeave) CMMFDevSoundCIBitRateMux;
82 TAny* CMMFDevSoundCIBitRateMux::CustomInterface(TUid /*aInterfaceId*/)
84 MMMFDevSoundCustomInterfaceBitRate* interface = this;
88 CMMFDevSoundCIBitRateMux::CMMFDevSoundCIBitRateMux() :
93 CMMFDevSoundCIBitRateMux::~CMMFDevSoundCIBitRateMux()
97 // from MMMFDevSoundCustomInterfaceBitRate
98 void CMMFDevSoundCIBitRateMux::GetSupportedBitRatesL(RArray<TInt>& aSupportedBitRates)
100 if (iRemoteHandle == -1)
102 User::Leave(KErrNotReady);
105 // first clear out the array
106 aSupportedBitRates.Reset();
108 // now fetch the count from the server
110 count = iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIBitRateGetSupportedBitRates, KNullDesC8);
112 // if count is negative then the server side left with an error
118 // no point getting the data if the count is zero
121 // allocate a temporary buffer to hold the bitrates
122 HBufC8* buf = HBufC8::NewLC(count * sizeof(TInt32));
123 TPtr8 ptr = buf->Des();
125 // fetch the bitrates - but send over the received count to be sure
126 TPckgBuf<TInt> countBuf(count);
127 User::LeaveIfError(iUtility->SendSlaveSyncCommandResult(
129 EMMFDevSoundCIBitRateGetSupportedBitRatesArray,
132 // stream data into the pointer
133 RDesReadStream stream(ptr);
134 CleanupClosePushL(stream);
137 for (TInt i = 0; i < count; i++)
139 // note we don't destroy array because we don't own it
140 // but we do reset it as it is incomplete
141 err = aSupportedBitRates.Append(stream.ReadInt32L());
144 aSupportedBitRates.Reset();
145 User::Leave(KErrCorrupt);
149 CleanupStack::PopAndDestroy(2, buf);// stream, buf
153 TInt CMMFDevSoundCIBitRateMux::BitRateL()
155 if (iRemoteHandle == -1)
157 User::Leave(KErrNotReady);
160 // send EMMFDevSoundCIBitRateBitRate command to slave
162 bitrate = iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIBitRateBitRate, KNullDesC8);
164 // if bitrate is negative then remote side left with an error
167 User::Leave(bitrate);
173 void CMMFDevSoundCIBitRateMux::SetBitRateL(TInt aBitRate)
175 if (iRemoteHandle == -1)
177 User::Leave(KErrNotReady);
180 // send the bitrate in the sync command
181 TPckgBuf<TInt> bitBuffer(aBitRate);
183 // any return code other than zero is an error
184 User::LeaveIfError(iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIBitRateSetBitRate, bitBuffer));
187 /////////////////////////////////////// DEMUX //////////////////////
190 TInt CMMFDevSoundCIBitRateDeMux::OpenInterface(TUid /*aInterfaceId*/)
195 void CMMFDevSoundCIBitRateDeMux::Release()
201 // tell ECom to destroy us
202 REComSession::DestroyedImplementation(key);
205 void CMMFDevSoundCIBitRateDeMux::PassDestructorKey(TUid aDestructorKey)
207 // store the destructor key
208 iKey = aDestructorKey;
211 void CMMFDevSoundCIBitRateDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
216 void CMMFDevSoundCIBitRateDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
218 // store a pointer to the utility
219 iUtility = aCustomUtility;
222 void CMMFDevSoundCIBitRateDeMux::RefreshL()
224 // refetch the bitrate custom interface if we already have a target
227 MMMFDevSoundCustomInterfaceBitRate* ptr = NULL;
228 ptr = static_cast <MMMFDevSoundCustomInterfaceBitRate*> (iTarget->CustomInterface(KUidCustomInterfaceDevSoundBitRate));
232 iBitRateInterface = NULL;
233 User::Leave(KErrNotSupported);
237 iBitRateInterface = ptr;
243 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFDevSoundCIBitRateDeMux::NewL()
245 CMMFDevSoundCIBitRateDeMux* self = new (ELeave) CMMFDevSoundCIBitRateDeMux;
249 CMMFDevSoundCIBitRateDeMux::CMMFDevSoundCIBitRateDeMux()
254 CMMFDevSoundCIBitRateDeMux::~CMMFDevSoundCIBitRateDeMux()
256 iBitRateArray.Reset();
257 iBitRateArray.Close();
261 TInt CMMFDevSoundCIBitRateDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
263 // fetch the bitrate custom interface
264 MMMFDevSoundCustomInterfaceBitRate* ptr = NULL;
265 ptr = static_cast <MMMFDevSoundCustomInterfaceBitRate*> (iTarget->CustomInterface(KUidCustomInterfaceDevSoundBitRate));
269 iBitRateInterface = NULL;
270 User::Leave(KErrNotSupported);
274 iBitRateInterface = ptr;
279 void CMMFDevSoundCIBitRateDeMux::DoCloseSlaveL(TInt /*aHandle*/)
284 // original RMessage is supplied so that remote demux plugin can extract necessary details
285 // using DeMux utility
286 TInt CMMFDevSoundCIBitRateDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
288 TMMFDevSoundCIMessageData data;
291 iUtility->GetSyncMessageDataL(aMessage, data);
294 switch (data.iCommand)
296 case EMMFDevSoundCIBitRateBitRate:
298 retVal = DoBitRateL();
301 case EMMFDevSoundCIBitRateSetBitRate:
303 // we know that offset 2 contains a TInt
304 TPckgBuf<TInt> bitBuffer;
305 iUtility->ReadFromInputDesL(aMessage, &bitBuffer);
307 DoSetBitRateL(bitBuffer());
311 case EMMFDevSoundCIBitRateGetSupportedBitRates:
313 // reset the current bitrate array
314 iBitRateArray.Reset();
315 DoGetSupportedBitRatesL(iBitRateArray);
317 // send back the array count
318 TInt count = iBitRateArray.Count();
324 User::Leave(KErrNotSupported);
331 TInt CMMFDevSoundCIBitRateDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
333 TMMFDevSoundCIMessageData data;
336 iUtility->GetSyncMessageDataL(aMessage, data);
338 switch (data.iCommand)
340 case EMMFDevSoundCIBitRateGetSupportedBitRatesArray:
342 DoCopyBitRateBufferToClientL(aMessage);
347 User::Leave(KErrNotSupported);
353 void CMMFDevSoundCIBitRateDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
355 // not used in this interface
358 void CMMFDevSoundCIBitRateDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
360 // not used in this interface
363 // bitrate custom interface implementation
364 void CMMFDevSoundCIBitRateDeMux::DoGetSupportedBitRatesL(RArray<TInt>& aSupportedBitRates)
366 if (!iBitRateInterface)
368 User::Leave(KErrNotReady);
371 iBitRateInterface->GetSupportedBitRatesL(aSupportedBitRates);
375 void CMMFDevSoundCIBitRateDeMux::DoCopyBitRateBufferToClientL(const RMmfIpcMessage& aMessage)
377 if (!iBitRateInterface)
379 User::Leave(KErrNotReady);
382 // check our count is the same as the client's
383 TPckgBuf<TInt> countBuffer;
384 iUtility->ReadFromInputDesL(aMessage, &countBuffer);
386 TInt count = countBuffer();
387 if (count != iBitRateArray.Count())
389 User::Leave(KErrCorrupt);
392 // send back the array - the client has the count already
393 const TInt KBufExpandSize8 = 8; //two TInt's
394 CBufFlat* dataCopyBuffer = CBufFlat::NewL(KBufExpandSize8);
395 CleanupStack::PushL(dataCopyBuffer);
396 RBufWriteStream stream;
397 stream.Open(*dataCopyBuffer);
398 CleanupClosePushL(stream);
400 for (TInt i = 0; i < count; i++)
402 stream.WriteInt32L(iBitRateArray[i]);
405 // write the data to the supplied descriptor buffer
406 TPtr8 ptrBuf = dataCopyBuffer->Ptr(0);
407 iUtility->WriteToOutputDesL(aMessage, ptrBuf);
410 CleanupStack::PopAndDestroy(2); // iDataCopyBuffer, stream
414 TInt CMMFDevSoundCIBitRateDeMux::DoBitRateL()
416 if (!iBitRateInterface)
418 User::Leave(KErrNotReady);
420 return iBitRateInterface->BitRateL();
423 void CMMFDevSoundCIBitRateDeMux::DoSetBitRateL(TInt aBitRate)
425 if (!iBitRateInterface)
427 User::Leave(KErrNotReady);
431 iBitRateInterface->SetBitRateL(aBitRate);
437 // ImplementationTable
440 const TImplementationProxy ImplementationTable[] =
442 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceBitRateMux, CMMFDevSoundCIBitRateMux::NewL),
443 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceBitRateDeMux, CMMFDevSoundCIBitRateDeMux::NewL),
448 // ImplementationGroupProxy
450 ////////////////////////////////////////////////////////////////////////////////
452 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
454 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
456 return ImplementationTable;