First public contribution.
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_caudioinputdata.h"
23 // Output options Id's
24 const TUid INPUT_DEFAULTMIC = TUid::Uid(0x00);
25 const TUid INPUT_OUTPUTTOSPEAKER = TUid::Uid(0x01);
26 const TUid INPUT_FMRADIO = TUid::Uid(0x02);
27 const TUid INPUT_VOICECALL = TUid::Uid(0x03);
28 const TUid INPUT_LINEIN = TUid::Uid(0x04);
33 //Section name literals
34 _LIT(KDevSoundKey, "DevSoundInstanceName");
35 _LIT(KAudioInputPar, "AudioInput");
40 _LIT(KCmdNewL, "NewL");
41 _LIT(KCmdDestructor, "~");
42 _LIT(KCmdAudioInput, "AudioInput");
43 _LIT(KCmdSetAudioInput, "SetAudioInput");
49 // Output options literal
50 _LIT(KInput_DefaultMic, "Input_DefaultMic");
51 _LIT(KInput_OutputtoSpeaker, "Input_OutputtoSpeaker");
52 _LIT(KInput_FMRadio, "Input_FMRadio");
53 _LIT(KInput_VoiceCall, "Input_VoiceCall");
54 _LIT(KInput_LineIn, "Input_LineIn");
58 const CDataWrapperBase::TEnumEntryTable CT_CAudioInputData::iEnumInputOptions[] =
60 { KInput_DefaultMic, INPUT_DEFAULTMIC.iUid },
61 { KInput_OutputtoSpeaker, INPUT_OUTPUTTOSPEAKER.iUid },
62 { KInput_FMRadio, INPUT_FMRADIO.iUid },
63 { KInput_VoiceCall, INPUT_VOICECALL.iUid },
64 { KInput_LineIn, INPUT_LINEIN.iUid }
69 * Two phase constructor
71 * @leave system wide error
73 CT_CAudioInputData* CT_CAudioInputData::NewL()
75 CT_CAudioInputData* ret = new (ELeave) CT_CAudioInputData();
80 * Private constructor. First phase construction
82 CT_CAudioInputData::CT_CAudioInputData()
89 * Return a pointer to the object that the data wraps
91 * @return pointer to the object that the data wraps
93 TAny* CT_CAudioInputData::GetObject()
98 * Helper method for DoCmdDestructor
100 void CT_CAudioInputData::DestroyData()
110 * Process a command read from the Ini file
111 * @param aCommand - The command to process
112 * @param aSection - The section get from the *.ini file of the project T_Wlan
113 * @param aAsyncErrorIndex - Command index dor async calls to returns errors to
114 * @return TBool - ETrue if the command is process
115 * @leave - system wide error
117 TBool CT_CAudioInputData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
120 if (aCommand == KCmdNewL)
124 else if (aCommand == KCmdDestructor)
128 else if (aCommand == KCmdAudioInput)
132 else if (aCommand == KCmdSetAudioInput)
134 DoCmdSetAudioInputL(aSection);
138 ERR_PRINTF1(_L("Unknown command."));
145 * Create an instance of CAudioInput object
146 * @param aSection - Section to read param from the ini file
149 void CT_CAudioInputData::DoCmdNewL(const TTEFSectionName& aSection)
152 INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdNewL()"));
153 TPtrC devSoundObject;
154 if( !GetStringFromConfig(aSection, KDevSoundKey, devSoundObject) )
156 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDevSoundKey);
157 SetBlockResult(EFail);
161 CMMFDevSound* DevSoundObject = static_cast<CMMFDevSound*>(GetDataObjectL(devSoundObject));
162 iAudioInput = (CAudioInput*)DevSoundObject->CustomInterface(KUidAudioInput);
163 INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdNewL()"));
168 * Destroy an instance of CAudioInput object
172 void CT_CAudioInputData::DoCmdDestructor()
174 INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdDestructor()"));
176 INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdDestructor()"));
180 * Get an array of Audio Input
184 void CT_CAudioInputData::DoCmdAudioInput()
186 INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdAudioInput()"));
187 CAudioInput::TAudioInputArray inputArray = iAudioInput->AudioInput();
188 INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdAudioInput()"));
192 * Set the audio input
193 * @param aSection - Section to read param from the ini file
196 void CT_CAudioInputData::DoCmdSetAudioInputL(const TTEFSectionName& aSection)
199 INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdSetAudioInputL()"));
201 if(!GetEnumFromConfig(aSection, KAudioInputPar, iEnumInputOptions, parAudioInput))
203 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KAudioInputPar);
204 SetBlockResult(EFail);
208 CArrayFixFlat<CAudioInput::TAudioInputPreference>* inputarray = new (ELeave) CArrayFixFlat<CAudioInput::TAudioInputPreference>(4);
209 CleanupStack::PushL(inputarray);
210 inputarray->AppendL((CAudioInput::TAudioInputPreference)parAudioInput);
211 TRAPD( error, iAudioInput->SetAudioInputL( inputarray->Array() ) );
212 if( error != KErrNone )
214 ERR_PRINTF2(_L("Setting audio input failed with error %d"), error);
219 CleanupStack::PopAndDestroy(&inputarray);
220 INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdSetAudioInputL()"));