sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include "t_crestrictedaudiooutputdata.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
/*@{*/
|
sl@0
|
23 |
//Command literals
|
sl@0
|
24 |
_LIT(KCmdNewL, "NewL");
|
sl@0
|
25 |
_LIT(KCmdDestructor, "~");
|
sl@0
|
26 |
_LIT(KCmdAppendAllowedOutput, "AppendAllowedOutput");
|
sl@0
|
27 |
_LIT(KCmdRemoveAllowedOutput, "RemoveAllowedOutput");
|
sl@0
|
28 |
_LIT(KCmdGetAllowedOutput, "GetAllowedOutput");
|
sl@0
|
29 |
_LIT(KCmdGetAllowedOutputCount, "GetAllowedOutputCount");
|
sl@0
|
30 |
_LIT(KCmdReset, "Reset");
|
sl@0
|
31 |
_LIT(KCmdCommit, "Commit");
|
sl@0
|
32 |
/*@}*/
|
sl@0
|
33 |
|
sl@0
|
34 |
/*@{*/
|
sl@0
|
35 |
//INI Section name literals
|
sl@0
|
36 |
_LIT(KOutput, "Output");
|
sl@0
|
37 |
_LIT(KIndex, "Index");
|
sl@0
|
38 |
_LIT(KDevSoundInstanceName, "DevSoundInstanceName");
|
sl@0
|
39 |
/*@}*/
|
sl@0
|
40 |
|
sl@0
|
41 |
/*@{*/
|
sl@0
|
42 |
//Enumeration Literals
|
sl@0
|
43 |
_LIT(KEAllowAllAudio, "EAllowAllAudio");
|
sl@0
|
44 |
_LIT(KEAllowAudioAnalog, "EAllowAudioAnalog");
|
sl@0
|
45 |
_LIT(KEAllowAudioFMTransmitter, "EAllowAudioFMTransmitter");
|
sl@0
|
46 |
_LIT(KEAllowAudioBtHFPHSP, "EAllowAudioBtHFPHSP");
|
sl@0
|
47 |
_LIT(KEAllowAudioBtA2DP, "EAllowAudioBtA2DP");
|
sl@0
|
48 |
_LIT(KEAllowAudioUplink, "EAllowAudioUplink");
|
sl@0
|
49 |
_LIT(KEAllowAudioUsb, "EAllowAudioUsb");
|
sl@0
|
50 |
_LIT(KEAllowAudioRecording, "EAllowAudioRecording");
|
sl@0
|
51 |
_LIT(KEAllowVisualization, "EAllowVisualization");
|
sl@0
|
52 |
/*@}*/
|
sl@0
|
53 |
|
sl@0
|
54 |
const CDataWrapperBase::TEnumEntryTable CT_CRestrictedAudioOutputData::iEnumAllowedOutputPreference[]=
|
sl@0
|
55 |
{
|
sl@0
|
56 |
{ KEAllowAllAudio, CRestrictedAudioOutput::EAllowAllAudio},
|
sl@0
|
57 |
{ KEAllowAudioAnalog, CRestrictedAudioOutput::EAllowAudioAnalog},
|
sl@0
|
58 |
{ KEAllowAudioFMTransmitter, CRestrictedAudioOutput::EAllowAudioFMTransmitter},
|
sl@0
|
59 |
{ KEAllowAudioBtHFPHSP, CRestrictedAudioOutput::EAllowAudioBtHFPHSP},
|
sl@0
|
60 |
{ KEAllowAudioBtA2DP, CRestrictedAudioOutput::EAllowAudioBtA2DP},
|
sl@0
|
61 |
{ KEAllowAudioUplink, CRestrictedAudioOutput::EAllowAudioUplink},
|
sl@0
|
62 |
{ KEAllowAudioUsb, CRestrictedAudioOutput::EAllowAudioUsb},
|
sl@0
|
63 |
{ KEAllowAudioRecording, CRestrictedAudioOutput::EAllowAudioRecording},
|
sl@0
|
64 |
{ KEAllowVisualization, CRestrictedAudioOutput::EAllowVisualization}
|
sl@0
|
65 |
};
|
sl@0
|
66 |
|
sl@0
|
67 |
/**
|
sl@0
|
68 |
* Public destructor
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
CT_CRestrictedAudioOutputData::~CT_CRestrictedAudioOutputData()
|
sl@0
|
71 |
{
|
sl@0
|
72 |
DestroyData();
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
* Two phase constructor
|
sl@0
|
77 |
*
|
sl@0
|
78 |
* @leave system wide error
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
CT_CRestrictedAudioOutputData* CT_CRestrictedAudioOutputData::NewL()
|
sl@0
|
81 |
{
|
sl@0
|
82 |
CT_CRestrictedAudioOutputData* ret = new (ELeave) CT_CRestrictedAudioOutputData();
|
sl@0
|
83 |
return ret;
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
/**
|
sl@0
|
87 |
* Return a pointer to the object that the data wraps
|
sl@0
|
88 |
*
|
sl@0
|
89 |
* @return pointer to the object that the data wraps
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
TAny* CT_CRestrictedAudioOutputData::GetObject()
|
sl@0
|
92 |
{
|
sl@0
|
93 |
return iRestrictedAudioOutput;
|
sl@0
|
94 |
}
|
sl@0
|
95 |
|
sl@0
|
96 |
/**
|
sl@0
|
97 |
* Helper destructor
|
sl@0
|
98 |
*/
|
sl@0
|
99 |
void CT_CRestrictedAudioOutputData::DestroyData()
|
sl@0
|
100 |
{
|
sl@0
|
101 |
if (iRestrictedAudioOutput)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
delete iRestrictedAudioOutput;
|
sl@0
|
104 |
iRestrictedAudioOutput = NULL;
|
sl@0
|
105 |
}
|
sl@0
|
106 |
}
|
sl@0
|
107 |
/**
|
sl@0
|
108 |
* Process a command read from the Ini file
|
sl@0
|
109 |
* @param aCommand The command to process
|
sl@0
|
110 |
* @param aSection The section get from the *.ini file of the project T_Wlan
|
sl@0
|
111 |
* @param aAsyncErrorIndex Command index dor async calls to returns errors to
|
sl@0
|
112 |
* @return TBool ETrue if the command is process
|
sl@0
|
113 |
* @leave system wide error
|
sl@0
|
114 |
*/
|
sl@0
|
115 |
TBool CT_CRestrictedAudioOutputData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
|
sl@0
|
116 |
{
|
sl@0
|
117 |
TBool ret = ETrue;
|
sl@0
|
118 |
|
sl@0
|
119 |
if (aCommand == KCmdNewL)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
DoCmdNewL(aSection);
|
sl@0
|
122 |
}
|
sl@0
|
123 |
else if (aCommand == KCmdDestructor)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
DoCmdDestructor();
|
sl@0
|
126 |
}
|
sl@0
|
127 |
else if (aCommand == KCmdAppendAllowedOutput)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
DoCmdAppendAllowedOutput(aSection);
|
sl@0
|
130 |
}
|
sl@0
|
131 |
else if (aCommand == KCmdRemoveAllowedOutput)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
DoCmdRemoveAllowedOutput(aSection);
|
sl@0
|
134 |
}
|
sl@0
|
135 |
else if (aCommand == KCmdGetAllowedOutput)
|
sl@0
|
136 |
{
|
sl@0
|
137 |
DoCmdGetAllowedOutput(aSection);
|
sl@0
|
138 |
}
|
sl@0
|
139 |
else if (aCommand == KCmdGetAllowedOutputCount)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
DoCmdGetAllowedOutputCount();
|
sl@0
|
142 |
}
|
sl@0
|
143 |
else if (aCommand == KCmdReset)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
DoCmdReset();
|
sl@0
|
146 |
}
|
sl@0
|
147 |
else if (aCommand == KCmdCommit)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
DoCmdCommit();
|
sl@0
|
150 |
}
|
sl@0
|
151 |
else
|
sl@0
|
152 |
{
|
sl@0
|
153 |
ERR_PRINTF1(_L("Unknown command"));
|
sl@0
|
154 |
ret=EFalse;
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
return ret;
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
/**
|
sl@0
|
161 |
* Create a new instance of CRestrictedAudioOutput
|
sl@0
|
162 |
* @param aSection - Section to read from the ini file
|
sl@0
|
163 |
* @return void
|
sl@0
|
164 |
*/
|
sl@0
|
165 |
void CT_CRestrictedAudioOutputData::DoCmdNewL(const TTEFSectionName& aSection)
|
sl@0
|
166 |
{
|
sl@0
|
167 |
INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdNewL()"));
|
sl@0
|
168 |
DestroyData();
|
sl@0
|
169 |
TPtrC devSoundInstanceName;
|
sl@0
|
170 |
if (!GetStringFromConfig(aSection, KDevSoundInstanceName, devSoundInstanceName))
|
sl@0
|
171 |
{
|
sl@0
|
172 |
ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDevSoundInstanceName);
|
sl@0
|
173 |
SetBlockResult(EFail);
|
sl@0
|
174 |
}
|
sl@0
|
175 |
else
|
sl@0
|
176 |
{
|
sl@0
|
177 |
CMMFDevSound* mMFDevSound = static_cast<CMMFDevSound*>(GetDataObjectL(devSoundInstanceName));
|
sl@0
|
178 |
TInt error;
|
sl@0
|
179 |
if ( !iRestrictedAudioOutput )
|
sl@0
|
180 |
{
|
sl@0
|
181 |
if ( mMFDevSound )
|
sl@0
|
182 |
{
|
sl@0
|
183 |
CleanupStack::PushL(mMFDevSound);
|
sl@0
|
184 |
iRestrictedAudioOutput = (CRestrictedAudioOutput*)mMFDevSound->CustomInterface(KUidRestrictedAudioOutput);
|
sl@0
|
185 |
if ( iRestrictedAudioOutput == NULL )
|
sl@0
|
186 |
{
|
sl@0
|
187 |
ERR_PRINTF1(_L("Failed to create RestrictedAudioOutput"));
|
sl@0
|
188 |
error = KErrNotFound;
|
sl@0
|
189 |
SetError(error);
|
sl@0
|
190 |
}
|
sl@0
|
191 |
else
|
sl@0
|
192 |
{
|
sl@0
|
193 |
INFO_PRINTF1(_L("RestrictedAudioOutput created"));
|
sl@0
|
194 |
CleanupStack::Pop(mMFDevSound);
|
sl@0
|
195 |
}
|
sl@0
|
196 |
}
|
sl@0
|
197 |
else
|
sl@0
|
198 |
{
|
sl@0
|
199 |
ERR_PRINTF1(_L("DevSound not ready"));
|
sl@0
|
200 |
error = KErrNotReady;
|
sl@0
|
201 |
SetError(error);
|
sl@0
|
202 |
}
|
sl@0
|
203 |
}
|
sl@0
|
204 |
INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdNewL()"));
|
sl@0
|
205 |
}
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
/**
|
sl@0
|
209 |
* Delete an instance of CRestrictedAudioOutput
|
sl@0
|
210 |
* @param
|
sl@0
|
211 |
* @return void
|
sl@0
|
212 |
*/
|
sl@0
|
213 |
void CT_CRestrictedAudioOutputData::DoCmdDestructor()
|
sl@0
|
214 |
{
|
sl@0
|
215 |
INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdDestructor()"));
|
sl@0
|
216 |
DestroyData();
|
sl@0
|
217 |
INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdDestructor()"));
|
sl@0
|
218 |
}
|
sl@0
|
219 |
|
sl@0
|
220 |
/**
|
sl@0
|
221 |
* Appends an allowed output to the existing list.
|
sl@0
|
222 |
* @param aSection - The section to read from the ini file
|
sl@0
|
223 |
* @return void
|
sl@0
|
224 |
*/
|
sl@0
|
225 |
void CT_CRestrictedAudioOutputData::DoCmdAppendAllowedOutput(const TTEFSectionName& aSection)
|
sl@0
|
226 |
{
|
sl@0
|
227 |
INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdAppendAllowedOutput()"));
|
sl@0
|
228 |
TInt output;
|
sl@0
|
229 |
if ( !GetEnumFromConfig(aSection, KOutput, iEnumAllowedOutputPreference, output) )
|
sl@0
|
230 |
{
|
sl@0
|
231 |
ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KOutput);
|
sl@0
|
232 |
SetBlockResult(EFail);
|
sl@0
|
233 |
}
|
sl@0
|
234 |
else
|
sl@0
|
235 |
{
|
sl@0
|
236 |
TInt error;
|
sl@0
|
237 |
error = iRestrictedAudioOutput->AppendAllowedOutput((CRestrictedAudioOutput::TAllowedOutputPreference) output);
|
sl@0
|
238 |
|
sl@0
|
239 |
if ( (error!=KErrNone) && (error!=KErrAlreadyExists) )
|
sl@0
|
240 |
{
|
sl@0
|
241 |
ERR_PRINTF2(_L("Error in appending allowed output. Error: %d"), error);
|
sl@0
|
242 |
SetError(error);
|
sl@0
|
243 |
}
|
sl@0
|
244 |
else
|
sl@0
|
245 |
{
|
sl@0
|
246 |
INFO_PRINTF2(_L("Allowed output 0x%x appended"), (CRestrictedAudioOutput::TAllowedOutputPreference) output);
|
sl@0
|
247 |
INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdAppendAllowedOutput()"));
|
sl@0
|
248 |
}
|
sl@0
|
249 |
}
|
sl@0
|
250 |
}
|
sl@0
|
251 |
|
sl@0
|
252 |
/**
|
sl@0
|
253 |
* Removes an allowed output from the existing list.
|
sl@0
|
254 |
* @param aSection - The section to read from the ini file
|
sl@0
|
255 |
* @return void
|
sl@0
|
256 |
*/
|
sl@0
|
257 |
void CT_CRestrictedAudioOutputData::DoCmdRemoveAllowedOutput(const TTEFSectionName& aSection)
|
sl@0
|
258 |
{
|
sl@0
|
259 |
INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdRemoveAllowedOutput()"));
|
sl@0
|
260 |
TInt output;
|
sl@0
|
261 |
if(!GetEnumFromConfig(aSection, KOutput, iEnumAllowedOutputPreference, output))
|
sl@0
|
262 |
{
|
sl@0
|
263 |
ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KOutput);
|
sl@0
|
264 |
SetBlockResult(EFail);
|
sl@0
|
265 |
}
|
sl@0
|
266 |
else
|
sl@0
|
267 |
{
|
sl@0
|
268 |
TInt error;
|
sl@0
|
269 |
error = iRestrictedAudioOutput->RemoveAllowedOutput((CRestrictedAudioOutput::TAllowedOutputPreference) output);
|
sl@0
|
270 |
if (error != KErrNone)
|
sl@0
|
271 |
{
|
sl@0
|
272 |
ERR_PRINTF2(_L("Error in removing allowed output. Error: %d"), error);
|
sl@0
|
273 |
SetError(error);
|
sl@0
|
274 |
}
|
sl@0
|
275 |
else
|
sl@0
|
276 |
{
|
sl@0
|
277 |
INFO_PRINTF2(_L("Allowed output 0x%x removed"), (CRestrictedAudioOutput::TAllowedOutputPreference) output);
|
sl@0
|
278 |
INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdRemoveAllowedOutput()"));
|
sl@0
|
279 |
}
|
sl@0
|
280 |
}
|
sl@0
|
281 |
}
|
sl@0
|
282 |
|
sl@0
|
283 |
/**
|
sl@0
|
284 |
* Gets a reference to an allowed output located at a specified position
|
sl@0
|
285 |
* within the list.
|
sl@0
|
286 |
* @param aSection - The section to read from the ini file
|
sl@0
|
287 |
* @return void
|
sl@0
|
288 |
*/
|
sl@0
|
289 |
void CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutput(const TTEFSectionName& aSection)
|
sl@0
|
290 |
{
|
sl@0
|
291 |
INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutput()"));
|
sl@0
|
292 |
TInt index;
|
sl@0
|
293 |
if ( !GetIntFromConfig(aSection, KIndex, index) )
|
sl@0
|
294 |
{
|
sl@0
|
295 |
ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KIndex);
|
sl@0
|
296 |
SetBlockResult(EFail);
|
sl@0
|
297 |
}
|
sl@0
|
298 |
else
|
sl@0
|
299 |
{
|
sl@0
|
300 |
TInt error;
|
sl@0
|
301 |
CRestrictedAudioOutput::TAllowedOutputPreference allowedOutput;
|
sl@0
|
302 |
error = iRestrictedAudioOutput->GetAllowedOutput(index, allowedOutput);
|
sl@0
|
303 |
if ( error != KErrNone )
|
sl@0
|
304 |
{
|
sl@0
|
305 |
ERR_PRINTF2(_L("Error in getting allowed output. Error: %d"), error);
|
sl@0
|
306 |
SetError(error);
|
sl@0
|
307 |
}
|
sl@0
|
308 |
else
|
sl@0
|
309 |
{
|
sl@0
|
310 |
switch (allowedOutput)
|
sl@0
|
311 |
{
|
sl@0
|
312 |
case CRestrictedAudioOutput::EAllowAllAudio:
|
sl@0
|
313 |
INFO_PRINTF1(_L("AllowAllAudio"));
|
sl@0
|
314 |
break;
|
sl@0
|
315 |
case CRestrictedAudioOutput::EAllowAudioAnalog:
|
sl@0
|
316 |
INFO_PRINTF1(_L("AllowAudioAnalog"));
|
sl@0
|
317 |
break;
|
sl@0
|
318 |
case CRestrictedAudioOutput::EAllowAudioFMTransmitter:
|
sl@0
|
319 |
INFO_PRINTF1(_L("AllowAudioFMTransmitter"));
|
sl@0
|
320 |
break;
|
sl@0
|
321 |
case CRestrictedAudioOutput::EAllowAudioBtHFPHSP:
|
sl@0
|
322 |
INFO_PRINTF1(_L("AllowAudioBtHFPHSP"));
|
sl@0
|
323 |
break;
|
sl@0
|
324 |
case CRestrictedAudioOutput::EAllowAudioBtA2DP:
|
sl@0
|
325 |
INFO_PRINTF1(_L("AllowAudioBtA2DP"));
|
sl@0
|
326 |
break;
|
sl@0
|
327 |
case CRestrictedAudioOutput::EAllowAudioUplink:
|
sl@0
|
328 |
INFO_PRINTF1(_L("AllowAudioUplink"));
|
sl@0
|
329 |
break;
|
sl@0
|
330 |
case CRestrictedAudioOutput::EAllowAudioUsb:
|
sl@0
|
331 |
INFO_PRINTF1(_L("AllowAudioUsb"));
|
sl@0
|
332 |
break;
|
sl@0
|
333 |
case CRestrictedAudioOutput::EAllowAudioRecording:
|
sl@0
|
334 |
INFO_PRINTF1(_L("AllowAudioRecording"));
|
sl@0
|
335 |
break;
|
sl@0
|
336 |
case CRestrictedAudioOutput::EAllowVisualization:
|
sl@0
|
337 |
INFO_PRINTF1(_L("AllowVisualization"));
|
sl@0
|
338 |
break;
|
sl@0
|
339 |
default:
|
sl@0
|
340 |
INFO_PRINTF2(_L("Unknown output 0x%x"), allowedOutput);
|
sl@0
|
341 |
}
|
sl@0
|
342 |
INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutput()"));
|
sl@0
|
343 |
}
|
sl@0
|
344 |
}
|
sl@0
|
345 |
}
|
sl@0
|
346 |
|
sl@0
|
347 |
|
sl@0
|
348 |
/**
|
sl@0
|
349 |
* Gets the number of allowed objects in the array. *
|
sl@0
|
350 |
* @param
|
sl@0
|
351 |
* @return void
|
sl@0
|
352 |
*/
|
sl@0
|
353 |
void CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutputCount()
|
sl@0
|
354 |
{
|
sl@0
|
355 |
INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutputCount()"));
|
sl@0
|
356 |
TInt error, size;
|
sl@0
|
357 |
error = iRestrictedAudioOutput->GetAllowedOutputCount(size);
|
sl@0
|
358 |
if(error != KErrNone)
|
sl@0
|
359 |
{
|
sl@0
|
360 |
ERR_PRINTF2(_L("Error in getting allowed output count. Error: %d"), error);
|
sl@0
|
361 |
SetError(error);
|
sl@0
|
362 |
}
|
sl@0
|
363 |
else
|
sl@0
|
364 |
{
|
sl@0
|
365 |
INFO_PRINTF2(_L("Allowed output count: %d"), size);
|
sl@0
|
366 |
INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdGetAllowedOutputCount()"));
|
sl@0
|
367 |
}
|
sl@0
|
368 |
}
|
sl@0
|
369 |
|
sl@0
|
370 |
/**
|
sl@0
|
371 |
* Empties the list, so that it is ready to be reused.
|
sl@0
|
372 |
*
|
sl@0
|
373 |
* @param
|
sl@0
|
374 |
* @return void
|
sl@0
|
375 |
*/
|
sl@0
|
376 |
void CT_CRestrictedAudioOutputData::DoCmdReset()
|
sl@0
|
377 |
{
|
sl@0
|
378 |
INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdReset()"));
|
sl@0
|
379 |
TInt error;
|
sl@0
|
380 |
error = iRestrictedAudioOutput->Reset();
|
sl@0
|
381 |
if (error!=KErrNone)
|
sl@0
|
382 |
{
|
sl@0
|
383 |
ERR_PRINTF2(_L("Error in reset. Error: %d"), error);
|
sl@0
|
384 |
SetError(error);
|
sl@0
|
385 |
}
|
sl@0
|
386 |
else
|
sl@0
|
387 |
{
|
sl@0
|
388 |
INFO_PRINTF1(_L("Reset successfully"));
|
sl@0
|
389 |
INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdReset()"));
|
sl@0
|
390 |
}
|
sl@0
|
391 |
}
|
sl@0
|
392 |
|
sl@0
|
393 |
|
sl@0
|
394 |
/**
|
sl@0
|
395 |
* Applies settings cached locally and commits.
|
sl@0
|
396 |
*
|
sl@0
|
397 |
* This function can only be called when the DevSound instance is in Idle OR
|
sl@0
|
398 |
* Stopped state.
|
sl@0
|
399 |
* @param
|
sl@0
|
400 |
* @return
|
sl@0
|
401 |
*/
|
sl@0
|
402 |
|
sl@0
|
403 |
void CT_CRestrictedAudioOutputData::DoCmdCommit()
|
sl@0
|
404 |
{
|
sl@0
|
405 |
INFO_PRINTF1(_L("*START*CT_CRestrictedAudioOutputData::DoCmdCommit()"));
|
sl@0
|
406 |
TInt error;
|
sl@0
|
407 |
error = iRestrictedAudioOutput->Commit();
|
sl@0
|
408 |
if (error != KErrNone)
|
sl@0
|
409 |
{
|
sl@0
|
410 |
ERR_PRINTF2(_L("Error in Commit. Error: %d"), error);
|
sl@0
|
411 |
SetError(error);
|
sl@0
|
412 |
}
|
sl@0
|
413 |
else
|
sl@0
|
414 |
{
|
sl@0
|
415 |
INFO_PRINTF1(_L("Commit successfully"));
|
sl@0
|
416 |
INFO_PRINTF1(_L("*END*CT_CRestrictedAudioOutputData::DoCmdCommit()"));
|
sl@0
|
417 |
}
|
sl@0
|
418 |
}
|