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_caudiooutputdata.h"
22 // Output options Id's
23 const TUid OUTPUT_NOPREFERENCE = TUid::Uid(0x00);
24 const TUid OUTPUT_ALL = TUid::Uid(0x01);
25 const TUid OUTPUT_NOOUTPUT = TUid::Uid(0x02);
26 const TUid OUTPUT_PRIVATE = TUid::Uid(0x03);
27 const TUid OUTPUT_PUBLIC = TUid::Uid(0x04);
32 //Section name literals
33 _LIT(KDevSoundKey, "DevSoundInstanceName");
34 _LIT(KAudioOutputPar, "AudioOutput");
35 _LIT(KSecureOutputPar, "SecureOutput");
40 _LIT(KCmdNewL, "NewL");
41 _LIT(KCmdDestructor, "~");
42 _LIT(KCmdAudioOutput, "AudioOutput");
43 _LIT(KCmdDefaultAudioOutput, "DefaultAudioOutput");
44 _LIT(KCmdRegisterObserver, "RegisterObserver");
45 _LIT(KCmdSecureOutput, "SecureOutput");
46 _LIT(KCmdSetAudioOutput, "SetAudioOutput");
47 _LIT(KCmdSetSecureOutput, "SetSecureOutput");
48 _LIT(KCmdUnregisterObserver, "UnregisterObserver");
53 // Output options literal
54 _LIT(KOutput_NoPreference, "Output_NoPreference");
55 _LIT(KOutput_All, "Output_All");
56 _LIT(KOutput_NoOutput, "Output_NoOutput");
57 _LIT(KOutput_Private, "Output_Private");
58 _LIT(KOutput_Public, "Output_Public");
61 const CDataWrapperBase::TEnumEntryTable CT_CAudioOutputData::iEnumOutputOptions[] =
63 { KOutput_NoPreference, OUTPUT_NOPREFERENCE.iUid },
64 { KOutput_All, OUTPUT_ALL.iUid },
65 { KOutput_NoOutput, OUTPUT_NOOUTPUT.iUid },
66 { KOutput_Private, OUTPUT_PRIVATE.iUid },
67 { KOutput_Public, OUTPUT_PUBLIC.iUid }
73 * Two phase constructor
75 * @leave system wide error
77 CT_CAudioOutputData* CT_CAudioOutputData::NewL()
79 CT_CAudioOutputData* ret = new (ELeave) CT_CAudioOutputData();
84 * Private constructor. First phase construction
86 CT_CAudioOutputData::CT_CAudioOutputData()
95 * Return a pointer to the object that the data wraps
97 * @return pointer to the object that the data wraps
99 TAny* CT_CAudioOutputData::GetObject()
105 * Helper method for DoCmdDestructor
107 void CT_CAudioOutputData::DestroyData()
118 * Process a command read from the Ini file
119 * @param aCommand - The command to process
120 * @param aSection - The section get from the *.ini file of the project T_Wlan
121 * @param aAsyncErrorIndex - Command index dor async calls to returns errors to
122 * @return TBool - ETrue if the command is process
123 * @leave - system wide error
125 TBool CT_CAudioOutputData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
129 if (aCommand == KCmdNewL)
133 else if (aCommand == KCmdDestructor)
137 else if (aCommand == KCmdAudioOutput)
141 else if (aCommand == KCmdDefaultAudioOutput)
143 DoCmdDefaultAudioOutput();
145 else if (aCommand == KCmdRegisterObserver)
147 DoCmdRegisterObserverL();
149 else if (aCommand == KCmdSecureOutput)
153 else if (aCommand == KCmdSetAudioOutput)
155 DoCmdSetAudioOutputL(aSection);
157 else if (aCommand == KCmdSetSecureOutput)
159 DoCmdSetSecureOutputL(aSection);
161 else if (aCommand == KCmdUnregisterObserver)
163 DoCmdUnregisterObserver();
167 ERR_PRINTF1(_L("Unknown command."));
174 * Create an instance of CAudioOutput
175 * @param aSection - Section to read param from the ini file
178 void CT_CAudioOutputData::DoCmdNewL(const TTEFSectionName& aSection)
181 INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdNewL"));
182 TPtrC devSoundObject;
183 if( !GetStringFromConfig(aSection, KDevSoundKey, devSoundObject) )
185 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDevSoundKey);
186 SetBlockResult(EFail);
190 CMMFDevSound* DevSoundObject = static_cast<CMMFDevSound*>(GetDataObjectL(devSoundObject));
191 iAudioOutput = (CAudioOutput*)DevSoundObject->CustomInterface(KUidAudioOutput);
192 INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdNewL"));
197 * Destroy an instance of CAudioOutput
201 void CT_CAudioOutputData::DoCmdDestructor()
203 INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdDestroyData"));
205 INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdDestroyData"));
209 * Get the audio Output pref
213 void CT_CAudioOutputData::DoCmdAudioOutput()
215 INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdAudioOutput"));
216 audioOutputPref = iAudioOutput->AudioOutput();
217 INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdAudioOutput"));
221 * Get the default audio output pref
225 void CT_CAudioOutputData::DoCmdDefaultAudioOutput()
227 INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdDefaultAudioOutput"));
228 audioOutputPref = iAudioOutput->DefaultAudioOutput();
229 INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdDefaultAudioOutput"));
233 * Register the observer
237 void CT_CAudioOutputData::DoCmdRegisterObserverL()
239 INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdRegisterObserverL"));
240 TRAPD( error, iAudioOutput->RegisterObserverL(*this) );
241 if( error != KErrNone )
243 ERR_PRINTF2(_L("Register observer failed with error %d"), error);
248 INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdRegisterObserverL"));
257 void CT_CAudioOutputData::DoCmdSecureOutput()
259 INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdSecureOutput"));
260 iSecureOutput = iAudioOutput->SecureOutput();
261 INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdSecureOutput"));
265 * Set the audio Output
266 * @param aSection - Section to read param from the ini file
269 void CT_CAudioOutputData::DoCmdSetAudioOutputL(const TTEFSectionName& aSection)
271 INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdSetAudioOutputL"));
273 if(!GetEnumFromConfig(aSection, KAudioOutputPar, iEnumOutputOptions, parAudioOutput))
275 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KAudioOutputPar);
276 SetBlockResult(EFail);
279 TRAPD(error, iAudioOutput->SetAudioOutputL((CAudioOutput::TAudioOutputPreference)parAudioOutput));
280 if( error != KErrNone )
282 ERR_PRINTF2(_L("Setting Audio output failed with error %d"), error);
287 INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdSetAudioOutputL"));
293 * Set the secure output
294 * @param aSection - Section to read param from the ini file
297 void CT_CAudioOutputData::DoCmdSetSecureOutputL(const TTEFSectionName& aSection)
299 INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdSetSecureOutputL"));
300 TBool parSecureOutput;
301 if(!GetBoolFromConfig(aSection, KSecureOutputPar, parSecureOutput))
303 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KSecureOutputPar);
304 SetBlockResult(EFail);
309 TRAPD( error, iAudioOutput->SetSecureOutputL(parSecureOutput) );
310 if( error != KErrNone )
312 ERR_PRINTF2(_L("Setting secure output failed with error %d"), error);
317 INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdSetSecureOutputL"));
323 * Unregister the observer
327 void CT_CAudioOutputData::DoCmdUnregisterObserver()
329 INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdUnregisterObserver"));
330 iAudioOutput->UnregisterObserver(*this);
331 INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdUnregisterObserver"));
335 * Shows that the audio output was change
336 * @param aAudioOutput
337 * @param aNewDefault - The new default value
339 void CT_CAudioOutputData::DefaultAudioOutputChanged(CAudioOutput& /*aAudioOutput*/, CAudioOutput::TAudioOutputPreference aNewDefault)
341 INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DefaultAudioOutputChanged"));
342 INFO_PRINTF2(_L("Audio Output changed to %d"), aNewDefault);
343 INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DefaultAudioOutputChanged"));