os/mm/mmapitest/devsoundexthaitest/src/T_CAudioOutputData.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
#include "t_caudiooutputdata.h"
sl@0
    20
sl@0
    21
/*@{*/
sl@0
    22
// Output options Id's
sl@0
    23
const TUid OUTPUT_NOPREFERENCE					= TUid::Uid(0x00);
sl@0
    24
const TUid OUTPUT_ALL 							= TUid::Uid(0x01);
sl@0
    25
const TUid OUTPUT_NOOUTPUT 						= TUid::Uid(0x02);
sl@0
    26
const TUid OUTPUT_PRIVATE 						= TUid::Uid(0x03);
sl@0
    27
const TUid OUTPUT_PUBLIC  						= TUid::Uid(0x04);
sl@0
    28
/*@}*/
sl@0
    29
sl@0
    30
sl@0
    31
/*@{*/
sl@0
    32
//Section name literals 
sl@0
    33
_LIT(KDevSoundKey, 								"DevSoundInstanceName");
sl@0
    34
_LIT(KAudioOutputPar, 							"AudioOutput");
sl@0
    35
_LIT(KSecureOutputPar,							"SecureOutput");
sl@0
    36
/*@}*/
sl@0
    37
sl@0
    38
/*@{*/
sl@0
    39
//Command literals 
sl@0
    40
_LIT(KCmdNewL, 									"NewL");
sl@0
    41
_LIT(KCmdDestructor, 							"~");
sl@0
    42
_LIT(KCmdAudioOutput,							"AudioOutput");
sl@0
    43
_LIT(KCmdDefaultAudioOutput, 					"DefaultAudioOutput");
sl@0
    44
_LIT(KCmdRegisterObserver, 						"RegisterObserver");
sl@0
    45
_LIT(KCmdSecureOutput, 							"SecureOutput");
sl@0
    46
_LIT(KCmdSetAudioOutput, 						"SetAudioOutput");
sl@0
    47
_LIT(KCmdSetSecureOutput, 						"SetSecureOutput");
sl@0
    48
_LIT(KCmdUnregisterObserver, 					"UnregisterObserver");
sl@0
    49
/*@}*/
sl@0
    50
sl@0
    51
sl@0
    52
/*@{*/
sl@0
    53
// Output options literal
sl@0
    54
_LIT(KOutput_NoPreference, 						"Output_NoPreference");
sl@0
    55
_LIT(KOutput_All, 								"Output_All");
sl@0
    56
_LIT(KOutput_NoOutput, 							"Output_NoOutput");
sl@0
    57
_LIT(KOutput_Private, 							"Output_Private");
sl@0
    58
_LIT(KOutput_Public, 							"Output_Public");
sl@0
    59
/*@}*/
sl@0
    60
sl@0
    61
const CDataWrapperBase::TEnumEntryTable CT_CAudioOutputData::iEnumOutputOptions[] = 
sl@0
    62
	{ 
sl@0
    63
	{ KOutput_NoPreference,		OUTPUT_NOPREFERENCE.iUid },	
sl@0
    64
	{ KOutput_All,				OUTPUT_ALL.iUid },
sl@0
    65
	{ KOutput_NoOutput,			OUTPUT_NOOUTPUT.iUid },	
sl@0
    66
	{ KOutput_Private,			OUTPUT_PRIVATE.iUid },
sl@0
    67
	{ KOutput_Public,			OUTPUT_PUBLIC.iUid }
sl@0
    68
	};
sl@0
    69
sl@0
    70
sl@0
    71
sl@0
    72
/**
sl@0
    73
 * Two phase constructor
sl@0
    74
 *
sl@0
    75
 * @leave	system wide error
sl@0
    76
 */
sl@0
    77
CT_CAudioOutputData* CT_CAudioOutputData::NewL()
sl@0
    78
	{
sl@0
    79
	CT_CAudioOutputData* ret = new (ELeave) CT_CAudioOutputData();
sl@0
    80
	return ret;
sl@0
    81
	}
sl@0
    82
sl@0
    83
/**
sl@0
    84
 * Private constructor. First phase construction
sl@0
    85
 */
sl@0
    86
CT_CAudioOutputData::CT_CAudioOutputData()
sl@0
    87
	:
sl@0
    88
	iAudioOutput(NULL),
sl@0
    89
	iSecureOutput(EFalse)
sl@0
    90
	{
sl@0
    91
	}
sl@0
    92
sl@0
    93
sl@0
    94
/**
sl@0
    95
 * Return a pointer to the object that the data wraps
sl@0
    96
 *
sl@0
    97
 * @return	pointer to the object that the data wraps
sl@0
    98
 */
sl@0
    99
TAny* CT_CAudioOutputData::GetObject()
sl@0
   100
	{
sl@0
   101
	return iAudioOutput;
sl@0
   102
	}
sl@0
   103
sl@0
   104
/**
sl@0
   105
 * Helper method for DoCmdDestructor
sl@0
   106
 */
sl@0
   107
void CT_CAudioOutputData::DestroyData()
sl@0
   108
	{
sl@0
   109
	if (iAudioOutput)
sl@0
   110
		{ 
sl@0
   111
		delete iAudioOutput;
sl@0
   112
		iAudioOutput = NULL;
sl@0
   113
		}	
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
TBool CT_CAudioOutputData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
sl@0
   126
	{
sl@0
   127
	TBool ret = ETrue;
sl@0
   128
	
sl@0
   129
	if (aCommand == KCmdNewL)
sl@0
   130
		{
sl@0
   131
		DoCmdNewL(aSection);
sl@0
   132
		}
sl@0
   133
	else if (aCommand == KCmdDestructor)
sl@0
   134
		{
sl@0
   135
		DoCmdDestructor();
sl@0
   136
		}
sl@0
   137
	else if (aCommand == KCmdAudioOutput)
sl@0
   138
		{
sl@0
   139
		DoCmdAudioOutput();
sl@0
   140
		}
sl@0
   141
	else if (aCommand == KCmdDefaultAudioOutput)
sl@0
   142
		{
sl@0
   143
		DoCmdDefaultAudioOutput();
sl@0
   144
		}
sl@0
   145
	else if (aCommand == KCmdRegisterObserver)
sl@0
   146
		{
sl@0
   147
		DoCmdRegisterObserverL();
sl@0
   148
		}
sl@0
   149
	else if (aCommand == KCmdSecureOutput)
sl@0
   150
		{
sl@0
   151
		DoCmdSecureOutput();
sl@0
   152
		}
sl@0
   153
	else if (aCommand == KCmdSetAudioOutput)
sl@0
   154
		{
sl@0
   155
		DoCmdSetAudioOutputL(aSection);
sl@0
   156
		}
sl@0
   157
	else if (aCommand == KCmdSetSecureOutput)
sl@0
   158
		{
sl@0
   159
		DoCmdSetSecureOutputL(aSection);
sl@0
   160
		}
sl@0
   161
	else if (aCommand == KCmdUnregisterObserver)
sl@0
   162
		{
sl@0
   163
		DoCmdUnregisterObserver();
sl@0
   164
		}
sl@0
   165
	else
sl@0
   166
		{
sl@0
   167
		ERR_PRINTF1(_L("Unknown command."));
sl@0
   168
		ret=EFalse;
sl@0
   169
		}
sl@0
   170
	return ret;
sl@0
   171
	}
sl@0
   172
sl@0
   173
/**
sl@0
   174
 * Create an instance of CAudioOutput
sl@0
   175
 * @param aSection  - Section to read param from the ini file
sl@0
   176
 * @return none
sl@0
   177
 */
sl@0
   178
void CT_CAudioOutputData::DoCmdNewL(const TTEFSectionName& aSection) 
sl@0
   179
	{
sl@0
   180
	DestroyData();
sl@0
   181
	INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdNewL"));
sl@0
   182
	TPtrC devSoundObject;
sl@0
   183
    if( !GetStringFromConfig(aSection, KDevSoundKey, devSoundObject) )
sl@0
   184
    	{
sl@0
   185
    	ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDevSoundKey);
sl@0
   186
    	SetBlockResult(EFail);
sl@0
   187
    	}
sl@0
   188
    else
sl@0
   189
    	{
sl@0
   190
	    CMMFDevSound* DevSoundObject = static_cast<CMMFDevSound*>(GetDataObjectL(devSoundObject));
sl@0
   191
	    iAudioOutput = (CAudioOutput*)DevSoundObject->CustomInterface(KUidAudioOutput);
sl@0
   192
	    INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdNewL"));
sl@0
   193
    	}
sl@0
   194
    }
sl@0
   195
sl@0
   196
/**
sl@0
   197
 * Destroy an instance of CAudioOutput
sl@0
   198
 * @param none
sl@0
   199
 * @return none
sl@0
   200
 */
sl@0
   201
void CT_CAudioOutputData::DoCmdDestructor()
sl@0
   202
	{
sl@0
   203
	INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdDestroyData"));
sl@0
   204
	DestroyData();
sl@0
   205
	INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdDestroyData"));
sl@0
   206
	}
sl@0
   207
sl@0
   208
/**
sl@0
   209
 * Get the audio Output pref
sl@0
   210
 * @param none
sl@0
   211
 * @return none
sl@0
   212
 */
sl@0
   213
void CT_CAudioOutputData::DoCmdAudioOutput()
sl@0
   214
	{
sl@0
   215
	INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdAudioOutput"));
sl@0
   216
	audioOutputPref = iAudioOutput->AudioOutput();
sl@0
   217
	INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdAudioOutput"));
sl@0
   218
	}
sl@0
   219
sl@0
   220
/**
sl@0
   221
 * Get the default audio output pref
sl@0
   222
 * @param none
sl@0
   223
 * @return none
sl@0
   224
 */
sl@0
   225
void CT_CAudioOutputData::DoCmdDefaultAudioOutput()
sl@0
   226
	{
sl@0
   227
	INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdDefaultAudioOutput"));
sl@0
   228
	audioOutputPref = iAudioOutput->DefaultAudioOutput();
sl@0
   229
	INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdDefaultAudioOutput"));
sl@0
   230
	}
sl@0
   231
sl@0
   232
/**
sl@0
   233
 * Register the observer
sl@0
   234
 * @param none
sl@0
   235
 * @return none
sl@0
   236
 */
sl@0
   237
void CT_CAudioOutputData::DoCmdRegisterObserverL() 
sl@0
   238
	{
sl@0
   239
	INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdRegisterObserverL"));
sl@0
   240
    TRAPD( error, iAudioOutput->RegisterObserverL(*this) );    	    
sl@0
   241
    if( error != KErrNone ) 
sl@0
   242
        {
sl@0
   243
        ERR_PRINTF2(_L("Register observer failed with error %d"), error);
sl@0
   244
        SetError(error);
sl@0
   245
        }
sl@0
   246
    else
sl@0
   247
    	{
sl@0
   248
    	INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdRegisterObserverL"));
sl@0
   249
    	}
sl@0
   250
    }
sl@0
   251
sl@0
   252
/**
sl@0
   253
 * Secure the output
sl@0
   254
 * @param none
sl@0
   255
 * @return none
sl@0
   256
 */
sl@0
   257
void CT_CAudioOutputData::DoCmdSecureOutput()
sl@0
   258
	{
sl@0
   259
	INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdSecureOutput"));
sl@0
   260
	iSecureOutput = iAudioOutput->SecureOutput();
sl@0
   261
	INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdSecureOutput"));
sl@0
   262
	}
sl@0
   263
sl@0
   264
/**
sl@0
   265
 * Set the audio Output
sl@0
   266
 * @param aSection - Section to read param from the ini file
sl@0
   267
 * @return none
sl@0
   268
 */
sl@0
   269
