os/mm/mmapitest/devsoundexthaitest/src/T_CTelephonyAudioRoutingData.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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_ctelephonyaudioroutingdata.h"
sl@0
    21
sl@0
    22
const TUid EEarPiece		 				= TUid::Uid(0x02);
sl@0
    23
const TUid EHeadSet			 				= TUid::Uid(0x04);
sl@0
    24
/*@{*/
sl@0
    25
//Command literals 
sl@0
    26
_LIT(KCmdNewL, 								"NewL");
sl@0
    27
_LIT(KCmdDestructor, 							"~");
sl@0
    28
_LIT(KCmdAvailableOutputs, 					"AvailableOutputs");
sl@0
    29
_LIT(KCmdOutput, 								"Output");
sl@0
    30
_LIT(KCmdPreviousOutput, 						"PreviousOutput");
sl@0
    31
_LIT(KCmdSetShowNote, 							"SetShowNote");
sl@0
    32
_LIT(KCmdGetShowNote,							"GetShowNote");
sl@0
    33
_LIT(KCmdSetOutputL, 							"SetOutputL");
sl@0
    34
/*@}*/
sl@0
    35
sl@0
    36
/*@{*/
sl@0
    37
//INI Section name literals 
sl@0
    38
_LIT(KMode, 								"Mode");
sl@0
    39
/*@}*/
sl@0
    40
sl@0
    41
/*@{*/
sl@0
    42
//Enumeration Literals 
sl@0
    43
_LIT(KENotActive, 							"ENotActive");
sl@0
    44
_LIT(KENone, 								"ENone");
sl@0
    45
_LIT(KEHandset, 							"EHandSet");
sl@0
    46
_LIT(KELoudSpeaker, 						"ELoudSpeaker");
sl@0
    47
_LIT(KEWiredAudioAccessory, 				"EWiredAudioAccessory");
sl@0
    48
_LIT(KEBTAudioAccessory, 					"EBTAudioAccessory");
sl@0
    49
_LIT(KETTY, 								"ETTY");
sl@0
    50
_LIT(KEEarPiece,							"EEarPiece");
sl@0
    51
_LIT(KEHeadSet,								"EHeadSet");
sl@0
    52
/*@}*/
sl@0
    53
sl@0
    54
const CDataWrapperBase::TEnumEntryTable CT_CTelephonyAudioRoutingData::iEnumOutput[] = 
sl@0
    55
	{ 
sl@0
    56
	{ KENotActive,	CTelephonyAudioRouting::ENotActive},
sl@0
    57
	{ KENone, CTelephonyAudioRouting::ENone},
sl@0
    58
	{ KEHandset, CTelephonyAudioRouting::EHandset},
sl@0
    59
	{ KEEarPiece, EEarPiece.iUid},
sl@0
    60
	{ KELoudSpeaker, CTelephonyAudioRouting::ELoudspeaker},
sl@0
    61
	{ KEWiredAudioAccessory, CTelephonyAudioRouting::EWiredAudioAccessory},
sl@0
    62
	{ KEHeadSet,	EHeadSet.iUid},
sl@0
    63
	{ KEBTAudioAccessory, CTelephonyAudioRouting::EBTAudioAccessory},
sl@0
    64
	{ KETTY, CTelephonyAudioRouting::ETTY}
sl@0
    65
	};
sl@0
    66
sl@0
    67
/**
sl@0
    68
 * Public destructor
sl@0
    69
 */
sl@0
    70
CT_CTelephonyAudioRoutingData::~CT_CTelephonyAudioRoutingData()
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
 * @leave	system wide error
sl@0
    78
 */
sl@0
    79
sl@0
    80
CT_CTelephonyAudioRoutingData* CT_CTelephonyAudioRoutingData::NewL()
sl@0
    81
	{
sl@0
    82
	CT_CTelephonyAudioRoutingData* ret = new (ELeave) CT_CTelephonyAudioRoutingData();
sl@0
    83
	return ret;
sl@0
    84
	}
