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.
21 #include "t_cg711decoderintfcdata.h"
24 //Enumeration Literals
25 _LIT(KEDecALaw, "EDecALaw");
26 _LIT(KEDecULaw, "EDecULaw" );
31 _LIT(KCmdNewL, "NewL");
32 _LIT(KCmdDestructor, "~");
33 _LIT(KCmdSetDecoderMode, "SetDecoderMode");
34 _LIT(KCmdSetCng, "KCmdSetCng");
38 //INI Section name literals
39 _LIT(KDecoder, "Decoder");
43 const CDataWrapperBase::TEnumEntryTable iEnumDecoders[] =
45 { KEDecALaw, 0/*EDecALaw */},
46 { KEDecULaw, 1/*EDecULaw*/ }
51 * Private constructor. First phase construction
53 CT_CG711DecoderIntfcData::CT_CG711DecoderIntfcData()
61 * Second phase construction
67 * @leave system wide error
69 //void CT_CG711DecoderIntfcData::ConstructL()
75 * Two phase constructor
77 * @leave system wide error
79 CT_CG711DecoderIntfcData* CT_CG711DecoderIntfcData::NewL()
81 CT_CG711DecoderIntfcData* self = new (ELeave)CT_CG711DecoderIntfcData();
86 * Return a pointer to the object that the data wraps
88 * @return pointer to the object that the data wraps
90 TAny* CT_CG711DecoderIntfcData::GetObject()
98 CT_CG711DecoderIntfcData::~CT_CG711DecoderIntfcData()
104 * Helper method for DoCmdDestructor
106 void CT_CG711DecoderIntfcData::DestroyData()
108 if (iG711Decoder != NULL)
116 * Process a command read from the Ini file
117 * @param aCommand - The command to process
118 * @param aSection - The section get from the *.ini file of the project T_Wlan
119 * @param aAsyncErrorIndex - Command index dor async calls to returns errors to
120 * @return TBool - ETrue if the command is process
121 * @leave - system wide error
123 TBool CT_CG711DecoderIntfcData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
127 if (aCommand == KCmdNewL)
131 else if (aCommand == KCmdDestructor)
135 else if (aCommand == KCmdSetDecoderMode)
137 DoCmdSetDecoderMode(aSection);
139 else if (aCommand == KCmdSetCng)
141 DoCmdSetCng(aSection);
145 ERR_PRINTF1(_L("Unknown command."));
153 * Create an Instance of CG711DecoderIntfc
157 void CT_CG711DecoderIntfcData::DoCmdNewL()
159 INFO_PRINTF1(_L("*START*CT_CG711DecoderIntfcData::DoCmdNewL()"));
161 TRAPD(error, CT_CG711DecoderIntfcData::NewL());
164 ERR_PRINTF2(_L("> Could not create CG711HwDevice: %d"), error);
169 INFO_PRINTF1(_L("*END*CT_CG711DecoderIntfcData::DoCmdNewL()"));
174 * Destroy an instance of CG711DecoderIntfc
178 void CT_CG711DecoderIntfcData::DoCmdDestructor()
180 INFO_PRINTF1(_L("*START*CT_CG711DecoderIntfcData::DoCmdDestructor()"));
182 INFO_PRINTF1(_L("*END*CT_CG711DecoderIntfcData::DoCmdDestructor()"));
187 * @param aSection - Section to read param from the ini file
190 void CT_CG711DecoderIntfcData::DoCmdSetDecoderMode(const TTEFSectionName& aSection)
192 INFO_PRINTF1(_L("*START* CT_CG711DecoderIntfcData::DoCmdSetDecoderMode()"));
194 if (!GetEnumFromConfig(aSection, KDecoder, iEnumDecoders, expectedValue))
196 INFO_PRINTF2(_L("Parameter %S was not found in INI file."), &KDecoder);
197 SetBlockResult(EFail);
201 TInt error = iG711Decoder->SetDecoderMode((CG711DecoderIntfc::TDecodeMode)expectedValue);
202 if ( KErrNone != error )
204 ERR_PRINTF2(_L("[%d] SetDecoderMode()"), error);
209 INFO_PRINTF1(_L("*END*CT_CG711DecoderIntfcData::DoCmdSetDecoderMode()"));
215 * @param aSection - Section to read param from the ini file
218 void CT_CG711DecoderIntfcData::DoCmdSetCng(const TTEFSectionName& aSection)
220 INFO_PRINTF1(_L("*START*CT_CG711DecoderIntfcData::DoCmdSetCng()"));
222 if(!GetBoolFromConfig(aSection, KCng, iCng))
224 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KCng);
225 SetBlockResult(EFail);
230 TInt error = iG711Decoder->SetCng(iCng);
231 if ( KErrNone != error )
233 ERR_PRINTF2(_L("[%d] SetCng() error "), error);
239 INFO_PRINTF1(_L("*END*CT_CG711DecoderIntfcData::DoCmdSetCng()"));