os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/cmmfdevsoundcifileblocklength.cpp
Update contrib.
1 // Copyright (c) 2006-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 "cmmfdevsoundcifileblocklengthimpluid.hrh"
18 #include <ecom/implementationproxy.h>
19 #include <ecom/implementationproxy.h>
20 #include <ecom/ecom.h>
23 #include "cmmfdevsoundcifileblocklength.h"
25 // __________________________________________________________________________
30 TInt CMMFDevSoundCIFileBlockLengthMux::OpenInterface(TUid /*aInterfaceId*/)
32 // attempt to open the interface link with the
33 // remote slave device
35 TUid slaveId = {KMmfUidCIFileBlockLengthDeMux};
37 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
40 iRemoteHandle = handle;
46 void CMMFDevSoundCIFileBlockLengthMux::Release()
48 // close the slave device if it exists
49 if (iRemoteHandle != -1)
51 // we assume the slave is closed correctly
52 iUtility->CloseSlave(iRemoteHandle);
58 // tell ECom to destroy us
59 REComSession::DestroyedImplementation(key);
62 void CMMFDevSoundCIFileBlockLengthMux::PassDestructorKey(TUid aDestructorKey)
64 // store the destructor key
65 iKey = aDestructorKey;
68 void CMMFDevSoundCIFileBlockLengthMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
70 // store a pointer to the utility
71 iUtility = aCustomUtility;
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFDevSoundCIFileBlockLengthMux::NewL()
76 CMMFDevSoundCIFileBlockLengthMux* self = new (ELeave) CMMFDevSoundCIFileBlockLengthMux;
80 TAny* CMMFDevSoundCIFileBlockLengthMux::CustomInterface(TUid /*aInterfaceId*/)
82 MMMFDevSoundCustomInterfaceFileBlockLength* interface = this;
86 CMMFDevSoundCIFileBlockLengthMux::CMMFDevSoundCIFileBlockLengthMux() :
91 CMMFDevSoundCIFileBlockLengthMux::~CMMFDevSoundCIFileBlockLengthMux()
95 // from MMMFDevSoundCustomInterfaceFileBlockLength
97 void CMMFDevSoundCIFileBlockLengthMux::SetFileBlockLength(TUint aBlockAlign)
99 if (iRemoteHandle == -1)
104 // send the BlockAlign in the sync command
105 TPckgBuf<TUint> blockAlignBuffer(aBlockAlign);
107 iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIBlockLengthSetFileBlockLength, blockAlignBuffer);
113 TInt CMMFDevSoundCIFileBlockLengthDeMux::OpenInterface(TUid /*aInterfaceId*/)
118 void CMMFDevSoundCIFileBlockLengthDeMux::Release()
124 // tell ECom to destroy us
125 REComSession::DestroyedImplementation(key);
128 void CMMFDevSoundCIFileBlockLengthDeMux::PassDestructorKey(TUid aDestructorKey)
130 // store the destructor key
131 iKey = aDestructorKey;
134 void CMMFDevSoundCIFileBlockLengthDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
139 void CMMFDevSoundCIFileBlockLengthDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
141 // store a pointer to the utility
142 iUtility = aCustomUtility;
145 void CMMFDevSoundCIFileBlockLengthDeMux::RefreshL()
147 // refetch the fileblocklength custom interface if we already have a target
150 MMMFDevSoundCustomInterfaceFileBlockLength* ptr = NULL;
151 ptr = static_cast<MMMFDevSoundCustomInterfaceFileBlockLength*>(iTarget->CustomInterface(KUidCustomInterfaceDevSoundFileBlockLength));
155 iFileBlockLengthInterface = NULL;
156 User::Leave(KErrNotSupported);
160 iFileBlockLengthInterface = ptr;
166 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFDevSoundCIFileBlockLengthDeMux::NewL()
168 CMMFDevSoundCIFileBlockLengthDeMux* self = new (ELeave) CMMFDevSoundCIFileBlockLengthDeMux;
172 CMMFDevSoundCIFileBlockLengthDeMux::CMMFDevSoundCIFileBlockLengthDeMux()
176 CMMFDevSoundCIFileBlockLengthDeMux::~CMMFDevSoundCIFileBlockLengthDeMux()
181 TInt CMMFDevSoundCIFileBlockLengthDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
183 // fetch the fileblocklength custom interface
184 MMMFDevSoundCustomInterfaceFileBlockLength* ptr = NULL;
185 ptr = static_cast <MMMFDevSoundCustomInterfaceFileBlockLength*> (iTarget->CustomInterface(KUidCustomInterfaceDevSoundFileBlockLength));
189 iFileBlockLengthInterface = NULL;
190 User::Leave(KErrNotSupported);
194 iFileBlockLengthInterface = ptr;
199 void CMMFDevSoundCIFileBlockLengthDeMux::DoCloseSlaveL(TInt /*aHandle*/)
204 // original RMessage is supplied so that remote demux plugin can extract necessary details
205 // using DeMux utility
206 TInt CMMFDevSoundCIFileBlockLengthDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
208 TMMFDevSoundCIMessageData data;
211 iUtility->GetSyncMessageDataL(aMessage, data);
214 switch (data.iCommand)
216 case EMMFDevSoundCIBlockLengthSetFileBlockLength:
218 // we know that offset 2 contains a TInt
219 TPckgBuf<TUint> blockAlignBuffer;
220 iUtility->ReadFromInputDesL(aMessage, &blockAlignBuffer);
222 DoSetFileBlockLengthL(blockAlignBuffer());
229 User::Leave(KErrNotSupported);
236 TInt CMMFDevSoundCIFileBlockLengthDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
238 return KErrNotSupported;
241 void CMMFDevSoundCIFileBlockLengthDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
243 // not used in this interface
246 void CMMFDevSoundCIFileBlockLengthDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
248 // not used in this interface
251 void CMMFDevSoundCIFileBlockLengthDeMux::DoSetFileBlockLengthL(TUint aBlockAlign)
253 if (!iFileBlockLengthInterface)
255 User::Leave(KErrNotReady);
258 // set the block length
259 iFileBlockLengthInterface->SetFileBlockLength(aBlockAlign);
265 // ImplementationTable
268 const TImplementationProxy ImplementationTable[] =
270 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCIFileBlockLengthMux, CMMFDevSoundCIFileBlockLengthMux::NewL),
271 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCIFileBlockLengthDeMux, CMMFDevSoundCIFileBlockLengthDeMux::NewL),
276 // ImplementationGroupProxy
280 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
282 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
284 return ImplementationTable;
288 /** DLL Entry point */
289 GLDEF_C TInt E32Dll(TDllReason /*aReason*/)