sl@0
    85
sl@0
    86
/**
sl@0
    87
 * Private constructor. First phase construction
sl@0
    88
 */
sl@0
    89
sl@0
    90
CT_CTelephonyAudioRoutingData::CT_CTelephonyAudioRoutingData()
sl@0
    91
	:
sl@0
    92
	iTelephonyAudioRouting (NULL)
sl@0
    93
	{
sl@0
    94
	}
sl@0
    95
sl@0
    96
sl@0
    97
void CT_CTelephonyAudioRoutingData::DestroyData()
sl@0
    98
{
sl@0
    99
if(iTelephonyAudioRouting)
sl@0
   100
	{
sl@0
   101
	delete iTelephonyAudioRouting;
sl@0
   102
	iTelephonyAudioRouting = NULL;
sl@0
   103
	}
sl@0
   104
}
sl@0
   105
sl@0
   106
sl@0
   107
/**
sl@0
   108
 * Return a pointer to the object that the data wraps
sl@0
   109
 * @return	pointer to the object that the data wraps
sl@0
   110
 */
sl@0
   111
TAny* CT_CTelephonyAudioRoutingData::GetObject()
sl@0
   112
	{
sl@0
   113
	return iTelephonyAudioRouting;
sl@0
   114
	}
sl@0
   115
sl@0
   116
sl@0
   117
/**
sl@0
   118
 * Process a command read from the Ini file
sl@0
   119
 * @param aCommand 			The command to process
sl@0
   120
 * @param aSection			The section get from the *.ini file of the project T_Wlan
sl@0
   121
 * @param aAsyncErrorIndex	Command index dor async calls to returns errors to
sl@0
   122
 * @return TBool			ETrue if the command is process
sl@0
   123
 * @leave					system wide error
sl@0
   124
 */
sl@0
   125
sl@0
   126
TBool CT_CTelephonyAudioRoutingData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
sl@0
   127
	{
sl@0
   128
	TBool ret = ETrue;
sl@0
   129
	
sl@0
   130
	if (aCommand == KCmdNewL)
sl@0
   131
		{
sl@0
   132
		DoCmdNewL();
sl@0
   133
		}
sl@0
   134
	else if (aCommand == KCmdDestructor)
sl@0
   135
		{
sl@0
   136
		DoCmdDestructor();
sl@0
   137
		}
sl@0
   138
	else if (aCommand == KCmdAvailableOutputs)
sl@0
   139
		{
sl@0
   140
		DoCmdAvailableOutputs();
sl@0
   141
		}
sl@0
   142
	else if (aCommand == KCmdOutput)
sl@0
   143
		{
sl@0
   144
		DoCmdOutput();
sl@0
   145
		}
sl@0
   146
	else if (aCommand == KCmdPreviousOutput)
sl@0
   147
		{
sl@0
   148
		DoCmdPreviousOutput();
sl@0
   149
		}
sl@0
   150
	else if (aCommand == KCmdSetShowNote)
sl@0
   151
		{
sl@0
   152
		DoCmdSetShowNote(aSection);
sl@0
   153
		}
sl@0
   154
	else if (aCommand == KCmdGetShowNote)
sl@0
   155
		{
sl@0
   156
		DoCmdGetShowNote();
sl@0
   157
		}
sl@0
   158
	else if (aCommand == KCmdSetOutputL)
sl@0
   159
		{
sl@0
   160
		DoCmdSetOutputL(aSection);
sl@0
   161
		}
sl@0
   162
	else
sl@0
   163
		{
sl@0
   164
		ERR_PRINTF1(_L("Unknown command"));
sl@0
   165
		ret=EFalse;
sl@0
   166
		}
sl@0
   167
	
sl@0
   168
	return ret;	
sl@0
   169
	}
sl@0
   170
sl@0
   171
