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_ctelephonyaudioroutingdata.h"
22 const TUid EEarPiece = TUid::Uid(0x02);
23 const TUid EHeadSet = TUid::Uid(0x04);
26 _LIT(KCmdNewL, "NewL");
27 _LIT(KCmdDestructor, "~");
28 _LIT(KCmdAvailableOutputs, "AvailableOutputs");
29 _LIT(KCmdOutput, "Output");
30 _LIT(KCmdPreviousOutput, "PreviousOutput");
31 _LIT(KCmdSetShowNote, "SetShowNote");
32 _LIT(KCmdGetShowNote, "GetShowNote");
33 _LIT(KCmdSetOutputL, "SetOutputL");
37 //INI Section name literals
42 //Enumeration Literals
43 _LIT(KENotActive, "ENotActive");
44 _LIT(KENone, "ENone");
45 _LIT(KEHandset, "EHandSet");
46 _LIT(KELoudSpeaker, "ELoudSpeaker");
47 _LIT(KEWiredAudioAccessory, "EWiredAudioAccessory");
48 _LIT(KEBTAudioAccessory, "EBTAudioAccessory");
50 _LIT(KEEarPiece, "EEarPiece");
51 _LIT(KEHeadSet, "EHeadSet");
54 const CDataWrapperBase::TEnumEntryTable CT_CTelephonyAudioRoutingData::iEnumOutput[] =
56 { KENotActive, CTelephonyAudioRouting::ENotActive},
57 { KENone, CTelephonyAudioRouting::ENone},
58 { KEHandset, CTelephonyAudioRouting::EHandset},
59 { KEEarPiece, EEarPiece.iUid},
60 { KELoudSpeaker, CTelephonyAudioRouting::ELoudspeaker},
61 { KEWiredAudioAccessory, CTelephonyAudioRouting::EWiredAudioAccessory},
62 { KEHeadSet, EHeadSet.iUid},
63 { KEBTAudioAccessory, CTelephonyAudioRouting::EBTAudioAccessory},
64 { KETTY, CTelephonyAudioRouting::ETTY}
70 CT_CTelephonyAudioRoutingData::~CT_CTelephonyAudioRoutingData()
76 * Two phase constructor
77 * @leave system wide error
80 CT_CTelephonyAudioRoutingData* CT_CTelephonyAudioRoutingData::NewL()
82 CT_CTelephonyAudioRoutingData* ret = new (ELeave) CT_CTelephonyAudioRoutingData();
87 * Private constructor. First phase construction
90 CT_CTelephonyAudioRoutingData::CT_CTelephonyAudioRoutingData()
92 iTelephonyAudioRouting (NULL)
97 void CT_CTelephonyAudioRoutingData::DestroyData()
99 if(iTelephonyAudioRouting)
101 delete iTelephonyAudioRouting;
102 iTelephonyAudioRouting = NULL;
108 * Return a pointer to the object that the data wraps
109 * @return pointer to the object that the data wraps
111 TAny* CT_CTelephonyAudioRoutingData::GetObject()
113 return iTelephonyAudioRouting;
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
126 TBool CT_CTelephonyAudioRoutingData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
130 if (aCommand == KCmdNewL)
134 else if (aCommand == KCmdDestructor)
138 else if (aCommand == KCmdAvailableOutputs)
140 DoCmdAvailableOutputs();
142 else if (aCommand == KCmdOutput)
146 else if (aCommand == KCmdPreviousOutput)
148 DoCmdPreviousOutput();
150 else if (aCommand == KCmdSetShowNote)
152 DoCmdSetShowNote(aSection);
154 else if (aCommand == KCmdGetShowNote)
158 else if (aCommand == KCmdSetOutputL)
160 DoCmdSetOutputL(aSection);
164 ERR_PRINTF1(_L("Unknown command"));
172 * Signals that available audio outputs have changed.
173 * @param CTelephonyAudioRouting& aTelephonyAudioRouting reference.
176 void CT_CTelephonyAudioRoutingData::AvailableOutputsChanged( CTelephonyAudioRouting& /*aTelephonyAudioRouting*/)
178 INFO_PRINTF1(_L("CT_CTelephonyAudioRoutingData::AvailableOutputsChanged"));
182 * Signals that current output has changed.
183 * @param CTelephonyAudioRouting& aTelephonyAudioRouting reference.
186 void CT_CTelephonyAudioRoutingData::OutputChanged( CTelephonyAudioRouting& /*aTelephonyAudioRouting*/)
188 INFO_PRINTF1(_L("CT_CTelephonyAudioRoutingData::OutputChanged"));
192 * Signals that CTelephonyAudioRouting::SetOutputL request issued by this
193 * application (on CTelephonyAudioRouting instance) was serviced by the
195 * Only when the observer receives this callback, the application should consider
196 * CTelephonyAudioRouting::SetOutputL message to be completed.
198 * @param CTelephonyAudioRouting& aTelephonyAudioRouting reference.
199 * @param aError KErrNone if output requested by application is set, else
200 * system-wide error code.
203 void CT_CTelephonyAudioRoutingData::SetOutputComplete( CTelephonyAudioRouting& /*aTelephonyAudioRouting*/, TInt aError)
206 if(aError != KErrNone)
208 INFO_PRINTF2(_L("Could not set output complete: %d"), aError);
212 INFO_PRINTF1(_L("CT_CTelephonyAudioRoutingData::SetOutputComplete"));
217 * Create an instance of CTelephonyAudioRouting
221 void CT_CTelephonyAudioRoutingData::DoCmdNewL()
223 INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdNewL"));
225 TRAPD(error,iTelephonyAudioRouting = CTelephonyAudioRouting::NewL(*this));
228 ERR_PRINTF2(_L("> Could not create CTelephonyAudioRouting: %d"), error);
233 INFO_PRINTF1(_L("CTelephonyAudioRouting created successfully."));
234 INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdNewL"));
239 * Delete the instance of CTelephonyAudioRouting
243 void CT_CTelephonyAudioRoutingData::DoCmdDestructor()
245 INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdDestructor"));
247 INFO_PRINTF1(_L("*END*CTelephonyAudioRouting destroyed successfully."));
252 * Shows the array of currently available outputs.
253 * The array contains list of following outputs depending on whether the
254 * output is available or not at the time of query:
257 * - EWiredAudioAccessory,
259 * - EBTAudioAccessory
261 * Audio can be routed to any of the available outputs in the list.
266 void CT_CTelephonyAudioRoutingData::DoCmdAvailableOutputs()
268 INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdAvailableOutputs"));
269 TInt availableOutput;
270 const TArray<CTelephonyAudioRouting::TAudioOutput>& availableOutputsArray(iTelephonyAudioRouting->AvailableOutputs());
272 if (availableOutputsArray.Count()==0)
274 INFO_PRINTF1(_L("None available output"));
279 for (TInt i=0;i<availableOutputsArray.Count();i++)
281 availableOutput = availableOutputsArray[i];
282 switch (availableOutput)
284 case CTelephonyAudioRouting::ENotActive:
285 msg.Append(_L("not active"));
287 case CTelephonyAudioRouting::ENone:
288 msg.Append(_L("none"));
290 case CTelephonyAudioRouting::EHandset:
291 msg.Append(_L("handset"));
293 case CTelephonyAudioRouting::ELoudspeaker:
294 msg.Append(_L("loudspeaker"));
296 case CTelephonyAudioRouting::EWiredAudioAccessory:
297 msg.Append(_L("wired acc"));
299 case CTelephonyAudioRouting::EBTAudioAccessory:
300 msg.Append(_L("BT audio acc"));
302 case CTelephonyAudioRouting::ETTY:
303 msg.Append(_L("ETTY"));
306 msg.AppendFormat(_L("0x%x"), availableOutput);
308 if(i+1<availableOutputsArray.Count())
313 INFO_PRINTF2(_L("Available Outputs: %S"), &msg);
315 INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdAvailableOutputs"));
320 * Shows the current output configured by the client application to play
326 void CT_CTelephonyAudioRoutingData::DoCmdOutput()
328 INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdOutput"));
329 iOutput = iTelephonyAudioRouting->Output();
330 INFO_PRINTF2(_L("Output: 0x%x"),iOutput);
333 case CTelephonyAudioRouting::ENotActive :
334 INFO_PRINTF1(_L("Not active"));
336 case CTelephonyAudioRouting::ENone :
337 INFO_PRINTF1(_L("None"));
339 case CTelephonyAudioRouting::EHandset :
340 INFO_PRINTF1(_L("Handset"));
342 case CTelephonyAudioRouting::ELoudspeaker :
343 INFO_PRINTF1(_L("Loudspeaker"));
345 case CTelephonyAudioRouting::EWiredAudioAccessory :
346 INFO_PRINTF1(_L("Wired acc"));
348 case CTelephonyAudioRouting::EBTAudioAccessory :
349 INFO_PRINTF1(_L("BT audio acc"));
351 case CTelephonyAudioRouting::ETTY :
352 INFO_PRINTF1(_L("ETTY"));
355 INFO_PRINTF2(_L("0x%x"), iOutput);
357 INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdOutput"));
362 * Show the second last output that was successfully configured to
363 * play telephony audio.
368 void CT_CTelephonyAudioRoutingData::DoCmdPreviousOutput()
370 INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdPreviousOutput"));
371 CTelephonyAudioRouting::TAudioOutput previousOutput;
372 previousOutput = iTelephonyAudioRouting->PreviousOutput();
373 INFO_PRINTF2(_L("Previous audio output: 0x%x"), previousOutput);
374 switch (previousOutput)
376 case CTelephonyAudioRouting::ENotActive:
377 INFO_PRINTF1(_L("Not active"));
379 case CTelephonyAudioRouting::ENone:
380 INFO_PRINTF1(_L("None"));
382 case CTelephonyAudioRouting::EHandset:
383 INFO_PRINTF1(_L("Handset"));
385 case CTelephonyAudioRouting::ELoudspeaker:
386 INFO_PRINTF1(_L("Loudspeaker"));
388 case CTelephonyAudioRouting::EWiredAudioAccessory:
389 INFO_PRINTF1(_L("Wired acc"));
391 case CTelephonyAudioRouting::EBTAudioAccessory:
392 INFO_PRINTF1(_L("BT audio acc"));
394 case CTelephonyAudioRouting::ETTY:
395 INFO_PRINTF1(_L("ETTY"));
398 INFO_PRINTF2(_L("0x%x"), previousOutput);
400 INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdPreviousOutput"));
405 * Sends the Show Note mode to server along with the next SetOutputL()
407 * After SetOutputL() request from the Application is succesfully
408 * processed by the server and application receives SetOutputComplete()
409 * callback with KErrNone, it can query Show Note mode sent to server by
410 * calling GetShowNote().
411 * Other observers wanting to query Show Note mode can call GetShowNote()
412 * after receiving OutputChanged() callback.
414 * @param aSection the Section to read from the ini file.
418 void CT_CTelephonyAudioRoutingData::DoCmdSetShowNote(const TTEFSectionName& aSection)
420 INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdSetShowNote"));
422 if(!GetBoolFromConfig(aSection, KMode, mode))
424 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KMode);
425 SetBlockResult(EFail);
429 TInt error = iTelephonyAudioRouting->SetShowNote(mode);
430 if (error != KErrNone)
432 ERR_PRINTF2(_L("Could not set show note. Error: %d"), error);
437 INFO_PRINTF2(_L("Mode set to: %d"), mode);
438 INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdSetShowNote"));
445 * Shows the Show Note mode for the last succesfully completed
446 * SetOutputL() request.
452 void CT_CTelephonyAudioRoutingData::DoCmdGetShowNote()
454 INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdGetShowNote"));
456 TInt error = iTelephonyAudioRouting->GetShowNote(mode);
457 if(error != KErrNone)
459 ERR_PRINTF2(_L("Could not get show note. Error: %d"), error);
464 INFO_PRINTF2(_L("Mode: %d"), mode);
465 INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdGetShowNote"));
470 * Sends an asynchronous request to Adaptation to set the output
471 * where telephony audio will be routed. This request is completed only
472 * when the application receives
473 * MTelephonyAudioRoutingObserver::SetOutputComplete callback.
474 * @param aSection - The section to read from the ini file
478 void CT_CTelephonyAudioRoutingData::DoCmdSetOutputL(const TTEFSectionName& aSection)
480 INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdSetOutputL"));
482 if (!GetEnumFromConfig(aSection, KCmdOutput, iEnumOutput, output))
484 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KCmdOutput);
485 SetBlockResult(EFail);
491 TRAPD(error, iTelephonyAudioRouting->SetOutputL((CTelephonyAudioRouting::TAudioOutput)output));
493 if (error != KErrNone)
495 ERR_PRINTF2(_L("Could not set output. Error: %d"), error);
500 INFO_PRINTF1(_L("Output set to: "));
503 case CTelephonyAudioRouting::ENotActive:
504 INFO_PRINTF1(_L("Not active"));
506 case CTelephonyAudioRouting::ENone:
507 INFO_PRINTF1(_L("None"));
509 case CTelephonyAudioRouting::EHandset:
510 INFO_PRINTF1(_L("Handset"));
512 case CTelephonyAudioRouting::ELoudspeaker:
513 INFO_PRINTF1(_L("Loudspeaker"));
515 case CTelephonyAudioRouting::EWiredAudioAccessory:
516 INFO_PRINTF1(_L("Wired acc"));
518 case CTelephonyAudioRouting::EBTAudioAccessory:
519 INFO_PRINTF1(_L("BT audio acc"));
521 case CTelephonyAudioRouting::ETTY:
522 INFO_PRINTF1(_L("ETTY"));
525 INFO_PRINTF2(_L("%d"), output);
530 INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdSetOutputL"));