First public contribution.
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 "errorconcealmentci.h"
26 TInt CMMFErrorConcealmentIntfcMux::OpenInterface(TUid /*aInterfaceId*/)
28 // attempt to open the interface link with the
29 // remote slave device
31 TUid slaveId = {KMmfUidCustomInterfaceErrorConcealmentIntfcDeMux};
33 TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
36 iRemoteHandle = handle;
43 void CMMFErrorConcealmentIntfcMux::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 CMMFErrorConcealmentIntfcMux::PassDestructorKey(TUid aDestructorKey)
62 // store the destructor key
63 iKey = aDestructorKey;
67 void CMMFErrorConcealmentIntfcMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
69 // store a pointer to the utility
70 iUtility = aCustomUtility;
74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFErrorConcealmentIntfcMux::NewL()
76 CMMFErrorConcealmentIntfcMux* self = new (ELeave) CMMFErrorConcealmentIntfcMux;
81 TAny* CMMFErrorConcealmentIntfcMux::CustomInterface(TUid /*aInterfaceId*/)
83 MMMFErrorConcealmentIntfc* interface = this;
88 CMMFErrorConcealmentIntfcMux::CMMFErrorConcealmentIntfcMux() :
94 CMMFErrorConcealmentIntfcMux::~CMMFErrorConcealmentIntfcMux()
99 // from MErrorConcealmentIntfc
100 TInt CMMFErrorConcealmentIntfcMux::ConcealErrorForNextBuffer()
102 TInt result = KErrBadHandle;
104 if (iRemoteHandle > 0)
106 // any return code other than zero is an error
107 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
108 EMMFDevSoundCIErrorConcealmentIntfcConcealErrorForNextBuffer,
116 // from MErrorConcealmentIntfc
117 TInt CMMFErrorConcealmentIntfcMux::SetFrameMode(TBool aFrameModeOn)
119 TInt result = KErrBadHandle;
121 if (iRemoteHandle > 0)
123 // send the cng in the sync command
124 TPckgBuf<TBool> frameModeOn(aFrameModeOn);
126 // any return code other than zero is an error
127 result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
128 EMMFDevSoundCIErrorConcealmentIntfcSetFrameMode,
136 // from MErrorConcealmentIntfc
137 TInt CMMFErrorConcealmentIntfcMux::FrameModeRqrdForEC(TBool& aFrameModeRqrd)
139 TInt result = KErrBadHandle;
141 if (iRemoteHandle > 0)
143 // holds the returned value.
144 TPckgBuf<TBool> retFrameModeRqrd;
146 // any return code other than zero is an error
147 result = iUtility->SendSlaveSyncCommandResult(iRemoteHandle,
148 EMMFDevSoundCIErrorConcealmentIntfcFrameModeRqrdForEC,
152 // assign return values to aFrameModeRqrd. Do nothing if there is an error
153 if(result == KErrNone)
155 aFrameModeRqrd = retFrameModeRqrd();
166 TInt CMMFErrorConcealmentIntfcDeMux::OpenInterface(TUid /*aInterfaceId*/)
172 void CMMFErrorConcealmentIntfcDeMux::Release()
178 // tell ECom to destroy us
179 REComSession::DestroyedImplementation(key);
183 void CMMFErrorConcealmentIntfcDeMux::PassDestructorKey(TUid aDestructorKey)
185 // store the destructor key
186 iKey = aDestructorKey;
190 void CMMFErrorConcealmentIntfcDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
196 void CMMFErrorConcealmentIntfcDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
198 // store a pointer to the utility
199 iUtility = aCustomUtility;
203 void CMMFErrorConcealmentIntfcDeMux::RefreshL()
205 // refetch the Error Concealment intfc custom interface if we already have a target
208 iInterfaceErrorConcealmentIntfc = static_cast <MMMFErrorConcealmentIntfc*> (iTarget->CustomInterface(KUidErrorConcealmentIntfc));
210 if (!iInterfaceErrorConcealmentIntfc)
212 iInterfaceErrorConcealmentIntfc = NULL;
213 User::Leave(KErrNotSupported);
219 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFErrorConcealmentIntfcDeMux::NewL()
221 CMMFErrorConcealmentIntfcDeMux* self = new (ELeave) CMMFErrorConcealmentIntfcDeMux;
226 CMMFErrorConcealmentIntfcDeMux::CMMFErrorConcealmentIntfcDeMux()
231 CMMFErrorConcealmentIntfcDeMux::~CMMFErrorConcealmentIntfcDeMux()
236 TInt CMMFErrorConcealmentIntfcDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
238 // fetch the Error Concealment intfc Hw Device custom interface
239 iInterfaceErrorConcealmentIntfc = static_cast<MMMFErrorConcealmentIntfc*> (iTarget->CustomInterface(KUidErrorConcealmentIntfc));
241 if (!iInterfaceErrorConcealmentIntfc)
243 iInterfaceErrorConcealmentIntfc = NULL;
244 User::Leave(KErrNotSupported);
251 void CMMFErrorConcealmentIntfcDeMux::DoCloseSlaveL(TInt /*aHandle*/)
257 // original RMessage is supplied so that remote demux plugin can extract necessary details
258 // using DeMux utility
259 TInt CMMFErrorConcealmentIntfcDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
261 TMMFDevSoundCIMessageData data;
262 TInt result = KErrGeneral;
265 iUtility->GetSyncMessageDataL(aMessage, data);
267 switch (data.iCommand)
269 case EMMFDevSoundCIErrorConcealmentIntfcConcealErrorForNextBuffer:
271 result = DoConcealErrorForNextBufferL();
275 case EMMFDevSoundCIErrorConcealmentIntfcSetFrameMode:
277 TPckgBuf<TBool> frameModeOn;
278 iUtility->ReadFromInputDesL(aMessage, &frameModeOn);
280 result = DoSetFrameModeL(frameModeOn());
286 User::Leave(KErrNotSupported);
294 // original RMessage is supplied so that remote demux plugin can extract necessary details
295 // using DeMux utility
296 TInt CMMFErrorConcealmentIntfcDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage)
298 TMMFDevSoundCIMessageData data;
299 TInt result = KErrGeneral;
302 iUtility->GetSyncMessageDataL(aMessage, data);
304 switch (data.iCommand)
306 case EMMFDevSoundCIErrorConcealmentIntfcFrameModeRqrdForEC:
308 TPckgBuf<TBool> frameModeRqrd;
310 iUtility->ReadFromInputDesL(aMessage, &frameModeRqrd);
312 result = DoFrameModeRqrdForECL(frameModeRqrd());
314 TPckgBuf<TBool> des(frameModeRqrd());
315 iUtility->WriteToOutputDesL(aMessage, des);
321 User::Leave(KErrNotSupported);
329 void CMMFErrorConcealmentIntfcDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
331 // not used in this interface
335 void CMMFErrorConcealmentIntfcDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
337 // not used in this interface
341 // Error Concealment intfc custom interface implementation
342 TInt CMMFErrorConcealmentIntfcDeMux::DoConcealErrorForNextBufferL()
344 TInt result = KErrNotFound;
346 if (iInterfaceErrorConcealmentIntfc)
348 result = iInterfaceErrorConcealmentIntfc->ConcealErrorForNextBuffer();
355 // Error Concealment intfc custom interface implementation
356 TInt CMMFErrorConcealmentIntfcDeMux::DoSetFrameModeL(TBool aFrameModeRqrd)
358 TInt result = KErrNotFound;
360 if (iInterfaceErrorConcealmentIntfc)
362 result = iInterfaceErrorConcealmentIntfc->SetFrameMode(aFrameModeRqrd);
369 // Error Concealment intfc custom interface implementation
370 TInt CMMFErrorConcealmentIntfcDeMux::DoFrameModeRqrdForECL(TBool& aFrameModeRqrd)
372 TInt result = KErrNotFound;
374 if (iInterfaceErrorConcealmentIntfc)
376 result = iInterfaceErrorConcealmentIntfc->FrameModeRqrdForEC(aFrameModeRqrd);
384 // ImplementationTable
386 const TImplementationProxy ImplementationTable[] =
388 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceErrorConcealmentIntfcMux, CMMFErrorConcealmentIntfcMux::NewL),
389 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceErrorConcealmentIntfcDeMux, CMMFErrorConcealmentIntfcDeMux::NewL),
393 // ImplementationGroupProxy
395 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
397 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
399 return ImplementationTable;