/**
sl@0
   172
 * Signals that available audio outputs have changed. 
sl@0
   173
 * @param CTelephonyAudioRouting& aTelephonyAudioRouting reference.
sl@0
   174
 * @return void
sl@0
   175
 */
sl@0
   176
void CT_CTelephonyAudioRoutingData::AvailableOutputsChanged( CTelephonyAudioRouting& /*aTelephonyAudioRouting*/)
sl@0
   177
	{
sl@0
   178
	INFO_PRINTF1(_L("CT_CTelephonyAudioRoutingData::AvailableOutputsChanged"));
sl@0
   179
	}
sl@0
   180
sl@0
   181
/**
sl@0
   182
 * Signals that current output has changed. 
sl@0
   183
 * @param CTelephonyAudioRouting& aTelephonyAudioRouting reference.
sl@0
   184
 * @return void
sl@0
   185
 */
sl@0
   186
void CT_CTelephonyAudioRoutingData::OutputChanged( CTelephonyAudioRouting& /*aTelephonyAudioRouting*/)
sl@0
   187
	{
sl@0
   188
	INFO_PRINTF1(_L("CT_CTelephonyAudioRoutingData::OutputChanged"));
sl@0
   189
	}
sl@0
   190
sl@0
   191
/**
sl@0
   192
 * Signals that CTelephonyAudioRouting::SetOutputL request issued by this
sl@0
   193
 * application (on CTelephonyAudioRouting instance) was serviced by the
sl@0
   194
 * Adaptation.
sl@0
   195
 * Only when the observer receives this callback, the application should consider
sl@0
   196
 * CTelephonyAudioRouting::SetOutputL message to be completed.
sl@0
   197
 *
sl@0
   198
 * @param CTelephonyAudioRouting& aTelephonyAudioRouting reference.
sl@0
   199
 * @param aError KErrNone if output requested by application is set, else
sl@0
   200
 *        system-wide error code.
sl@0
   201
 * @return void
sl@0
   202
 */
sl@0
   203
void CT_CTelephonyAudioRoutingData::SetOutputComplete( CTelephonyAudioRouting& /*aTelephonyAudioRouting*/, TInt aError)
sl@0
   204
	{
sl@0
   205
	DecOutstanding();
sl@0
   206
	if(aError != KErrNone)
sl@0
   207
		{
sl@0
   208
		INFO_PRINTF2(_L("Could not set output complete: %d"), aError);
sl@0
   209
		}
sl@0
   210
	else
sl@0
   211
		{
sl@0
   212
		INFO_PRINTF1(_L("CT_CTelephonyAudioRoutingData::SetOutputComplete"));
sl@0
   213
		}
sl@0
   214
	}
sl@0
   215
sl@0
   216
/**
sl@0
   217
 * Create an instance of CTelephonyAudioRouting
sl@0
   218
 * @param 
sl@0
   219
 * @return
sl@0
   220
 */
sl@0
   221
void CT_CTelephonyAudioRoutingData::DoCmdNewL()
sl@0
   222
	{
sl@0
   223
	INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdNewL"));
sl@0
   224
	DestroyData();
sl@0
   225
	TRAPD(error,iTelephonyAudioRouting = CTelephonyAudioRouting::NewL(*this));
sl@0
   226
	if(error!=KErrNone)
sl@0
   227
		{
sl@0
   228
		ERR_PRINTF2(_L("> Could not create CTelephonyAudioRouting: %d"), error);
sl@0
   229
		SetError(error);
sl@0
   230
		}
sl@0
   231
	else
sl@0
   232
		{
sl@0
   233
		INFO_PRINTF1(_L("CTelephonyAudioRouting created successfully."));
sl@0
   234
		INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdNewL"));
sl@0
   235
		}	
sl@0
   236
	}
sl@0
   237
sl@0
   238