void CT_CAudioOutputData::DoCmdSetAudioOutputL(const TTEFSectionName& aSection)
sl@0
   270
	{
sl@0
   271
	INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdSetAudioOutputL"));
sl@0
   272
	TInt parAudioOutput;
sl@0
   273
	if(!GetEnumFromConfig(aSection, KAudioOutputPar, iEnumOutputOptions, parAudioOutput))
sl@0
   274
		{
sl@0
   275
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KAudioOutputPar);
sl@0
   276
    	SetBlockResult(EFail); 		
sl@0
   277
		}
sl@0
   278
	else{
sl@0
   279
	    TRAPD(error, iAudioOutput->SetAudioOutputL((CAudioOutput::TAudioOutputPreference)parAudioOutput));
sl@0
   280
	    if( error != KErrNone )
sl@0
   281
	        {
sl@0
   282
	        ERR_PRINTF2(_L("Setting Audio output failed with error %d"), error);
sl@0
   283
	        SetError(error);
sl@0
   284
	        }    
sl@0
   285
	    else
sl@0
   286
	    	{
sl@0
   287
	    	INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdSetAudioOutputL"));
sl@0
   288
	    	}
sl@0
   289
		}
sl@0
   290
	}
sl@0
   291
sl@0
   292
/**
sl@0
   293
 * Set the secure output
sl@0
   294
 * @param aSection - Section to read param from the ini file
sl@0
   295
 * @return none
sl@0
   296
 */
sl@0
   297
void CT_CAudioOutputData::DoCmdSetSecureOutputL(const TTEFSectionName& aSection)
sl@0
   298
	{
sl@0
   299
	INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdSetSecureOutputL"));
sl@0
   300
    TBool parSecureOutput;    
sl@0
   301
	if(!GetBoolFromConfig(aSection, KSecureOutputPar, parSecureOutput))
sl@0
   302
		{
sl@0
   303
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KSecureOutputPar);
sl@0
   304
    	SetBlockResult(EFail);
sl@0
   305
    	    		
sl@0
   306
		}
sl@0
   307
	else
sl@0
   308
		{
sl@0
   309
		TRAPD( error, iAudioOutput->SetSecureOutputL(parSecureOutput) );
sl@0
   310
	    if( error != KErrNone ) 
sl@0
   311
	        {
sl@0
   312
	        ERR_PRINTF2(_L("Setting secure output failed with error %d"), error);
sl@0
   313
	        SetError(error);
sl@0
   314
	        }
sl@0
   315
	    else
sl@0
   316
	    	{
sl@0
   317
	    	INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdSetSecureOutputL"));
sl@0
   318
	    	}
sl@0
   319
		}
sl@0
   320
	}
sl@0
   321
sl@0
   322
/**
sl@0
   323
 * Unregister the observer
sl@0
   324
 * @param none
sl@0
   325
 * @return none
sl@0
   326
 */
sl@0
   327
void CT_CAudioOutputData::DoCmdUnregisterObserver() 
sl@0
   328
	{
sl@0
   329
	INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdUnregisterObserver"));
sl@0
   330
  iAudioOutput->UnregisterObserver(*this);    	    
sl@0
   331
  INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdUnregisterObserver"));
sl@0
   332
	}
sl@0
   333
sl@0
   334
/**
sl@0
   335
 * Shows that the audio output was change
sl@0
   336
 * @param aAudioOutput
sl@0
   337
 * @param aNewDefault  - The new default value
sl@0
   338
 */
sl@0
   339
void CT_CAudioOutputData::DefaultAudioOutputChanged(CAudioOutput& /*aAudioOutput*/, CAudioOutput::TAudioOutputPreference aNewDefault)
sl@0
   340
	{
sl@0
   341
	INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DefaultAudioOutputChanged"));
sl@0
   342
	INFO_PRINTF2(_L("Audio Output changed to %d"), aNewDefault);
sl@0
   343
	INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DefaultAudioOutputChanged"));
sl@0
   344
	}