1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmapitest/devsoundexthaitest/src/T_CMMFDevSoundData.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,2168 @@
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 +
1.23 +#include "t_cmmfdevsounddata.h"
1.24 +
1.25 +/*@{*/
1.26 +//Constants for HwDevice
1.27 +const TInt KHwDeviceDefaultDataLength = 9;
1.28 +const TInt KFourCCLength = 4;
1.29 +//Supported Input Data Types
1.30 +const TInt KFourCCMaxBitDisplacement = 24;
1.31 +const TInt K8Bits = 8;
1.32 +const TInt KTFourCC = 4;
1.33 +/*@}*/
1.34 +
1.35 +/*@{*/
1.36 +//Command literals
1.37 +_LIT(KCmdNewL, "NewL");
1.38 +_LIT(KCmdNewLLoopL, "NewLLoopL");
1.39 +_LIT(KCmdDestructor, "~");
1.40 +_LIT(KCmdCapabilities, "Capabilities");
1.41 +_LIT(KCmdConfig, "Config");
1.42 +_LIT(KCmdMaxGain, "MaxGain");
1.43 +_LIT(KCmdMaxVolume, "MaxVolume");
1.44 +_LIT(KCmdGetPlayBalanceL, "GetPlayBalanceL");
1.45 +_LIT(KCmdGetRecordBalanceL, "GetRecordBalanceL");
1.46 +_LIT(KCmdGetSupportedInputDataTypesL, "GetSupportedInputDataTypesL");
1.47 +_LIT(KCmdGetSupportedOutputDataTypesL, "GetSupportedOutputDataTypesL");
1.48 +_LIT(KCmdSamplesPlayed, "SamplesPlayed");
1.49 +_LIT(KCmdSamplesRecorded, "SamplesRecorded");
1.50 +_LIT(KCmdVolume, "Volume");
1.51 +_LIT(KCmdGain, "Gain");
1.52 +_LIT(KCmdFixedSequenceCount, "FixedSequenceCount");
1.53 +_LIT(KCmdFixedSequenceName, "FixedSequenceName");
1.54 +_LIT(KCmdSetConfigL, "SetConfigL");
1.55 +_LIT(KCmdSetDTMFLengths, "SetDTMFLengths");
1.56 +_LIT(KCmdSetGain, "SetGain");
1.57 +_LIT(KCmdSetPlayBalanceL, "SetPlayBalanceL");
1.58 +_LIT(KCmdSetPrioritySettings, "SetPrioritySettings");
1.59 +_LIT(KCmdSetRecordBalanceL, "SetRecordBalanceL");
1.60 +_LIT(KCmdSetToneRepeats, "SetToneRepeats");
1.61 +_LIT(KCmdSetVolume, "SetVolume");
1.62 +_LIT(KCmdSetVolumeRamp, "SetVolumeRamp");
1.63 +_LIT(KCmdInitializeL, "InitializeL");
1.64 +_LIT(KCmdPlayDTMFStringL, "PlayDTMFStringL");
1.65 +_LIT(KCmdPlayData, "PlayData");
1.66 +_LIT(KCmdPlayDualToneL, "PlayDualToneL");
1.67 +_LIT(KCmdPlayInitL, "PlayInitL");
1.68 +_LIT(KCmdPlayToneL, "PlayToneL");
1.69 +_LIT(KCmdPlayToneSequenceL, "PlayToneSequenceL");
1.70 +_LIT(KCmdRecordData, "RecordData");
1.71 +_LIT(KCmdRecordInitL, "RecordInitL");
1.72 +_LIT(KCmdStop, "Stop");
1.73 +_LIT(KCmdErrorConceal, "ErrorConceal");
1.74 +_LIT(KCmdSetVolumeLoop, "SetVolumeLoop");
1.75 +/*@}*/
1.76 +
1.77 +/*@{*/
1.78 +//Utility literals
1.79 +_LIT(KCmdUtilityReplaceFile, "ReplaceFile");
1.80 +_LIT(KCmdUtilityOpenFile, "OpenFile");
1.81 +_LIT(KCmdUtilityCloseFile, "CloseFile");
1.82 +_LIT(KCmdUtilityFileStartPosition, "FileStartPosition");
1.83 +/*@}*/
1.84 +
1.85 +/*@{*/
1.86 +//INI Section name literals
1.87 +_LIT(KGainValue, "Gain");
1.88 +_LIT(KVolumeValue, "Volume");
1.89 +_LIT(KLeftPercentage, "LeftPercentage");
1.90 +_LIT(KRightPercentage, "RightPercentage");
1.91 +_LIT(KSequenceNumber, "SequenceNumber");
1.92 +_LIT(KRate, "Rate");
1.93 +_LIT(KEncoding, "Encoding");
1.94 +_LIT(KChannels, "Channels");
1.95 +_LIT(KBufferSize, "BufferSize");
1.96 +_LIT(KToneOnLength, "ToneOnLength");
1.97 +_LIT(KToneOffLength, "ToneOffLength");
1.98 +_LIT(KPause, "Pause");
1.99 +_LIT(KPauseLength, "PauseLength");
1.100 +_LIT(KPriority, "Priority");
1.101 +_LIT(KPreference, "Preference");
1.102 +_LIT(KPriorityState, "PriorityState");
1.103 +_LIT(KRepeatCount, "RepeatCount");
1.104 +_LIT(KRepeatTrailingSilence, "RepeatTrailingSilence");
1.105 +_LIT(KRampDuration, "RampDuration");
1.106 +_LIT(KMode, "Mode");
1.107 +_LIT(KHwDevice, "HwDevice");
1.108 +_LIT(KFourCC, "FourCC");
1.109 +_LIT(KFilename, "Filename");
1.110 +_LIT(KDTMFString, "DTMFString");
1.111 +_LIT(KFrequency, "Frequency");
1.112 +_LIT(KFrequencyOne, "FrequencyOne");
1.113 +_LIT(KFrequencyTwo, "FrequencyTwo");
1.114 +_LIT(KDuration, "Duration");
1.115 +_LIT(KLoop, "Loop");
1.116 +_LIT(KAllowedError, "AllowedError");
1.117 +_LIT(KVolumeList, "VolumeList");
1.118 +_LIT(KVolumeLoop, "VolumeLoop");
1.119 +/*@}*/
1.120 +
1.121 +/*@{*/
1.122 +//Literals for iEnumChannels
1.123 +_LIT(KEMMFStereo, "EMMFStereo");
1.124 +_LIT(KEMMFMono, "EMMFMono");
1.125 +/*@}*/
1.126 +
1.127 +const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumChannels[] =
1.128 + {
1.129 + {KEMMFMono, EMMFMono},
1.130 + {KEMMFStereo, EMMFStereo}
1.131 + };
1.132 +
1.133 +/*@{*/
1.134 +//Literals for iEnumSampleRate
1.135 +_LIT(KEMMFSampleRate8000Hz, "EMMFSampleRate8000Hz");
1.136 +_LIT(KEMMFSampleRate11025Hz, "EMMFSampleRate11025Hz");
1.137 +_LIT(KEMMFSampleRate16000Hz, "EMMFSampleRate16000Hz");
1.138 +_LIT(KEMMFSampleRate22050Hz, "EMMFSampleRate22050Hz");
1.139 +_LIT(KEMMFSampleRate32000Hz, "EMMFSampleRate32000Hz");
1.140 +_LIT(KEMMFSampleRate44100Hz, "EMMFSampleRate44100Hz");
1.141 +_LIT(KEMMFSampleRate48000Hz, "EMMFSampleRate48000Hz");
1.142 +_LIT(KEMMFSampleRate88200Hz, "EMMFSampleRate88200Hz");
1.143 +_LIT(KEMMFSampleRate96000Hz, "EMMFSampleRate96000Hz");
1.144 +_LIT(KEMMFSampleRate12000Hz, "EMMFSampleRate12000Hz");
1.145 +_LIT(KEMMFSampleRate24000Hz, "EMMFSampleRate24000Hz");
1.146 +_LIT(KEMMFSampleRate64000Hz, "EMMFSampleRate64000Hz");
1.147 +/*@}*/
1.148 +
1.149 +const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumSampleRate[] =
1.150 + {
1.151 + {KEMMFSampleRate8000Hz, EMMFSampleRate8000Hz},
1.152 + {KEMMFSampleRate11025Hz, EMMFSampleRate11025Hz},
1.153 + {KEMMFSampleRate16000Hz, EMMFSampleRate16000Hz},
1.154 + {KEMMFSampleRate22050Hz, EMMFSampleRate22050Hz},
1.155 + {KEMMFSampleRate32000Hz, EMMFSampleRate32000Hz},
1.156 + {KEMMFSampleRate44100Hz, EMMFSampleRate44100Hz},
1.157 + {KEMMFSampleRate48000Hz, EMMFSampleRate48000Hz},
1.158 + {KEMMFSampleRate88200Hz, EMMFSampleRate88200Hz},
1.159 + {KEMMFSampleRate96000Hz, EMMFSampleRate96000Hz},
1.160 + {KEMMFSampleRate12000Hz, EMMFSampleRate12000Hz},
1.161 + {KEMMFSampleRate24000Hz, EMMFSampleRate24000Hz},
1.162 + {KEMMFSampleRate64000Hz, EMMFSampleRate64000Hz}
1.163 + };
1.164 +
1.165 +/*@{*/
1.166 +//Literal for iEnumMode
1.167 +_LIT(KEMMFStateIdle, "EMMFStateIdle");
1.168 +_LIT(KEMMFStatePlaying, "EMMFStatePlaying");
1.169 +_LIT(KEMMFStateTonePlaying, "EMMFStateTonePlaying");
1.170 +_LIT(KEMMFStateRecording, "EMMFStateRecording");
1.171 +_LIT(KEMMFStatePlayingRecording, "EMMFStatePlayingRecording");
1.172 +_LIT(KEMMFStateConverting, "EMMFStateConverting");
1.173 +/*@}*/
1.174 +
1.175 +const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumMode[] =
1.176 + {
1.177 + {KEMMFStateIdle, EMMFStateIdle},
1.178 + {KEMMFStatePlaying, EMMFStatePlaying},
1.179 + {KEMMFStateRecording, EMMFStateRecording},
1.180 + {KEMMFStateTonePlaying, EMMFStateTonePlaying},
1.181 + {KEMMFStatePlayingRecording, EMMFStatePlayingRecording},
1.182 + {KEMMFStateConverting, EMMFStateConverting}
1.183 + };
1.184 +
1.185 +/*@{*/
1.186 +//Literals for iEnumInitializeLType
1.187 +_LIT(KEInitializeState, "EInitializeState");
1.188 +_LIT(KEInitializeHwDeviceMode, "EInitializeHwDeviceMode");
1.189 +_LIT(KEInitializeFourCCMode, "EInitializeFourCCMode");
1.190 +/*@}*/
1.191 +
1.192 +enum TMMFInitializeMode
1.193 + {
1.194 + EInitializeState,
1.195 + EInitializeHwDeviceMode,
1.196 + EInitializeFourCCMode
1.197 + };
1.198 +
1.199 +const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumInitializeLType[] =
1.200 + {
1.201 + {KEInitializeState, EInitializeState},
1.202 + {KEInitializeHwDeviceMode, EInitializeHwDeviceMode},
1.203 + {KEInitializeFourCCMode, EInitializeFourCCMode}
1.204 + };
1.205 +
1.206 +/**
1.207 + * Two phase constructor
1.208 + *
1.209 + * @leave system wide error
1.210 + */
1.211 +CT_CMMFDevSoundData* CT_CMMFDevSoundData::NewL()
1.212 + {
1.213 + CT_CMMFDevSoundData* ret = new (ELeave) CT_CMMFDevSoundData();
1.214 + CleanupStack::PushL(ret);
1.215 + ret->ConstructL();
1.216 + CleanupStack::Pop(ret);
1.217 + return ret;
1.218 + }
1.219 +
1.220 +/**
1.221 + * Private constructor. First phase construction
1.222 + */
1.223 +CT_CMMFDevSoundData::CT_CMMFDevSoundData()
1.224 + :
1.225 + iDevSound(NULL),
1.226 + iPrioritySettings(),
1.227 + iCapabilities(),
1.228 + iVolumeValue(0),
1.229 + iGainValue(0),
1.230 + iLeftPercentage(0),
1.231 + iRightPercentage(0),
1.232 + iFs(),
1.233 + iToneFile(),
1.234 + iAudiofile(),
1.235 + iBuffer(NULL),
1.236 + iLastSample(0),
1.237 + iPaused(EFalse),
1.238 + iErrorConceal(EFalse),
1.239 + iEndFile(EFalse),
1.240 + iToneSequence(),
1.241 + iInitializeCompleteError(0),
1.242 + iToneFinishedError(0),
1.243 + iBufferToBeFilledError(0),
1.244 + iPlayErrorError(0),
1.245 + iBufferToBeEmptiedError(0),
1.246 + iRecordErrorError(0),
1.247 + iConvertErrorError(0),
1.248 + iDeviceMessageError(0),
1.249 + iUtilityFourCCToHwDeviceUidLError(0),
1.250 + iAsyncErrorIndex_initialize(0),
1.251 + iAsyncErrorIndex_play(0),
1.252 + iAsyncErrorIndex_record(0),
1.253 + iAsyncErrorIndex_tone(0)
1.254 +
1.255 + {
1.256 + }
1.257 +
1.258 +/**
1.259 + * Second phase construction
1.260 + * @internalComponent
1.261 + * @return N/A
1.262 + * @pre None
1.263 + * @post None
1.264 + * @leave system wide error
1.265 + */
1.266 +void CT_CMMFDevSoundData::ConstructL()
1.267 + {
1.268 + iFs.Connect();
1.269 + }
1.270 +
1.271 +/**
1.272 + * Public destructor
1.273 + */
1.274 +CT_CMMFDevSoundData::~CT_CMMFDevSoundData()
1.275 + {
1.276 + iFs.Close();
1.277 + DestroyData();
1.278 + }
1.279 +
1.280 +/**
1.281 + * Helper Destructor
1.282 + */
1.283 +void CT_CMMFDevSoundData::DestroyData()
1.284 + {
1.285 + INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DestroyData()"));
1.286 + if(iDevSound)
1.287 + {
1.288 + INFO_PRINTF1(_L("Delete DevSound object."));
1.289 + delete iDevSound;
1.290 + iDevSound = NULL;
1.291 + }
1.292 + INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DestroyData()"));
1.293 + }
1.294 +
1.295 +/**
1.296 + * Return a pointer to the object that the data wraps
1.297 + *
1.298 + * @return pointer to the object that the data wraps
1.299 + */
1.300 +TAny* CT_CMMFDevSoundData::GetObject()
1.301 + {
1.302 + return iDevSound;
1.303 + }
1.304 +
1.305 +/**
1.306 + * Process a command read from the Ini file
1.307 + * @param aCommand - The command to process
1.308 + * @param aSection - The section get from the *.ini file of the project T_Wlan
1.309 + * @param aAsyncErrorIndex - Command index dor async calls to returns errors to
1.310 + * @return TBool - ETrue if the command is process
1.311 + * @leave - system wide error
1.312 + */
1.313 +TBool CT_CMMFDevSoundData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
1.314 + {
1.315 + TBool ret = ETrue;
1.316 +
1.317 + if (aCommand == KCmdNewL)
1.318 + {
1.319 + DoCmdNewL();
1.320 + }
1.321 + else if(aCommand == KCmdNewLLoopL)
1.322 + {
1.323 + DoCmdNewLLoopL(aSection);
1.324 + }
1.325 + else if (aCommand == KCmdDestructor)
1.326 + {
1.327 + DoCmdDestructor();
1.328 + }
1.329 + else if (aCommand == KCmdUtilityReplaceFile)
1.330 + {
1.331 + DoCmdUtilityReplaceFile(aSection);
1.332 + }
1.333 + else if (aCommand == KCmdUtilityOpenFile)
1.334 + {
1.335 + DoCmdUtilityOpenFile(aSection);
1.336 + }
1.337 + else if (aCommand == KCmdUtilityCloseFile)
1.338 + {
1.339 + DoCmdUtilityCloseFile();
1.340 + }
1.341 + else if (aCommand == KCmdUtilityFileStartPosition)
1.342 + {
1.343 + DoCmdUtilityFileStartPosition();
1.344 + }
1.345 + else if (aCommand == KCmdCapabilities)
1.346 + {
1.347 + DoCmdCapabilities();
1.348 + }
1.349 + else if (aCommand == KCmdConfig)
1.350 + {
1.351 + DoCmdConfig();
1.352 + }
1.353 + else if (aCommand == KCmdMaxGain)
1.354 + {
1.355 + DoCmdMaxGain(aSection);
1.356 + }
1.357 + else if (aCommand == KCmdMaxVolume)
1.358 + {
1.359 + DoCmdMaxVolume(aSection);
1.360 + }
1.361 + else if (aCommand == KCmdGetPlayBalanceL)
1.362 + {
1.363 + DoCmdGetPlayBalanceL(aSection);
1.364 + }
1.365 + else if (aCommand == KCmdGetRecordBalanceL)
1.366 + {
1.367 + DoCmdGetRecordBalanceL(aSection);
1.368 + }
1.369 + else if (aCommand == KCmdGetSupportedInputDataTypesL)
1.370 + {
1.371 + DoCmdGetSupportedInputDataTypesL();
1.372 + }
1.373 + else if (aCommand == KCmdGetSupportedOutputDataTypesL)
1.374 + {
1.375 + DoCmdGetSupportedOutputDataTypesL();
1.376 + }
1.377 + else if (aCommand == KCmdSamplesPlayed)
1.378 + {
1.379 + DoCmdSamplesPlayed();
1.380 + }
1.381 + else if (aCommand == KCmdSamplesRecorded)
1.382 + {
1.383 + DoCmdSamplesRecorded();
1.384 + }
1.385 + else if (aCommand == KCmdVolume)
1.386 + {
1.387 + DoCmdVolume(aSection);
1.388 + }
1.389 + else if (aCommand == KCmdGain)
1.390 + {
1.391 + DoCmdGain(aSection);
1.392 + }
1.393 + else if (aCommand == KCmdFixedSequenceCount)
1.394 + {
1.395 + DoCmdFixedSequenceCount();
1.396 + }
1.397 + else if (aCommand == KCmdFixedSequenceName)
1.398 + {
1.399 + DoCmdFixedSequenceName(aSection);
1.400 + }
1.401 + else if (aCommand == KCmdSetConfigL)
1.402 + {
1.403 + DoCmdSetConfigL(aSection);
1.404 + }
1.405 + else if (aCommand == KCmdSetDTMFLengths)
1.406 + {
1.407 + DoCmdSetDTMFLengths(aSection);
1.408 + }
1.409 + else if (aCommand == KCmdSetGain)
1.410 + {
1.411 + DoCmdSetGain(aSection);
1.412 + }
1.413 + else if (aCommand == KCmdSetPlayBalanceL)
1.414 + {
1.415 + DoCmdSetPlayBalanceL(aSection);
1.416 + }
1.417 + else if (aCommand == KCmdSetPrioritySettings)
1.418 + {
1.419 + DoCmdSetPrioritySettings(aSection);
1.420 + }
1.421 + else if (aCommand == KCmdSetRecordBalanceL)
1.422 + {
1.423 + DoCmdSetRecordBalanceL(aSection);
1.424 + }
1.425 + else if (aCommand == KCmdSetToneRepeats)
1.426 + {
1.427 + DoCmdSetToneRepeats(aSection);
1.428 + }
1.429 + else if (aCommand == KCmdSetVolume)
1.430 + {
1.431 + DoCmdSetVolume(aSection);
1.432 + }
1.433 + else if (aCommand == KCmdSetVolumeLoop)
1.434 + {
1.435 + DoCmdSetVolumeLoop(aSection);
1.436 + }
1.437 + else if (aCommand == KCmdSetVolumeRamp)
1.438 + {
1.439 + DoCmdSetVolumeRamp(aSection);
1.440 + }
1.441 + else if (aCommand == KCmdInitializeL)
1.442 + {
1.443 + DoCmdInitializeL(aSection, aAsyncErrorIndex);
1.444 + }
1.445 + else if (aCommand == KCmdPlayDTMFStringL)
1.446 + {
1.447 + DoCmdPlayDTMFStringL(aSection, aAsyncErrorIndex);
1.448 + }
1.449 + else if (aCommand == KCmdPlayData)
1.450 + {
1.451 + DoCmdPlayData();
1.452 + }
1.453 + else if (aCommand == KCmdPlayDualToneL)
1.454 + {
1.455 + DoCmdPlayDualToneL(aSection);
1.456 + }
1.457 + else if (aCommand == KCmdPlayInitL)
1.458 + {
1.459 + DoCmdPlayInitL(aAsyncErrorIndex);
1.460 + }
1.461 + else if (aCommand == KCmdPlayToneL)
1.462 + {
1.463 + DoCmdPlayToneL(aSection, aAsyncErrorIndex);
1.464 + }
1.465 + else if (aCommand == KCmdPlayToneSequenceL)
1.466 + {
1.467 + DoCmdPlayToneSequenceL(aSection, aAsyncErrorIndex);
1.468 + }
1.469 + else if (aCommand == KCmdRecordData)
1.470 + {
1.471 + DoCmdRecordData();
1.472 + }
1.473 + else if (aCommand == KCmdRecordInitL)
1.474 + {
1.475 + DoCmdRecordInitL(aAsyncErrorIndex);
1.476 + }
1.477 + else if (aCommand == KCmdStop)
1.478 + {
1.479 + DoCmdStop(aSection);
1.480 + }
1.481 + else if(aCommand == KCmdErrorConceal)
1.482 + {
1.483 + DoCmdUtilityErrorConceal();
1.484 + }
1.485 + else
1.486 + {
1.487 + ERR_PRINTF1(_L("Unknown command."));
1.488 + ret=EFalse;
1.489 + }
1.490 + return ret;
1.491 + }
1.492 +
1.493 +/**
1.494 + * Handles initialization completion event.
1.495 + * CMMFDevSound object calls this function when its InitializeL() function
1.496 + * completes.
1.497 + * @param aError - Error code. KErrNone if successful. Other values are possible
1.498 + * indicating a problem initializing CMMFDevSound object.
1.499 + * @return void
1.500 + */
1.501 +
1.502 +void CT_CMMFDevSoundData::InitializeComplete(TInt aError)
1.503 + {
1.504 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::InitializeComplete"));
1.505 + if(KErrNone != aError)
1.506 + {
1.507 + ERR_PRINTF2(_L("InitializeComplete callback failed with error %d"), aError);
1.508 + SetAsyncError(iAsyncErrorIndex_initialize, aError);
1.509 + iAsyncErrorIndex_initialize = 0;
1.510 + }
1.511 + DecOutstanding();
1.512 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::InitializeComplete"));
1.513 + }
1.514 +
1.515 +/**
1.516 + * It's needed for playing o converting
1.517 + * @param aBuffer - Buffer into which data should be read. The amount of data that is
1.518 + * needed is specified in CMMFBuffer::RequestSize().
1.519 + */
1.520 +void CT_CMMFDevSoundData::BufferToBeFilled(CMMFBuffer* aBuffer)
1.521 + {
1.522 + if (!aBuffer)
1.523 + {
1.524 + ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
1.525 + SetBlockResult(EFail);
1.526 + }
1.527 + else
1.528 + {
1.529 + TBool dataOk = ETrue;
1.530 + iBuffer = aBuffer;
1.531 + iBuffer->SetLastBuffer(EFalse);
1.532 + CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1.533 + if (iPaused)
1.534 + {
1.535 + iPaused=EFalse;
1.536 + TInt error = iAudiofile.Read(iLastSample,buffer->Data());
1.537 + if (error != KErrNone)
1.538 + {
1.539 + ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), error);
1.540 + SetBlockResult(EFail);
1.541 + dataOk = EFalse;
1.542 + }
1.543 + }
1.544 + else
1.545 + {
1.546 + TInt error = iAudiofile.Read(buffer->Data());
1.547 + if (error != KErrNone)
1.548 + {
1.549 + ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), error);
1.550 + SetBlockResult(EFail);
1.551 + dataOk =EFalse;
1.552 + }
1.553 + }
1.554 + if(dataOk)
1.555 + {
1.556 + if (buffer->Data().Length() != buffer->RequestSize())
1.557 + {
1.558 + iBuffer->SetLastBuffer(ETrue);
1.559 + }
1.560 + if (iErrorConceal)
1.561 + {
1.562 + iErrorConceal=EFalse;
1.563 + buffer->Data().Zero();
1.564 + INFO_PRINTF1(_L("buffer->Data().Zero()"));
1.565 + }
1.566 + PlayData();
1.567 + TInt pos=0;
1.568 + iLastSample=iAudiofile.Seek(ESeekCurrent ,pos);
1.569 + INFO_PRINTF2(_L("Number of samples played so far: %d"), pos);
1.570 + iLastSample=pos;
1.571 + }
1.572 + }
1.573 + }
1.574 +
1.575 +/**
1.576 +* Handles play completion or cancel event.
1.577 +*
1.578 +* CMMFDevSound object calls this function when an attempt to play audio sample
1.579 +* has completed, successfully or otherwise.
1.580 +*
1.581 +* @param aError - Error code. The status of playback. KErrUnderflow playing of the
1.582 +* audio sample is complete. KErrAccessDenied the sound device is in
1.583 +* use by another higher priority client.
1.584 +*/
1.585 +void CT_CMMFDevSoundData::PlayError(TInt aError)
1.586 + {
1.587 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::PlayError"));
1.588 + if (aError == KErrUnderflow)
1.589 + {
1.590 + ERR_PRINTF2(_L("Playback completed normally with error %d"), aError);
1.591 + //iAudiofile.Close();
1.592 + }
1.593 + else
1.594 + {
1.595 + ERR_PRINTF2(_L("Playback completed with error %d"), aError);
1.596 + SetAsyncError(iAsyncErrorIndex_play,aError);
1.597 + iAsyncErrorIndex_play = 0;
1.598 + }
1.599 + DecOutstanding();
1.600 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::PlayError"));
1.601 + }
1.602 +
1.603 +
1.604 +/**
1.605 + * Handles tone play completion event.
1.606 + *
1.607 + *
1.608 + * CMMFDevSound object calls this function when an attempt to play tone has
1.609 + * completed, successfully or otherwise.
1.610 + *
1.611 + * The following are the play tone functions; PlayToneL(), PlayDMTFStringL(),
1.612 + * PlayToneSequenceL(), and PlayFixedSequenceL().
1.613 + *
1.614 + * @param aError - Error code. The status of tone playback. KErrUnderflow playing of
1.615 + * the tone is complete. KErrAccessDenied the sound device is in use by
1.616 + * another higher priority client. KErrCancel playing of the audio
1.617 + * sample is stopped by DevSound client another higher priority client.
1.618 + *
1.619 + */
1.620 +
1.621 +void CT_CMMFDevSoundData::ToneFinished(TInt aError)
1.622 + {
1.623 + ERR_PRINTF1(_L("*START*CT_CMMFDevSoundData::ToneFinished"));
1.624 +
1.625 + if (aError == KErrUnderflow)
1.626 + {
1.627 + ERR_PRINTF2(_L("Tone finished normally with error = %d"), aError);
1.628 + }
1.629 + else
1.630 + {
1.631 + ERR_PRINTF2(_L("Tone finished with error %d"), aError);
1.632 + SetAsyncError(iAsyncErrorIndex_tone, aError);
1.633 + iAsyncErrorIndex_tone = 0;
1.634 + }
1.635 + DecOutstanding();
1.636 + iToneFile.Close();
1.637 + ERR_PRINTF1(_L("*END*CT_CMMFDevSoundData::ToneFinished"));
1.638 + }
1.639 +
1.640 +/**
1.641 + * Handles CMMFDevSound object's data request event.
1.642 + *
1.643 + * CMMFDevSound object calls this function when the buffer, aBuffer gets filled
1.644 + * while recording or converting. The observer should notify CMMFDevSound
1.645 + * object as quickly as possible after data in the buffer is processed by
1.646 + * calling RecordData(), otherwise the implementation might callback
1.647 + * the function RecordError() on derived class object with error code KErrOverflow.
1.648 + *
1.649 + * @param aBuffer - Buffer containing processed (recorded or converted) data. The amount
1.650 + * of data that is available is specified in CMMFBuffer::RequestSize().
1.651 + */
1.652 +
1.653 +void CT_CMMFDevSoundData::BufferToBeEmptied(CMMFBuffer* aBuffer)
1.654 + {
1.655 + if (!aBuffer)
1.656 + {
1.657 + INFO_PRINTF1(_L("BufferToBeEmptied callback received a NULL CMMFBuffer"));
1.658 + SetBlockResult(EFail);
1.659 + }
1.660 + else
1.661 + {
1.662 + iBuffer = aBuffer;
1.663 + CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1.664 + TInt error = iAudiofile.Write(buffer->Data());
1.665 + if(error == KErrNone)
1.666 + {
1.667 + if (!aBuffer->LastBuffer())
1.668 + {
1.669 + RecordData();
1.670 + }
1.671 + else{
1.672 + Stop();
1.673 + }
1.674 + }
1.675 + else
1.676 + {
1.677 + ERR_PRINTF2(_L("iFile.Write() returned the error %d"), error);
1.678 + SetBlockResult(EFail);
1.679 + }
1.680 + }
1.681 + }
1.682 +
1.683 +/**
1.684 + * Stops the ongoing operation (Play, Record, TonePlay, Convert).
1.685 + * This function should be synchronous and invoke no callbacks through MDevSoundObserver.
1.686 + */
1.687 +void CT_CMMFDevSoundData::Stop()
1.688 + {
1.689 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::Stop()"));
1.690 + iDevSound->Stop();
1.691 +
1.692 + DecOutstanding();
1.693 +
1.694 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::Stop()"));
1.695 + }
1.696 +
1.697 +/**
1.698 + * Handles record completion or cancel event.
1.699 + *
1.700 + * CMMFDevSound object calls this function when an attempt to record audio sample
1.701 + * has completed, successfully or otherwise.
1.702 + *
1.703 + * @param aError - Error code. The status of recording. KErrOverflow audio devices
1.704 + * runs out of internal buffer. KErrAccessDenied the sound device is
1.705 + * in use by another higher priority client.
1.706 + *
1.707 + */
1.708 +
1.709 +void CT_CMMFDevSoundData::RecordError(TInt aError)
1.710 + {
1.711 + ERR_PRINTF1(_L("*START*CT_CMMFDevSoundData::RecordError"));
1.712 + ERR_PRINTF2(_L("RecordError callback returned error = %d"), aError);
1.713 + SetAsyncError(iAsyncErrorIndex_record, aError);
1.714 + iAsyncErrorIndex_record = 0;
1.715 + //iAudiofile.Close();
1.716 + ERR_PRINTF1(_L("*END*CT_CMMFDevSoundData::RecordError"));
1.717 + }
1.718 +
1.719 +
1.720 +/**
1.721 + * Handles conversion completion or cancel event.
1.722 + *
1.723 + * CMMFDevSound object calls this function when an attempt to convert data from
1.724 + * source format to destination format has completed, successfully or otherwise.
1.725 + *
1.726 + * @param aError - Error code. KErrCancel conversion operation is cancelled. KErrNone
1.727 + * conversion is complete. Other values are possible indicating a
1.728 + * problem converting data.
1.729 + */
1.730 +
1.731 +void CT_CMMFDevSoundData::ConvertError(TInt aError)
1.732 + {
1.733 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::ConvertError"));
1.734 + ERR_PRINTF1(_L("Invalid Callback call"));
1.735 + if (aError == KErrNone)
1.736 + {
1.737 + INFO_PRINTF1(_L("Data conversion completed successfully."));
1.738 + }
1.739 + if (aError == KErrCancel)
1.740 + {
1.741 + INFO_PRINTF1(_L("Data conversion operation was cancelled."));
1.742 + }
1.743 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::ConvertError"));
1.744 + }
1.745 +
1.746 +/**
1.747 + * Handles device event.
1.748 + *
1.749 + * CMMFDevSound object calls this function when a message is received from the
1.750 + * audio hardware device.
1.751 + *
1.752 + * @param aMessageType - Defines the type of message. Used to determine how to
1.753 + * interpret the contents of aMsg.
1.754 + * @param aMsg - Message that is packed in the Descriptor format.
1.755 + */
1.756 +
1.757 +
1.758 +void CT_CMMFDevSoundData::DeviceMessage(TUid aMessageType, const TDesC8& aMsg)
1.759 + {
1.760 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DeviceMessage"));
1.761 + INFO_PRINTF2(_L("Message type: %d"), aMessageType.iUid);
1.762 + INFO_PRINTF2(_L("Message type: %S"), &aMsg);
1.763 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DeviceMessage"));
1.764 + }
1.765 +
1.766 +
1.767 +/**
1.768 + * Create a new or Replace the existing file
1.769 + *
1.770 + */
1.771 +void CT_CMMFDevSoundData::DoCmdUtilityReplaceFile(const TTEFSectionName& aSection)
1.772 + {
1.773 + INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityReplaceFile()"));
1.774 + TPtrC fileName;
1.775 + TBool dataOk = ETrue;
1.776 + if (!GetStringFromConfig(aSection, KFilename, fileName))
1.777 + {
1.778 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFilename);
1.779 + SetBlockResult(EFail);
1.780 + dataOk =EFalse;
1.781 + }
1.782 + if(dataOk)
1.783 + {
1.784 + TInt error = iAudiofile.Replace(iFs, fileName, EFileRead);
1.785 + if (error != KErrNone)
1.786 + {
1.787 + ERR_PRINTF2(_L("Could not open input file. Error = %d"), error);
1.788 + SetError(error);
1.789 + }
1.790 + }
1.791 +
1.792 + INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityReplaceFile()"));
1.793 + }
1.794 +
1.795 +/**
1.796 + * Open a file
1.797 + */
1.798 +void CT_CMMFDevSoundData::DoCmdUtilityOpenFile(const TTEFSectionName& aSection)
1.799 + {
1.800 +
1.801 + INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityOpenFile()"));
1.802 + TPtrC fileName;
1.803 + TBool dataOk = ETrue;
1.804 + if (!GetStringFromConfig(aSection, KFilename, fileName))
1.805 + {
1.806 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFilename);
1.807 + SetBlockResult(EFail);
1.808 + dataOk =EFalse;
1.809 + }
1.810 + if(dataOk)
1.811 + {
1.812 + TInt error = iAudiofile.Open(iFs, fileName, EFileRead);
1.813 + if (error != KErrNone)
1.814 + {
1.815 + ERR_PRINTF2(_L("Could not open input file. Error = %d"), error);
1.816 + iFs.Close();
1.817 + SetError(error);
1.818 + }
1.819 + }
1.820 + INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityOpenFile()"));
1.821 + }
1.822 +
1.823 +/**
1.824 + * Close the opened file
1.825 + */
1.826 +void CT_CMMFDevSoundData::DoCmdUtilityCloseFile()
1.827 + {
1.828 + INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityCloseFile()"));
1.829 + iAudiofile.Close();
1.830 + INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityCloseFile()"));
1.831 + }
1.832 +
1.833 +/**
1.834 + * Place the the pointer file at the begining
1.835 + *
1.836 + */
1.837 +void CT_CMMFDevSoundData::DoCmdUtilityFileStartPosition()
1.838 + {
1.839 + INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityFileStartPosition()"));
1.840 + TInt filePosition(0);
1.841 + TBool dataOk = ETrue;
1.842 + TInt error = iAudiofile.Seek(ESeekStart, filePosition);
1.843 + if (error != KErrNone)
1.844 + {
1.845 + ERR_PRINTF2(_L("Could not set file to the start position. Error = %d"), error);
1.846 + SetError(error);
1.847 + dataOk =EFalse;
1.848 + }
1.849 + if(dataOk)
1.850 + {
1.851 + INFO_PRINTF2(_L("File Position: %d"), filePosition);
1.852 + }
1.853 + INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityFileStartPosition()"));
1.854 + }
1.855 +
1.856 +/**
1.857 + * Creates "n" instance of CMMFDevSound
1.858 + * @param aSection - Section to read from the ini file
1.859 + * @return void
1.860 + */
1.861 +void CT_CMMFDevSoundData::DoCmdNewLLoopL(const TTEFSectionName&aSection)
1.862 + {
1.863 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdNewLLoopL"));
1.864 + CMMFDevSound* devSound = NULL;
1.865 + TBool dataOk = ETrue;
1.866 + TInt loop;
1.867 + if (!GetIntFromConfig(aSection, KLoop, loop))
1.868 + {
1.869 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KLoop);
1.870 + SetBlockResult(EFail);
1.871 + dataOk = EFalse;
1.872 + }
1.873 + TInt allowedError;
1.874 + if ( !GetIntFromConfig(aSection, KAllowedError, allowedError) )
1.875 + {
1.876 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KAllowedError);
1.877 + SetBlockResult(EFail);
1.878 + dataOk = EFalse;
1.879 + }
1.880 + if(dataOk)
1.881 + {
1.882 + for(TInt i=0; i<loop; i++)
1.883 + {
1.884 + TRAPD(error,devSound = CMMFDevSound::NewL());
1.885 + if(error == KErrNone)
1.886 + {
1.887 + INFO_PRINTF2(_L("Instance %d of DevSound was created"),i);
1.888 + CleanupStack::PushL(devSound);
1.889 + iObjectsDevSound.AppendL(devSound);
1.890 + CleanupStack::Pop(devSound);
1.891 + }
1.892 + else if(error == allowedError)
1.893 + {
1.894 + INFO_PRINTF2(_L(" Allowing Error: %d"), error);
1.895 + ERR_PRINTF2(_L(" Could not create CMMFDevSound due to error: %d"), error);
1.896 + i = loop;
1.897 + }
1.898 + else if((error != KErrNone) && (error!=allowedError))
1.899 + {
1.900 + ERR_PRINTF2(_L("> Could not create CMMFDevSound: %d"), error);
1.901 + SetError(error);
1.902 + }
1.903 + }
1.904 + iObjectsDevSound.ResetAndDestroy();
1.905 + INFO_PRINTF2(_L("%d DevSound instances were deleted"),loop);
1.906 + }
1.907 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdNewLLoopL"));
1.908 + }
1.909 +
1.910 +
1.911 +/**
1.912 + * Create an instance of CMMFDevSound
1.913 + */
1.914 +void CT_CMMFDevSoundData::DoCmdNewL()
1.915 + {
1.916 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdNewL"));
1.917 + DestroyData();
1.918 + TRAPD(error,iDevSound = CMMFDevSound::NewL());
1.919 + if(error!= KErrNone)
1.920 + {
1.921 + ERR_PRINTF2(_L("> Could not create CMMFDevSound: %d"), error);
1.922 + SetError(error);
1.923 + }
1.924 + else
1.925 + {
1.926 + iPaused= EFalse;
1.927 + iErrorConceal = EFalse;
1.928 + }
1.929 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdNewL"));
1.930 + }
1.931 +/**
1.932 + * Destroy an instance of CMMFDevSound
1.933 + */
1.934 +
1.935 +void CT_CMMFDevSoundData::DoCmdDestructor()
1.936 + {
1.937 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdDestroyData"));
1.938 + DestroyData();
1.939 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdDestroyData"));
1.940 + }
1.941 +
1.942 +/**
1.943 + * Show the supported Audio settings ie. encoding, sample rates, mono/stereo operation, buffer
1.944 + * size, etc.
1.945 + * @param none
1.946 + * @return none
1.947 + */
1.948 +void CT_CMMFDevSoundData::DoCmdCapabilities()
1.949 + {
1.950 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdCapabilities"));
1.951 + iCapabilities = iDevSound->Capabilities();
1.952 + INFO_PRINTF5(_L("Supported Audio settings: buffsize=%d, channels=0x%x, encoding=0x%x and rate=0x%x"),
1.953 + iCapabilities.iBufferSize,
1.954 + iCapabilities.iChannels,
1.955 + iCapabilities.iEncoding,
1.956 + iCapabilities.iRate);
1.957 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdCapabilities"));
1.958 + }
1.959 +
1.960 +
1.961 +/**
1.962 + * Shows the current device configuration.
1.963 + * @params none
1.964 + * @return none
1.965 + */
1.966 +void CT_CMMFDevSoundData::DoCmdConfig()
1.967 + {
1.968 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdConfig"));
1.969 + TMMFCapabilities currentConfiguration = iDevSound->Config();
1.970 + INFO_PRINTF5(_L("Current device configuration: buffsize=%d, channels=0x%x, encoding=0x%x and rate=0x%x"),
1.971 + currentConfiguration.iBufferSize,
1.972 + currentConfiguration.iChannels,
1.973 + currentConfiguration.iEncoding,
1.974 + currentConfiguration.iRate);
1.975 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdConfig"));
1.976 + }
1.977 +
1.978 +
1.979 +/**
1.980 + * Shows an integer representing the maximum gain the device supports.
1.981 + * This is the maximum value which can be passed to CMMFDevSound::SetGain.
1.982 + * @param aSection - The section to read the params from the ini file
1.983 + * @return none
1.984 + */
1.985 +
1.986 +void CT_CMMFDevSoundData::DoCmdMaxGain(const TTEFSectionName& aSection)
1.987 + {
1.988 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdMaxGain"));
1.989 + TBool dataOk = ETrue;
1.990 + TInt expectedGainValue;
1.991 + if (!GetIntFromConfig(aSection, KGainValue, expectedGainValue))
1.992 + {
1.993 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KGainValue);
1.994 + SetBlockResult(EFail);
1.995 + dataOk = EFalse;
1.996 + }
1.997 + if(dataOk)
1.998 + {
1.999 + iGainValue = iDevSound->MaxGain();
1.1000 + INFO_PRINTF2(_L("Retrieved maximum gain value: %d"), iGainValue);
1.1001 + if (expectedGainValue != iGainValue)
1.1002 + {
1.1003 + ERR_PRINTF3(_L("Expected gain value %d is different from retrieved gain value %d"), expectedGainValue, iGainValue);
1.1004 + SetBlockResult(EFail);
1.1005 + }
1.1006 + }
1.1007 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdMaxGain"));
1.1008 + }
1.1009 +
1.1010 +/**
1.1011 + * Shows an integer representing the maximum volume device supports.
1.1012 + * This is the maximum value which can be passed to CMMFDevSound::SetVolume.
1.1013 + * @param aSection - Section to read params from the ini file
1.1014 + * @return none
1.1015 + */
1.1016 +
1.1017 +void CT_CMMFDevSoundData::DoCmdMaxVolume(const TTEFSectionName& aSection)
1.1018 + {
1.1019 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdMaxVolume"));
1.1020 + TBool dataOk = ETrue;
1.1021 + TInt expectedVolumeValue;
1.1022 + if(!GetIntFromConfig(aSection, KVolumeValue, expectedVolumeValue))
1.1023 + {
1.1024 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeValue);
1.1025 + SetBlockResult(EFail);
1.1026 + dataOk = EFalse;
1.1027 + }
1.1028 + if(dataOk)
1.1029 + {
1.1030 + iVolumeValue = iDevSound->MaxVolume();
1.1031 + INFO_PRINTF2(_L("Retrieved maximum volume value: %d"), iVolumeValue);
1.1032 + if(expectedVolumeValue != iVolumeValue)
1.1033 + {
1.1034 + ERR_PRINTF3(_L("Expected volume value %d is different from retrieved volume value %d"), expectedVolumeValue, iVolumeValue);
1.1035 + SetBlockResult(EFail);
1.1036 + }
1.1037 + }
1.1038 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdMaxVolume"));
1.1039 + }
1.1040 +
1.1041 +/**
1.1042 + * Shows the speaker balance set for playing.
1.1043 + * @param aSection - Section to read params from the ini file
1.1044 + * @return none
1.1045 + */
1.1046 +
1.1047 +void CT_CMMFDevSoundData::DoCmdGetPlayBalanceL(const TTEFSectionName& aSection)
1.1048 + {
1.1049 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetPlayBalanceL"));
1.1050 + TBool dataOk = ETrue;
1.1051 + TInt expectedLeftPercentage;
1.1052 + if (!GetIntFromConfig(aSection, KLeftPercentage, expectedLeftPercentage))
1.1053 + {
1.1054 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KLeftPercentage);
1.1055 + SetBlockResult(EFail);
1.1056 + dataOk = EFalse;
1.1057 + }
1.1058 + TInt expectedRightPercentage;
1.1059 + if (!GetIntFromConfig(aSection, KRightPercentage, expectedRightPercentage))
1.1060 + {
1.1061 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRightPercentage);
1.1062 + SetBlockResult(EFail);
1.1063 + dataOk = EFalse;
1.1064 + }
1.1065 + if(dataOk)
1.1066 + {
1.1067 + TRAPD(error, iDevSound->GetPlayBalanceL(iLeftPercentage, iRightPercentage));
1.1068 + if (error != KErrNone)
1.1069 + {
1.1070 + ERR_PRINTF2(_L("GetPlayBalanceL left with error %d"), error);
1.1071 + SetError(error);
1.1072 + }
1.1073 + else
1.1074 + {
1.1075 + INFO_PRINTF3(_L("> Retrieved play balance values are left: %d, right:%d"), iLeftPercentage, iRightPercentage);
1.1076 + if (expectedLeftPercentage !=iLeftPercentage)
1.1077 + {
1.1078 + ERR_PRINTF3(_L("Expected left percentage value %d is different from retrieved value %d"), expectedLeftPercentage, iLeftPercentage);
1.1079 + SetBlockResult(EFail);
1.1080 + }
1.1081 + if (expectedRightPercentage !=iRightPercentage)
1.1082 + {
1.1083 + ERR_PRINTF3(_L("Expected right percentage value %d is different from retrieved value %d"), expectedRightPercentage, iRightPercentage);
1.1084 + SetBlockResult(EFail);
1.1085 + }
1.1086 + }
1.1087 + }
1.1088 +
1.1089 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetPlayBalanceL"));
1.1090 + }
1.1091 +
1.1092 +
1.1093 +/**
1.1094 + * Shows the microphone gain balance set for recording.
1.1095 + * @param aSection - Section to read params from the ini file
1.1096 + * @return none
1.1097 + */
1.1098 +void CT_CMMFDevSoundData::DoCmdGetRecordBalanceL(const TTEFSectionName& aSection)
1.1099 + {
1.1100 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetRecordBalanceL"));
1.1101 + TBool dataOk = ETrue;
1.1102 + TInt expectedLeftPercentage;
1.1103 + if(!GetIntFromConfig(aSection, KLeftPercentage, expectedLeftPercentage))
1.1104 + {
1.1105 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KLeftPercentage);
1.1106 + SetBlockResult(EFail);
1.1107 + dataOk = EFalse;
1.1108 + }
1.1109 + TInt expectedRightPercentage;
1.1110 + if(!GetIntFromConfig(aSection, KRightPercentage, expectedRightPercentage))
1.1111 + {
1.1112 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRightPercentage);
1.1113 + SetBlockResult(EFail);
1.1114 + dataOk = EFalse;
1.1115 + }
1.1116 + if(dataOk)
1.1117 + {
1.1118 + TRAPD(error, iDevSound->GetRecordBalanceL(iLeftPercentage, iRightPercentage));
1.1119 + if (error != KErrNone)
1.1120 + {
1.1121 + ERR_PRINTF2(_L("GetRecordBalanceL left with error %d"), error);
1.1122 + SetError(error);
1.1123 + }
1.1124 + else
1.1125 + {
1.1126 + INFO_PRINTF3(_L("> Retrieved record balance values are left: %d, right:%d"), iLeftPercentage, iRightPercentage);
1.1127 + if(expectedLeftPercentage !=iLeftPercentage)
1.1128 + {
1.1129 + ERR_PRINTF3(_L("Expected left percentage value %d is different from retrieved value %d"), expectedLeftPercentage, iLeftPercentage);
1.1130 + SetBlockResult(EFail);
1.1131 + }
1.1132 + if(expectedRightPercentage !=iRightPercentage)
1.1133 + {
1.1134 + ERR_PRINTF3(_L("Expected right ercentage value %d is different from retrieved value %d"), expectedRightPercentage, iRightPercentage);
1.1135 + SetBlockResult(EFail);
1.1136 + }
1.1137 + }
1.1138 +
1.1139 + }
1.1140 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetRecordBalanceL"));
1.1141 + }
1.1142 +
1.1143 +/**
1.1144 + * Shows a list of the supported input datatypes that can be sent to DevSound for playing audio.
1.1145 + * The datatypes returned are those that the DevSound supports given the priority settings passed
1.1146 + * in aPrioritySettings.
1.1147 + * @params none
1.1148 + * @return none
1.1149 + */
1.1150 +void CT_CMMFDevSoundData::DoCmdGetSupportedInputDataTypesL()
1.1151 + {
1.1152 + TUid outputUid= {0x0};
1.1153 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetSupportedInputDataTypesL"));
1.1154 + RArray< TFourCC > supportedDataTypes;
1.1155 + TRAPD(error, iDevSound->GetSupportedInputDataTypesL(supportedDataTypes, iPrioritySettings));
1.1156 + if (error != KErrNone)
1.1157 + {
1.1158 + ERR_PRINTF2(_L("GetSupportedInputDataTypesL left with error %d"), error);
1.1159 + SetError(error);
1.1160 + }
1.1161 + else
1.1162 + {
1.1163 + INFO_PRINTF1(_L("List of the supported input datatypes that can be sent to DevSound for playing audio."));
1.1164 + for (TInt i=0; i<supportedDataTypes.Count(); i++)
1.1165 + {
1.1166 + TFourCC fourCC = supportedDataTypes[i];
1.1167 + TBuf<4> name;
1.1168 + for(TInt j=0; j<= KFourCCMaxBitDisplacement; j+=K8Bits)
1.1169 + {
1.1170 + name.Append((TUint8)(fourCC.FourCC() >> j));
1.1171 + }
1.1172 + INFO_PRINTF3(_L("Supported Input Data types: 0x%x %S "), fourCC.FourCC(), &name);
1.1173 + UtilityFourCCToHwDeviceUidL(name,EDecoder, outputUid);
1.1174 + if(outputUid.iUid != 0)
1.1175 + {
1.1176 + INFO_PRINTF3(_L("\nHwDevice Uid=0x%08x for %S"),outputUid.iUid,&name);
1.1177 + }
1.1178 + else
1.1179 + {
1.1180 + INFO_PRINTF1(_L("Not Found"));
1.1181 + }
1.1182 + }
1.1183 + supportedDataTypes.Reset();
1.1184 + }
1.1185 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetSupportedInputDataTypesL"));
1.1186 + }
1.1187 +
1.1188 +/**
1.1189 + * Shows a list of the supported output dataypes that can be received from DevSound for
1.1190 + * recording audio. The datatypes returned are those that the DevSound supports given the priority
1.1191 + * settings passed in aPrioritySettings.
1.1192 + * @param none
1.1193 + * @return none
1.1194 + */
1.1195 +void CT_CMMFDevSoundData::DoCmdGetSupportedOutputDataTypesL()
1.1196 + {
1.1197 + TUid outputUid= {0x0};
1.1198 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetSupportedOutputDataTypesL"));
1.1199 + RArray< TFourCC > supportedDataTypes;
1.1200 + TRAPD(error, iDevSound->GetSupportedOutputDataTypesL(supportedDataTypes, iPrioritySettings));
1.1201 + if (error != KErrNone)
1.1202 + {
1.1203 + ERR_PRINTF2(_L("GetSupportedOutputDataTypesL left with error %d"), error);
1.1204 + SetError(error);
1.1205 + }
1.1206 + else
1.1207 + {
1.1208 + INFO_PRINTF1(_L("List of the supported output dataypes that can be received from DevSound for recording audio."));
1.1209 + for (TInt i=0; i<supportedDataTypes.Count(); i++)
1.1210 + {
1.1211 + TFourCC fourCC = supportedDataTypes[i];
1.1212 + TBuf<4> name;
1.1213 + for(TInt j=0; j<=KFourCCMaxBitDisplacement; j+=K8Bits)
1.1214 + {
1.1215 + name.Append((TUint8)(fourCC.FourCC() >> j));
1.1216 + }
1.1217 + INFO_PRINTF3(_L("Supported Output Data types: 0x%x %S "), fourCC.FourCC(), &name);
1.1218 + UtilityFourCCToHwDeviceUidL(name, EEncoder, outputUid);
1.1219 + if(outputUid.iUid != 0)
1.1220 + {
1.1221 + INFO_PRINTF3(_L("\nHwDevice Uid=0x%08x for %S"),outputUid.iUid,&name);
1.1222 + }
1.1223 + else
1.1224 + {
1.1225 + INFO_PRINTF1(_L("Not Found"));
1.1226 + }
1.1227 + }
1.1228 + supportedDataTypes.Reset();
1.1229 + }
1.1230 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetSupportedOutputDataTypesL"));
1.1231 + }
1.1232 +
1.1233 +/**
1.1234 + * Shows the number of samples played
1.1235 + * @param none
1.1236 + * @return none
1.1237 + */
1.1238 +void CT_CMMFDevSoundData::DoCmdSamplesPlayed()
1.1239 + {
1.1240 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSamplesPlayed"));
1.1241 + INFO_PRINTF2(_L("Number of samples played so far: %d"),iDevSound->SamplesPlayed());
1.1242 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSamplesPlayed"));
1.1243 + }
1.1244 +
1.1245 +/**
1.1246 + * Shows the number of samples recorded
1.1247 + * @param none
1.1248 + * @return none
1.1249 + */
1.1250 +void CT_CMMFDevSoundData::DoCmdSamplesRecorded()
1.1251 + {
1.1252 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSamplesRecorded"));
1.1253 + INFO_PRINTF2(_L("Number of samples recorded so far: %d"), iDevSound->SamplesRecorded());
1.1254 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSamplesRecorded"));
1.1255 + }
1.1256 +
1.1257 +/**
1.1258 + * Shows an integer representing the current volume.
1.1259 + * @param aSection - Section to read param from the ini file
1.1260 + * @return none
1.1261 + */
1.1262 +void CT_CMMFDevSoundData::DoCmdVolume(const TTEFSectionName& aSection)
1.1263 + {
1.1264 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdVolume"));
1.1265 + TBool dataOk = ETrue;
1.1266 + TInt expectedVolumeValue;
1.1267 + if(!GetIntFromConfig(aSection, KVolumeValue, expectedVolumeValue))
1.1268 + {
1.1269 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeValue);
1.1270 + SetBlockResult(EFail);
1.1271 + dataOk = EFalse;
1.1272 + }
1.1273 + if(dataOk)
1.1274 + {
1.1275 + iVolumeValue = iDevSound->Volume();
1.1276 + INFO_PRINTF2(_L("Retrieved volume value: %d"), iVolumeValue);
1.1277 + if(expectedVolumeValue != iVolumeValue)
1.1278 + {
1.1279 + ERR_PRINTF3(_L("Expected volume value %d is different from retrieved volume value %d"), expectedVolumeValue, iVolumeValue);
1.1280 + SetBlockResult(EFail);
1.1281 + }
1.1282 + }
1.1283 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdVolume"));
1.1284 + }
1.1285 +
1.1286 +/**
1.1287 + * Shows an integer representing the current gain.
1.1288 + * @param aSection - Section to read param from the ini file
1.1289 + * @return none
1.1290 + */
1.1291 +void CT_CMMFDevSoundData::DoCmdGain(const TTEFSectionName& aSection)
1.1292 + {
1.1293 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGain"));
1.1294 + TBool dataOk = ETrue;
1.1295 + TInt expectedGainValue;
1.1296 + if(!GetIntFromConfig(aSection, KGainValue, expectedGainValue))
1.1297 + {
1.1298 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KGainValue);
1.1299 + SetBlockResult(EFail);
1.1300 + dataOk = EFalse;
1.1301 + }
1.1302 + if(dataOk)
1.1303 + {
1.1304 + iGainValue = iDevSound->Gain();
1.1305 + INFO_PRINTF2(_L("Retrieved gain value: %d"), iGainValue);
1.1306 + if(expectedGainValue != iGainValue)
1.1307 + {
1.1308 + ERR_PRINTF3(_L("Expected gain value %d is different from retrieved gain value %d"), expectedGainValue, iGainValue);
1.1309 + SetBlockResult(EFail);
1.1310 + }
1.1311 + }
1.1312 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGain"));
1.1313 + }
1.1314 +
1.1315 +/**
1.1316 + * Shows the number of available pre-defined tone sequences
1.1317 + * @param none
1.1318 + * @return none
1.1319 + */
1.1320 +void CT_CMMFDevSoundData::DoCmdFixedSequenceCount()
1.1321 + {
1.1322 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdFixedSequenceCount"));
1.1323 + INFO_PRINTF2(_L("Number of available pre-defined tone sequences: %d"), iDevSound->FixedSequenceCount());
1.1324 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdFixedSequenceCount"));
1.1325 + }
1.1326 +
1.1327 +/**
1.1328 + * Shows the name assigned to a specific pre-defined tone sequence.
1.1329 + * This is the number of the fixed sequence supported by DevSound by default.
1.1330 + * @param aSection - Section to read params from the ini file
1.1331 + * @return none
1.1332 + */
1.1333 +void CT_CMMFDevSoundData::DoCmdFixedSequenceName(const TTEFSectionName& aSection)
1.1334 + {
1.1335 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdFixedSequenceName"));
1.1336 + TBool dataOk =ETrue;
1.1337 + TInt sequenceNumber;
1.1338 + if(!GetIntFromConfig(aSection, KSequenceNumber, sequenceNumber))
1.1339 + {
1.1340 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KSequenceNumber);
1.1341 + SetBlockResult(EFail);
1.1342 + dataOk =EFalse;
1.1343 + }
1.1344 + if(dataOk)
1.1345 + {
1.1346 + INFO_PRINTF2(_L("Name assigned to a specific pre-defined tone sequence returned: %S"),
1.1347 + &iDevSound->FixedSequenceName(sequenceNumber));
1.1348 + }
1.1349 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdFixedSequenceName"));
1.1350 + }
1.1351 +
1.1352 +
1.1353 +/**
1.1354 + * Configure CMMFDevSound object with the settings in aConfig.
1.1355 + * Use this to set sampling rate, encoding and mono/stereo.
1.1356 + * @param aSection - Section to read params from the ini file
1.1357 + * @return none
1.1358 + */
1.1359 +void CT_CMMFDevSoundData::DoCmdSetConfigL(const TTEFSectionName& aSection)
1.1360 + {
1.1361 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetConfigL"));
1.1362 +
1.1363 + TInt rate;
1.1364 + INFO_PRINTF1(_L("To use default values run Capabilities before SetConfigL"));
1.1365 + if (!GetEnumFromConfig(aSection, KRate, iEnumSampleRate, rate))
1.1366 + {
1.1367 + INFO_PRINTF2(_L("Rate value was not overwritten, using default value %d."), iCapabilities.iRate);
1.1368 + }
1.1369 + else
1.1370 + {
1.1371 + iCapabilities.iRate = rate;
1.1372 + }
1.1373 +
1.1374 + TInt encoding;
1.1375 + if (!GetIntFromConfig(aSection, KEncoding, encoding))
1.1376 + {
1.1377 + INFO_PRINTF2(_L("Encoding value was not overwritten, using default value %d."), iCapabilities.iEncoding);
1.1378 + }
1.1379 + else
1.1380 + {
1.1381 + iCapabilities.iEncoding = encoding;
1.1382 + }
1.1383 +
1.1384 + TInt channels;
1.1385 + if (!GetEnumFromConfig(aSection, KChannels, iEnumChannels, channels))
1.1386 + {
1.1387 + INFO_PRINTF2(_L("Channels value was not overwritten, using default value %d ."), iCapabilities.iChannels);
1.1388 + }
1.1389 + else
1.1390 + {
1.1391 + iCapabilities.iChannels = channels;
1.1392 + }
1.1393 +
1.1394 + TInt bufferSize;
1.1395 + if (!GetIntFromConfig(aSection, KBufferSize, bufferSize))
1.1396 + {
1.1397 + INFO_PRINTF2(_L("BufferSize value was not overwritten, using default value %d"), iCapabilities.iBufferSize);
1.1398 + }
1.1399 + else
1.1400 + {
1.1401 + iCapabilities.iBufferSize = bufferSize;
1.1402 + }
1.1403 + TRAPD(error,iDevSound->SetConfigL(iCapabilities))
1.1404 + if(error != KErrNone)
1.1405 + {
1.1406 + ERR_PRINTF2(_L("SetConfigL left with error %d"), error);
1.1407 + SetError(error);
1.1408 + }
1.1409 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetConfigL"));
1.1410 + }
1.1411 +
1.1412 +
1.1413 +/**
1.1414 + * Defines the duration of tone on, tone off and tone pause to be used during the
1.1415 + * DTMF tone playback operation.
1.1416 + * Supported only during tone playing.
1.1417 + * @param aSection - Section to read param from the ini file
1.1418 + * @return none
1.1419 + */
1.1420 +void CT_CMMFDevSoundData::DoCmdSetDTMFLengths(const TTEFSectionName& aSection)
1.1421 + {
1.1422 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetDTMFLengths"));
1.1423 + TInt time;
1.1424 + TBool dataOk = ETrue;
1.1425 + if (!GetIntFromConfig(aSection, KToneOnLength, time))
1.1426 + {
1.1427 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KToneOnLength);
1.1428 + SetBlockResult(EFail);
1.1429 + dataOk = EFalse;
1.1430 + }
1.1431 + TTimeIntervalMicroSeconds32 toneOnLength(time);
1.1432 +
1.1433 + if (!GetIntFromConfig(aSection, KToneOffLength, time))
1.1434 + {
1.1435 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KToneOffLength);
1.1436 + SetBlockResult(EFail);
1.1437 + dataOk = EFalse;
1.1438 + }
1.1439 + TTimeIntervalMicroSeconds32 toneOffLength(time);
1.1440 +
1.1441 + if (!GetIntFromConfig(aSection, KPauseLength, time))
1.1442 + {
1.1443 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KPauseLength);
1.1444 + SetBlockResult(EFail);
1.1445 + dataOk = EFalse;
1.1446 + }
1.1447 + TTimeIntervalMicroSeconds32 pauseLength(time);
1.1448 + if(dataOk)
1.1449 + {
1.1450 + iDevSound->SetDTMFLengths(toneOnLength, toneOffLength, pauseLength);
1.1451 + }
1.1452 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetDTMFLengths"));
1.1453 + }
1.1454 +
1.1455 +
1.1456 +/**
1.1457 + * Changes the current recording gain to a specified value.
1.1458 + * The gain can be changed before or during recording and is effective
1.1459 + * immediately.
1.1460 + * @params aSection - Section to read param from the ini file
1.1461 + */
1.1462 +void CT_CMMFDevSoundData::DoCmdSetGain(const TTEFSectionName& aSection)
1.1463 + {
1.1464 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetGain"));
1.1465 + TInt gainValue = iGainValue;
1.1466 + if(!GetIntFromConfig(aSection, KGainValue, gainValue))
1.1467 + {
1.1468 + INFO_PRINTF1(_L("The Gain value was not found in the ini file, using default value"));
1.1469 + }
1.1470 + INFO_PRINTF2(_L("Setting gain value to %d"), gainValue);
1.1471 + iDevSound->SetGain(gainValue);
1.1472 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetGain"));
1.1473 + }
1.1474 +
1.1475 +/**
1.1476 + * Sets the speaker balance for playing.
1.1477 + * The speaker balance can be changed before or during playback and is
1.1478 + * effective immediately.
1.1479 + * @param aSection - The section to read params from the ini file
1.1480 + * @return none
1.1481 + */
1.1482 +void CT_CMMFDevSoundData::DoCmdSetPlayBalanceL(const TTEFSectionName& aSection)
1.1483 + {
1.1484 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetPlayBalanceL"));
1.1485 + TInt leftPercentage = iLeftPercentage;
1.1486 + if(!GetIntFromConfig(aSection, KLeftPercentage, leftPercentage))
1.1487 + {
1.1488 + INFO_PRINTF1(_L("The Left percentage was not found in the ini file, using default value"));
1.1489 + }
1.1490 + TInt rightPercentage = iRightPercentage;
1.1491 + if(!GetIntFromConfig(aSection, KRightPercentage, rightPercentage))
1.1492 + {
1.1493 + INFO_PRINTF1(_L("The Right percentage was not found in the ini file, using default value"));
1.1494 + }
1.1495 + INFO_PRINTF3(_L("Setting play balance to left: %d, right: %d values"), leftPercentage, rightPercentage);
1.1496 + TRAPD(error, iDevSound->SetPlayBalanceL(leftPercentage, rightPercentage));
1.1497 + if(error != KErrNone)
1.1498 + {
1.1499 + ERR_PRINTF2(_L("SetPlayBalanceL left with error %d"), error);
1.1500 + SetError(error);
1.1501 + }
1.1502 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetPlayBalanceL"));
1.1503 + }
1.1504 +
1.1505 +/**
1.1506 + * Defines the priority settings that should be used for this instance.
1.1507 + * @param aSection - Section to read params from the ini file
1.1508 + * @return none
1.1509 + */
1.1510 +void CT_CMMFDevSoundData::DoCmdSetPrioritySettings(const TTEFSectionName& aSection)
1.1511 + {
1.1512 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetPrioritySettings"));
1.1513 + TBool dataOk = ETrue;
1.1514 + if(!GetIntFromConfig(aSection, KPriority, iPrioritySettings.iPriority))
1.1515 + {
1.1516 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KPriority);
1.1517 + SetBlockResult(EFail);
1.1518 + dataOk = EFalse;
1.1519 + }
1.1520 + TInt preference;
1.1521 + if (!GetHexFromConfig(aSection, KPreference, preference))
1.1522 + {
1.1523 + ERR_PRINTF2(_L("%S parameter was not found in INI file"), &KPreference);
1.1524 + SetBlockResult(EFail);
1.1525 + dataOk = EFalse;
1.1526 + }
1.1527 + iPrioritySettings.iPref = (TMdaPriorityPreference)preference;
1.1528 + TInt state;
1.1529 + if (!GetEnumFromConfig(aSection, KPriorityState, iEnumMode, state))
1.1530 + {
1.1531 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KPriorityState);
1.1532 + SetBlockResult(EFail);
1.1533 + dataOk = EFalse;
1.1534 + }
1.1535 + iPrioritySettings.iState = (TMMFState)state;
1.1536 + if(dataOk)
1.1537 + {
1.1538 + iDevSound->SetPrioritySettings(iPrioritySettings);
1.1539 + }
1.1540 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetPrioritySettings"));
1.1541 + }
1.1542 +
1.1543 +/**
1.1544 + * Sets the microphone gain balance for recording.
1.1545 + * The microphone gain balance can be changed before or during recording and
1.1546 + * is effective immediately.
1.1547 + * @param aSection - Section to read params from the ini file
1.1548 + * @return none
1.1549 + */
1.1550 +void CT_CMMFDevSoundData::DoCmdSetRecordBalanceL(const TTEFSectionName& aSection)
1.1551 + {
1.1552 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetRecordBalanceL"));
1.1553 + TInt leftPercentage = iLeftPercentage;
1.1554 + if (!GetIntFromConfig(aSection, KLeftPercentage, leftPercentage))
1.1555 + {
1.1556 + INFO_PRINTF1(_L("The Left value was not found in the ini file, using default value"));
1.1557 + }
1.1558 + TInt rightPercentage = iRightPercentage;
1.1559 + if (!GetIntFromConfig(aSection, KRightPercentage, rightPercentage))
1.1560 + {
1.1561 + INFO_PRINTF1(_L("The Right value was not found in the ini file, using default value"));
1.1562 + }
1.1563 + INFO_PRINTF3(_L("Setting record balance to left: %d, right: %d values"), leftPercentage, rightPercentage);
1.1564 + TRAPD(error, iDevSound->SetRecordBalanceL(leftPercentage, rightPercentage));
1.1565 + if (KErrNone != error)
1.1566 + {
1.1567 + ERR_PRINTF2(_L("SetRecordBalanceL left with error %d"), error);
1.1568 + SetError(error);
1.1569 + }
1.1570 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetRecordBalanceL"));
1.1571 + }
1.1572 +
1.1573 +/**
1.1574 + * Defines the number of times the audio is to be repeated during the tone
1.1575 + * playback operation.
1.1576 + * A period of silence can follow each playing of a tone. The tone playing can
1.1577 + * be repeated indefinitely.
1.1578 + * @param aSection - Section to read params from the ini file
1.1579 + * @return none
1.1580 + */
1.1581 +void CT_CMMFDevSoundData::DoCmdSetToneRepeats(const TTEFSectionName& aSection)
1.1582 + {
1.1583 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetToneRepeats"));
1.1584 + TInt repeatCount;
1.1585 + TBool dataOk = ETrue;
1.1586 + if (!GetIntFromConfig(aSection, KRepeatCount, repeatCount))
1.1587 + {
1.1588 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRepeatCount);
1.1589 + SetBlockResult(EFail);
1.1590 + dataOk = EFalse;
1.1591 + }
1.1592 +
1.1593 + TInt tempValue;
1.1594 + if (!GetIntFromConfig(aSection, KRepeatTrailingSilence, tempValue))
1.1595 + {
1.1596 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRepeatTrailingSilence);
1.1597 + SetBlockResult(EFail);
1.1598 + dataOk = EFalse;
1.1599 + }
1.1600 + TTimeIntervalMicroSeconds repeatTrailingSilence(tempValue);
1.1601 +
1.1602 + if(dataOk)
1.1603 + {
1.1604 + iDevSound->SetToneRepeats(repeatCount, repeatTrailingSilence);
1.1605 + }
1.1606 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetToneRepeats"));
1.1607 + }
1.1608 +
1.1609 +/**
1.1610 + * Defines the period over which the volume level is to rise smoothly from
1.1611 + * nothing to the normal volume level.
1.1612 + * The function is only available while the tone is playing.
1.1613 + * @param aSection - Section to read params from the ini file
1.1614 + * @return none
1.1615 + */
1.1616 +void CT_CMMFDevSoundData::DoCmdSetVolume(const TTEFSectionName& aSection)
1.1617 + {
1.1618 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetVolume"));
1.1619 + TInt volume = iVolumeValue;
1.1620 + if(!GetIntFromConfig(aSection, KVolumeValue, volume))
1.1621 + {
1.1622 + INFO_PRINTF1(_L("The Volume value was not found in the ini file, using default value"));
1.1623 + }
1.1624 + INFO_PRINTF2(_L("Setting volume value to %d"), volume);
1.1625 + iDevSound->SetVolume(volume);
1.1626 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetVolume"));
1.1627 + }
1.1628 +
1.1629 +/**
1.1630 + * Defines the loop over which the volume level is to rise smoothly from
1.1631 + * nothing to the normal volume level.
1.1632 + * @param aSection - Section to read params from the ini file
1.1633 + * @return none
1.1634 + */
1.1635 +void CT_CMMFDevSoundData::DoCmdSetVolumeLoop(const TTEFSectionName& aSection)
1.1636 + {
1.1637 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetVolumeLoop"));
1.1638 + TInt volLoop;
1.1639 + TBool dataOk = ETrue;
1.1640 + if (!GetIntFromConfig(aSection, KVolumeLoop, volLoop))
1.1641 + {
1.1642 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeLoop);
1.1643 + SetBlockResult(EFail);
1.1644 + dataOk = EFalse;
1.1645 + }
1.1646 + if(dataOk)
1.1647 + {
1.1648 + TPtrC parVolume;
1.1649 + TInt volumeValue;
1.1650 + RPointerArray<HBufC> volumeList;
1.1651 + for (TInt i=0; i<volLoop; i++)
1.1652 + {
1.1653 + if (!GetArrayRectFromConfig(aSection, KVolumeList, volumeList))
1.1654 + {
1.1655 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeList);
1.1656 + volumeList.ResetAndDestroy();
1.1657 + SetBlockResult(EFail);
1.1658 + dataOk = EFalse;
1.1659 + }
1.1660 + if(dataOk)
1.1661 + {
1.1662 + for (TInt j=0; j<volumeList.Count(); j++)
1.1663 + {
1.1664 + parVolume.Set(*volumeList[j]);
1.1665 + TLex lex(parVolume);
1.1666 + TInt error = lex.Val(volumeValue);
1.1667 + if (error != KErrNone)
1.1668 + {
1.1669 + ERR_PRINTF2(_L("Obtaining volume value failed with error %d"), error);
1.1670 + SetError(error);
1.1671 + volumeList.ResetAndDestroy();
1.1672 + }
1.1673 + else
1.1674 + {
1.1675 + INFO_PRINTF3(_L("Setting volume number %d in the iteration number %d"), j, i);
1.1676 + iDevSound->SetVolume(volumeValue);
1.1677 + }
1.1678 + }
1.1679 + }
1.1680 + }
1.1681 + volumeList.ResetAndDestroy();
1.1682 + }
1.1683 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetVolumeLoop"));
1.1684 + }
1.1685 +
1.1686 +/**
1.1687 + * Defines the period over which the volume level is to rise smoothly from
1.1688 + * nothing to the normal volume level.
1.1689 + * The function is only available while the tone is playing.
1.1690 + * @param aSection - Section to read param from the ini file
1.1691 + * @return none
1.1692 + */
1.1693 +void CT_CMMFDevSoundData::DoCmdSetVolumeRamp(const TTEFSectionName& aSection)
1.1694 + {
1.1695 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetVolumeRamp"));
1.1696 + TInt tempValue;
1.1697 + TBool dataOk = ETrue;
1.1698 + if (!GetIntFromConfig(aSection, KRampDuration, tempValue))
1.1699 + {
1.1700 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRampDuration);
1.1701 + SetBlockResult(EFail);
1.1702 + dataOk = EFalse;
1.1703 + }
1.1704 + TTimeIntervalMicroSeconds rampDuration(tempValue);
1.1705 +
1.1706 + if(dataOk)
1.1707 + {
1.1708 + iDevSound->SetVolumeRamp(rampDuration);
1.1709 + }
1.1710 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetVolumeRamp"));
1.1711 + }
1.1712 +
1.1713 +/**
1.1714 + * Initializes DevSound object for the mode aMode for processing audio data
1.1715 + * with hardware device aHWDev and supporting FourCC.
1.1716 + * Too Initializes CMMFDevSound object to play and record PCM16 raw audio data
1.1717 + * with sampling rate of 8 KHz.
1.1718 + * @param aSection - Section to read params from the ini file
1.1719 + */
1.1720 +void CT_CMMFDevSoundData::DoCmdInitializeL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
1.1721 + {
1.1722 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdInitializeL"));
1.1723 + TBool dataOk = ETrue;
1.1724 + TInt mode;
1.1725 + if (!GetEnumFromConfig(aSection, KMode, iEnumMode, mode))
1.1726 + {
1.1727 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KMode);
1.1728 + SetBlockResult(EFail);
1.1729 + dataOk = EFalse;
1.1730 + }
1.1731 + else
1.1732 + {
1.1733 + TInt hwDeviceInt;
1.1734 + if (!GetHexFromConfig(aSection, KHwDevice, hwDeviceInt))
1.1735 + {
1.1736 + INFO_PRINTF2(_L("%S parameter was not found in INI file"), &KHwDevice);
1.1737 + TPtrC fourCCIniString;
1.1738 + if (!GetStringFromConfig(aSection, KFourCC, fourCCIniString))
1.1739 + {
1.1740 + INFO_PRINTF2(_L("%S parameter was not found in INI file"), &KFourCC);
1.1741 + if (dataOk)
1.1742 + {
1.1743 + INFO_PRINTF1(_L("Initializing DevSound with overload: void InitializeL(MDevSoundObserver &aDevSoundObserver, TMMFState aMode)"));
1.1744 + TRAPD(error, iDevSound->InitializeL(*this, (TMMFState)mode));
1.1745 + if(KErrNone != error)
1.1746 + {
1.1747 + ERR_PRINTF2(_L("InitializeL(aMDevSoundObserver, mode) left with error %d"), error);
1.1748 + SetError(error);
1.1749 + }
1.1750 + }
1.1751 + }
1.1752 + else
1.1753 + {
1.1754 + if (fourCCIniString.Length() > KTFourCC)
1.1755 + {
1.1756 + ERR_PRINTF2(_L("FourCC obtained from INI file exceeded the valid length in %d"), fourCCIniString.Length());
1.1757 + SetBlockResult(EFail);
1.1758 + dataOk = EFalse;
1.1759 + }
1.1760 + if (dataOk)
1.1761 + {
1.1762 + TBuf<256> fourCCString;
1.1763 + fourCCString.Copy(fourCCIniString);
1.1764 + while (fourCCString.Length() < KTFourCC)
1.1765 + {
1.1766 + fourCCString.Insert(0, _L(" "));
1.1767 + }
1.1768 + TFourCC fourCC;
1.1769 + fourCC = TFourCC(fourCCString[3] << 24 | fourCCString[2] << 16 | fourCCString[1] << 8 | fourCCString[0]);
1.1770 + INFO_PRINTF1(_L("Initializing DevSound with overload: void InitializeL(MDevSoundObserver &aDevSoundObserver, TFourCC aDesiredFourCC, TMMFState aMode)"));
1.1771 + TRAPD(error, iDevSound->InitializeL(*this, fourCC, (TMMFState)mode));
1.1772 + if(KErrNone!=error)
1.1773 + {
1.1774 + ERR_PRINTF2(_L("InitializeL(aMDevSoundObserver, fourCC, mode) left with error %d"), error);
1.1775 + ERR_PRINTF2(_L(" %S Not supported in this device"), &fourCCString);
1.1776 + SetError(error);
1.1777 + }
1.1778 + }
1.1779 + }
1.1780 + }
1.1781 + else
1.1782 + {
1.1783 + if (dataOk)
1.1784 + {
1.1785 + TUid hwDevice;
1.1786 + hwDevice.iUid = hwDeviceInt;
1.1787 + INFO_PRINTF1(_L("Initializing DevSound with overload: void InitializeL(MDevSoundObserver &aDevSoundObserver, TUid aHWDev, TMMFState aMode)"));
1.1788 + TRAPD(error, iDevSound->InitializeL(*this, hwDevice, (TMMFState)mode));
1.1789 + if(KErrNone != error)
1.1790 + {
1.1791 + ERR_PRINTF2(_L("InitializeL(aMDevSoundObserver, hwDevice, mode) left with error %d"), error);
1.1792 + SetError(error);
1.1793 + }
1.1794 + }
1.1795 + }
1.1796 + }
1.1797 +
1.1798 + if (dataOk)
1.1799 + {
1.1800 + IncOutstanding();
1.1801 + iAsyncErrorIndex_initialize = aAsyncErrorIndex;
1.1802 + }
1.1803 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdInitializeL"));
1.1804 + }
1.1805 +
1.1806 +
1.1807 +/**
1.1808 + * Initializes the audio device and starts playing the DTMF string aDTMFString.
1.1809 + * @param aSection - Section to read param from the ini file
1.1810 + * @return none
1.1811 + */
1.1812 +void CT_CMMFDevSoundData::DoCmdPlayDTMFStringL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
1.1813 + {
1.1814 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayDTMFStringL"));
1.1815 + TBool dataOk = ETrue;
1.1816 + TPtrC dtmfString;
1.1817 + if (!GetStringFromConfig(aSection, KDTMFString, dtmfString) )
1.1818 + {
1.1819 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDTMFString);
1.1820 + SetBlockResult(EFail);
1.1821 + dataOk = EFalse;
1.1822 + }
1.1823 + if(dataOk)
1.1824 + {
1.1825 + TRAPD( error, iDevSound->PlayDTMFStringL(dtmfString) );
1.1826 + if(error != KErrNone)
1.1827 + {
1.1828 + ERR_PRINTF2(_L("Play DTMF string failed with error: %d "), error);
1.1829 + SetError(error);
1.1830 + }
1.1831 + else
1.1832 + {
1.1833 + iAsyncErrorIndex_tone = aAsyncErrorIndex;
1.1834 + IncOutstanding();
1.1835 + }
1.1836 + }
1.1837 +
1.1838 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayDTMFStringL"));
1.1839 + }
1.1840 +
1.1841 +/**
1.1842 + * Plays data in the buffer at the current volume.
1.1843 + * @param
1.1844 + * @return
1.1845 + */
1.1846 +void CT_CMMFDevSoundData::DoCmdPlayData()
1.1847 + {
1.1848 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayData"));
1.1849 + PlayData();
1.1850 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayData"));
1.1851 + }
1.1852 +
1.1853 +/**
1.1854 + * Helper for the DoCmdPlayData command
1.1855 + */
1.1856 +void CT_CMMFDevSoundData::PlayData()
1.1857 + {
1.1858 + INFO_PRINTF1(_L("CT_CMMFDevSoundData::PlayData()"));
1.1859 + iDevSound->PlayData();
1.1860 + }
1.1861 +
1.1862 +/**
1.1863 + * Initializes audio device and starts playing a dual tone.
1.1864 + * The generated tone consists of two sine waves of different frequencies summed together.
1.1865 + * Dual Tone is played with the specified frequencies and for the specified duration.
1.1866 + * @param aSection - Section to read params from the ini file.
1.1867 + * @return none
1.1868 + */
1.1869 +void CT_CMMFDevSoundData::DoCmdPlayDualToneL(const TTEFSectionName& aSection)
1.1870 + {
1.1871 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayDualToneL"));
1.1872 + TBool dataOk = ETrue;
1.1873 + TInt frequencyOne;
1.1874 + if (!GetIntFromConfig(aSection, KFrequencyOne, frequencyOne) )
1.1875 + {
1.1876 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFrequencyOne);
1.1877 + SetBlockResult(EFail);
1.1878 + dataOk = EFalse;
1.1879 + }
1.1880 +
1.1881 + TInt frequencyTwo;
1.1882 + if (!GetIntFromConfig(aSection, KFrequencyTwo, frequencyTwo) )
1.1883 + {
1.1884 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFrequencyTwo);
1.1885 + SetBlockResult(EFail);
1.1886 + dataOk = EFalse;
1.1887 + }
1.1888 +
1.1889 + TInt duration;
1.1890 + if (!GetIntFromConfig(aSection, KDuration, duration) )
1.1891 + {
1.1892 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDuration);
1.1893 + SetBlockResult(EFail);
1.1894 + dataOk = EFalse;
1.1895 + }
1.1896 + if(dataOk)
1.1897 + {
1.1898 + TRAPD( error, iDevSound->PlayDualToneL(frequencyOne, frequencyTwo, duration) );
1.1899 + if(error != KErrNone)
1.1900 + {
1.1901 + ERR_PRINTF2(_L("Play dual tone failed with error %d"), error);
1.1902 + SetError(error);
1.1903 + }
1.1904 + else
1.1905 + {
1.1906 + IncOutstanding();
1.1907 + }
1.1908 + }
1.1909 +
1.1910 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayDualToneL"));
1.1911 + }
1.1912 +
1.1913 +
1.1914 +/**
1.1915 + * Initializes the audio device and starts the play process.
1.1916 + *
1.1917 + * This function queries and acquires the audio policy before initializing audio device. If there was
1.1918 + * an error during policy initialization, PlayError() function will be called on the observer with
1.1919 + * error code KErrAccessDenied, otherwise BufferToBeFilled() function will be called with a buffer
1.1920 + * reference. After reading data into the buffer reference passed, the client should call PlayData() to play data.
1.1921 + *
1.1922 + * The amount of data that can be played is specified in CMMFBuffer::RequestSize(). Any data that is read into
1.1923 + * buffer beyond this size will be ignored.
1.1924 + * @param none
1.1925 + * @return none
1.1926 + */
1.1927 +void CT_CMMFDevSoundData::DoCmdPlayInitL(const TInt aAsyncErrorIndex)
1.1928 + {
1.1929 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayInitL"));
1.1930 + TRAPD(error, iDevSound->PlayInitL());
1.1931 + if (error != KErrNone)
1.1932 + {
1.1933 + ERR_PRINTF2(_L("PlayInitL left with error %d"), error);
1.1934 + SetError(error);
1.1935 + }
1.1936 + else
1.1937 + {
1.1938 + iAsyncErrorIndex_play = aAsyncErrorIndex;
1.1939 + IncOutstanding();
1.1940 + }
1.1941 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayInitL"));
1.1942 + }
1.1943 +
1.1944 +/**
1.1945 + * Initializes the audio device and starts playing a tone. The tone is played with the
1.1946 + * frequency and duration specified.
1.1947 + * @param aSection - Section to read params from the ini file
1.1948 + * @return none
1.1949 + */
1.1950 +void CT_CMMFDevSoundData::DoCmdPlayToneL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
1.1951 + {
1.1952 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayToneL"));
1.1953 + TBool dataOk = ETrue;
1.1954 + TInt frequency;
1.1955 + if (!GetIntFromConfig(aSection, KFrequency, frequency))
1.1956 + {
1.1957 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFrequency);
1.1958 + SetBlockResult(EFail);
1.1959 + dataOk = EFalse;
1.1960 + }
1.1961 +
1.1962 + TInt duration;
1.1963 + if (!GetIntFromConfig(aSection, KDuration, duration))
1.1964 + {
1.1965 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDuration);
1.1966 + SetBlockResult(EFail);
1.1967 + dataOk = EFalse;
1.1968 + }
1.1969 + if(dataOk)
1.1970 + {
1.1971 + TRAPD(error, iDevSound->PlayToneL(frequency, duration));
1.1972 + if (error != KErrNone)
1.1973 + {
1.1974 + ERR_PRINTF2(_L("Play tone failed with error %d"), error);
1.1975 + SetError(error);
1.1976 + }
1.1977 + else
1.1978 + {
1.1979 + iAsyncErrorIndex_tone = aAsyncErrorIndex;
1.1980 + IncOutstanding();
1.1981 + }
1.1982 + }
1.1983 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayToneL"));
1.1984 + }
1.1985 +
1.1986 +/**
1.1987 + * Initializes the audio device and starts playing a tone sequence.
1.1988 + * @param aSection - Section to read param from the ini file
1.1989 + * @return none
1.1990 + */
1.1991 +void CT_CMMFDevSoundData::DoCmdPlayToneSequenceL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
1.1992 + {
1.1993 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayToneSequenceL"));
1.1994 + TBool dataOk = ETrue;
1.1995 + TPtrC toneFileParameter;
1.1996 + if (!GetStringFromConfig(aSection, KFilename, toneFileParameter))
1.1997 + {
1.1998 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFilename);
1.1999 + SetBlockResult(EFail);
1.2000 + dataOk = EFalse;
1.2001 + }
1.2002 + if(dataOk)
1.2003 + {
1.2004 + TInt error = iToneFile.Open(iFs, toneFileParameter, EFileRead);
1.2005 + if (error != KErrNone)
1.2006 + {
1.2007 + ERR_PRINTF2(_L("Open file failed with error %d"), error);
1.2008 + SetError(EFail);
1.2009 + }
1.2010 + else
1.2011 + {
1.2012 + error = iToneFile.Read(iToneSequence);
1.2013 + if (error != KErrNone)
1.2014 + {
1.2015 + ERR_PRINTF2(_L("Read file failed with error %d"), error);
1.2016 + SetError(EFail);
1.2017 + }
1.2018 + else
1.2019 + {
1.2020 + TRAP(error, iDevSound->PlayToneSequenceL(iToneSequence));
1.2021 + if (error != KErrNone)
1.2022 + {
1.2023 + ERR_PRINTF2(_L("Play tone sequence failed with error %d"), error);
1.2024 + SetError(error);
1.2025 + }
1.2026 + else
1.2027 + {
1.2028 + iAsyncErrorIndex_tone = aAsyncErrorIndex;
1.2029 + IncOutstanding();
1.2030 + }
1.2031 + }
1.2032 + }
1.2033 + }
1.2034 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayToneSequenceL"));
1.2035 + }
1.2036 +
1.2037 +/**
1.2038 + * Contine the process of recording.
1.2039 + *
1.2040 + * Once the buffer is filled with recorded data, the Observer gets a reference to the buffer along
1.2041 + * with the callback function BufferToBeEmptied(). After processing the buffer (copying over to a
1.2042 + * different buffer or writing to file) the client should call this function to continue the
1.2043 + * recording process.
1.2044 + * @param none
1.2045 + * @return none
1.2046 + */
1.2047 +void CT_CMMFDevSoundData::DoCmdRecordData()
1.2048 + {
1.2049 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdRecordData"));
1.2050 + RecordData();
1.2051 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdRecordData"));
1.2052 + }
1.2053 +
1.2054 +/**
1.2055 + * Helper method to DoCmdRecordData command
1.2056 + */
1.2057 +void CT_CMMFDevSoundData::RecordData()
1.2058 + {
1.2059 + iDevSound->RecordData();
1.2060 + }
1.2061 +
1.2062 +/**
1.2063 + * Initializes audio device and starts the recording process.
1.2064 + *
1.2065 + * This command queries and acquires the audio policy before initializing audio device. If there
1.2066 + * was an error during policy initialization, RecordError() function will be called on the observer
1.2067 + * with error code KErrAccessDenied, otherwise BufferToBeEmptied() function will be called with a
1.2068 + * buffer reference. This buffer contains recorded or encoded data. After processing data in the
1.2069 + * buffer reference passed, the client should call RecordData() to continue recording process.
1.2070 + *
1.2071 + * The amount of data that is available is specified in CMMFBuffer::RequestSize().
1.2072 + * @param none
1.2073 + * @return none
1.2074 + */
1.2075 +void CT_CMMFDevSoundData::DoCmdRecordInitL(const TInt aAsyncErrorIndex)
1.2076 + {
1.2077 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdRecordInitL"));
1.2078 + iAsyncErrorIndex_record = aAsyncErrorIndex;
1.2079 + TRAPD(error, iDevSound->RecordInitL());
1.2080 + if (error != KErrNone)
1.2081 + {
1.2082 + ERR_PRINTF2(_L("RecordInitL left with error %d"), error);
1.2083 + SetError(error);
1.2084 + }
1.2085 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdRecordInitL"));
1.2086 + }
1.2087 +
1.2088 +
1.2089 +/**
1.2090 + * Conceal an error
1.2091 + * @param none
1.2092 + * @return none
1.2093 + */
1.2094 +void CT_CMMFDevSoundData::DoCmdUtilityErrorConceal()
1.2095 + {
1.2096 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdErrorConceal"));
1.2097 + iErrorConceal=ETrue;
1.2098 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdErrorConceal"));
1.2099 + }
1.2100 +
1.2101 +/**
1.2102 + * Stop an audio file
1.2103 + * @param none
1.2104 + * @return none
1.2105 + */
1.2106 +void CT_CMMFDevSoundData::DoCmdStop(const TTEFSectionName& aSection)
1.2107 + {
1.2108 + INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdStop"));
1.2109 + TBool pause;
1.2110 + if(!GetBoolFromConfig(aSection,KPause,pause))
1.2111 + {
1.2112 + INFO_PRINTF1(_L("The DoCmdStop command will be execute"));
1.2113 + pause = EFalse;
1.2114 + }
1.2115 + iPaused=pause;
1.2116 + if(iPaused)
1.2117 + {
1.2118 + INFO_PRINTF1(_L("a Pause was required"));
1.2119 + }
1.2120 + Stop();
1.2121 + INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdStop"));
1.2122 + }
1.2123 +
1.2124 +
1.2125 +
1.2126 +
1.2127 +/**
1.2128 + * Utility for get the HwDevice for play and recording
1.2129 + */
1.2130 +
1.2131 +void CT_CMMFDevSoundData::UtilityFourCCToHwDeviceUidL(const TDesC& aFourCC, THwDeviceType aType, TUid& aHwDeviceUid)
1.2132 + {
1.2133 + TPtrC8 fourCCPtr(0,0);
1.2134 + TPtrC8 fourCCP16Ptr(0,0);
1.2135 + RImplInfoPtrArray impArray;
1.2136 + CleanupResetAndDestroyPushL(impArray);
1.2137 + REComSession::ListImplementationsL(TUid::Uid(KMmfUidPluginInterfaceHwDevice), impArray);
1.2138 + TBuf<KHwDeviceDefaultDataLength> datatype;
1.2139 + for(TInt i = 0; i < impArray.Count(); ++i)
1.2140 + {
1.2141 + CImplementationInformation& entry = *(impArray[i]);
1.2142 + // Validate lenght
1.2143 + if (entry.DataType().Length() == KHwDeviceDefaultDataLength)
1.2144 + {
1.2145 + INFO_PRINTF2(_L("Implementation UID=0x%08x"),entry.ImplementationUid());
1.2146 + datatype.Copy(entry.DataType());
1.2147 + INFO_PRINTF2(_L("Default data (fourCCs)=%S"), &datatype);
1.2148 + // Extract FourCC
1.2149 + if(aType == EDecoder)
1.2150 + {
1.2151 + fourCCPtr.Set(entry.DataType().Left(KFourCCLength));
1.2152 + fourCCP16Ptr.Set(entry.DataType().Right(KFourCCLength));
1.2153 + }
1.2154 + else if (aType == EEncoder)
1.2155 + {
1.2156 + fourCCPtr.Set(entry.DataType().Right(KFourCCLength));
1.2157 + fourCCP16Ptr.Set(entry.DataType().Left(KFourCCLength));
1.2158 + }
1.2159 + // Compare FourCC
1.2160 + TBuf16<4> foundFourCC;
1.2161 + foundFourCC.Copy(fourCCPtr);
1.2162 + if(aFourCC.CompareF(foundFourCC) == 0)
1.2163 + {
1.2164 + aHwDeviceUid = entry.ImplementationUid();
1.2165 + break;
1.2166 + }
1.2167 + }
1.2168 + }
1.2169 + CleanupStack::PopAndDestroy(&impArray);
1.2170 + REComSession::FinalClose();
1.2171 + }