/**
sl@0
   239
 * Delete the instance of CTelephonyAudioRouting
sl@0
   240
 * @param
sl@0
   241
 * @return
sl@0
   242
 */
sl@0
   243
void CT_CTelephonyAudioRoutingData::DoCmdDestructor()
sl@0
   244
	{
sl@0
   245
	INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdDestructor"));
sl@0
   246
	DestroyData();
sl@0
   247
	INFO_PRINTF1(_L("*END*CTelephonyAudioRouting destroyed successfully."));
sl@0
   248
	}
sl@0
   249
sl@0
   250
sl@0
   251
/**
sl@0
   252
* Shows the array of currently available outputs.
sl@0
   253
* The array contains list of following outputs depending on whether the
sl@0
   254
* output is available or not at the time of query:
sl@0
   255
*  - EHandset
sl@0
   256
*  - ELoudspeaker
sl@0
   257
*  - EWiredAudioAccessory,
sl@0
   258
*  - EWiredAccessory,
sl@0
   259
*  - EBTAudioAccessory
sl@0
   260
*  - ETTY
sl@0
   261
* Audio can be routed to any of the available outputs in the list.
sl@0
   262
* @param 
sl@0
   263
* @return 
sl@0
   264
*/
sl@0
   265
sl@0
   266
void CT_CTelephonyAudioRoutingData::DoCmdAvailableOutputs()
sl@0
   267
	{
sl@0
   268
	INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdAvailableOutputs"));	
sl@0
   269
	TInt availableOutput;
sl@0
   270
	const TArray<CTelephonyAudioRouting::TAudioOutput>& availableOutputsArray(iTelephonyAudioRouting->AvailableOutputs());
sl@0
   271
	
sl@0
   272
	if (availableOutputsArray.Count()==0)
sl@0
   273
		{
sl@0
   274
		INFO_PRINTF1(_L("None available output"));
sl@0
   275
		}
sl@0
   276
	else
sl@0
   277
		{
sl@0
   278
		TBuf<80> msg;
sl@0
   279
		for (TInt i=0;i<availableOutputsArray.Count();i++)
sl@0
   280
			{
sl@0
   281
			availableOutput = availableOutputsArray[i];
sl@0
   282
			switch (availableOutput)
sl@0
   283
				{
sl@0
   284
				case CTelephonyAudioRouting::ENotActive:
sl@0
   285
					msg.Append(_L("not active"));
sl@0
   286
				break;
sl@0
   287
				case CTelephonyAudioRouting::ENone:
sl@0
   288
					msg.Append(_L("none"));
sl@0
   289
				break;
sl@0
   290
				case CTelephonyAudioRouting::EHandset:
sl@0
   291
					msg.Append(_L("handset"));
sl@0
   292
				break;
sl@0
   293
				case CTelephonyAudioRouting::ELoudspeaker:
sl@0
   294
					msg.Append(_L("loudspeaker"));
sl@0
   295
				break;
sl@0
   296
				case CTelephonyAudioRouting::EWiredAudioAccessory:
sl@0
   297
					msg.Append(_L("wired acc"));
sl@0
   298
				break;
sl@0
   299
				case CTelephonyAudioRouting::EBTAudioAccessory:
sl@0
   300
					msg.Append(_L("BT audio acc"));
sl@0
   301
				break;
sl@0
   302
				case CTelephonyAudioRouting::ETTY:
sl@0
   303
					msg.Append(_L("ETTY"));
sl@0
   304
				break;
sl@0
   305
				default:
sl@0
   306
					msg.AppendFormat(_L("0x%x"), availableOutput);
sl@0
   307
				}
sl@0
   308
			if(i+1<availableOutputsArray.Count())
sl@0
   309
				{
sl@0
   310
				msg.Append(_L(","));
sl@0
   311
				}
sl@0
   312
			}
sl@0
   313
			INFO_PRINTF2(_L("Available Outputs: %S"), &msg);
sl@0
   314
		}
sl@0
   315
	INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdAvailableOutputs"));
sl@0
   316
	}
