Update contrib.
2 * Copyright (c) 2005-2009 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 "t_cerrorconcealmentintfcdata.h"
23 _LIT(KCmdNewL, "NewL");
24 _LIT(KCmdDestructor, "~");
25 _LIT(KCmdConcealErrorForNextBuffer, "ConcealErrorForNextBuffer");
26 _LIT(KCmdSetFrameMode, "SetFrameMode");
27 _LIT(KCmdFrameModeRqrdForEC, "FrameModeRqrdForEC");
31 //INI Section name literals
32 _LIT(KFrameMode, "FrameMode");
33 _LIT(KFrameModeRqrd, "FrameModeRqrd");
34 _LIT(KDevSoundInstanceName, "DevSoundInstanceName");
41 * Two phase constructor
42 * @leave system wide error
44 CT_CErrorConcealmentIntfcData* CT_CErrorConcealmentIntfcData::NewL()
46 CT_CErrorConcealmentIntfcData* self = new (ELeave)CT_CErrorConcealmentIntfcData();
51 * Private constructor. First phase construction
53 CT_CErrorConcealmentIntfcData::CT_CErrorConcealmentIntfcData()
55 iErrorConcealmentIntfc(NULL)
63 CT_CErrorConcealmentIntfcData::~CT_CErrorConcealmentIntfcData()
70 * Helper method for DoCmdDestructor
72 void CT_CErrorConcealmentIntfcData::DestroyData()
74 if (iErrorConcealmentIntfc)
76 delete iErrorConcealmentIntfc;
77 iErrorConcealmentIntfc = NULL;
82 * Return a pointer to the object that the data wraps
84 * @return pointer to the object that the data wraps
86 TAny* CT_CErrorConcealmentIntfcData::GetObject()
88 return iErrorConcealmentIntfc;
92 * Process a command read from the Ini file
93 * @param aCommand - The command to process
94 * @param aSection - The section get from the *.ini file of the project T_Wlan
95 * @param aAsyncErrorIndex - Command index dor async calls to returns errors to
96 * @return TBool - ETrue if the command is process
97 * @leave - System wide error
99 TBool CT_CErrorConcealmentIntfcData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
102 if (aCommand == KCmdNewL)
106 else if (aCommand == KCmdDestructor)
110 else if (aCommand == KCmdConcealErrorForNextBuffer)
112 DoCmdConcealErrorForNextBuffer();
114 else if (aCommand == KCmdSetFrameMode)
116 DoCmdSetFrameMode(aSection);
118 else if (aCommand == KCmdFrameModeRqrdForEC)
120 DoCmdFrameModeRqrdForEC(aSection);
124 ERR_PRINTF1(_L("Unknown command"));
131 * Create an instance of CErrorConcealmentIntfc
135 void CT_CErrorConcealmentIntfcData::DoCmdNewL()
138 INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdNewL()"));
139 if (!iErrorConcealmentIntfc)
141 TPtrC devSoundInstanceName;
142 if (!GetStringFromConfig(aSection, KDevSoundInstanceName, devSoundInstanceName))
144 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDevSoundInstanceName);
145 SetBlockResult(EFail);
149 CMMFDevSound* devSoundInstance = static_cast<CMMFDevSound*>(GetDataObjectL(devSoundInstanceName));
152 iErrorConcelmentIntfc == (CErrorConcealmentIntfc*)devSoundInstance->CustomInterface(KUidErrorConcealmentIntfc);
153 if (iErrorConcealmentIntfc == NULL)
155 ERR_PRINTF1(_L("Could not get ErrConcealment CI"));
156 SetError(KErrNotFound);
160 INFO_PRINTF1(_L("ErrConcealment created successfully"));
161 INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdNewL()"));
166 ERR_PRINTF1(_L("DevSound not ready"));
167 SetError(KErrNotReady);
173 INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdNewL()"));
178 * Destroy an instance of CErrorConcealmentIntfc
182 void CT_CErrorConcealmentIntfcData::DoCmdDestructor()
184 INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdDestroyData()"));
186 INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdDestroyData()"));
190 * Command for Conceal and error for next buffer
194 void CT_CErrorConcealmentIntfcData::DoCmdConcealErrorForNextBuffer()
196 INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdConcealErrorForNextBuffer()"));
197 TInt error = iErrorConcealmentIntfc->ConcealErrorForNextBuffer());
198 if(error != KErrNone)
200 ERR_PRINTF2(_L("> Could not execute DoCmdConcealErrorForNextBuffer: %d"), error);
205 INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdConcealErrorForNextBuffer()"));
210 * Puts the hwdevice into a frame-based interface.
211 * The alternate mode of interface would be buffer-based.
212 * @param aSection - The section to read param from the ini file
215 void CT_CErrorConcealmentIntfcData::DoCmdSetFrameMode(const TTEFSectionName& aSection)
217 INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdSetFrameMode()"));
218 TBool aFrameMode = EFalse;
219 if (!GetBoolFromConfig(aSection, KFrameMode, aFrameMode))
221 INFO_PRINTF2(_L("Parameter %S was not found in INI file."), &KFrameMode);
222 SetBlockResult(EFail);
226 TInt error = iErrorConcealmentIntfc->SetFrameMode(aFrameMode);
227 if ( KErrNone != error )
229 ERR_PRINTF2(_L("> Could not execute DoCmdSetFrameMode: %d"), error);
234 INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdSetFrameMode()"));
240 * Query to find out if frame-based interface is required by hwdevice
241 * for supporting error concealment.
245 void CT_CErrorConcealmentIntfcData::DoCmdFrameModeRqrdForEC(const TTEFSectionName& aSection)
247 INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdFrameModeRqrdForEC()"));
248 TBool aFrameModeRqrd = EFalse;
249 if (!GetBoolFromConfig(aSection, KFrameModeRqrd, aFrameModeRqrd))
251 INFO_PRINTF2(_L("Parameter %S was not found in INI file."), &KFrameModeRqrd);
252 SetBlockResult(EFail);
256 TInt error = iErrorConcealmentIntfc->FrameModeRqrdForEC(aFrameModeRqrd);
258 if ( KErrNone != error )
260 ERR_PRINTF2(_L("> Could not execute DoCmdSetFrameMode: %d"), error);
265 INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdFrameModeRqrdForEC()"));