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.
20 #include "t_crestrictedaudiooutputdata.h"
24 _LIT(KCmdNewL, "NewL");
25 _LIT(KCmdDestructor, "~");
26 _LIT(KCmdAppendAllowedOutput, "AppendAllowedOutput");
27 _LIT(KCmdRemoveAllowedOutput, "RemoveAllowedOutput");
28 _LIT(KCmdGetAllowedOutput, "GetAllowedOutput");
29 _LIT(KCmdGetAllowedOutputCount, "GetAllowedOutputCount");
30 _LIT(KCmdReset, "Reset");
31 _LIT(KCmdCommit, "Commit");
35 //INI Section name literals
36 _LIT(KOutput, "Output");
37 _LIT(KIndex, "Index");
38 _LIT(KDevSoundInstanceName, "DevSoundInstanceName");
42 //Enumeration Literals
43 _LIT(KEAllowAllAudio, "EAllowAllAudio");
44 _LIT(KEAllowAudioAnalog, "EAllowAudioAnalog");
45 _LIT(KEAllowAudioFMTransmitter, "EAllowAudioFMTransmitter");
46 _LIT(KEAllowAudioBtHFPHSP, "EAllowAudioBtHFPHSP");
47 _LIT(KEAllowAudioBtA2DP, "EAllowAudioBtA2DP");
48 _LIT(KEAllowAudioUplink, "EAllowAudioUplink");
49 _LIT(KEAllowAudioUsb, "EAllowAudioUsb");
50 _LIT(KEAllowAudioRecording, "EAllowAudioRecording");
51 _LIT(KEAllowVisualization, "EAllowVisualization");
54 const CDataWrapperBase::TEnumEntryTable CT_CRestrictedAudioOutputData::iEnumAllowedOutputPreference[]=
56 { KEAllowAllAudio, CRestrictedAudioOutput::EAllowAllAudio},
57 { KEAllowAudioAnalog, CRestrictedAudioOutput::EAllowAudioAnalog},
58 { KEAllowAudioFMTransmitter, CRestrictedAudioOutput::EAllowAudioFMTransmitter},
59 { KEAllowAudioBtHFPHSP, CRestrictedAudioOutput::EAllowAudioBtHFPHSP},
60 { KEAllowAudioBtA2DP, CRestrictedAudioOutput::EAllowAudioBtA2DP},
61 { KEAllowAudioUplink, CRestrictedAudioOutput::EAllowAudioUplink},
62 { KEAllowAudioUsb, CRestrictedAudioOutput::EAllowAudioUsb},
63 { KEAllowAudioRecording, CRestrictedAudioOutput::EAllowAudioRecording},
64 { KEAllowVisualization, CRestrictedAudioOutput::EAllowVisualization}
70 CT_CRestrictedAudioOutputData::~CT_CRestrictedAudioOutputData()
76 * Two phase constructor
78 * @leave system wide error
80 CT_CRestrictedAudioOutputData* CT_CRestrictedAudioOutputData::NewL()
82 CT_CRestrictedAudioOutputData* ret = new (ELeave) CT_CRestrictedAudioOutputData();
87 * Return a pointer to the object that the data wraps
89 * @return pointer to the object that the data wraps
91 TAny* CT_CRestrictedAudioOutputData::GetObject()
93 return iRestrictedAudioOutput;
99 void CT_CRestrictedAudioOutputData::DestroyData()
101 if (iRestrictedAudioOutput)
103 delete iRestrictedAudioOutput;
104 iRestrictedAudioOutput = NULL;
108 * Process a command read from the Ini file
109 * @param aCommand The command to process
110 * @param aSection The section get from the *.ini file of the project T_Wlan
111 * @param aAsyncErrorIndex Command index dor async calls to returns errors to
112 * @return TBool ETrue if the command is process
113 * @leave system wide error
115 TBool CT_CRestrictedAudioOutputData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
119 if (aCommand == KCmdNewL)
123 else if (aCommand == KCmdDestructor)
127 else if (aCommand == KCmdAppendAllowedOutput)
129 DoCmdAppendAllowedOutput(aSection);
131 else if (aCommand == KCmdRemoveAllowedOutput)
133 DoCmdRemoveAllowedOutput(aSection);
135 else if (aCommand == KCmdGetAllowedOutput)
137 DoCmdGetAllowedOutput(aSection);
139 else if (aCommand == KCmdGetAllowedOutputCount)
141 DoCmdGetAllowedOutputCount();
143 else if (aCommand == KCmdReset)
147 else if (aCommand == KCmdCommit)
153 ERR_PRINTF1(_L("Unknown command"));
161 * Create a new instance of CRestrictedAudioOutput
162 * @param aSection - Section to read from the ini file
165 void CT_CRestrictedAudioOutputData::DoCmdNewL(const TTEFSectionName& aSection)
167 INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdNewL()"));
169 TPtrC devSoundInstanceName;
170 if (!GetStringFromConfig(aSection, KDevSoundInstanceName, devSoundInstanceName))
172 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDevSoundInstanceName);
173 SetBlockResult(EFail);
177 CMMFDevSound* mMFDevSound = static_cast<CMMFDevSound*>(GetDataObjectL(devSoundInstanceName));
179 if ( !iRestrictedAudioOutput )
183 CleanupStack::PushL(mMFDevSound);
184 iRestrictedAudioOutput = (CRestrictedAudioOutput*)mMFDevSound->CustomInterface(KUidRestrictedAudioOutput);
185 if ( iRestrictedAudioOutput == NULL )
187 ERR_PRINTF1(_L("Failed to create RestrictedAudioOutput"));
188 error = KErrNotFound;
193 INFO_PRINTF1(_L("RestrictedAudioOutput created"));
194 CleanupStack::Pop(mMFDevSound);
199 ERR_PRINTF1(_L("DevSound not ready"));
200 error = KErrNotReady;
204 INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdNewL()"));
209 * Delete an instance of CRestrictedAudioOutput
213 void CT_CRestrictedAudioOutputData::DoCmdDestructor()
215 INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdDestructor()"));
217 INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdDestructor()"));
221 * Appends an allowed output to the existing list.
222 * @param aSection - The section to read from the ini file
225 void CT_CRestrictedAudioOutputData::DoCmdAppendAllowedOutput(const TTEFSectionName& aSection)
227 INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdAppendAllowedOutput()"));
229 if ( !GetEnumFromConfig(aSection, KOutput, iEnumAllowedOutputPreference, output) )
231 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KOutput);
232 SetBlockResult(EFail);
237 error = iRestrictedAudioOutput->AppendAllowedOutput((CRestrictedAudioOutput::TAllowedOutputPreference) output);
239 if ( (error!=KErrNone) && (error!=KErrAlreadyExists) )
241 ERR_PRINTF2(_L("Error in appending allowed output. Error: %d"), error);
246 INFO_PRINTF2(_L("Allowed output 0x%x appended"), (CRestrictedAudioOutput::TAllowedOutputPreference) output);
247 INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdAppendAllowedOutput()"));
253 * Removes an allowed output from the existing list.
254 * @param aSection - The section to read from the ini file
257 void CT_CRestrictedAudioOutputData::DoCmdRemoveAllowedOutput(const TTEFSectionName& aSection)
259 INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdRemoveAllowedOutput()"));
261 if(!GetEnumFromConfig(aSection, KOutput, iEnumAllowedOutputPreference, output))
263 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KOutput);
264 SetBlockResult(EFail);
269 error = iRestrictedAudioOutput->RemoveAllowedOutput((CRestrictedAudioOutput::TAllowedOutputPreference) output);
270 if (error != KErrNone)
272 ERR_PRINTF2(_L("Error in removing allowed output. Error: %d"), error);
277 INFO_PRINTF2(_L("Allowed output 0x%x removed"), (CRestrictedAudioOutput::TAllowedOutputPreference) output);
278 INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdRemoveAllowedOutput()"));
284 * Gets a reference to an allowed output located at a specified position
286 * @param aSection - The section to read from the ini file
289 void CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutput(const TTEFSectionName& aSection)
291 INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutput()"));
293 if ( !GetIntFromConfig(aSection, KIndex, index) )
295 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KIndex);
296 SetBlockResult(EFail);
301 CRestrictedAudioOutput::TAllowedOutputPreference allowedOutput;
302 error = iRestrictedAudioOutput->GetAllowedOutput(index, allowedOutput);
303 if ( error != KErrNone )
305 ERR_PRINTF2(_L("Error in getting allowed output. Error: %d"), error);
310 switch (allowedOutput)
312 case CRestrictedAudioOutput::EAllowAllAudio:
313 INFO_PRINTF1(_L("AllowAllAudio"));
315 case CRestrictedAudioOutput::EAllowAudioAnalog:
316 INFO_PRINTF1(_L("AllowAudioAnalog"));
318 case CRestrictedAudioOutput::EAllowAudioFMTransmitter:
319 INFO_PRINTF1(_L("AllowAudioFMTransmitter"));
321 case CRestrictedAudioOutput::EAllowAudioBtHFPHSP:
322 INFO_PRINTF1(_L("AllowAudioBtHFPHSP"));
324 case CRestrictedAudioOutput::EAllowAudioBtA2DP:
325 INFO_PRINTF1(_L("AllowAudioBtA2DP"));
327 case CRestrictedAudioOutput::EAllowAudioUplink:
328 INFO_PRINTF1(_L("AllowAudioUplink"));
330 case CRestrictedAudioOutput::EAllowAudioUsb:
331 INFO_PRINTF1(_L("AllowAudioUsb"));
333 case CRestrictedAudioOutput::EAllowAudioRecording:
334 INFO_PRINTF1(_L("AllowAudioRecording"));
336 case CRestrictedAudioOutput::EAllowVisualization:
337 INFO_PRINTF1(_L("AllowVisualization"));
340 INFO_PRINTF2(_L("Unknown output 0x%x"), allowedOutput);
342 INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutput()"));
349 * Gets the number of allowed objects in the array. *
353 void CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutputCount()
355 INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutputCount()"));
357 error = iRestrictedAudioOutput->GetAllowedOutputCount(size);
358 if(error != KErrNone)
360 ERR_PRINTF2(_L("Error in getting allowed output count. Error: %d"), error);
365 INFO_PRINTF2(_L("Allowed output count: %d"), size);
366 INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutputCount()"));
371 * Empties the list, so that it is ready to be reused.
376 void CT_CRestrictedAudioOutputData::DoCmdReset()
378 INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdReset()"));
380 error = iRestrictedAudioOutput->Reset();
383 ERR_PRINTF2(_L("Error in reset. Error: %d"), error);
388 INFO_PRINTF1(_L("Reset successfully"));
389 INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdReset()"));
395 * Applies settings cached locally and commits.
397 * This function can only be called when the DevSound instance is in Idle OR
403 void CT_CRestrictedAudioOutputData::DoCmdCommit()
405 INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdCommit()"));
407 error = iRestrictedAudioOutput->Commit();
408 if (error != KErrNone)
410 ERR_PRINTF2(_L("Error in Commit. Error: %d"), error);
415 INFO_PRINTF1(_L("Commit successfully"));
416 INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdCommit()"));