sl@0
   317
sl@0
   318
sl@0
   319
/**
sl@0
   320
 * Shows the current output configured by the client application to play
sl@0
   321
 * telephony audio.
sl@0
   322
 * @param none.
sl@0
   323
 * @return void.
sl@0
   324
 */
sl@0
   325
sl@0
   326
void CT_CTelephonyAudioRoutingData::DoCmdOutput()
sl@0
   327
	{
sl@0
   328
	INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdOutput"));
sl@0
   329
	iOutput = iTelephonyAudioRouting->Output();
sl@0
   330
    INFO_PRINTF2(_L("Output: 0x%x"),iOutput);
sl@0
   331
    switch(iOutput)
sl@0
   332
        {
sl@0
   333
        case CTelephonyAudioRouting::ENotActive :
sl@0
   334
        	INFO_PRINTF1(_L("Not active"));
sl@0
   335
        break;
sl@0
   336
        case CTelephonyAudioRouting::ENone :
sl@0
   337
        	INFO_PRINTF1(_L("None"));
sl@0
   338
        break;
sl@0
   339
        case CTelephonyAudioRouting::EHandset :
sl@0
   340
        	INFO_PRINTF1(_L("Handset"));
sl@0
   341
        break;
sl@0
   342
        case CTelephonyAudioRouting::ELoudspeaker :
sl@0
   343
        	INFO_PRINTF1(_L("Loudspeaker"));
sl@0
   344
        break;
sl@0
   345
        case CTelephonyAudioRouting::EWiredAudioAccessory :
sl@0
   346
        	INFO_PRINTF1(_L("Wired acc"));
sl@0
   347
        break;
sl@0
   348
        case CTelephonyAudioRouting::EBTAudioAccessory :
sl@0
   349
        	INFO_PRINTF1(_L("BT audio acc"));
sl@0
   350
        break;
sl@0
   351
        case CTelephonyAudioRouting::ETTY :
sl@0
   352
        	INFO_PRINTF1(_L("ETTY"));
sl@0
   353
        break;
sl@0
   354
        default:
sl@0
   355
        	INFO_PRINTF2(_L("0x%x"), iOutput);
sl@0
   356
        }
sl@0
   357
    INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdOutput"));
sl@0
   358
	}
sl@0
   359
sl@0
   360
sl@0
   361
/**
sl@0
   362
 * Show the second last output that was successfully configured to
sl@0
   363
 * play telephony audio.
sl@0
   364
 * @param none.
sl@0
   365
 * @return void
sl@0
   366
 */
sl@0
   367
sl@0
   368
void CT_CTelephonyAudioRoutingData::DoCmdPreviousOutput()
sl@0
   369
	{
sl@0
   370
	INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdPreviousOutput"));	
sl@0
   371
    CTelephonyAudioRouting::TAudioOutput previousOutput;
sl@0
   372
	previousOutput = iTelephonyAudioRouting->PreviousOutput();
sl@0
   373
	INFO_PRINTF2(_L("Previous audio output: 0x%x"), previousOutput);
sl@0
   374
    switch (previousOutput)
sl@0
   375
        {
sl@0
   376
        case CTelephonyAudioRouting::ENotActive:
sl@0
   377
        	INFO_PRINTF1(_L("Not active"));
sl@0
   378
        break;
sl@0
   379
        case CTelephonyAudioRouting::ENone:
sl@0
   380
        	INFO_PRINTF1(_L("None"));
sl@0
   381
        break;
sl@0
   382
        case CTelephonyAudioRouting::EHandset:
sl@0
   383
        	INFO_PRINTF1(_L("Handset"));
sl@0
   384
        break;
sl@0
   385
        case CTelephonyAudioRouting::ELoudspeaker:
sl@0
   386
        	INFO_PRINTF1(_L("Loudspeaker"));
sl@0
   387
        break;
sl@0
   388
        case CTelephonyAudioRouting::EWiredAudioAccessory:
sl@0
   389
        	INFO_PRINTF1(_L("Wired acc"));
sl@0
   390
        break;
sl@0
   391
        case CTelephonyAudioRouting::EBTAudioAccessory:
sl@0
   392
        	INFO_PRINTF1(_L("BT audio acc"));
sl@0
   393
        break;
sl@0
   394
        case CTelephonyAudioRouting::ETTY:
sl@0
   395
        	INFO_PRINTF1(_L("ETTY"));
sl@0
   396
        break;
sl@0
   397
        default:
sl@0
   398
        	INFO_PRINTF2(_L("0x%x"), previousOutput);
sl@0
   399
        }
sl@0
   400
    INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdPreviousOutput"));	
sl@0
   401
	}
