Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #include <ecom/implementationproxy.h>
17 #include <ecom/implementationproxy.h>
18 #include <ecom/ecom.h>
21 #include "aacdecoderconfigci.h"
26 TInt CMMFAacDecoderConfigMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceAacDecoderConfigDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
43 void CMMFAacDecoderConfigMux::Release()
45 // close the slave device if it exists
46 if (iRemoteHandle > 0)
48 // we assume the slave is closed correctly
49 iUtility->CloseSlave(iRemoteHandle);
55 // tell ECom to destroy us
56 REComSession::DestroyedImplementation(key);
60 void CMMFAacDecoderConfigMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iKey = aDestructorKey;
67 void CMMFAacDecoderConfigMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFAacDecoderConfigMux::NewL()
76 CMMFAacDecoderConfigMux* self = new (ELeave) CMMFAacDecoderConfigMux;
81 TAny* CMMFAacDecoderConfigMux::CustomInterface(TUid /*aInterfaceId*/)
83 MAacDecoderConfig* interface = this;
88 CMMFAacDecoderConfigMux::CMMFAacDecoderConfigMux() :
94 CMMFAacDecoderConfigMux::~CMMFAacDecoderConfigMux()
99 // from MAacDecoderConfig
100 TInt CMMFAacDecoderConfigMux::SetAudioConfig(TAudioConfig& aAudioConfig)
104 if (iRemoteHandle > 0)
106 // send the status in the sync command
107 TPckgBuf<TAudioConfig> audioConfig(aAudioConfig);
109 // any return code other than zero is an error
110 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
111 EMMFDevSoundCIAacDecoderConfigSetAudioConfig,
119 // from MAacDecoderConfig
120 TInt CMMFAacDecoderConfigMux::GetSupportedAudioConfigs(RArray<TAudioConfig>& aSupportedAudioConfigs)
122 TInt result = KErrNone;
124 if (iRemoteHandle == -1)
126 return KErrBadHandle;
129 // first clear out the array
130 aSupportedAudioConfigs.Reset();
132 // now fetch the count from the server
134 count = iUtility->SendSlaveSyncCommand(iRemoteHandle,
135 EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfig,
138 // if count is negative then the server side left with an error
141 result = KErrNotReady;
144 // no point getting the data if the count is zero
145 if ( (count != 0) && (result == KErrNone) )
147 // allocate a temporary buffer to hold the audio configuration
149 TRAP(result, buf = HBufC8::NewL(count * sizeof(TAudioConfig)));
151 if (result != KErrNone)
156 TPtr8 ptr = buf->Des();
158 // fetch the audio configurations - but send over the received count to be sure
159 TPckgBuf<TInt> countBuf(count);
160 iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
161 EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfigArray,
165 if (result != KErrNone)
170 // stream data into the pointer
171 RDesReadStream stream(ptr);
174 for (TInt i = 0; i < count; i++)
176 TAudioConfig audioConfig;
178 TRAP(result, audioConfig.iAudioObjectType = static_cast<TAudioConfig::TAudioObjectType>(stream.ReadInt32L());
180 err = aSupportedAudioConfigs.Append(audioConfig));
182 if ( (err != KErrNone) || (result != KErrNone) )
184 // note we don't destroy array because we don't own it
185 // but we do reset it if it is incomplete
186 aSupportedAudioConfigs.Reset();
187 result = KErrCorrupt;
203 TInt CMMFAacDecoderConfigDeMux::OpenInterface(TUid /*aInterfaceId*/)
209 void CMMFAacDecoderConfigDeMux::Release()
215 // tell ECom to destroy us
216 REComSession::DestroyedImplementation(key);
220 void CMMFAacDecoderConfigDeMux::PassDestructorKey(TUid aDestructorKey)
222 // store the destructor key
223 iKey = aDestructorKey;
227 void CMMFAacDecoderConfigDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
233 void CMMFAacDecoderConfigDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
235 // store a pointer to the utility
236 iUtility = aCustomUtility;
240 void CMMFAacDecoderConfigDeMux::RefreshL()
242 // refetch the aac decoder config custom interface if we already have a target
245 iInterfaceAacDecoderConfig = static_cast <MAacDecoderConfig*> (iTarget->CustomInterface(KUidAacDecoderConfig));
247 if (!iInterfaceAacDecoderConfig)
249 iInterfaceAacDecoderConfig = NULL;
250 User::Leave(KErrNotSupported);
256 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFAacDecoderConfigDeMux::NewL()
258 CMMFAacDecoderConfigDeMux* self = new (ELeave) CMMFAacDecoderConfigDeMux;
263 CMMFAacDecoderConfigDeMux::CMMFAacDecoderConfigDeMux()
268 CMMFAacDecoderConfigDeMux::~CMMFAacDecoderConfigDeMux()
270 iSupportedAudioConfigs.Reset();
271 iSupportedAudioConfigs.Close();
275 TInt CMMFAacDecoderConfigDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
277 // fetch the Aac Decoder Config Hw Device custom interface
278 iInterfaceAacDecoderConfig = static_cast<MAacDecoderConfig*> (iTarget->CustomInterface(KUidAacDecoderConfig));
280 if (!iInterfaceAacDecoderConfig)
282 iInterfaceAacDecoderConfig = NULL;
283 User::Leave(KErrNotSupported);
290 void CMMFAacDecoderConfigDeMux::DoCloseSlaveL(TInt /*aHandle*/)
296 // original RMessage is supplied so that remote demux plugin can extract necessary details
297 // using DeMux utility
298 TInt CMMFAacDecoderConfigDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
300 TMMFDevSoundCIMessageData data;
301 TInt result = KErrNotSupported;
304 iUtility->GetSyncMessageDataL(aMessage, data);
306 switch (data.iCommand)
308 case EMMFDevSoundCIAacDecoderConfigSetAudioConfig:
310 TPckgBuf<MAacDecoderConfig::TAudioConfig> audioConfig;
311 iUtility->ReadFromInputDesL(aMessage, &audioConfig);
313 result = DoSetAudioConfigL(audioConfig());
317 case EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfig:
319 // reset the current AudioConfig array
320 iSupportedAudioConfigs.Reset();
321 result = DoGetSupportedAudioConfigsL(iSupportedAudioConfigs);
323 // send back the array count
324 TInt count = iSupportedAudioConfigs.Count();
331 User::Leave(KErrNotSupported);
339 TInt CMMFAacDecoderConfigDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
341 TMMFDevSoundCIMessageData data;
342 TInt result = KErrNotSupported;
345 iUtility->GetSyncMessageDataL(aMessage, data);
347 switch (data.iCommand)
349 case EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfigArray:
352 DoCopyAudioConfigsBufferToClientL(aMessage);
358 User::Leave(KErrNotSupported);
366 void CMMFAacDecoderConfigDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
368 // not used in this interface
372 void CMMFAacDecoderConfigDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
374 // not used in this interface
378 // Aac Decoder Config custom interface implementation
379 TInt CMMFAacDecoderConfigDeMux::DoSetAudioConfigL(MAacDecoderConfig::TAudioConfig& aAudioConfig)
381 TInt result = KErrNotFound;
383 if (iInterfaceAacDecoderConfig)
385 result = iInterfaceAacDecoderConfig->SetAudioConfig(aAudioConfig);
392 // Aac Decoder Config custom interface implementation
393 TInt CMMFAacDecoderConfigDeMux::DoGetSupportedAudioConfigsL(RArray<MAacDecoderConfig::TAudioConfig>& aSupportedAudioConfigs)
395 TInt result = KErrNotFound;
397 if (iInterfaceAacDecoderConfig)
399 result = iInterfaceAacDecoderConfig->GetSupportedAudioConfigs(aSupportedAudioConfigs);
406 // Aac Decoder Config custom interface implementation
407 void CMMFAacDecoderConfigDeMux::DoCopyAudioConfigsBufferToClientL(const RMmfIpcMessage& aMessage)
409 if (!iInterfaceAacDecoderConfig)
411 User::Leave(KErrNotReady);
414 // check our count is the same as the client's
415 TPckgBuf<TInt> countBuffer;
416 iUtility->ReadFromInputDesL(aMessage, &countBuffer);
418 TInt count = countBuffer();
419 if (count != iSupportedAudioConfigs.Count())
421 User::Leave(KErrCorrupt);
424 // send back the array - the client has the count already
425 const TInt KBufExpandSize8 = 8; //two TInt's
426 CBufFlat* dataCopyBuffer = CBufFlat::NewL(KBufExpandSize8);
427 CleanupStack::PushL(dataCopyBuffer);
428 RBufWriteStream stream;
429 stream.Open(*dataCopyBuffer);
430 CleanupClosePushL(stream);
432 for (TInt i = 0; i < count; i++)
434 stream.WriteInt32L(iSupportedAudioConfigs[i].iAudioObjectType);
437 // write the data to the supplied descriptor buffer
438 TPtr8 ptrBuf = dataCopyBuffer->Ptr(0);
439 iUtility->WriteToOutputDesL(aMessage, ptrBuf);
442 CleanupStack::PopAndDestroy(2, dataCopyBuffer); // dataCopyBuffer, stream
447 // ImplementationTable
449 const TImplementationProxy ImplementationTable[] =
451 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAacDecoderConfigMux, CMMFAacDecoderConfigMux::NewL),
452 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAacDecoderConfigDeMux, CMMFAacDecoderConfigDeMux::NewL),
456 // ImplementationGroupProxy
458 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
460 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
462 return ImplementationTable;