1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmapitest/devsoundexthaitest/src/T_CAudioInputData.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,224 @@
1.4 +/*
1.5 +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#include "t_caudioinputdata.h"
1.23 +
1.24 +
1.25 +/*@{*/
1.26 +// Output options Id's
1.27 +const TUid INPUT_DEFAULTMIC = TUid::Uid(0x00);
1.28 +const TUid INPUT_OUTPUTTOSPEAKER = TUid::Uid(0x01);
1.29 +const TUid INPUT_FMRADIO = TUid::Uid(0x02);
1.30 +const TUid INPUT_VOICECALL = TUid::Uid(0x03);
1.31 +const TUid INPUT_LINEIN = TUid::Uid(0x04);
1.32 +/*@}*/
1.33 +
1.34 +
1.35 +/*@{*/
1.36 +//Section name literals
1.37 +_LIT(KDevSoundKey, "DevSoundInstanceName");
1.38 +_LIT(KAudioInputPar, "AudioInput");
1.39 +/*@}*/
1.40 +
1.41 +/*@{*/
1.42 +//Command literals
1.43 +_LIT(KCmdNewL, "NewL");
1.44 +_LIT(KCmdDestructor, "~");
1.45 +_LIT(KCmdAudioInput, "AudioInput");
1.46 +_LIT(KCmdSetAudioInput, "SetAudioInput");
1.47 +/*@}*/
1.48 +
1.49 +
1.50 +
1.51 +/*@{*/
1.52 +// Output options literal
1.53 +_LIT(KInput_DefaultMic, "Input_DefaultMic");
1.54 +_LIT(KInput_OutputtoSpeaker, "Input_OutputtoSpeaker");
1.55 +_LIT(KInput_FMRadio, "Input_FMRadio");
1.56 +_LIT(KInput_VoiceCall, "Input_VoiceCall");
1.57 +_LIT(KInput_LineIn, "Input_LineIn");
1.58 +/*@}*/
1.59 +
1.60 +
1.61 +const CDataWrapperBase::TEnumEntryTable CT_CAudioInputData::iEnumInputOptions[] =
1.62 + {
1.63 + { KInput_DefaultMic, INPUT_DEFAULTMIC.iUid },
1.64 + { KInput_OutputtoSpeaker, INPUT_OUTPUTTOSPEAKER.iUid },
1.65 + { KInput_FMRadio, INPUT_FMRADIO.iUid },
1.66 + { KInput_VoiceCall, INPUT_VOICECALL.iUid },
1.67 + { KInput_LineIn, INPUT_LINEIN.iUid }
1.68 + };
1.69 +
1.70 +
1.71 +/**
1.72 + * Two phase constructor
1.73 + *
1.74 + * @leave system wide error
1.75 + */
1.76 +CT_CAudioInputData* CT_CAudioInputData::NewL()
1.77 + {
1.78 + CT_CAudioInputData* ret = new (ELeave) CT_CAudioInputData();
1.79 + return ret;
1.80 + }
1.81 +
1.82 +/**
1.83 + * Private constructor. First phase construction
1.84 + */
1.85 +CT_CAudioInputData::CT_CAudioInputData()
1.86 + :
1.87 + iAudioInput(NULL)
1.88 + {
1.89 + }
1.90 +
1.91 +/**
1.92 + * Return a pointer to the object that the data wraps
1.93 + *
1.94 + * @return pointer to the object that the data wraps
1.95 + */
1.96 +TAny* CT_CAudioInputData::GetObject()
1.97 + {
1.98 + return iAudioInput;
1.99 + }
1.100 +/**
1.101 + * Helper method for DoCmdDestructor
1.102 + */
1.103 +void CT_CAudioInputData::DestroyData()
1.104 + {
1.105 + if (iAudioInput)
1.106 + {
1.107 + delete iAudioInput;
1.108 + iAudioInput = NULL;
1.109 + }
1.110 + }
1.111 +
1.112 +/**
1.113 + * Process a command read from the Ini file
1.114 + * @param aCommand - The command to process
1.115 + * @param aSection - The section get from the *.ini file of the project T_Wlan
1.116 + * @param aAsyncErrorIndex - Command index dor async calls to returns errors to
1.117 + * @return TBool - ETrue if the command is process
1.118 + * @leave - system wide error
1.119 + */
1.120 +TBool CT_CAudioInputData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
1.121 + {
1.122 + TBool ret = ETrue;
1.123 + if (aCommand == KCmdNewL)
1.124 + {
1.125 + DoCmdNewL(aSection);
1.126 + }
1.127 + else if (aCommand == KCmdDestructor)
1.128 + {
1.129 + DoCmdDestructor();
1.130 + }
1.131 + else if (aCommand == KCmdAudioInput)
1.132 + {
1.133 + DoCmdAudioInput();
1.134 + }
1.135 + else if (aCommand == KCmdSetAudioInput)
1.136 + {
1.137 + DoCmdSetAudioInputL(aSection);
1.138 + }
1.139 + else
1.140 + {
1.141 + ERR_PRINTF1(_L("Unknown command."));
1.142 + ret=EFalse;
1.143 + }
1.144 + return ret;
1.145 + }
1.146 +
1.147 +/**
1.148 + * Create an instance of CAudioInput object
1.149 + * @param aSection - Section to read param from the ini file
1.150 + * @return none
1.151 + */
1.152 +void CT_CAudioInputData::DoCmdNewL(const TTEFSectionName& aSection)
1.153 + {
1.154 + DestroyData();
1.155 + INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdNewL()"));
1.156 + TPtrC devSoundObject;
1.157 + if( !GetStringFromConfig(aSection, KDevSoundKey, devSoundObject) )
1.158 + {
1.159 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDevSoundKey);
1.160 + SetBlockResult(EFail);
1.161 + }
1.162 + else
1.163 + {
1.164 + CMMFDevSound* DevSoundObject = static_cast<CMMFDevSound*>(GetDataObjectL(devSoundObject));
1.165 + iAudioInput = (CAudioInput*)DevSoundObject->CustomInterface(KUidAudioInput);
1.166 + INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdNewL()"));
1.167 + }
1.168 + }
1.169 +
1.170 +/**
1.171 + * Destroy an instance of CAudioInput object
1.172 + * @param none
1.173 + * @param none
1.174 + */
1.175 +void CT_CAudioInputData::DoCmdDestructor()
1.176 + {
1.177 + INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdDestructor()"));
1.178 + DestroyData();
1.179 + INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdDestructor()"));
1.180 + }
1.181 +
1.182 +/**
1.183 + * Get an array of Audio Input
1.184 + * @param none
1.185 + * @return none
1.186 + */
1.187 +void CT_CAudioInputData::DoCmdAudioInput()
1.188 + {
1.189 + INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdAudioInput()"));
1.190 + CAudioInput::TAudioInputArray inputArray = iAudioInput->AudioInput();
1.191 + INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdAudioInput()"));
1.192 + }
1.193 +
1.194 +/**
1.195 + * Set the audio input
1.196 + * @param aSection - Section to read param from the ini file
1.197 + * @return none
1.198 + */
1.199 +void CT_CAudioInputData::DoCmdSetAudioInputL(const TTEFSectionName& aSection)
1.200 + {
1.201 +
1.202 + INFO_PRINTF1(_L("*START*CT_CAudioInputData::DoCmdSetAudioInputL()"));
1.203 + TInt parAudioInput;
1.204 + if(!GetEnumFromConfig(aSection, KAudioInputPar, iEnumInputOptions, parAudioInput))
1.205 + {
1.206 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KAudioInputPar);
1.207 + SetBlockResult(EFail);
1.208 + }
1.209 + else
1.210 + {
1.211 + CArrayFixFlat<CAudioInput::TAudioInputPreference>* inputarray = new (ELeave) CArrayFixFlat<CAudioInput::TAudioInputPreference>(4);
1.212 + CleanupStack::PushL(inputarray);
1.213 + inputarray->AppendL((CAudioInput::TAudioInputPreference)parAudioInput);
1.214 + TRAPD( error, iAudioInput->SetAudioInputL( inputarray->Array() ) );
1.215 + if( error != KErrNone )
1.216 + {
1.217 + ERR_PRINTF2(_L("Setting audio input failed with error %d"), error);
1.218 + SetError(error);
1.219 + }
1.220 + else
1.221 + {
1.222 + CleanupStack::PopAndDestroy(&inputarray);
1.223 + INFO_PRINTF1(_L("*END*CT_CAudioInputData::DoCmdSetAudioInputL()"));
1.224 + }
1.225 + }
1.226 + }
1.227 +