sl@0
   402
sl@0
   403
sl@0
   404
/*
sl@0
   405
 * Sends the Show Note mode to server along with the next SetOutputL()
sl@0
   406
 * request.
sl@0
   407
 * After SetOutputL() request from the Application is succesfully
sl@0
   408
 * processed by the server and application receives SetOutputComplete()
sl@0
   409
 * callback with KErrNone, it can query Show Note mode sent to server by
sl@0
   410
 * calling GetShowNote().
sl@0
   411
 * Other observers wanting to query Show Note mode can call GetShowNote()
sl@0
   412
 * after receiving OutputChanged() callback.
sl@0
   413
 *
sl@0
   414
 * @param aSection the Section to read from the ini file.
sl@0
   415
 * @return 
sl@0
   416
 */
sl@0
   417
sl@0
   418
void CT_CTelephonyAudioRoutingData::DoCmdSetShowNote(const TTEFSectionName& aSection)
sl@0
   419
	{
sl@0
   420
	INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdSetShowNote"));
sl@0
   421
	TBool mode;
sl@0
   422
	if(!GetBoolFromConfig(aSection, KMode, mode))
sl@0
   423
		{
sl@0
   424
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KMode);
sl@0
   425
    	SetBlockResult(EFail);
sl@0
   426
		}
sl@0
   427
	else
sl@0
   428
		{
sl@0
   429
		TInt error = iTelephonyAudioRouting->SetShowNote(mode);
sl@0
   430
	    if (error != KErrNone)
sl@0
   431
	        {
sl@0
   432
	    	ERR_PRINTF2(_L("Could not set show note. Error: %d"), error);
sl@0
   433
	    	SetError(error);
sl@0
   434
	        }
sl@0
   435
	    else
sl@0
   436
	    	{
sl@0
   437
	    	INFO_PRINTF2(_L("Mode set to: %d"), mode);
sl@0
   438
			INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdSetShowNote"));
sl@0
   439
	    	}		
sl@0
   440
		}    
sl@0
   441
	}
sl@0
   442
sl@0
   443
sl@0
   444
/**
sl@0
   445
 * Shows the  Show Note mode for the last succesfully completed
sl@0
   446
 * SetOutputL() request.
sl@0
   447
 * @param 
sl@0
   448
 * @return 
sl@0
   449
 */
sl@0
   450
sl@0
   451
sl@0
   452
void CT_CTelephonyAudioRoutingData::DoCmdGetShowNote()
sl@0
   453
	{
sl@0
   454
	INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdGetShowNote"));
sl@0
   455
	TBool mode;
sl@0
   456
	TInt error = iTelephonyAudioRouting->GetShowNote(mode);
sl@0
   457
    if(error != KErrNone) 
sl@0
   458
        {
sl@0
   459
    	ERR_PRINTF2(_L("Could not get show note. Error: %d"), error);
sl@0
   460
    	SetError(error);
sl@0
   461
        }
sl@0
   462
    else
sl@0
   463
    	{
sl@0
   464
    	INFO_PRINTF2(_L("Mode: %d"), mode);
sl@0
   465
        INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdGetShowNote"));
sl@0
   466
    	}    
sl@0
   467
	}
