os/mm/mmapitest/devsoundexthaitest/src/T_CAudioInputData.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_caudioinputdata.h"
sl@0
    20
sl@0
    21
sl@0
    22
/*@{*/
sl@0
    23
// Output options Id's
sl@0
    24
const TUid INPUT_DEFAULTMIC						= TUid::Uid(0x00);
sl@0
    25
const TUid INPUT_OUTPUTTOSPEAKER				= TUid::Uid(0x01);
sl@0
    26
const TUid INPUT_FMRADIO 						= TUid::Uid(0x02);
sl@0
    27
const TUid INPUT_VOICECALL 						= TUid::Uid(0x03);
sl@0
    28
const TUid INPUT_LINEIN  						= TUid::Uid(0x04);
sl@0
    29
/*@}*/
sl@0
    30
sl@0
    31
sl@0
    32
/*@{*/
sl@0
    33
//Section name literals 
sl@0
    34
_LIT(KDevSoundKey, 								"DevSoundInstanceName");
sl@0
    35
_LIT(KAudioInputPar, 							"AudioInput");
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(KCmdAudioInput,							"AudioInput");
sl@0
    43
_LIT(KCmdSetAudioInput, 						"SetAudioInput");
sl@0
    44
/*@}*/
sl@0
    45
sl@0
    46
sl@0
    47
sl@0
    48
/*@{*/
sl@0
    49
// Output options literal
sl@0
    50
_LIT(KInput_DefaultMic, 						"Input_DefaultMic");
sl@0
    51
_LIT(KInput_OutputtoSpeaker,					"Input_OutputtoSpeaker");
sl@0
    52
_LIT(KInput_FMRadio,	 						"Input_FMRadio");
sl@0
    53
_LIT(KInput_VoiceCall,	 						"Input_VoiceCall");
sl@0
    54
_LIT(KInput_LineIn,	 							"Input_LineIn");
sl@0
    55
/*@}*/
sl@0
    56
sl@0
    57
sl@0
    58
const CDataWrapperBase::TEnumEntryTable CT_CAudioInputData::iEnumInputOptions[] = 
sl@0
    59
	{ 
sl@0
    60
	{ KInput_DefaultMic,		INPUT_DEFAULTMIC.iUid },	
sl@0
    61
	{ KInput_OutputtoSpeaker,	INPUT_OUTPUTTOSPEAKER.iUid },
sl@0
    62
	{ KInput_FMRadio,			INPUT_FMRADIO.iUid },	
sl@0
    63
	{ KInput_VoiceCall,			INPUT_VOICECALL.iUid },
sl@0
    64
	{ KInput_LineIn,			INPUT_LINEIN.iUid }
sl@0
    65
	};
sl@0
    66
sl@0
    67
sl@0
    68
/**
sl@0
    69
 * Two phase constructor
sl@0
    70
 *
sl@0
    71
 * @leave	system wide error
sl@0
    72
 */
sl@0
    73
CT_CAudioInputData* CT_CAudioInputData::NewL()
sl@0
    74
	{
sl@0
    75
	CT_CAudioInputData* ret = new (ELeave) CT_CAudioInputData();
sl@0
    76
	return ret;
sl@0
    77
	}
sl@0
    78
sl@0
    79
/**
sl@0
    80
 * Private constructor. First phase construction
sl@0
    81
 */
sl@0
    82
CT_CAudioInputData::CT_CAudioInputData()
sl@0
    83
	:
sl@0
    84
	iAudioInput(NULL)
sl@0
    85
	{
sl@0
    86
	}
sl@0
    87
sl@0
    88
/**
sl@0
    89
 * Return a pointer to the object that the data wraps
sl@0
    90
 *
sl@0
    91
 * @return	pointer to the object that the data wraps
sl@0
    92
 */
sl@0
    93
TAny* CT_CAudioInputData::GetObject()
sl@0
    94
	{
sl@0
    95
	return iAudioInput;
sl@0
    96
	}
sl@0
    97
/**
sl@0
    98
 * Helper method for DoCmdDestructor
sl@0
    99
 */
sl@0
   100
void CT_CAudioInputData::DestroyData()
sl@0
   101
	{
sl@0
   102
	if (iAudioInput)
sl@0
   103
		{ 
sl@0
   104
		delete iAudioInput;
sl@0
   105
		iAudioInput = NULL;
sl@0
   106
		}		
sl@0
   107
	}
sl@0
   108
sl@0
   109
/**
sl@0
   110
 * Process a command read from the Ini file
sl@0
   111
 * @param aCommand 			- The command to process
sl@0
   112
 * @param aSection			- The section get from the *.ini file of the project T_Wlan
sl@0
   113
 * @param aAsyncErrorIndex	- Command index dor async calls to returns errors to
sl@0
   114
 * @return TBool			- ETrue if the command is process
sl@0
   115
 * @leave					- system wide error
sl@0
   116
 */
sl@0
   117
TBool CT_CAudioInputData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
sl@0
   118
	{
sl@0
   119
	TBool ret = ETrue;	
sl@0
   120
	if (aCommand == KCmdNewL)
sl@0
   121
		{
sl@0
   122
		DoCmdNewL(aSection);
sl@0
   123
		}
sl@0
   124
	else if (aCommand == KCmdDestructor)
sl@0
   125
		{
sl@0
   126
		DoCmdDestructor();
sl@0
   127
		}
sl@0
   128
	else if (aCommand == KCmdAudioInput)
sl@0
   129
		{
sl@0
   130
		DoCmdAudioInput();
sl@0
   131
		}
sl@0
   132
	else if (aCommand == KCmdSetAudioInput)
sl@0
   133
		{
sl@0
   134
		DoCmdSetAudioInputL(aSection);
sl@0
   135
		}
sl@0
   136
	else
sl@0
   137
		{
sl@0
   138
		ERR_PRINTF1(_L("Unknown command."));
sl@0
   139
		ret=EFalse;
sl@0
   140
		}
sl@0
   141
	return ret;
sl@0
   142
	}
sl@0
   143
sl@0
   144
/**
sl@0
   145
 * Create an instance of CAudioInput object
sl@0
   146
 * @param aSection - Section to read param from the ini file
sl@0
   147
 * @return none 
sl@0
   148
 */
sl@0
   149
void CT_CAudioInputData::DoCmdNewL(const TTEFSectionName& aSection)  
sl@0
   150
	{
sl@0
   151
	DestroyData();
sl@0
   152
	INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdNewL()"));
sl@0
   153
	TPtrC devSoundObject;
sl@0
   154
    if( !GetStringFromConfig(aSection, KDevSoundKey, devSoundObject) )
sl@0
   155
    	{
sl@0
   156
    	ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDevSoundKey);
sl@0
   157
    	SetBlockResult(EFail);
sl@0
   158
    	}
sl@0
   159
    else
sl@0
   160
    	{
sl@0
   161
	    CMMFDevSound* DevSoundObject = static_cast<CMMFDevSound*>(GetDataObjectL(devSoundObject));
sl@0
   162
	    iAudioInput = (CAudioInput*)DevSoundObject->CustomInterface(KUidAudioInput);	
sl@0
   163
	    INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdNewL()"));
sl@0
   164
    	}
sl@0
   165
	}
sl@0
   166
sl@0
   167
/**
sl@0
   168
 * Destroy an instance of CAudioInput object
sl@0
   169
 * @param none
sl@0
   170
 * @param none
sl@0
   171
 */
sl@0
   172
void CT_CAudioInputData::DoCmdDestructor()
sl@0
   173
	{
sl@0
   174
	INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdDestructor()"));
sl@0
   175
	DestroyData();
sl@0
   176
	INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdDestructor()"));
sl@0
   177
	}
sl@0
   178
sl@0
   179
/**
sl@0
   180
 * Get an array of Audio Input
sl@0
   181
 * @param none
sl@0
   182
 * @return none
sl@0
   183
 */
sl@0
   184
void CT_CAudioInputData::DoCmdAudioInput()
sl@0
   185
	{
sl@0
   186
	INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdAudioInput()"));
sl@0
   187
	CAudioInput::TAudioInputArray inputArray = iAudioInput->AudioInput();
sl@0
   188
	INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdAudioInput()"));
sl@0
   189
	}
sl@0
   190
sl@0
   191
/**
sl@0
   192
 * Set the audio input
sl@0
   193
 * @param aSection  - Section to read param from the ini file
sl@0
   194
 * @return none		
sl@0
   195
 */
sl@0
   196
void CT_CAudioInputData::DoCmdSetAudioInputL(const TTEFSectionName& aSection) 
sl@0
   197
	{
sl@0
   198
	
sl@0
   199
	INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdSetAudioInputL()"));
sl@0
   200
    TInt parAudioInput;    
sl@0
   201
	if(!GetEnumFromConfig(aSection, KAudioInputPar, iEnumInputOptions, parAudioInput))
sl@0
   202
		{
sl@0
   203
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KAudioInputPar);
sl@0
   204
    	SetBlockResult(EFail);    		
sl@0
   205
		}
sl@0
   206
	else
sl@0
   207
		{
sl@0
   208
		CArrayFixFlat<CAudioInput::TAudioInputPreference>* inputarray = new (ELeave) CArrayFixFlat<CAudioInput::TAudioInputPreference>(4);             
sl@0
   209
		CleanupStack::PushL(inputarray);
sl@0
   210
		inputarray->AppendL((CAudioInput::TAudioInputPreference)parAudioInput);    
sl@0
   211
		TRAPD( error, iAudioInput->SetAudioInputL( inputarray->Array() ) );
sl@0
   212
		if( error != KErrNone )
sl@0
   213
			{
sl@0
   214
			ERR_PRINTF2(_L("Setting audio input failed with error %d"), error);
sl@0
   215
	        SetError(error);
sl@0
   216
	        }
sl@0
   217
		else
sl@0
   218
			{
sl@0
   219
			CleanupStack::PopAndDestroy(&inputarray);
sl@0
   220
			INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdSetAudioInputL()"));
sl@0
   221
			}
sl@0
   222
		}
sl@0
   223
	}
sl@0
   224