sl@0
   468
sl@0
   469
/**
sl@0
   470
 * Sends an asynchronous request to Adaptation to set the output
sl@0
   471
 * where telephony audio will be routed. This request is completed only
sl@0
   472
 * when the application receives
sl@0
   473
 * MTelephonyAudioRoutingObserver::SetOutputComplete callback.
sl@0
   474
 * @param aSection - The section to read from the ini file
sl@0
   475
 * @return none.
sl@0
   476
 */
sl@0
   477
sl@0
   478
void CT_CTelephonyAudioRoutingData::DoCmdSetOutputL(const TTEFSectionName& aSection)
sl@0
   479
	{
sl@0
   480
	INFO_PRINTF1(_L("*START*CT_CTelephonyAudioRoutingData::DoCmdSetOutputL"));
sl@0
   481
	TInt output;
sl@0
   482
	if (!GetEnumFromConfig(aSection, KCmdOutput, iEnumOutput, output))
sl@0
   483
		{
sl@0
   484
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KCmdOutput);
sl@0
   485
    	SetBlockResult(EFail);
sl@0
   486
    	}
sl@0
   487
	else
sl@0
   488
		{
sl@0
   489
		if(iOutput!=output)
sl@0
   490
			{
sl@0
   491
		    TRAPD(error, iTelephonyAudioRouting->SetOutputL((CTelephonyAudioRouting::TAudioOutput)output));
sl@0
   492
		    IncOutstanding();
sl@0
   493
		    if (error != KErrNone)
sl@0
   494
		    	{
sl@0
   495
		    	ERR_PRINTF2(_L("Could not set output. Error: %d"), error);
sl@0
   496
		    	SetError(error);
sl@0
   497
		        }
sl@0
   498
		    else
sl@0
   499
		    	{
sl@0
   500
		    	INFO_PRINTF1(_L("Output set to: "));
sl@0
   501
			    switch (output)
sl@0
   502
				    {
sl@0
   503
				    case CTelephonyAudioRouting::ENotActive:
sl@0
   504
				    	INFO_PRINTF1(_L("Not active"));
sl@0
   505
				    break;
sl@0
   506
				    case CTelephonyAudioRouting::ENone:
sl@0
   507
				    	INFO_PRINTF1(_L("None"));
sl@0
   508
				    break;
sl@0
   509
				    case CTelephonyAudioRouting::EHandset:
sl@0
   510
				    	INFO_PRINTF1(_L("Handset"));
sl@0
   511
				    break;
sl@0
   512
				    case CTelephonyAudioRouting::ELoudspeaker:
sl@0
   513
				    	INFO_PRINTF1(_L("Loudspeaker"));
sl@0
   514
				    break;
sl@0
   515
				    case CTelephonyAudioRouting::EWiredAudioAccessory:
sl@0
   516
				    	INFO_PRINTF1(_L("Wired acc"));
sl@0
   517
				    break;
sl@0
   518
				    case CTelephonyAudioRouting::EBTAudioAccessory:
sl@0
   519
				    	INFO_PRINTF1(_L("BT audio acc"));
sl@0
   520
				    break;
sl@0
   521
				    case CTelephonyAudioRouting::ETTY:
sl@0
   522
				    	INFO_PRINTF1(_L("ETTY"));
sl@0
   523
			        break;
sl@0
   524
				    default:
sl@0
   525
				    	INFO_PRINTF2(_L("%d"), output);
sl@0
   526
				    }
sl@0
   527
		    	}
sl@0
   528
			}    
sl@0
   529
	}
sl@0
   530
	INFO_PRINTF1(_L("*END*CT_CTelephonyAudioRoutingData::DoCmdSetOutputL"));
sl@0
   531
	}