1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/a3fintegrationtest/src/tsi_a3f_devsound_play.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,4056 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Implementation of Integraton test step classes for A3f DevSound Play test cases.
1.18 +//
1.19 +//
1.20 +
1.21 +#include "tsi_a3f_devsound_play.h"
1.22 +
1.23 +/*
1.24 + *
1.25 + * RTestStepA3FDevSoundPlayBase - Test step constructor
1.26 + *
1.27 + */
1.28 +RTestStepA3FDevSoundPlayBase::RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.29 +:RAsyncTestStep(),
1.30 + iMMFDevSound(NULL),
1.31 + iBuffer(NULL),
1.32 + iTimer(NULL),
1.33 + iCallBack(NULL, NULL),
1.34 + iInputDataType(aInputDataType),
1.35 + iSectName(aSectName),
1.36 + iFilename(KNullDesC),
1.37 + iSampleRate(KNullDesC),
1.38 + iMonoStereo(KNullDesC),
1.39 + iPlayState(EStatePlayStart),
1.40 + iBufferCount(0),
1.41 + iConfig(EFalse),
1.42 + iInvalidConfig(EFalse),
1.43 + iUseFourCC(EFalse)
1.44 + {
1.45 + // From RTestStep
1.46 + iTestStepName = aTestName; // store the name of the test case
1.47 +
1.48 + }
1.49 +
1.50 +/*
1.51 + *
1.52 + * RTestStepA3FDevSoundPlayBase - Test step constructor
1.53 + *
1.54 + */
1.55 +RTestStepA3FDevSoundPlayBase::RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TDesC& aSectName)
1.56 +:RAsyncTestStep(),
1.57 + iMMFDevSound(NULL),
1.58 + iBuffer(NULL),
1.59 + iTimer(NULL),
1.60 + iCallBack(NULL, NULL),
1.61 + iInputDataType(KMMFFourCCCodePCM16),
1.62 + iSectName(aSectName),
1.63 + iFilename(KNullDesC),
1.64 + iSampleRate(KNullDesC),
1.65 + iMonoStereo(KNullDesC),
1.66 + iPlayState(EStatePlayStart),
1.67 + iBufferCount(0),
1.68 + iConfig(EFalse),
1.69 + iInvalidConfig(EFalse),
1.70 + iUseFourCC(EFalse)
1.71 + {
1.72 + // From RTestStep
1.73 + iTestStepName = aTestName; // store the name of the test case
1.74 +
1.75 + }
1.76 +
1.77 +/*
1.78 + *
1.79 + * RTestStepA3FDevSoundPlayBase - Test step constructor
1.80 + *
1.81 + */
1.82 +RTestStepA3FDevSoundPlayBase::RTestStepA3FDevSoundPlayBase(const TDesC& aTestName, const TFourCC& aInputDataType)
1.83 +:RAsyncTestStep(),
1.84 + iMMFDevSound(NULL),
1.85 + iBuffer(NULL),
1.86 + iTimer(NULL),
1.87 + iCallBack(NULL, NULL),
1.88 + iInputDataType(aInputDataType),
1.89 + iSectName(KNullDesC),
1.90 + iFilename(KNullDesC),
1.91 + iSampleRate(KNullDesC),
1.92 + iMonoStereo(KNullDesC),
1.93 + iPlayState(EStatePlayStart),
1.94 + iBufferCount(0),
1.95 + iConfig(EFalse),
1.96 + iInvalidConfig(EFalse),
1.97 + iUseFourCC(EFalse)
1.98 + {
1.99 + // From RTestStep
1.100 + iTestStepName = aTestName; // store the name of the test case
1.101 +
1.102 + }
1.103 +
1.104 +
1.105 +/*
1.106 + *
1.107 + * RTestStepA3FDevSoundPlayBase - Test step constructor
1.108 + *
1.109 + */
1.110 +RTestStepA3FDevSoundPlayBase::RTestStepA3FDevSoundPlayBase(const TDesC& aTestName)
1.111 +:RAsyncTestStep(),
1.112 + iMMFDevSound(NULL),
1.113 + iBuffer(NULL),
1.114 + iTimer(NULL),
1.115 + iCallBack(NULL, NULL),
1.116 + iInputDataType(KMMFFourCCCodePCM16),
1.117 + iSectName(KNullDesC),
1.118 + iFilename(KNullDesC),
1.119 + iSampleRate(KNullDesC),
1.120 + iMonoStereo(KNullDesC),
1.121 + iPlayState(EStatePlayStart),
1.122 + iBufferCount(0),
1.123 + iConfig(EFalse),
1.124 + iInvalidConfig(EFalse),
1.125 + iUseFourCC(EFalse)
1.126 + {
1.127 + // From RTestStep
1.128 + iTestStepName = aTestName; // store the name of the test case
1.129 +
1.130 + }
1.131 +
1.132 +/*
1.133 + *
1.134 + * KickoffTestL
1.135 + * - Starts the test
1.136 + *
1.137 + */
1.138 +void RTestStepA3FDevSoundPlayBase::KickoffTestL()
1.139 + {
1.140 + TInt err = iFs.Connect();
1.141 + if (err != KErrNone)
1.142 + {
1.143 + ERR_PRINTF2(_L("Could not connect to Filesystem. Error = %d"), err);
1.144 + StopTest(err);
1.145 + }
1.146 +
1.147 + // Get the file name of the audio file to play
1.148 + #ifdef __WINS__
1.149 + if(!GetStringFromConfig(iSectName, _L("EmuPlayFile"), iFilename))
1.150 + {
1.151 + TPtrC keyName(_L("EmuPlayFile"));
1.152 + ERR_PRINTF3(_L("Error in getting file name from config file in %S section via the %S key field."), &iSectName, &keyName);
1.153 + StopTest(KErrPathNotFound);
1.154 + return;
1.155 + }
1.156 +
1.157 + #elif __MARM__
1.158 + if(!GetStringFromConfig(iSectName, _L("HwPlayFile"), iFilename))
1.159 + {
1.160 + TPtrC keyName(_L("HwPlayFile"));
1.161 + ERR_PRINTF3(_L("Error in getting file name from config file in %S section via the %S key field."), &iSectName, &keyName);
1.162 + StopTest(KErrPathNotFound);
1.163 + return;
1.164 + }
1.165 + #endif
1.166 +
1.167 + // Check if SetConfig and FourCC are to be used or not
1.168 + CheckConfigAndFourCCUsage();
1.169 +
1.170 + INFO_PRINTF2(_L("Section Name is :%S"), &iSectName);
1.171 +
1.172 + // Open using RFile for playback
1.173 + err = iFile.Open(iFs, iFilename, EFileRead);
1.174 + if (err != KErrNone)
1.175 + {
1.176 + ERR_PRINTF2(_L("Could not Open the File: Error = %d"), err);
1.177 + StopTest(err);
1.178 + }
1.179 +
1.180 + // Create instance of CMMFDevSound
1.181 + iMMFDevSound = CMMFDevSound::NewL();
1.182 +
1.183 + iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
1.184 + iCallBack = TCallBack(TimerCallback, this);
1.185 +
1.186 + DoKickoffTestL();
1.187 + Fsm(EEventPlayStart, KErrNone); // call to initialize DevSound
1.188 +
1.189 + }
1.190 +
1.191 +/*
1.192 + *
1.193 + * DoKickoffTestL
1.194 + *
1.195 + */
1.196 +void RTestStepA3FDevSoundPlayBase::DoKickoffTestL()
1.197 + {
1.198 + INFO_PRINTF2(_L("File to be played -> %S"), &iFilename);
1.199 + DisplayCodecInfo();
1.200 +
1.201 + }
1.202 +
1.203 +/*
1.204 + * ToneFinished
1.205 + *
1.206 + */
1.207 +void RTestStepA3FDevSoundPlayBase::ToneFinished(TInt /*aError*/)
1.208 + {
1.209 + __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundPlayBase"),EInvalidCallbackCall));
1.210 +
1.211 + }
1.212 +
1.213 +/*
1.214 + *
1.215 + * RecordError
1.216 + *
1.217 + */
1.218 +void RTestStepA3FDevSoundPlayBase::RecordError(TInt)
1.219 + {
1.220 + __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundPlayBase"),EInvalidCallbackCall));
1.221 +
1.222 + }
1.223 +
1.224 +/*
1.225 + *
1.226 + * BufferToBeEmptied
1.227 + *
1.228 + */
1.229 +void RTestStepA3FDevSoundPlayBase::BufferToBeEmptied(CMMFBuffer* /*aBuffer*/)
1.230 + {
1.231 + __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundPlayBase"),EInvalidCallbackCall));
1.232 +
1.233 + }
1.234 +
1.235 +/*
1.236 + *
1.237 + * ConvertError
1.238 + *
1.239 + */
1.240 +void RTestStepA3FDevSoundPlayBase::ConvertError(TInt /*aError*/)
1.241 + {
1.242 + __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundPlayBase"),EInvalidCallbackCall));
1.243 +
1.244 + }
1.245 +
1.246 +/*
1.247 + *
1.248 + * DeviceMessage
1.249 + *
1.250 + */
1.251 +void RTestStepA3FDevSoundPlayBase::DeviceMessage(TUid /*aMessageType*/, const TDesC8& /*aMsg*/)
1.252 + {
1.253 + __ASSERT_ALWAYS(0,Panic(_L("RTestStepA3FDevSoundPlayBase"),EInvalidCallbackCall));
1.254 +
1.255 + }
1.256 +
1.257 +/*
1.258 + *
1.259 + * TimerCallback
1.260 + *
1.261 + */
1.262 +TInt RTestStepA3FDevSoundPlayBase::TimerCallback(TAny* aPtr)
1.263 + {
1.264 + static_cast<RTestStepA3FDevSoundPlayBase*>(aPtr)->DoTimerCallback();
1.265 + return KErrNone;
1.266 +
1.267 + }
1.268 +
1.269 +/*
1.270 + *
1.271 + * DoTimerCallback
1.272 + *
1.273 + */
1.274 +void RTestStepA3FDevSoundPlayBase::DoTimerCallback()
1.275 + {
1.276 + // The derived classes may provide the implementation if needed
1.277 + }
1.278 +
1.279 +/*
1.280 + *
1.281 + * CallStopTest
1.282 + *
1.283 + */
1.284 +void RTestStepA3FDevSoundPlayBase::CloseTest()
1.285 + {
1.286 + if (iMMFDevSound)
1.287 + {
1.288 + INFO_PRINTF1(_L("Deleting DevSound object..."));
1.289 + delete iMMFDevSound;
1.290 + iMMFDevSound = NULL;
1.291 + }
1.292 +
1.293 + if (iTimer)
1.294 + {
1.295 + delete iTimer;
1.296 + iTimer = NULL;
1.297 + }
1.298 +
1.299 + iFile.Close();
1.300 + iFs.Close();
1.301 +
1.302 + }
1.303 +
1.304 +/*
1.305 + *
1.306 + * InitializeComplete
1.307 + *
1.308 + */
1.309 +void RTestStepA3FDevSoundPlayBase::InitializeComplete(TInt aError)
1.310 + {
1.311 + if (iPlayState == EStatePlayInitializing)
1.312 + {
1.313 + Fsm(EEventInitCompletePlay,aError);
1.314 + }
1.315 +
1.316 + }
1.317 +
1.318 +/*
1.319 + *
1.320 + * BufferToBeFilled
1.321 + *
1.322 + */
1.323 +void RTestStepA3FDevSoundPlayBase::BufferToBeFilled(CMMFBuffer* aBuffer)
1.324 + {
1.325 + if (!aBuffer)
1.326 + {
1.327 + ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
1.328 + StopTest(KErrGeneral);
1.329 + return;
1.330 + }
1.331 +
1.332 + iBuffer = aBuffer;
1.333 +
1.334 + // Call to continue the Play process
1.335 + Fsm(EEventBTBF,KErrNone);
1.336 +
1.337 + }
1.338 +
1.339 +/*
1.340 + *
1.341 + * PlayError
1.342 + *
1.343 + */
1.344 +void RTestStepA3FDevSoundPlayBase::PlayError(TInt aError)
1.345 + {
1.346 + INFO_PRINTF2(_L("DevSound called PlayError with error = %d"), aError);
1.347 + if ((iBuffer->LastBuffer()) && (aError == KErrUnderflow))
1.348 + {
1.349 + StopTest();
1.350 + }
1.351 + else
1.352 + {
1.353 + StopTest(aError, EFail);
1.354 + }
1.355 +
1.356 + }
1.357 +
1.358 +/*
1.359 + *
1.360 + * Fsm
1.361 + * - Executes playing events of DevSound in sequence
1.362 + *
1.363 + */
1.364 +void RTestStepA3FDevSoundPlayBase::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.365 + {
1.366 + switch (iPlayState)
1.367 + {
1.368 + case EStatePlayStart:
1.369 + {
1.370 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RTestStepA3FDevSoundPlayBase"),EFsmIncorrectErrorPassed));
1.371 + if (aDevSoundEvent == EEventPlayStart)
1.372 + {
1.373 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.374 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.375 + TInt err;
1.376 + if(iUseFourCC)
1.377 + {
1.378 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.379 + }
1.380 + else
1.381 + {
1.382 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.383 + }
1.384 + if (err != KErrNone)
1.385 + {
1.386 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.387 + StopTest(err);
1.388 + break;
1.389 + }
1.390 +
1.391 +
1.392 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.393 + iPlayState = EStatePlayInitializing;
1.394 + }
1.395 + else
1.396 + {
1.397 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.398 + StopTest(aError, EFail);
1.399 + }
1.400 + break;
1.401 + }
1.402 +
1.403 + case EStatePlayInitializing:
1.404 + {
1.405 + if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1.406 + {
1.407 + if(iConfig)
1.408 + {
1.409 + // Set Devsound capability settings using CMMFDevSound::SetConfigL
1.410 + SetSampleRateAndChannelMode();
1.411 + TMMFCapabilities capabilities;
1.412 + capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1.413 + capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1.414 +
1.415 + TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1.416 + if (errConfig != KErrNone && !iInvalidConfig)
1.417 + {
1.418 + ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1.419 + StopTest(errConfig);
1.420 + return;
1.421 + }
1.422 + else if (errConfig == KErrArgument && iInvalidConfig)
1.423 + {
1.424 + ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with expected error = %d"), errConfig);
1.425 + iInvalidConfig = EFalse;
1.426 + StopTest(errConfig, EPass);
1.427 + return;
1.428 + }
1.429 + }
1.430 +
1.431 + // Initialize audio device and starts the playing process
1.432 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1.433 + TRAPD(errPlay, iMMFDevSound->PlayInitL());
1.434 + if (errPlay != KErrNone)
1.435 + {
1.436 + ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
1.437 + StopTest(errPlay);
1.438 + break;
1.439 + }
1.440 + INFO_PRINTF1(_L("State: EStatePlaying"));
1.441 + iPlayState = EStatePlaying;
1.442 + }
1.443 + else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1.444 + {
1.445 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.446 + StopTest(aError);
1.447 + }
1.448 + else
1.449 + {
1.450 + ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1.451 + StopTest(aError, EFail);
1.452 + }
1.453 + break;
1.454 + }
1.455 +
1.456 + case EStatePlaying:
1.457 + {
1.458 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RTestStepA3FDevSoundPlayBase"),EFsmIncorrectErrorPassed));
1.459 + if (aDevSoundEvent == EEventBTBF)
1.460 + {
1.461 + // Fill the buffer with audio data and play the data in the buffer
1.462 + CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1.463 + TInt err = iFile.Read(buffer->Data());
1.464 + if (err != KErrNone)
1.465 + {
1.466 + ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
1.467 + StopTest(err);
1.468 + break;
1.469 + }
1.470 + if (buffer->Data().Length() != buffer->RequestSize())
1.471 + {
1.472 + INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
1.473 + iBuffer->SetLastBuffer(ETrue);
1.474 + }
1.475 +
1.476 + // Playing data in the buffer at the current volume
1.477 + iMMFDevSound->PlayData();
1.478 + iBufferCount++;
1.479 + }
1.480 + else
1.481 + {
1.482 + ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
1.483 + StopTest(aError, EFail);
1.484 + }
1.485 +
1.486 + break;
1.487 + }
1.488 +
1.489 + default:
1.490 + {
1.491 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.492 + StopTest(KErrGeneral);
1.493 + }
1.494 + }
1.495 +
1.496 + }
1.497 +
1.498 +/*
1.499 + *
1.500 + * DisplayCodecInfo
1.501 + *
1.502 + */
1.503 +void RTestStepA3FDevSoundPlayBase::DisplayCodecInfo()
1.504 + {
1.505 + // Display trace about codec under test
1.506 + TUint32 fourCC = iInputDataType.FourCC();
1.507 + INFO_PRINTF5(_L("Codec under test -> %c%c%c%c"), fourCC, fourCC>>8, fourCC>>16, fourCC>>24);
1.508 +
1.509 + }
1.510 +
1.511 +/*
1.512 + *
1.513 + * ConvertDesToTMMFSampleRate
1.514 + *
1.515 + */
1.516 +TUint RTestStepA3FDevSoundPlayBase::ConvertDesToTMMFSampleRate(const TDesC& aSampleRateString)
1.517 + {
1.518 + TUint rate = 0;
1.519 +
1.520 + STR_SWITCH(aSampleRateString)
1.521 +
1.522 + STR_CASE(_L("EMMFSampleRate8000Hz"))
1.523 + {
1.524 + rate = EMMFSampleRate8000Hz;
1.525 + break;
1.526 + }
1.527 + STR_CASE(_L("EMMFSampleRate11025Hz"))
1.528 + {
1.529 + rate = EMMFSampleRate11025Hz;
1.530 + break;
1.531 + }
1.532 + STR_CASE(_L("EMMFSampleRate12000Hz"))
1.533 + {
1.534 + rate = EMMFSampleRate12000Hz;
1.535 + break;
1.536 + }
1.537 + STR_CASE(_L("EMMFSampleRate16000Hz"))
1.538 + {
1.539 + rate = EMMFSampleRate16000Hz;
1.540 + break;
1.541 + }
1.542 + STR_CASE(_L("EMMFSampleRate22050Hz"))
1.543 + {
1.544 + rate = EMMFSampleRate22050Hz;
1.545 + break;
1.546 + }
1.547 + STR_CASE(_L("EMMFSampleRate24000Hz"))
1.548 + {
1.549 + rate = EMMFSampleRate24000Hz;
1.550 + break;
1.551 + }
1.552 + STR_CASE(_L("EMMFSampleRate32000Hz"))
1.553 + {
1.554 + rate = EMMFSampleRate32000Hz;
1.555 + break;
1.556 + }
1.557 + STR_CASE(_L("EMMFSampleRate44100Hz"))
1.558 + {
1.559 + rate = EMMFSampleRate44100Hz;
1.560 + break;
1.561 + }
1.562 + STR_CASE(_L("EMMFSampleRate48000Hz"))
1.563 + {
1.564 + rate = EMMFSampleRate48000Hz;
1.565 + break;
1.566 + }
1.567 + STR_CASE(_L("EMMFSampleRate64000Hz"))
1.568 + {
1.569 + rate = EMMFSampleRate64000Hz;
1.570 + break;
1.571 + }
1.572 + STR_CASE(_L("EMMFSampleRate88200Hz"))
1.573 + {
1.574 + rate = EMMFSampleRate88200Hz;
1.575 + break;
1.576 + }
1.577 + STR_CASE(_L("EMMFSampleRate96000Hz"))
1.578 + {
1.579 + rate = EMMFSampleRate96000Hz;
1.580 + break;
1.581 + }
1.582 + STR_CASE(_L("InvalidRate"))
1.583 + {
1.584 + rate = 0x90000000;
1.585 + break;
1.586 + }
1.587 +
1.588 + DEFAULT_CASE()
1.589 + {
1.590 + ERR_PRINTF1(_L("Attempt to convert invalid sample rate"));
1.591 + StopTest(KErrGeneral);
1.592 + }
1.593 +
1.594 + STR_SWITCH_END()
1.595 +
1.596 + INFO_PRINTF2(_L("Sample Rate = %S"), &iSampleRate);
1.597 + return rate;
1.598 +
1.599 + }
1.600 +
1.601 +/*
1.602 + *
1.603 + * ConvertDesToTMMFMonoStereo
1.604 + *
1.605 + */
1.606 +TUint RTestStepA3FDevSoundPlayBase::ConvertDesToTMMFMonoStereo(const TDesC& aMonoStereoString)
1.607 + {
1.608 + TUint channelMode = 0;
1.609 +
1.610 + STR_SWITCH(aMonoStereoString)
1.611 +
1.612 + STR_CASE(_L("EMMFMono"))
1.613 + {
1.614 + channelMode = EMMFMono;
1.615 + break;
1.616 + }
1.617 + STR_CASE(_L("EMMFStereo"))
1.618 + {
1.619 + channelMode = EMMFStereo;
1.620 + break;
1.621 + }
1.622 + STR_CASE(_L("InvalidMode"))
1.623 + {
1.624 + channelMode = 0x90000000;
1.625 + break;
1.626 + }
1.627 + DEFAULT_CASE()
1.628 + {
1.629 + ERR_PRINTF1(_L("Attempt to convert invalid channel mode"));
1.630 + StopTest(KErrGeneral);
1.631 + }
1.632 +
1.633 + STR_SWITCH_END()
1.634 +
1.635 + INFO_PRINTF2(_L("Channel = %S"), &iMonoStereo);
1.636 + return channelMode;
1.637 +
1.638 + }
1.639 +
1.640 +/*
1.641 + *
1.642 + * SetSampleRateAndChannelMode
1.643 + *
1.644 + */
1.645 +void RTestStepA3FDevSoundPlayBase::SetSampleRateAndChannelMode()
1.646 + {
1.647 + if(!GetStringFromConfig(iSectName, _L("SampleRate"), iSampleRate))
1.648 + {
1.649 + TPtrC keyName(_L("SampleRate"));
1.650 + ERR_PRINTF3(_L("Error in getting sample rate from config file in %S section via the %S key field."), &iSectName, &keyName);
1.651 + StopTest(KErrPathNotFound);
1.652 + return;
1.653 + }
1.654 +
1.655 + if(!GetStringFromConfig(iSectName, _L("MonoStereo"), iMonoStereo))
1.656 + {
1.657 + TPtrC keyName(_L("MonoStereo"));
1.658 + ERR_PRINTF3(_L("Error in getting channel mode from config file in %S section via the %S key field."), &iSectName, &keyName);
1.659 + StopTest(KErrPathNotFound);
1.660 + return;
1.661 + }
1.662 +
1.663 + }
1.664 +
1.665 +/*
1.666 + *
1.667 + * CheckConfigAndFourCCUsage
1.668 + *
1.669 + */
1.670 +void RTestStepA3FDevSoundPlayBase::CheckConfigAndFourCCUsage()
1.671 + {
1.672 + if(!GetBoolFromConfig(iSectName, _L("SetConfig"), iConfig))
1.673 + {
1.674 + TPtrC keyName(_L("SetConfig"));
1.675 + ERR_PRINTF3(_L("Error in getting SetConfig flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
1.676 + StopTest(KErrPathNotFound);
1.677 + return;
1.678 + }
1.679 + if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
1.680 + {
1.681 + TPtrC keyName(_L("UseFourCC"));
1.682 + ERR_PRINTF3(_L("Error in getting UseFourCC flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
1.683 + StopTest(KErrPathNotFound);
1.684 + return;
1.685 + }
1.686 +
1.687 + }
1.688 +
1.689 +//
1.690 +// RStepA3FDevSoundPlaySimple
1.691 +//
1.692 +
1.693 +/*
1.694 + *
1.695 + * RStepA3FDevSoundPlaySimple - Test step constructor
1.696 + *
1.697 + */
1.698 +RStepA3FDevSoundPlaySimple::RStepA3FDevSoundPlaySimple(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.699 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1.700 + {
1.701 + }
1.702 +
1.703 +/*
1.704 + *
1.705 + * RStepA3FDevSoundPlaySimple - Test step constructor
1.706 + *
1.707 + */
1.708 +RStepA3FDevSoundPlaySimple::RStepA3FDevSoundPlaySimple(const TDesC& aTestName, const TDesC& aSectName)
1.709 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName)
1.710 + {
1.711 + }
1.712 +
1.713 +/*
1.714 + *
1.715 + * NewL
1.716 + *
1.717 + */
1.718 +RStepA3FDevSoundPlaySimple* RStepA3FDevSoundPlaySimple::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.719 + {
1.720 + RStepA3FDevSoundPlaySimple* self = new (ELeave) RStepA3FDevSoundPlaySimple(aTestName, aSectName, aInputDataType);
1.721 + return self;
1.722 +
1.723 + }
1.724 +
1.725 +/*
1.726 + *
1.727 + * NewL
1.728 + *
1.729 + */
1.730 +RStepA3FDevSoundPlaySimple* RStepA3FDevSoundPlaySimple::NewL(const TDesC& aTestName, const TDesC& aSectName)
1.731 + {
1.732 + RStepA3FDevSoundPlaySimple* self = new (ELeave) RStepA3FDevSoundPlaySimple(aTestName, aSectName);
1.733 + return self;
1.734 +
1.735 + }
1.736 +
1.737 +//
1.738 +// RStepA3FDevSoundPlayEmpty
1.739 +//
1.740 +
1.741 +/*
1.742 + *
1.743 + * RStepA3FDevSoundPlayEmpty - Test step constructor
1.744 + *
1.745 + */
1.746 +RStepA3FDevSoundPlayEmpty::RStepA3FDevSoundPlayEmpty(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.747 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1.748 + {
1.749 + }
1.750 +
1.751 +/*
1.752 + *
1.753 + * NewL
1.754 + *
1.755 + */
1.756 +RStepA3FDevSoundPlayEmpty* RStepA3FDevSoundPlayEmpty::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.757 + {
1.758 + RStepA3FDevSoundPlayEmpty* self = new (ELeave) RStepA3FDevSoundPlayEmpty(aTestName, aSectName, aInputDataType);
1.759 + return self;
1.760 +
1.761 + }
1.762 +
1.763 +/*
1.764 + *
1.765 + * Fsm
1.766 + * - Executes playing events of DevSound in sequence
1.767 + *
1.768 + */
1.769 +void RStepA3FDevSoundPlayEmpty::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.770 + {
1.771 + switch (iPlayState)
1.772 + {
1.773 + case EStatePlayStart:
1.774 + {
1.775 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayEmpty"),EFsmIncorrectErrorPassed));
1.776 + if (aDevSoundEvent == EEventPlayStart)
1.777 + {
1.778 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.779 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.780 + TInt err;
1.781 + if(iUseFourCC)
1.782 + {
1.783 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.784 + }
1.785 + else
1.786 + {
1.787 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.788 + }
1.789 + if (err != KErrNone)
1.790 + {
1.791 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.792 + StopTest(err);
1.793 + break;
1.794 + }
1.795 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.796 + iPlayState = EStatePlayInitializing;
1.797 + }
1.798 + else
1.799 + {
1.800 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.801 + StopTest(aError, EFail);
1.802 + }
1.803 + break;
1.804 + }
1.805 +
1.806 + case EStatePlayInitializing:
1.807 + {
1.808 + if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1.809 + {
1.810 + if(iConfig)
1.811 + {
1.812 + // Set Devsound capability settings using CMMFDevSound::SetConfigL
1.813 + SetSampleRateAndChannelMode();
1.814 + TMMFCapabilities capabilities;
1.815 + capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1.816 + capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1.817 +
1.818 + TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1.819 + if (errConfig != KErrNone)
1.820 + {
1.821 + ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1.822 + StopTest(errConfig);
1.823 + return;
1.824 + }
1.825 + }
1.826 +
1.827 + // Initialize audio device and starts the playing process
1.828 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1.829 + TRAPD(errPlay, iMMFDevSound->PlayInitL());
1.830 + if (errPlay != KErrNone)
1.831 + {
1.832 + ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
1.833 + StopTest(errPlay);
1.834 + break;
1.835 + }
1.836 + INFO_PRINTF1(_L("State: EStatePlaying"));
1.837 + iPlayState = EStatePlaying;
1.838 + }
1.839 + else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1.840 + {
1.841 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.842 + StopTest(aError);
1.843 + }
1.844 + else
1.845 + {
1.846 + ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1.847 + StopTest(aError, EFail);
1.848 + }
1.849 + break;
1.850 + }
1.851 +
1.852 + case EStatePlaying:
1.853 + {
1.854 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayEmpty"),EFsmIncorrectErrorPassed));
1.855 + if (aDevSoundEvent == EEventBTBF)
1.856 + {
1.857 + // Fill the buffer with audio data and play the data in the buffer
1.858 + CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1.859 + TInt err = iFile.Read(buffer->Data());
1.860 + if (err != KErrNone)
1.861 + {
1.862 + ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
1.863 + StopTest(err);
1.864 + break;
1.865 + }
1.866 + if (buffer->Data().Length() != buffer->RequestSize())
1.867 + {
1.868 + iBuffer->SetLastBuffer(ETrue);
1.869 + INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
1.870 + // Playing empty data
1.871 + iMMFDevSound->PlayData();
1.872 +
1.873 + }
1.874 + iBufferCount++;
1.875 + }
1.876 + else
1.877 + {
1.878 + ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
1.879 + StopTest(aError, EFail);
1.880 + }
1.881 +
1.882 + break;
1.883 + }
1.884 +
1.885 + default:
1.886 + {
1.887 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.888 + StopTest(KErrGeneral);
1.889 + }
1.890 + }
1.891 +
1.892 + }
1.893 +
1.894 +//
1.895 +// RStepA3FDevSoundPlayInvalidFourCC
1.896 +//
1.897 +
1.898 +/*
1.899 + *
1.900 + * RStepA3FDevSoundPlayInvalidFourCC - Test step constructor
1.901 + *
1.902 + */
1.903 +RStepA3FDevSoundPlayInvalidFourCC::RStepA3FDevSoundPlayInvalidFourCC(const TDesC& aTestName, const TFourCC& aInputDataType)
1.904 +:RTestStepA3FDevSoundPlayBase(aTestName, aInputDataType)
1.905 + {
1.906 + }
1.907 +
1.908 +/*
1.909 + *
1.910 + * NewL
1.911 + *
1.912 + */
1.913 +RStepA3FDevSoundPlayInvalidFourCC* RStepA3FDevSoundPlayInvalidFourCC::NewL(const TDesC& aTestName, const TFourCC& aInputDataType)
1.914 + {
1.915 + RStepA3FDevSoundPlayInvalidFourCC* self = new (ELeave) RStepA3FDevSoundPlayInvalidFourCC(aTestName, aInputDataType);
1.916 + return self;
1.917 +
1.918 + }
1.919 +
1.920 +/*
1.921 + *
1.922 + * KickoffTestL
1.923 + * - Starts the test
1.924 + *
1.925 + */
1.926 +void RStepA3FDevSoundPlayInvalidFourCC::KickoffTestL()
1.927 + {
1.928 + // Create instance of CMMFDevSound
1.929 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.930 + iMMFDevSound = CMMFDevSound::NewL();
1.931 +
1.932 + //Display the name of Codec being used
1.933 + DisplayCodecInfo();
1.934 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.935 +
1.936 + }
1.937 +
1.938 +/*
1.939 + *
1.940 + * Fsm
1.941 + * - Executes playing events of DevSound in sequence
1.942 + *
1.943 + */
1.944 +void RStepA3FDevSoundPlayInvalidFourCC::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.945 + {
1.946 + switch (iPlayState)
1.947 + {
1.948 + case EStatePlayStart:
1.949 + {
1.950 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayInvalidFourCC"),EFsmIncorrectErrorPassed));
1.951 + if (aDevSoundEvent == EEventPlayStart)
1.952 + {
1.953 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.954 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.955 + TInt err;
1.956 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.957 + if (err == KErrNotSupported)
1.958 + {
1.959 + INFO_PRINTF2(_L("CMMFDevSound::InitializeL left with expected error = %d"), err);
1.960 + StopTest(err, EPass);
1.961 + }
1.962 + else
1.963 + {
1.964 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.965 + INFO_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
1.966 + StopTest(err, EFail);
1.967 + }
1.968 + }
1.969 + else
1.970 + {
1.971 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.972 + StopTest(aError, EFail);
1.973 + }
1.974 + break;
1.975 + }
1.976 + default:
1.977 + {
1.978 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.979 + StopTest(KErrGeneral);
1.980 + }
1.981 + }
1.982 +
1.983 + }
1.984 +
1.985 +
1.986 +
1.987 +
1.988 +//
1.989 +// RStepA3FDevSoundInitializeWithHwDeviceUID
1.990 +//
1.991 +
1.992 +/*
1.993 + *
1.994 + * RStepA3FDevSoundInitializeWithHwDeviceUID - Test step constructor
1.995 + *
1.996 + */
1.997 +RStepA3FDevSoundInitializeWithHwDeviceUID::RStepA3FDevSoundInitializeWithHwDeviceUID(const TDesC& aTestName)
1.998 +:RTestStepA3FDevSoundPlayBase(aTestName)
1.999 + {
1.1000 + }
1.1001 +
1.1002 +/*
1.1003 + *
1.1004 + * NewL
1.1005 + *
1.1006 + */
1.1007 +RStepA3FDevSoundInitializeWithHwDeviceUID* RStepA3FDevSoundInitializeWithHwDeviceUID::NewL(const TDesC& aTestName)
1.1008 + {
1.1009 + RStepA3FDevSoundInitializeWithHwDeviceUID* self = new (ELeave) RStepA3FDevSoundInitializeWithHwDeviceUID(aTestName);
1.1010 + return self;
1.1011 +
1.1012 + }
1.1013 +
1.1014 +/*
1.1015 + *
1.1016 + * KickoffTestL
1.1017 + * - Starts the test
1.1018 + *
1.1019 + */
1.1020 +void RStepA3FDevSoundInitializeWithHwDeviceUID::KickoffTestL()
1.1021 + {
1.1022 + // Create instance of CMMFDevSound
1.1023 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.1024 + iMMFDevSound = CMMFDevSound::NewL();
1.1025 +
1.1026 + //Display the name of Codec being used.
1.1027 + DisplayCodecInfo();
1.1028 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.1029 +
1.1030 + }
1.1031 +
1.1032 +/*
1.1033 + *
1.1034 + * Fsm
1.1035 + * - Executes playing events of DevSound in sequence
1.1036 + *
1.1037 + */
1.1038 +void RStepA3FDevSoundInitializeWithHwDeviceUID::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.1039 + {
1.1040 + switch (iPlayState)
1.1041 + {
1.1042 + case EStatePlayStart:
1.1043 + {
1.1044 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeWithHwDeviceUID"),EFsmIncorrectErrorPassed));
1.1045 + if (aDevSoundEvent == EEventPlayStart)
1.1046 + {
1.1047 + // Initializing DevSound object for playing mode to process audio data via HwDeviceUID
1.1048 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL with KMmfUidHwDevicePCM16ToPCM16"));
1.1049 + TInt err;
1.1050 + TRAP(err, iMMFDevSound->InitializeL(*this, 0x101F9F00 , EMMFStatePlaying)); //KMmfUidHwDevicePCM16ToPCM16
1.1051 + if (err == KErrNotSupported)
1.1052 + {
1.1053 + INFO_PRINTF2(_L("CMMFDevSound::InitializeL left with expected error = %d"), err);
1.1054 + StopTest(err, EPass);
1.1055 + }
1.1056 + else
1.1057 + {
1.1058 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.1059 + INFO_PRINTF2(_L("Expected error = %d"), KErrNotSupported);
1.1060 + StopTest(err, EFail);
1.1061 + }
1.1062 + }
1.1063 + else
1.1064 + {
1.1065 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.1066 + StopTest(aError, EFail);
1.1067 + }
1.1068 + break;
1.1069 + }
1.1070 + default:
1.1071 + {
1.1072 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.1073 + StopTest(KErrGeneral);
1.1074 + }
1.1075 + }
1.1076 +
1.1077 + }
1.1078 +
1.1079 +//
1.1080 +// RStepA3FDevSoundPlayInvalidConfig
1.1081 +//
1.1082 +
1.1083 +/*
1.1084 + *
1.1085 + * RStepA3FDevSoundPlayInvalidConfig - Test step constructor
1.1086 + *
1.1087 + */
1.1088 +RStepA3FDevSoundPlayInvalidConfig::RStepA3FDevSoundPlayInvalidConfig(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1089 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1.1090 + {
1.1091 + }
1.1092 +
1.1093 +/*
1.1094 + *
1.1095 + * NewL
1.1096 + *
1.1097 + */
1.1098 +RStepA3FDevSoundPlayInvalidConfig* RStepA3FDevSoundPlayInvalidConfig::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1099 + {
1.1100 + RStepA3FDevSoundPlayInvalidConfig* self = new (ELeave) RStepA3FDevSoundPlayInvalidConfig(aTestName, aSectName, aInputDataType);
1.1101 + return self;
1.1102 +
1.1103 + }
1.1104 +
1.1105 +/*
1.1106 + *
1.1107 + * KickoffTestL
1.1108 + * - Starts the test
1.1109 + *
1.1110 + */
1.1111 +void RStepA3FDevSoundPlayInvalidConfig::KickoffTestL()
1.1112 + {
1.1113 + // Create instance of CMMFDevSound
1.1114 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.1115 + iMMFDevSound = CMMFDevSound::NewL();
1.1116 +
1.1117 + iInvalidConfig = ETrue;
1.1118 + //Display the name of Codec being used
1.1119 + DisplayCodecInfo();
1.1120 + CheckConfigAndFourCCUsage();
1.1121 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.1122 +
1.1123 + }
1.1124 +
1.1125 +/*
1.1126 + *
1.1127 + * PlayError
1.1128 + *
1.1129 + */
1.1130 +void RStepA3FDevSoundPlayInvalidConfig::PlayError(TInt aError)
1.1131 + {
1.1132 + if ((iPlayState == EStatePlaying) && (aError == KErrArgument))
1.1133 + {
1.1134 + INFO_PRINTF2(_L("DevSound called PlayError with expected error = %d"), aError);
1.1135 + StopTest(aError, EPass);
1.1136 + }
1.1137 + else
1.1138 + {
1.1139 + INFO_PRINTF1(_L("Expected error = -6"));
1.1140 + ERR_PRINTF2(_L("DevSound called PlayError with error = %d"), aError);
1.1141 + StopTest(aError, EFail);
1.1142 + }
1.1143 +
1.1144 + }
1.1145 +
1.1146 +//
1.1147 +// RStepA3FDevSoundReadConfigDuringPlay
1.1148 +//
1.1149 +
1.1150 +/*
1.1151 + *
1.1152 + * RStepA3FDevSoundReadConfigDuringPlay - Test step constructor
1.1153 + *
1.1154 + */
1.1155 +RStepA3FDevSoundReadConfigDuringPlay::RStepA3FDevSoundReadConfigDuringPlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1156 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1.1157 + {
1.1158 + }
1.1159 +
1.1160 +/*
1.1161 + *
1.1162 + * NewL
1.1163 + *
1.1164 + */
1.1165 +RStepA3FDevSoundReadConfigDuringPlay* RStepA3FDevSoundReadConfigDuringPlay::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1166 + {
1.1167 + RStepA3FDevSoundReadConfigDuringPlay* self = new (ELeave) RStepA3FDevSoundReadConfigDuringPlay(aTestName, aSectName, aInputDataType);
1.1168 + return self;
1.1169 +
1.1170 + }
1.1171 +
1.1172 +/*
1.1173 + *
1.1174 + * PlayError
1.1175 + *
1.1176 + */
1.1177 +void RStepA3FDevSoundReadConfigDuringPlay::BufferToBeFilled(CMMFBuffer* aBuffer)
1.1178 + {
1.1179 + if (!aBuffer)
1.1180 + {
1.1181 + ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
1.1182 + StopTest(KErrGeneral);
1.1183 + return;
1.1184 + }
1.1185 +
1.1186 + iBuffer = aBuffer;
1.1187 +
1.1188 + if (iPlayState == EStatePlaying)
1.1189 + {
1.1190 + TMMFCapabilities capabilities;
1.1191 + capabilities = iMMFDevSound->Config();
1.1192 + INFO_PRINTF1(_L("Config values during Play: "));
1.1193 + if (capabilities.iRate == ConvertDesToTMMFSampleRate(iSampleRate) && capabilities.iChannels == ConvertDesToTMMFMonoStereo(iMonoStereo))
1.1194 + {
1.1195 + INFO_PRINTF1(_L("Config values before and during playback are same."));
1.1196 + StopTest(KErrNone);
1.1197 + }
1.1198 + else
1.1199 + {
1.1200 + ERR_PRINTF1(_L("Config values before and during playback are different."));
1.1201 + StopTest(KErrGeneral);
1.1202 + }
1.1203 + }
1.1204 +
1.1205 + }
1.1206 +
1.1207 +//
1.1208 +// RStepA3FDevSoundSetVolPlayStopGetVol
1.1209 +//
1.1210 +
1.1211 +/*
1.1212 + *
1.1213 + * RStepA3FDevSoundSetVolPlayStopGetVol - Test step constructor
1.1214 + *
1.1215 + */
1.1216 +RStepA3FDevSoundSetVolPlayStopGetVol::RStepA3FDevSoundSetVolPlayStopGetVol(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1217 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
1.1218 + iSetVolume(0),
1.1219 + iVolDuringStopped(0),
1.1220 + iCheckTimer(ETrue)
1.1221 + {
1.1222 + }
1.1223 +
1.1224 +/*
1.1225 + *
1.1226 + * NewL
1.1227 + *
1.1228 + */
1.1229 +RStepA3FDevSoundSetVolPlayStopGetVol* RStepA3FDevSoundSetVolPlayStopGetVol::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1230 + {
1.1231 + RStepA3FDevSoundSetVolPlayStopGetVol* self = new (ELeave) RStepA3FDevSoundSetVolPlayStopGetVol(aTestName, aSectName, aInputDataType);
1.1232 + return self;
1.1233 +
1.1234 + }
1.1235 +
1.1236 +/*
1.1237 + *
1.1238 + * DoKickoffTestL
1.1239 + *
1.1240 + */
1.1241 +void RStepA3FDevSoundSetVolPlayStopGetVol::DoKickoffTestL()
1.1242 + {
1.1243 + INFO_PRINTF2(_L("File to be played -> %S"), &iFilename);
1.1244 + DisplayCodecInfo();
1.1245 + CheckConfigAndFourCCUsage();
1.1246 +
1.1247 + TBool vol = GetIntFromConfig(iSectName,_L("Setvolume"),iSetVolume);
1.1248 + if (vol)
1.1249 + {
1.1250 + INFO_PRINTF2(_L("SetVolume = %d"), iSetVolume );
1.1251 + }
1.1252 + else
1.1253 + {
1.1254 + TPtrC keyName(_L("Setvolume"));
1.1255 + ERR_PRINTF3(_L("Error in getting volume to be set from config file in %S section via the %S key field."), &iSectName, &keyName);
1.1256 + StopTest(KErrPathNotFound);
1.1257 + return;
1.1258 + }
1.1259 +
1.1260 + }
1.1261 +
1.1262 +/*
1.1263 + *
1.1264 + * Fsm
1.1265 + * - Executes playing events of DevSound in sequence
1.1266 + *
1.1267 + */
1.1268 +void RStepA3FDevSoundSetVolPlayStopGetVol::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.1269 + {
1.1270 + switch (iPlayState)
1.1271 + {
1.1272 + case EStatePlayStart:
1.1273 + {
1.1274 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundSetVolPlayStopGetVol"),EFsmIncorrectErrorPassed));
1.1275 + if (aDevSoundEvent == EEventPlayStart)
1.1276 + {
1.1277 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.1278 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.1279 + TInt err;
1.1280 + if(iUseFourCC)
1.1281 + {
1.1282 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.1283 + }
1.1284 + else
1.1285 + {
1.1286 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.1287 + }
1.1288 + if (err != KErrNone)
1.1289 + {
1.1290 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.1291 + StopTest(err);
1.1292 + break;
1.1293 + }
1.1294 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.1295 + iPlayState = EStatePlayInitializing;
1.1296 + }
1.1297 + else
1.1298 + {
1.1299 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.1300 + StopTest(aError, EFail);
1.1301 + }
1.1302 + break;
1.1303 + }
1.1304 +
1.1305 + case EStatePlayInitializing:
1.1306 + {
1.1307 + if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1.1308 + {
1.1309 + if(iConfig)
1.1310 + {
1.1311 + // Set Devsound capability settings using CMMFDevSound::SetConfigL
1.1312 + SetSampleRateAndChannelMode();
1.1313 + TMMFCapabilities capabilities;
1.1314 + capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1.1315 + capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1.1316 +
1.1317 + TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1.1318 + if (errConfig != KErrNone)
1.1319 + {
1.1320 + ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1.1321 + StopTest(errConfig);
1.1322 + break;
1.1323 + }
1.1324 + }
1.1325 + // Setting Volume Before Playback
1.1326 + iMMFDevSound->SetVolume(iSetVolume);
1.1327 + INFO_PRINTF2(_L("Volume before playback = %d"), iSetVolume);
1.1328 + // Initialize audio device and starts the playing process
1.1329 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1.1330 + TRAPD(errPlay, iMMFDevSound->PlayInitL());
1.1331 + if (errPlay != KErrNone)
1.1332 + {
1.1333 + ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
1.1334 + StopTest(errPlay);
1.1335 + break;
1.1336 + }
1.1337 + INFO_PRINTF1(_L("State: EStatePlaying"));
1.1338 + iPlayState = EStatePlaying;
1.1339 + }
1.1340 + else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1.1341 + {
1.1342 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.1343 + StopTest(aError);
1.1344 + }
1.1345 + else
1.1346 + {
1.1347 + ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1.1348 + StopTest(aError, EFail);
1.1349 + }
1.1350 + break;
1.1351 + }
1.1352 +
1.1353 + case EStatePlaying:
1.1354 + {
1.1355 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundSetVolPlayStopGetVol"),EFsmIncorrectErrorPassed));
1.1356 + if (aDevSoundEvent == EEventBTBF)
1.1357 + {
1.1358 + // Fill the buffer with audio data and play the data in the buffer
1.1359 + CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1.1360 + TInt err = iFile.Read(buffer->Data());
1.1361 + if (err != KErrNone)
1.1362 + {
1.1363 + ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
1.1364 + StopTest(err);
1.1365 + }
1.1366 + if (buffer->Data().Length() != buffer->RequestSize())
1.1367 + {
1.1368 + INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
1.1369 + iBuffer->SetLastBuffer(ETrue);
1.1370 + }
1.1371 +
1.1372 + if (iCheckTimer)
1.1373 + {
1.1374 + iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
1.1375 + }
1.1376 + iCheckTimer = EFalse;
1.1377 + // Playing data in the buffer at the current volume
1.1378 + iMMFDevSound->PlayData();
1.1379 + iBufferCount++;
1.1380 + }
1.1381 + else if (aDevSoundEvent == EEventPlayTimerComplete)
1.1382 + {
1.1383 + iMMFDevSound->Stop();
1.1384 + iPlayState = EStatePlayStopped;
1.1385 + INFO_PRINTF1(_L("State: EStatePlayStopped"));
1.1386 + }
1.1387 + else
1.1388 + {
1.1389 + ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
1.1390 + StopTest(aError, EFail);
1.1391 + }
1.1392 + break;
1.1393 + }
1.1394 +
1.1395 + case EStatePlayStopped:
1.1396 + {
1.1397 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundSetVolPlayStopGetVol"),EFsmIncorrectErrorPassed));
1.1398 + if (aDevSoundEvent == EEventPlayStopped)
1.1399 + {
1.1400 + iVolDuringStopped = iMMFDevSound->Volume();
1.1401 + INFO_PRINTF2(_L("Volume when play is stopped: %d"), iVolDuringStopped);
1.1402 + if (iVolDuringStopped == iSetVolume)
1.1403 + {
1.1404 + INFO_PRINTF1(_L("Volume set before the playback is same as volume during playback stopped"));
1.1405 + StopTest(KErrNone);
1.1406 + }
1.1407 + else
1.1408 + {
1.1409 + ERR_PRINTF1(_L("Volume set before the playback is not the same as volume during playback stopped"));
1.1410 + StopTest(KErrGeneral);
1.1411 + }
1.1412 + }
1.1413 + else
1.1414 + {
1.1415 + ERR_PRINTF1(_L("EStatePlayStopped event not received in EStatePlayStopped state"));
1.1416 + StopTest(KErrGeneral);
1.1417 + break;
1.1418 + }
1.1419 + }
1.1420 + break;
1.1421 +
1.1422 + default:
1.1423 + {
1.1424 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.1425 + StopTest(KErrGeneral);
1.1426 + }
1.1427 + }
1.1428 +
1.1429 + }
1.1430 +
1.1431 +/*
1.1432 + *
1.1433 + * DoTimerCallback
1.1434 + *
1.1435 + */
1.1436 +void RStepA3FDevSoundSetVolPlayStopGetVol::DoTimerCallback()
1.1437 + {
1.1438 + iTimer->Cancel(); // only really wanted a one-shot
1.1439 + if(!iCheckTimer)
1.1440 + {
1.1441 + Fsm(EEventPlayTimerComplete, KErrNone);
1.1442 + Fsm(EEventPlayStopped, KErrNone);
1.1443 + }
1.1444 +
1.1445 + }
1.1446 +
1.1447 +//
1.1448 +// RStepA3FDevSoundFlushBuffersPaused
1.1449 +//
1.1450 +
1.1451 +/*
1.1452 + *
1.1453 + * RStepA3FDevSoundFlushBuffersPaused - Test step constructor
1.1454 + *
1.1455 + */
1.1456 +RStepA3FDevSoundFlushBuffersPaused::RStepA3FDevSoundFlushBuffersPaused(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1457 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
1.1458 + iCheckTimer(ETrue)
1.1459 + {
1.1460 + }
1.1461 +
1.1462 +/*
1.1463 + *
1.1464 + * NewL
1.1465 + *
1.1466 + */
1.1467 +RStepA3FDevSoundFlushBuffersPaused* RStepA3FDevSoundFlushBuffersPaused::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1468 + {
1.1469 + RStepA3FDevSoundFlushBuffersPaused* self = new (ELeave) RStepA3FDevSoundFlushBuffersPaused(aTestName, aSectName, aInputDataType);
1.1470 + return self;
1.1471 +
1.1472 + }
1.1473 +
1.1474 +/*
1.1475 + *
1.1476 + * Fsm
1.1477 + * - Executes playing events of DevSound in sequence
1.1478 + *
1.1479 + */
1.1480 +void RStepA3FDevSoundFlushBuffersPaused::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.1481 + {
1.1482 + switch (iPlayState)
1.1483 + {
1.1484 + case EStatePlayStart:
1.1485 + {
1.1486 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundFlushBuffersPaused"),EFsmIncorrectErrorPassed));
1.1487 + if (aDevSoundEvent == EEventPlayStart)
1.1488 + {
1.1489 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.1490 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.1491 + TInt err;
1.1492 + if(iUseFourCC)
1.1493 + {
1.1494 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.1495 + }
1.1496 + else
1.1497 + {
1.1498 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.1499 + }
1.1500 + if (err != KErrNone)
1.1501 + {
1.1502 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.1503 + StopTest(err);
1.1504 + break;
1.1505 + }
1.1506 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.1507 + iPlayState = EStatePlayInitializing;
1.1508 + }
1.1509 + else
1.1510 + {
1.1511 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.1512 + StopTest(aError, EFail);
1.1513 + }
1.1514 + break;
1.1515 + }
1.1516 +
1.1517 + case EStatePlayInitializing:
1.1518 + {
1.1519 + if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1.1520 + {
1.1521 + if(iConfig)
1.1522 + {
1.1523 + // Set Devsound capability settings using CMMFDevSound::SetConfigL
1.1524 + SetSampleRateAndChannelMode();
1.1525 + TMMFCapabilities capabilities;
1.1526 + capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1.1527 + capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1.1528 +
1.1529 + TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1.1530 + if (errConfig != KErrNone)
1.1531 + {
1.1532 + ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1.1533 + StopTest(errConfig);
1.1534 + return;
1.1535 + }
1.1536 + }
1.1537 + // Initialize audio device and starts the playing process
1.1538 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1.1539 + TRAPD(errPlay, iMMFDevSound->PlayInitL());
1.1540 + if (errPlay != KErrNone)
1.1541 + {
1.1542 + ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
1.1543 + StopTest(errPlay);
1.1544 + break;
1.1545 + }
1.1546 + INFO_PRINTF1(_L("State: EStatePlaying"));
1.1547 + iPlayState = EStatePlaying;
1.1548 + }
1.1549 + else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1.1550 + {
1.1551 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.1552 + StopTest(aError);
1.1553 + }
1.1554 + else
1.1555 + {
1.1556 + ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1.1557 + StopTest(aError, EFail);
1.1558 + }
1.1559 + break;
1.1560 + }
1.1561 +
1.1562 + case EStatePlaying:
1.1563 + {
1.1564 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundFlushBuffersPaused"),EFsmIncorrectErrorPassed));
1.1565 + if (aDevSoundEvent == EEventBTBF)
1.1566 + {
1.1567 + // Fill the buffer with audio data and play the data in the buffer
1.1568 + CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1.1569 + TInt err = iFile.Read(buffer->Data());
1.1570 + if (err != KErrNone)
1.1571 + {
1.1572 + ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
1.1573 + StopTest(err);
1.1574 + break;
1.1575 + }
1.1576 + if (buffer->Data().Length() != buffer->RequestSize())
1.1577 + {
1.1578 + INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
1.1579 + iBuffer->SetLastBuffer(ETrue);
1.1580 + }
1.1581 + if (iCheckTimer)
1.1582 + {
1.1583 + iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
1.1584 + }
1.1585 + // Playing data in the buffer at the current volume
1.1586 + iMMFDevSound->PlayData();
1.1587 + iBufferCount++;
1.1588 + iCheckTimer = EFalse;
1.1589 + }
1.1590 + else if (aDevSoundEvent == EEventPlayTimerComplete)
1.1591 + {
1.1592 + INFO_PRINTF1(_L("Calling CMMFDevSound::Pause()"));
1.1593 + iMMFDevSound->Pause();
1.1594 + iPlayState = EStatePlayPaused;
1.1595 + INFO_PRINTF1(_L("State: EStatePlayPaused"));
1.1596 + }
1.1597 + else
1.1598 + {
1.1599 + ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
1.1600 + StopTest(aError, EFail);
1.1601 + }
1.1602 +
1.1603 + break;
1.1604 + }
1.1605 +
1.1606 + case EStatePlayPaused:
1.1607 + {
1.1608 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundFlushBuffersPaused"),EFsmIncorrectErrorPassed));
1.1609 + TInt err;
1.1610 + if (aDevSoundEvent == EEventPlayPaused)
1.1611 + {
1.1612 + err = iMMFDevSound->EmptyBuffers();
1.1613 + INFO_PRINTF2(_L("EmptyBuffers in paused state returned with %d"), err);
1.1614 + INFO_PRINTF2(_L("Expected to return with %d"), KErrNone);
1.1615 + StopTest(err);
1.1616 + }
1.1617 + break;
1.1618 + }
1.1619 +
1.1620 + default:
1.1621 + {
1.1622 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.1623 + StopTest(KErrGeneral);
1.1624 + }
1.1625 + }
1.1626 +
1.1627 + }
1.1628 +
1.1629 +/*
1.1630 + *
1.1631 + * BufferToBeFilled
1.1632 + *
1.1633 + */
1.1634 +void RStepA3FDevSoundFlushBuffersPaused::BufferToBeFilled(CMMFBuffer* aBuffer)
1.1635 + {
1.1636 + if (!aBuffer)
1.1637 + {
1.1638 + ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
1.1639 + StopTest(KErrGeneral);
1.1640 + return;
1.1641 + }
1.1642 +
1.1643 + iBuffer = aBuffer;
1.1644 +
1.1645 + if(iPlayState != EStatePlayPaused)
1.1646 + {
1.1647 + Fsm(EEventBTBF, KErrNone);
1.1648 + }
1.1649 +
1.1650 + }
1.1651 +
1.1652 +/*
1.1653 + *
1.1654 + * DoTimerCallback
1.1655 + *
1.1656 + */
1.1657 +void RStepA3FDevSoundFlushBuffersPaused::DoTimerCallback()
1.1658 + {
1.1659 + iTimer->Cancel(); // only really wanted a one-shot
1.1660 + if(!iCheckTimer)
1.1661 + {
1.1662 + Fsm(EEventPlayTimerComplete, KErrNone);
1.1663 + Fsm(EEventPlayPaused, KErrNone);
1.1664 + }
1.1665 + else
1.1666 + {
1.1667 + StopTest(KErrGeneral);
1.1668 + }
1.1669 +
1.1670 + }
1.1671 +
1.1672 +//
1.1673 +// RStepA3FDevSoundInvalidStatePlay
1.1674 +//
1.1675 +
1.1676 +/*
1.1677 + *
1.1678 + * RStepA3FDevSoundInvalidStatePlay - Test step constructor
1.1679 + *
1.1680 + */
1.1681 +RStepA3FDevSoundInvalidStatePlay::RStepA3FDevSoundInvalidStatePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1682 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1.1683 + {
1.1684 + }
1.1685 +
1.1686 +/*
1.1687 + *
1.1688 + * NewL
1.1689 + *
1.1690 + */
1.1691 +RStepA3FDevSoundInvalidStatePlay* RStepA3FDevSoundInvalidStatePlay::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1692 + {
1.1693 + RStepA3FDevSoundInvalidStatePlay* self = new (ELeave) RStepA3FDevSoundInvalidStatePlay(aTestName, aSectName, aInputDataType);
1.1694 + return self;
1.1695 +
1.1696 + }
1.1697 +
1.1698 +/*
1.1699 + *
1.1700 + * KickoffTestL
1.1701 + * - Starts the test
1.1702 + *
1.1703 + */
1.1704 +void RStepA3FDevSoundInvalidStatePlay::KickoffTestL()
1.1705 + {
1.1706 + // Create instance of CMMFDevSound
1.1707 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.1708 + iMMFDevSound = CMMFDevSound::NewL();
1.1709 +
1.1710 + //Display the name of Codec being used
1.1711 + DisplayCodecInfo();
1.1712 + if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
1.1713 + {
1.1714 + TPtrC keyName(_L("UseFourCC"));
1.1715 + ERR_PRINTF3(_L("Error in getting UseFourCC flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
1.1716 + StopTest(KErrPathNotFound);
1.1717 + return;
1.1718 + }
1.1719 +
1.1720 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.1721 +
1.1722 + }
1.1723 +
1.1724 +/*
1.1725 + *
1.1726 + * Fsm
1.1727 + * - Executes playing events of DevSound in sequence
1.1728 + *
1.1729 + */
1.1730 +void RStepA3FDevSoundInvalidStatePlay::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.1731 + {
1.1732 + switch (iPlayState)
1.1733 + {
1.1734 + case EStatePlayStart:
1.1735 + {
1.1736 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInvalidStatePlay"),EFsmIncorrectErrorPassed));
1.1737 + if (aDevSoundEvent == EEventPlayStart)
1.1738 + {
1.1739 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.1740 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.1741 + TInt err;
1.1742 + INFO_PRINTF1(_L("Initializing DevSound in EMMFStateRecording"));
1.1743 + if(iUseFourCC)
1.1744 + {
1.1745 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStateRecording));
1.1746 + }
1.1747 + else
1.1748 + {
1.1749 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStateRecording));
1.1750 + }
1.1751 + if (err != KErrNone)
1.1752 + {
1.1753 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.1754 + StopTest(err, EFail);
1.1755 + break;
1.1756 + }
1.1757 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.1758 + iPlayState = EStatePlayInitializing;
1.1759 + }
1.1760 + else
1.1761 + {
1.1762 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.1763 + StopTest(aError, EFail);
1.1764 + }
1.1765 + break;
1.1766 + }
1.1767 +
1.1768 + case EStatePlayInitializing:
1.1769 + {
1.1770 + if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1.1771 + {
1.1772 + // Initialize audio device and start the playing process
1.1773 + // Calling CMMFDevSound::PlayInitL() when DevSound initialized for record mode!
1.1774 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1.1775 + TRAPD(errPlay, iMMFDevSound->PlayInitL());
1.1776 + if (errPlay == KErrNotReady)
1.1777 + {
1.1778 + ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left as expected with error = %d"), errPlay);
1.1779 + StopTest(errPlay,EPass);
1.1780 + }
1.1781 + else
1.1782 + {
1.1783 + ERR_PRINTF2(_L("CMMFDevSound::PlayInitL did NOT leave with KErrNotReady as expected. Error = %d"), errPlay);
1.1784 + StopTest(KErrUnknown);
1.1785 + }
1.1786 + }
1.1787 + else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1.1788 + {
1.1789 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.1790 + StopTest(aError);
1.1791 + }
1.1792 + else
1.1793 + {
1.1794 + ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1.1795 + StopTest(aError, EFail);
1.1796 + }
1.1797 +
1.1798 + break;
1.1799 +
1.1800 + }
1.1801 + default:
1.1802 + {
1.1803 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.1804 + StopTest(KErrGeneral);
1.1805 + }
1.1806 + }
1.1807 +
1.1808 + }
1.1809 +
1.1810 +/*
1.1811 + *
1.1812 + * BufferToBeFilled
1.1813 + *
1.1814 + */
1.1815 +void RStepA3FDevSoundInvalidStatePlay::BufferToBeFilled(CMMFBuffer* aBuffer)
1.1816 + {
1.1817 + if (!aBuffer)
1.1818 + {
1.1819 + ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
1.1820 + StopTest(KErrGeneral);
1.1821 + return;
1.1822 + }
1.1823 +
1.1824 + iBuffer = aBuffer;
1.1825 +
1.1826 + // Call to continue the Play process
1.1827 + Fsm(EEventBTBF,KErrNone);
1.1828 +
1.1829 + }
1.1830 +
1.1831 +/*
1.1832 + *
1.1833 + * PlayError
1.1834 + *
1.1835 + */
1.1836 +void RStepA3FDevSoundInvalidStatePlay::PlayError(TInt aError)
1.1837 + {
1.1838 + if ((iPlayState == EStatePlaying) && (aError == KErrNotSupported))
1.1839 + {
1.1840 + INFO_PRINTF2(_L("DevSound called PlayError with expected error = %d"), aError);
1.1841 + StopTest(aError, EPass);
1.1842 + }
1.1843 + else
1.1844 + {
1.1845 + INFO_PRINTF1(_L("Expected error = -5"));
1.1846 + ERR_PRINTF2(_L("DevSound called PlayError with error = %d"), aError);
1.1847 + StopTest(aError, EFail);
1.1848 + }
1.1849 +
1.1850 + }
1.1851 +
1.1852 +//
1.1853 +// RStepA3FDevSoundFlushBuffersPlaying
1.1854 +//
1.1855 +
1.1856 +/*
1.1857 + *
1.1858 + * RStepA3FDevSoundFlushBuffersPlaying - Test step constructor
1.1859 + *
1.1860 + */
1.1861 +RStepA3FDevSoundFlushBuffersPlaying::RStepA3FDevSoundFlushBuffersPlaying(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1862 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1.1863 + {
1.1864 + }
1.1865 +
1.1866 +/*
1.1867 + *
1.1868 + * NewL
1.1869 + *
1.1870 + */
1.1871 +RStepA3FDevSoundFlushBuffersPlaying* RStepA3FDevSoundFlushBuffersPlaying::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.1872 + {
1.1873 + RStepA3FDevSoundFlushBuffersPlaying* self = new (ELeave) RStepA3FDevSoundFlushBuffersPlaying(aTestName, aSectName, aInputDataType);
1.1874 + return self;
1.1875 +
1.1876 + }
1.1877 +
1.1878 +/*
1.1879 + *
1.1880 + * Fsm
1.1881 + * - Executes playing events of DevSound in sequence
1.1882 + *
1.1883 + */
1.1884 +void RStepA3FDevSoundFlushBuffersPlaying::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.1885 + {
1.1886 + switch (iPlayState)
1.1887 + {
1.1888 + case EStatePlayStart:
1.1889 + {
1.1890 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundFlushBuffersPlaying"),EFsmIncorrectErrorPassed));
1.1891 + if (aDevSoundEvent == EEventPlayStart)
1.1892 + {
1.1893 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.1894 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.1895 + TInt err;
1.1896 + if(iUseFourCC)
1.1897 + {
1.1898 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.1899 + }
1.1900 + else
1.1901 + {
1.1902 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.1903 + }
1.1904 + if (err != KErrNone)
1.1905 + {
1.1906 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.1907 + StopTest(err);
1.1908 + break;
1.1909 + }
1.1910 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.1911 + iPlayState = EStatePlayInitializing;
1.1912 + }
1.1913 + else
1.1914 + {
1.1915 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.1916 + StopTest(aError, EFail);
1.1917 + }
1.1918 + break;
1.1919 + }
1.1920 +
1.1921 + case EStatePlayInitializing:
1.1922 + {
1.1923 + if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1.1924 + {
1.1925 + if(iConfig)
1.1926 + {
1.1927 + // Set Devsound capability settings using CMMFDevSound::SetConfigL
1.1928 + SetSampleRateAndChannelMode();
1.1929 + TMMFCapabilities capabilities;
1.1930 + capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1.1931 + capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1.1932 +
1.1933 + TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1.1934 + if (errConfig != KErrNone)
1.1935 + {
1.1936 + ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1.1937 + StopTest(errConfig);
1.1938 + break;
1.1939 + }
1.1940 + }
1.1941 + // Initialize audio device and starts the playing process
1.1942 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1.1943 + TRAPD(errPlay, iMMFDevSound->PlayInitL());
1.1944 + if (errPlay != KErrNone)
1.1945 + {
1.1946 + ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
1.1947 + StopTest(errPlay);
1.1948 + break;
1.1949 + }
1.1950 + INFO_PRINTF1(_L("State: EStatePlaying"));
1.1951 + iPlayState = EStatePlaying;
1.1952 + }
1.1953 + else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1.1954 + {
1.1955 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.1956 + StopTest(aError);
1.1957 + }
1.1958 + else
1.1959 + {
1.1960 + ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1.1961 + StopTest(aError, EFail);
1.1962 + }
1.1963 + break;
1.1964 + }
1.1965 +
1.1966 + case EStatePlaying:
1.1967 + {
1.1968 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundFlushBuffersPlaying"),EFsmIncorrectErrorPassed));
1.1969 + if (aDevSoundEvent == EEventBTBF)
1.1970 + {
1.1971 + // Fill the buffer with audio data and play the data in the buffer
1.1972 + CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1.1973 + TInt err = iFile.Read(buffer->Data());
1.1974 + if (err != KErrNone)
1.1975 + {
1.1976 + ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
1.1977 + StopTest(err);
1.1978 + break;
1.1979 + }
1.1980 + if (buffer->Data().Length() != buffer->RequestSize())
1.1981 + {
1.1982 + INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
1.1983 + iBuffer->SetLastBuffer(ETrue);
1.1984 + }
1.1985 +
1.1986 + INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers() during playing"));
1.1987 + err = iMMFDevSound->EmptyBuffers();
1.1988 + INFO_PRINTF2(_L("CMMFDevSound::EmptyBuffers() left with error = %d"), err);
1.1989 + if(err == KErrNone)
1.1990 + {
1.1991 + StopTest(err, EPass);
1.1992 + }
1.1993 + else
1.1994 + {
1.1995 + StopTest(err, EFail);
1.1996 + }
1.1997 + }
1.1998 + else
1.1999 + {
1.2000 + ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
1.2001 + StopTest(aError, EFail);
1.2002 + }
1.2003 + break;
1.2004 + }
1.2005 +
1.2006 + default:
1.2007 + {
1.2008 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.2009 + StopTest(KErrGeneral);
1.2010 + }
1.2011 + }
1.2012 +
1.2013 + }
1.2014 +
1.2015 +//
1.2016 +// RStepA3FDevSoundInitializeWhilePlaying
1.2017 +//
1.2018 +
1.2019 +/*
1.2020 + *
1.2021 + * RStepA3FDevSoundInitializeWhilePlaying - Test step constructor
1.2022 + *
1.2023 + */
1.2024 +RStepA3FDevSoundInitializeWhilePlaying::RStepA3FDevSoundInitializeWhilePlaying(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2025 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
1.2026 + iCheckTimer(ETrue)
1.2027 + {
1.2028 + }
1.2029 +
1.2030 +/*
1.2031 + *
1.2032 + * NewL
1.2033 + *
1.2034 + */
1.2035 +RStepA3FDevSoundInitializeWhilePlaying* RStepA3FDevSoundInitializeWhilePlaying::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2036 + {
1.2037 + RStepA3FDevSoundInitializeWhilePlaying* self = new (ELeave) RStepA3FDevSoundInitializeWhilePlaying(aTestName, aSectName, aInputDataType);
1.2038 + return self;
1.2039 +
1.2040 + }
1.2041 +
1.2042 +/*
1.2043 + *
1.2044 + * Fsm
1.2045 + * - Executes playing events of DevSound in sequence
1.2046 + *
1.2047 + */
1.2048 +void RStepA3FDevSoundInitializeWhilePlaying::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.2049 + {
1.2050 + switch (iPlayState)
1.2051 + {
1.2052 + case EStatePlayStart:
1.2053 + {
1.2054 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeWhilePlaying"),EFsmIncorrectErrorPassed));
1.2055 + if (aDevSoundEvent == EEventPlayStart)
1.2056 + {
1.2057 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.2058 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.2059 + TInt err;
1.2060 + if(iUseFourCC)
1.2061 + {
1.2062 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.2063 + }
1.2064 + else
1.2065 + {
1.2066 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.2067 + }
1.2068 + if (err != KErrNone)
1.2069 + {
1.2070 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.2071 + StopTest(err);
1.2072 + break;
1.2073 + }
1.2074 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.2075 + iPlayState = EStatePlayInitializing;
1.2076 + }
1.2077 + else
1.2078 + {
1.2079 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.2080 + StopTest(aError, EFail);
1.2081 + }
1.2082 + break;
1.2083 + }
1.2084 +
1.2085 + case EStatePlayInitializing:
1.2086 + {
1.2087 + if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1.2088 + {
1.2089 + if(iConfig)
1.2090 + {
1.2091 + // Set Devsound capability settings using CMMFDevSound::SetConfigL
1.2092 + SetSampleRateAndChannelMode();
1.2093 + TMMFCapabilities capabilities;
1.2094 + capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1.2095 + capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1.2096 +
1.2097 + TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1.2098 + if (errConfig != KErrNone)
1.2099 + {
1.2100 + ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1.2101 + StopTest(errConfig);
1.2102 + break;
1.2103 + }
1.2104 + }
1.2105 + // Initialize audio device and starts the playing process
1.2106 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1.2107 + TRAPD(errPlay, iMMFDevSound->PlayInitL());
1.2108 + if (errPlay != KErrNone)
1.2109 + {
1.2110 + ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
1.2111 + StopTest(errPlay);
1.2112 + break;
1.2113 + }
1.2114 + INFO_PRINTF1(_L("State: EStatePlaying"));
1.2115 + iPlayState = EStatePlaying;
1.2116 + }
1.2117 + else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1.2118 + {
1.2119 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.2120 + StopTest(aError);
1.2121 + }
1.2122 + else
1.2123 + {
1.2124 + ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1.2125 + StopTest(aError, EFail);
1.2126 + }
1.2127 + break;
1.2128 + }
1.2129 +
1.2130 + case EStatePlaying:
1.2131 + {
1.2132 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeWhilePlaying"),EFsmIncorrectErrorPassed));
1.2133 + if (aDevSoundEvent == EEventBTBF)
1.2134 + {
1.2135 + // Fill the buffer with audio data and play the data in the buffer
1.2136 + CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1.2137 + TInt err = iFile.Read(buffer->Data());
1.2138 + if (err != KErrNone)
1.2139 + {
1.2140 + ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
1.2141 + StopTest(err);
1.2142 + break;
1.2143 + }
1.2144 + if (buffer->Data().Length() != buffer->RequestSize())
1.2145 + {
1.2146 + INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
1.2147 + iBuffer->SetLastBuffer(ETrue);
1.2148 + }
1.2149 +
1.2150 + if (iCheckTimer)
1.2151 + {
1.2152 + iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
1.2153 + }
1.2154 + iCheckTimer = EFalse;
1.2155 + }
1.2156 + else
1.2157 + {
1.2158 + ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
1.2159 + StopTest(aError, EFail);
1.2160 + }
1.2161 + break;
1.2162 + }
1.2163 +
1.2164 + default:
1.2165 + {
1.2166 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.2167 + StopTest(KErrGeneral);
1.2168 + }
1.2169 + }
1.2170 +
1.2171 + }
1.2172 +
1.2173 +/*
1.2174 + *
1.2175 + * DoTimerCallback
1.2176 + *
1.2177 + */
1.2178 +void RStepA3FDevSoundInitializeWhilePlaying::DoTimerCallback()
1.2179 + {
1.2180 + iTimer->Cancel(); // only really wanted a one-shot
1.2181 + if(!iCheckTimer)
1.2182 + {
1.2183 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL() during playing"));
1.2184 + TRAPD(errInit, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.2185 + INFO_PRINTF2(_L("CMMFDevSound::InitializeL() left with error = %d"), errInit);
1.2186 + INFO_PRINTF2(_L("Expected error = %d"), KErrNotReady);
1.2187 + if(errInit == KErrNotReady)
1.2188 + {
1.2189 + StopTest(errInit, EPass);
1.2190 + }
1.2191 + else
1.2192 + {
1.2193 + StopTest(errInit, EFail);
1.2194 + }
1.2195 + }
1.2196 +
1.2197 + }
1.2198 +
1.2199 +//
1.2200 +// RStepA3FDevSoundSetBalanceDuringPlay
1.2201 +//
1.2202 +
1.2203 +/*
1.2204 + *
1.2205 + * RStepA3FDevSoundSetBalanceDuringPlay - Test step constructor
1.2206 + *
1.2207 + */
1.2208 +RStepA3FDevSoundSetBalanceDuringPlay::RStepA3FDevSoundSetBalanceDuringPlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2209 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
1.2210 + iPlaybalanceLeft(0),
1.2211 + iPlaybalanceRight(0)
1.2212 + {
1.2213 + }
1.2214 +
1.2215 +/*
1.2216 + *
1.2217 + * NewL
1.2218 + *
1.2219 + */
1.2220 +RStepA3FDevSoundSetBalanceDuringPlay* RStepA3FDevSoundSetBalanceDuringPlay::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2221 + {
1.2222 + RStepA3FDevSoundSetBalanceDuringPlay* self = new (ELeave) RStepA3FDevSoundSetBalanceDuringPlay(aTestName, aSectName, aInputDataType);
1.2223 + return self;
1.2224 +
1.2225 + }
1.2226 +
1.2227 +/*
1.2228 + *
1.2229 + * DoKickoffTestL
1.2230 + *
1.2231 + */
1.2232 +void RStepA3FDevSoundSetBalanceDuringPlay::DoKickoffTestL()
1.2233 + {
1.2234 + INFO_PRINTF2(_L("File to be played -> %S"), &iFilename);
1.2235 + DisplayCodecInfo();
1.2236 + CheckConfigAndFourCCUsage();
1.2237 +
1.2238 + TBool balance = GetIntFromConfig(iSectName,_L("PlaybalanceLeft"),iPlaybalanceLeft );
1.2239 + if (balance)
1.2240 + {
1.2241 + // Getting the Left balance from Config file
1.2242 + INFO_PRINTF2(_L("Left Percentage Playbalance = %d"),iPlaybalanceLeft);
1.2243 + }
1.2244 + else
1.2245 + {
1.2246 + TPtrC keyName(_L("PlaybalanceLeft"));
1.2247 + ERR_PRINTF3(_L("Error in getting left pc playbalance from config file in %S section via the %S key field."), &iSectName, &keyName);
1.2248 + StopTest(KErrPathNotFound);
1.2249 + return;
1.2250 + }
1.2251 + balance = GetIntFromConfig(iSectName,_L("PlaybalanceRight"),iPlaybalanceRight );
1.2252 + if (balance)
1.2253 + {
1.2254 + // Getting the Right balance from Config file
1.2255 + INFO_PRINTF2(_L("Right Percentage Playbalance = %d"),iPlaybalanceRight);
1.2256 + }
1.2257 + else
1.2258 + {
1.2259 + TPtrC keyName(_L("PlaybalanceRight"));
1.2260 + ERR_PRINTF3(_L("Error in getting right pc playbalance from config file in %S section via the %S key field."), &iSectName, &keyName);
1.2261 + StopTest(KErrPathNotFound);
1.2262 + return;
1.2263 + }
1.2264 +
1.2265 + }
1.2266 +
1.2267 +/*
1.2268 + *
1.2269 + * BufferToBeFilled
1.2270 + *
1.2271 + */
1.2272 +void RStepA3FDevSoundSetBalanceDuringPlay::BufferToBeFilled(CMMFBuffer* aBuffer)
1.2273 + {
1.2274 + if (!aBuffer)
1.2275 + {
1.2276 + ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
1.2277 + StopTest(KErrGeneral);
1.2278 + return;
1.2279 + }
1.2280 +
1.2281 + iBuffer = aBuffer;
1.2282 +
1.2283 + INFO_PRINTF3(_L("Setting left and right playbalance. left = %d right = %d"), iPlaybalanceLeft, iPlaybalanceRight );
1.2284 + TRAPD(setErr, iMMFDevSound->SetPlayBalanceL(iPlaybalanceLeft, iPlaybalanceRight));
1.2285 + if (setErr == KErrNone)
1.2286 + {
1.2287 + TInt getLeft = 0;
1.2288 + TInt getRight = 0;
1.2289 + INFO_PRINTF1(_L("Getting left and right playbalance"));
1.2290 + TRAPD(getErr, iMMFDevSound->GetPlayBalanceL(getLeft, getRight));
1.2291 + INFO_PRINTF3(_L("Got left and right playbalance. left = %d right = %d"), getLeft, getRight);
1.2292 + if (getErr == KErrNone)
1.2293 + {
1.2294 + if ((getLeft == iPlaybalanceLeft) && (getRight == iPlaybalanceRight ))
1.2295 + {
1.2296 + INFO_PRINTF1(_L("Left and Right playbalanace values are same as the ones that were set"));
1.2297 + StopTest(getErr);
1.2298 + }
1.2299 + else
1.2300 + {
1.2301 + ERR_PRINTF1(_L("Let and right playbalanace values are not the same as the ones that were set"));
1.2302 + StopTest(KErrGeneral);
1.2303 + }
1.2304 + }
1.2305 + else
1.2306 + {
1.2307 + ERR_PRINTF1(_L("Error in getting left and right play balance."));
1.2308 + StopTest(getErr);
1.2309 + }
1.2310 + }
1.2311 + else
1.2312 + {
1.2313 + ERR_PRINTF1(_L("Error in setting left and right play balance."));
1.2314 + StopTest(setErr);
1.2315 + }
1.2316 +
1.2317 + }
1.2318 +
1.2319 +//
1.2320 +// RStepA3FDevSoundPlayStopMultipleTimes
1.2321 +//
1.2322 +
1.2323 +/*
1.2324 + *
1.2325 + * RStepA3FDevSoundPlayStopMultipleTimes - Test step constructor
1.2326 + *
1.2327 + */
1.2328 +RStepA3FDevSoundPlayStopMultipleTimes::RStepA3FDevSoundPlayStopMultipleTimes(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2329 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
1.2330 +iRepeatCount(0),
1.2331 +iRepeatCounter(0),
1.2332 +iCheckTimer(ETrue)
1.2333 + {
1.2334 + }
1.2335 +
1.2336 +/*
1.2337 + *
1.2338 + * NewL
1.2339 + *
1.2340 + */
1.2341 +RStepA3FDevSoundPlayStopMultipleTimes* RStepA3FDevSoundPlayStopMultipleTimes::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2342 + {
1.2343 + RStepA3FDevSoundPlayStopMultipleTimes* self = new (ELeave) RStepA3FDevSoundPlayStopMultipleTimes(aTestName, aSectName, aInputDataType);
1.2344 + return self;
1.2345 +
1.2346 + }
1.2347 +
1.2348 +/*
1.2349 + *
1.2350 + * DoKickoffTestL
1.2351 + *
1.2352 + */
1.2353 +void RStepA3FDevSoundPlayStopMultipleTimes::DoKickoffTestL()
1.2354 + {
1.2355 + INFO_PRINTF2(_L("File to be played -> %S"), &iFilename);
1.2356 + DisplayCodecInfo();
1.2357 + CheckConfigAndFourCCUsage();
1.2358 +
1.2359 + TBool repeatCount = GetIntFromConfig(iSectName,_L("Repeat"),iRepeatCount);
1.2360 + if (repeatCount)
1.2361 + {
1.2362 + INFO_PRINTF2(_L("No. of times to Repeat = %d"), iRepeatCount);
1.2363 + }
1.2364 + else
1.2365 + {
1.2366 + TPtrC keyName(_L("Repeat"));
1.2367 + ERR_PRINTF3(_L("Error in getting number of times to repeat stop from config file in %S section via the %S key field."), &iSectName, &keyName);
1.2368 + StopTest(KErrPathNotFound);
1.2369 + return;
1.2370 + }
1.2371 +
1.2372 + }
1.2373 +
1.2374 +/*
1.2375 + *
1.2376 + * Fsm
1.2377 + * - Executes playing events of DevSound in sequence
1.2378 + *
1.2379 + */
1.2380 +void RStepA3FDevSoundPlayStopMultipleTimes::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.2381 + {
1.2382 + switch (iPlayState)
1.2383 + {
1.2384 + case EStatePlayStart:
1.2385 + {
1.2386 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayStopMultipleTimes"),EFsmIncorrectErrorPassed));
1.2387 + if (aDevSoundEvent == EEventPlayStart)
1.2388 + {
1.2389 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.2390 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.2391 + TInt err;
1.2392 + if(iUseFourCC)
1.2393 + {
1.2394 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.2395 + }
1.2396 + else
1.2397 + {
1.2398 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.2399 + }
1.2400 + if (err != KErrNone)
1.2401 + {
1.2402 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.2403 + StopTest(err);
1.2404 + break;
1.2405 + }
1.2406 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.2407 + iPlayState = EStatePlayInitializing;
1.2408 + }
1.2409 + else
1.2410 + {
1.2411 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.2412 + StopTest(aError, EFail);
1.2413 + }
1.2414 + break;
1.2415 + }
1.2416 +
1.2417 + case EStatePlayInitializing:
1.2418 + {
1.2419 + if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1.2420 + {
1.2421 + if(iConfig)
1.2422 + {
1.2423 + // Set Devsound capability settings using CMMFDevSound::SetConfigL
1.2424 + SetSampleRateAndChannelMode();
1.2425 + TMMFCapabilities capabilities;
1.2426 + capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1.2427 + capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1.2428 +
1.2429 + TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1.2430 + if (errConfig != KErrNone)
1.2431 + {
1.2432 + ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1.2433 + StopTest(errConfig);
1.2434 + break;
1.2435 + }
1.2436 + }
1.2437 + // Initialize audio device and starts the playing process
1.2438 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1.2439 + TRAPD(errPlay, iMMFDevSound->PlayInitL());
1.2440 + if (errPlay != KErrNone)
1.2441 + {
1.2442 + ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
1.2443 + StopTest(errPlay);
1.2444 + break;
1.2445 + }
1.2446 + INFO_PRINTF1(_L("State: EStatePlaying"));
1.2447 + iPlayState = EStatePlaying;
1.2448 + }
1.2449 + else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1.2450 + {
1.2451 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.2452 + StopTest(aError);
1.2453 + }
1.2454 + else
1.2455 + {
1.2456 + ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1.2457 + StopTest(aError, EFail);
1.2458 + }
1.2459 + break;
1.2460 + }
1.2461 +
1.2462 + case EStatePlaying:
1.2463 + {
1.2464 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayStopMultipleTimes"),EFsmIncorrectErrorPassed));
1.2465 + if (aDevSoundEvent == EEventBTBF)
1.2466 + {
1.2467 + // Fill the buffer with audio data and play the data in the buffer
1.2468 + CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1.2469 + TInt err = iFile.Read(buffer->Data());
1.2470 + if (err != KErrNone)
1.2471 + {
1.2472 + ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
1.2473 + StopTest(err);
1.2474 + break;
1.2475 + }
1.2476 + if (buffer->Data().Length() != buffer->RequestSize())
1.2477 + {
1.2478 + INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
1.2479 + iBuffer->SetLastBuffer(ETrue);
1.2480 + }
1.2481 +
1.2482 + if ((iCheckTimer) && (iRepeatCounter < iRepeatCount))
1.2483 + {
1.2484 + iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
1.2485 + }
1.2486 + iCheckTimer = EFalse;
1.2487 + // Playing data in the buffer at the current volume
1.2488 + iMMFDevSound->PlayData();
1.2489 + iBufferCount++;
1.2490 + }
1.2491 + else if (aDevSoundEvent == EEventPlayTimerComplete)
1.2492 + {
1.2493 + while(iRepeatCounter <= iRepeatCount)
1.2494 + {
1.2495 + INFO_PRINTF1(_L("Calling iMMFDevSound->Stop()"));
1.2496 + iMMFDevSound->Stop();
1.2497 + iRepeatCounter++;
1.2498 + INFO_PRINTF2(_L("Playback Stopped. Count = %d"), iRepeatCounter);
1.2499 + INFO_PRINTF1(_L("Changing the state to: EStatePlaying "));
1.2500 + iPlayState = EStatePlayInitializing;
1.2501 + break;
1.2502 + }
1.2503 + }
1.2504 + else
1.2505 + {
1.2506 + ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
1.2507 + StopTest(aError, EFail);
1.2508 + }
1.2509 + break;
1.2510 + }
1.2511 +
1.2512 + default:
1.2513 + {
1.2514 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.2515 + StopTest(KErrGeneral);
1.2516 + }
1.2517 + }
1.2518 + }
1.2519 +
1.2520 +/*
1.2521 + *
1.2522 + * DoTimerCallback
1.2523 + *
1.2524 + */
1.2525 +void RStepA3FDevSoundPlayStopMultipleTimes::DoTimerCallback()
1.2526 + {
1.2527 + iTimer->Cancel(); // only really wanted a one-shot
1.2528 + if(!iCheckTimer)
1.2529 + {
1.2530 + iCheckTimer = ETrue;
1.2531 + Fsm(EEventPlayTimerComplete, KErrNone);
1.2532 + if (iRepeatCounter <= iRepeatCount)
1.2533 + {
1.2534 + Fsm(EEventInitCompletePlay, KErrNone);
1.2535 + }
1.2536 + }
1.2537 +
1.2538 + }
1.2539 +
1.2540 +//
1.2541 +// RStepA3FDevSoundPlayEOFPlayMultipleTimes
1.2542 +//
1.2543 +
1.2544 +/*
1.2545 + *
1.2546 + * RStepA3FDevSoundPlayEOFPlayMultipleTimes - Test step constructor
1.2547 + *
1.2548 + */
1.2549 +RStepA3FDevSoundPlayEOFPlayMultipleTimes::RStepA3FDevSoundPlayEOFPlayMultipleTimes(const TDesC& aTestName, const TDesC& aSectName)
1.2550 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName),
1.2551 + iRepeatCount(0),
1.2552 + iRepeatCounter(1)
1.2553 + {
1.2554 + }
1.2555 +
1.2556 +/*
1.2557 + *
1.2558 + * NewL
1.2559 + *
1.2560 + */
1.2561 +RStepA3FDevSoundPlayEOFPlayMultipleTimes* RStepA3FDevSoundPlayEOFPlayMultipleTimes::NewL(const TDesC& aTestName, const TDesC& aSectName)
1.2562 + {
1.2563 + RStepA3FDevSoundPlayEOFPlayMultipleTimes* self = new (ELeave) RStepA3FDevSoundPlayEOFPlayMultipleTimes(aTestName, aSectName);
1.2564 + return self;
1.2565 +
1.2566 + }
1.2567 +
1.2568 +/*
1.2569 + *
1.2570 + * DoKickoffTestL
1.2571 + *
1.2572 + */
1.2573 +void RStepA3FDevSoundPlayEOFPlayMultipleTimes::DoKickoffTestL()
1.2574 + {
1.2575 + INFO_PRINTF2(_L("File to be played -> %S"), &iFilename);
1.2576 + DisplayCodecInfo();
1.2577 + CheckConfigAndFourCCUsage();
1.2578 +
1.2579 + TBool repeatCount = GetIntFromConfig(iSectName,_L("Repeat"),iRepeatCount);
1.2580 + if (repeatCount)
1.2581 + {
1.2582 + INFO_PRINTF2(_L("No. of times to Repeat = %d"), iRepeatCount);
1.2583 + }
1.2584 + else
1.2585 + {
1.2586 + TPtrC keyName(_L("Repeat"));
1.2587 + ERR_PRINTF3(_L("Error in getting number of times to repeat playback from config file in %S section via the %S key field."), &iSectName, &keyName);
1.2588 + StopTest(KErrPathNotFound);
1.2589 + return;
1.2590 + }
1.2591 +
1.2592 + }
1.2593 +
1.2594 +/*
1.2595 + *
1.2596 + * PlayError
1.2597 + *
1.2598 + */
1.2599 +void RStepA3FDevSoundPlayEOFPlayMultipleTimes::PlayError(TInt aError)
1.2600 + {
1.2601 + INFO_PRINTF2(_L("DevSound called PlayError with error = %d"), aError);
1.2602 + if ((iBuffer->LastBuffer()) && (aError == KErrUnderflow))
1.2603 + {
1.2604 + INFO_PRINTF2(_L("Finished playing. Playback Count = %d"), iRepeatCounter);
1.2605 + if (iRepeatCounter < iRepeatCount)
1.2606 + {
1.2607 + iRepeatCounter++;
1.2608 + INFO_PRINTF1(_L("Starting to Play again"));
1.2609 + iFile.Close();
1.2610 + TInt err = iFile.Open(iFs, iFilename, EFileRead);
1.2611 + if (err != KErrNone)
1.2612 + {
1.2613 + ERR_PRINTF2(_L("Could not Open the File: Error = %d"), err);
1.2614 + StopTest(err);
1.2615 + }
1.2616 + iPlayState = EStatePlayInitializing;
1.2617 + Fsm(EEventInitCompletePlay, KErrNone);
1.2618 + }
1.2619 + else
1.2620 + {
1.2621 + INFO_PRINTF2(_L("Finished playing %d number of times."), iRepeatCounter);
1.2622 + StopTest(KErrNone);
1.2623 + }
1.2624 + }
1.2625 + else
1.2626 + {
1.2627 + StopTest(aError, EFail);
1.2628 + }
1.2629 +
1.2630 + }
1.2631 +
1.2632 +//
1.2633 +// RStepA3FDevSoundInititalizeDuringInitialize
1.2634 +//
1.2635 +
1.2636 +/*
1.2637 + *
1.2638 + * RStepA3FDevSoundInititalizeDuringInitialize - Test step constructor
1.2639 + *
1.2640 + */
1.2641 +RStepA3FDevSoundInititalizeDuringInitialize::RStepA3FDevSoundInititalizeDuringInitialize(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2642 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
1.2643 + iSecondInitErr(0)
1.2644 + {
1.2645 + }
1.2646 +
1.2647 +/*
1.2648 + *
1.2649 + * NewL
1.2650 + *
1.2651 + */
1.2652 +RStepA3FDevSoundInititalizeDuringInitialize* RStepA3FDevSoundInititalizeDuringInitialize::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2653 + {
1.2654 + RStepA3FDevSoundInititalizeDuringInitialize* self = new (ELeave) RStepA3FDevSoundInititalizeDuringInitialize(aTestName, aSectName, aInputDataType);
1.2655 + return self;
1.2656 +
1.2657 + }
1.2658 +
1.2659 +/*
1.2660 + *
1.2661 + * KickoffTestL
1.2662 + * - Starts the test
1.2663 + *
1.2664 + */
1.2665 +void RStepA3FDevSoundInititalizeDuringInitialize::KickoffTestL()
1.2666 + {
1.2667 + // Create instance of CMMFDevSound
1.2668 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.2669 + iMMFDevSound = CMMFDevSound::NewL();
1.2670 +
1.2671 + //Display the name of Codec being used
1.2672 + DisplayCodecInfo();
1.2673 +
1.2674 + if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
1.2675 + {
1.2676 + TPtrC keyName(_L("UseFourCC"));
1.2677 + ERR_PRINTF3(_L("Error in getting UseFourCC flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
1.2678 + StopTest(KErrPathNotFound);
1.2679 + return;
1.2680 + }
1.2681 +
1.2682 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.2683 +
1.2684 + }
1.2685 +
1.2686 +/*
1.2687 + *
1.2688 + * Fsm
1.2689 + * - Executes playing events of DevSound in sequence
1.2690 + *
1.2691 + */
1.2692 +void RStepA3FDevSoundInititalizeDuringInitialize::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.2693 + {
1.2694 + switch (iPlayState)
1.2695 + {
1.2696 + case EStatePlayStart:
1.2697 + {
1.2698 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInititalizeDuringInitialize"),EFsmIncorrectErrorPassed));
1.2699 + if (aDevSoundEvent == EEventPlayStart)
1.2700 + {
1.2701 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.2702 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.2703 + TInt err;
1.2704 + if(iUseFourCC)
1.2705 + {
1.2706 + INFO_PRINTF1(_L("Calling first InitializeL()"));
1.2707 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.2708 + if (err != KErrNone)
1.2709 + {
1.2710 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.2711 + StopTest(err);
1.2712 + break;
1.2713 + }
1.2714 + else
1.2715 + {
1.2716 + INFO_PRINTF1(_L("Calling second InitializeL() beofre first InitializeL() returns."));
1.2717 + TRAP(iSecondInitErr, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.2718 + }
1.2719 + }
1.2720 + else
1.2721 + {
1.2722 + INFO_PRINTF1(_L("Calling first InitializeL()"));
1.2723 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.2724 + if (err != KErrNone)
1.2725 + {
1.2726 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.2727 + StopTest(err);
1.2728 + break;
1.2729 + }
1.2730 + else
1.2731 + {
1.2732 + INFO_PRINTF1(_L("Calling second InitializeL() beofre first InitializeL() returns."));
1.2733 + TRAP(iSecondInitErr, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.2734 + }
1.2735 + }
1.2736 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.2737 + iPlayState = EStatePlayInitializing;
1.2738 + }
1.2739 + else
1.2740 + {
1.2741 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.2742 + StopTest(aError, EFail);
1.2743 + }
1.2744 + break;
1.2745 + }
1.2746 +
1.2747 + default:
1.2748 + {
1.2749 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.2750 + StopTest(KErrGeneral);
1.2751 + }
1.2752 + }
1.2753 +
1.2754 + }
1.2755 +
1.2756 +/*
1.2757 + *
1.2758 + * InitializeComplete
1.2759 + *
1.2760 + */
1.2761 +void RStepA3FDevSoundInititalizeDuringInitialize::InitializeComplete(TInt aError)
1.2762 + {
1.2763 + INFO_PRINTF2(_L("First Initialize returned with = %d"), aError);
1.2764 + INFO_PRINTF2(_L("Second Initialize left with = %d"), iSecondInitErr);
1.2765 +
1.2766 + if ((aError == KErrNone) && (iSecondInitErr == KErrNotReady))
1.2767 + {
1.2768 + INFO_PRINTF1(_L("This is expected"));
1.2769 + StopTest(aError);
1.2770 + }
1.2771 + else
1.2772 + {
1.2773 + INFO_PRINTF2(_L("This is not expected. Second InitializeL should fail with %d"), KErrNotReady);
1.2774 + StopTest(aError, EFail);
1.2775 + }
1.2776 +
1.2777 + }
1.2778 +
1.2779 +//
1.2780 +// RStepA3FDevSoundPlayInitDuringPlayInit
1.2781 +//
1.2782 +
1.2783 +/*
1.2784 + *
1.2785 + * RStepA3FDevSoundPlayInitDuringPlayInit - Test step constructor
1.2786 + *
1.2787 + */
1.2788 +RStepA3FDevSoundPlayInitDuringPlayInit::RStepA3FDevSoundPlayInitDuringPlayInit(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2789 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
1.2790 + iFirstPlayInitErr(0),
1.2791 + iSecondPlayInitErr(0)
1.2792 + {
1.2793 + }
1.2794 +
1.2795 +/*
1.2796 + *
1.2797 + * NewL
1.2798 + *
1.2799 + */
1.2800 +RStepA3FDevSoundPlayInitDuringPlayInit* RStepA3FDevSoundPlayInitDuringPlayInit::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2801 + {
1.2802 + RStepA3FDevSoundPlayInitDuringPlayInit* self = new (ELeave) RStepA3FDevSoundPlayInitDuringPlayInit(aTestName, aSectName, aInputDataType);
1.2803 + return self;
1.2804 + }
1.2805 +
1.2806 +/*
1.2807 + *
1.2808 + * KickoffTestL
1.2809 + * - Starts the test
1.2810 + *
1.2811 + */
1.2812 +void RStepA3FDevSoundPlayInitDuringPlayInit::KickoffTestL()
1.2813 + {
1.2814 + // Create instance of CMMFDevSound
1.2815 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.2816 + iMMFDevSound = CMMFDevSound::NewL();
1.2817 +
1.2818 + //Display the name of Codec being used
1.2819 + DisplayCodecInfo();
1.2820 + CheckConfigAndFourCCUsage();
1.2821 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.2822 +
1.2823 + }
1.2824 +
1.2825 +/*
1.2826 + *
1.2827 + * Fsm
1.2828 + * - Executes playing events of DevSound in sequence
1.2829 + *
1.2830 + */
1.2831 +void RStepA3FDevSoundPlayInitDuringPlayInit::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.2832 + {
1.2833 + switch (iPlayState)
1.2834 + {
1.2835 + case EStatePlayStart:
1.2836 + {
1.2837 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundPlayInitDuringPlayInit"),EFsmIncorrectErrorPassed));
1.2838 + if (aDevSoundEvent == EEventPlayStart)
1.2839 + {
1.2840 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.2841 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.2842 + TInt err;
1.2843 + if(iUseFourCC)
1.2844 + {
1.2845 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.2846 + }
1.2847 + else
1.2848 + {
1.2849 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.2850 + }
1.2851 + if (err != KErrNone)
1.2852 + {
1.2853 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.2854 + StopTest(err);
1.2855 + break;
1.2856 + }
1.2857 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.2858 + iPlayState = EStatePlayInitializing;
1.2859 + }
1.2860 + else
1.2861 + {
1.2862 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.2863 + StopTest(aError, EFail);
1.2864 + }
1.2865 + break;
1.2866 + }
1.2867 +
1.2868 + case EStatePlayInitializing:
1.2869 + {
1.2870 + if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1.2871 + {
1.2872 + if(iConfig)
1.2873 + {
1.2874 + // Set Devsound capability settings using CMMFDevSound::SetConfigL
1.2875 + SetSampleRateAndChannelMode();
1.2876 + TMMFCapabilities capabilities;
1.2877 + capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1.2878 + capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1.2879 +
1.2880 + TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1.2881 + if (errConfig != KErrNone)
1.2882 + {
1.2883 + ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1.2884 + StopTest(errConfig);
1.2885 + break;
1.2886 + }
1.2887 + }
1.2888 +
1.2889 + // Initialize audio device and starts the playing process
1.2890 + INFO_PRINTF1(_L("Calling First CMMFDevSound::PlayInitL()"));
1.2891 + TRAPD(iFirstPlayInitErr, iMMFDevSound->PlayInitL());
1.2892 + TRAP(iSecondPlayInitErr, iMMFDevSound->PlayInitL());
1.2893 + if (iFirstPlayInitErr != KErrNone)
1.2894 + {
1.2895 + ERR_PRINTF2(_L("First CMMFDevSound::PlayInitL() left with error = %d"), iFirstPlayInitErr);
1.2896 + StopTest(iFirstPlayInitErr);
1.2897 + break;
1.2898 + }
1.2899 + INFO_PRINTF1(_L("State: EStatePlaying"));
1.2900 + iPlayState = EStatePlaying;
1.2901 + }
1.2902 + else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1.2903 + {
1.2904 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.2905 + StopTest(aError);
1.2906 + }
1.2907 + else
1.2908 + {
1.2909 + ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1.2910 + StopTest(aError, EFail);
1.2911 + }
1.2912 + break;
1.2913 + }
1.2914 +
1.2915 + default:
1.2916 + {
1.2917 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.2918 + StopTest(KErrGeneral);
1.2919 + }
1.2920 + }
1.2921 +
1.2922 + }
1.2923 +
1.2924 +/*
1.2925 + *
1.2926 + * BufferToBeFilled
1.2927 + *
1.2928 + */
1.2929 +void RStepA3FDevSoundPlayInitDuringPlayInit::BufferToBeFilled(CMMFBuffer* aBuffer)
1.2930 + {
1.2931 + if (!aBuffer)
1.2932 + {
1.2933 + ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
1.2934 + StopTest(KErrGeneral);
1.2935 + return;
1.2936 + }
1.2937 + iBuffer = aBuffer;
1.2938 +
1.2939 + INFO_PRINTF2(_L("First PlayInit left with = %d"), iFirstPlayInitErr);
1.2940 + INFO_PRINTF2(_L("Second PlayInit left with = %d"), iSecondPlayInitErr);
1.2941 +
1.2942 + if ((iFirstPlayInitErr == KErrNone) && (iSecondPlayInitErr == KErrNotReady))
1.2943 + {
1.2944 + INFO_PRINTF1(_L("This is expected"));
1.2945 + StopTest(KErrNone);
1.2946 + }
1.2947 + else
1.2948 + {
1.2949 + INFO_PRINTF2(_L("This is not expected. Second PlayInit should fail with %d"), KErrNotReady);
1.2950 + StopTest(iFirstPlayInitErr, EFail);
1.2951 + }
1.2952 +
1.2953 + }
1.2954 +
1.2955 +//
1.2956 +// RStepA3FDevSoundVolumeCrop
1.2957 +//
1.2958 +
1.2959 +/*
1.2960 + *
1.2961 + * RStepA3FDevSoundVolumeCrop - Test step constructor
1.2962 + *
1.2963 + */
1.2964 +RStepA3FDevSoundVolumeCrop::RStepA3FDevSoundVolumeCrop(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2965 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
1.2966 + iIncreaseMaxVolume(0),
1.2967 + iMinVolume(0)
1.2968 + {
1.2969 + }
1.2970 +
1.2971 +/*
1.2972 + *
1.2973 + * NewL
1.2974 + *
1.2975 + */
1.2976 +RStepA3FDevSoundVolumeCrop* RStepA3FDevSoundVolumeCrop::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.2977 + {
1.2978 + RStepA3FDevSoundVolumeCrop* self = new (ELeave) RStepA3FDevSoundVolumeCrop(aTestName, aSectName, aInputDataType);
1.2979 + return self;
1.2980 +
1.2981 + }
1.2982 +
1.2983 +/*
1.2984 + *
1.2985 + * KickoffTestL
1.2986 + *
1.2987 + */
1.2988 +void RStepA3FDevSoundVolumeCrop::KickoffTestL()
1.2989 + {
1.2990 + //Create instance of CMMFDevSound
1.2991 + iMMFDevSound = CMMFDevSound::NewL();
1.2992 + //Display the name of Codec being used
1.2993 + DisplayCodecInfo();
1.2994 +
1.2995 + if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
1.2996 + {
1.2997 + TPtrC keyName(_L("UseFourCC"));
1.2998 + ERR_PRINTF3(_L("Error in getting UseFourCC flag from config file in %S section via the %S key field."), &iSectName, &keyName);
1.2999 + StopTest(KErrPathNotFound);
1.3000 + return;
1.3001 + }
1.3002 +
1.3003 + TBool maxVol = GetIntFromConfig(iSectName,_L("IncreaseMaxVolume"),iIncreaseMaxVolume);
1.3004 + if (maxVol)
1.3005 + {
1.3006 + INFO_PRINTF2(_L("Volume to be added to the MaxVolume supported by device = %d"), iIncreaseMaxVolume);
1.3007 + }
1.3008 + else
1.3009 + {
1.3010 + TPtrC keyName(_L("IncreaseMaxVolume"));
1.3011 + ERR_PRINTF3(_L("Error in getting the volume to increase maxvolume by from config file in %S section via the %S key field."), &iSectName, &keyName);
1.3012 + StopTest(KErrPathNotFound);
1.3013 + return;
1.3014 + }
1.3015 +
1.3016 + TBool minVol = GetIntFromConfig(iSectName,_L("SetMinVolume"),iMinVolume);
1.3017 + if (minVol)
1.3018 + {
1.3019 + INFO_PRINTF2(_L("Seting MinVolume value = %d"), iMinVolume);
1.3020 + }
1.3021 + else
1.3022 + {
1.3023 + TPtrC keyName(_L("SetMinVolume"));
1.3024 + ERR_PRINTF3(_L("Error in getting volume below zero from config file in %S section via the %S key field."), &iSectName, &keyName);
1.3025 + return;
1.3026 + }
1.3027 +
1.3028 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.3029 +
1.3030 + }
1.3031 +
1.3032 +/*
1.3033 + *
1.3034 + * Fsm
1.3035 + * - Executes playing events of DevSound in sequence
1.3036 + *
1.3037 + */
1.3038 +void RStepA3FDevSoundVolumeCrop::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.3039 + {
1.3040 + switch (iPlayState)
1.3041 + {
1.3042 + case EStatePlayStart:
1.3043 + {
1.3044 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundVolumeCrop"),EFsmIncorrectErrorPassed));
1.3045 + if (aDevSoundEvent == EEventPlayStart)
1.3046 + {
1.3047 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.3048 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.3049 + TInt err;
1.3050 + if(iUseFourCC)
1.3051 + {
1.3052 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.3053 + }
1.3054 + else
1.3055 + {
1.3056 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.3057 + }
1.3058 + if (err != KErrNone)
1.3059 + {
1.3060 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.3061 + StopTest(err);
1.3062 + break;
1.3063 + }
1.3064 + else
1.3065 + {
1.3066 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.3067 + TInt deviceMaxVol = iMMFDevSound->MaxVolume();
1.3068 + INFO_PRINTF2(_L("Maximum volume supported by the device is %d"), deviceMaxVol);
1.3069 + INFO_PRINTF2(_L("Setting the volume beyond the maximum volume supported by the device: %d"), deviceMaxVol + iIncreaseMaxVolume);
1.3070 + iMMFDevSound->SetVolume(deviceMaxVol + iIncreaseMaxVolume);
1.3071 + INFO_PRINTF1(_L("Getting the volume set"));
1.3072 + TInt maxVolumeObtained = iMMFDevSound->Volume();
1.3073 + INFO_PRINTF2(_L("iMMFDevSound->Volume(): %d"), maxVolumeObtained);
1.3074 + if (maxVolumeObtained != deviceMaxVol)
1.3075 + {
1.3076 + ERR_PRINTF1(_L("Volume was not cropped to equal to maximum volume supported by device"));
1.3077 + StopTest(KErrGeneral);
1.3078 + }
1.3079 + else
1.3080 + {
1.3081 + INFO_PRINTF1(_L("Volume was cropped to equal to maximum volume supported by device"));
1.3082 + INFO_PRINTF2(_L("Setting volume to less than zero: %d"), iMinVolume);
1.3083 + iMMFDevSound->SetVolume(iMinVolume);
1.3084 + INFO_PRINTF1(_L("Getting the volume set"));
1.3085 + TInt minVolumeObtained = iMMFDevSound->Volume();
1.3086 + INFO_PRINTF2(_L("iMMFDevSound->Volume(): %d"), minVolumeObtained);
1.3087 + if (minVolumeObtained != KNULLVolume)
1.3088 + {
1.3089 + ERR_PRINTF1(_L("Volume was not cropped to equal to minimum volume supported by device"));
1.3090 + StopTest(KErrGeneral);
1.3091 + }
1.3092 + else
1.3093 + {
1.3094 + INFO_PRINTF1(_L("Volume was cropped to equal to minimum volume supported by device"));
1.3095 + StopTest(KErrNone);
1.3096 + }
1.3097 + }
1.3098 + }
1.3099 + }
1.3100 + else
1.3101 + {
1.3102 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.3103 + StopTest(aError, EFail);
1.3104 + }
1.3105 + break;
1.3106 + }
1.3107 + default:
1.3108 + {
1.3109 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.3110 + StopTest(KErrGeneral);
1.3111 + }
1.3112 + }
1.3113 +
1.3114 + }
1.3115 +
1.3116 +//
1.3117 +// RStepA3FDevSoundInitializeForConverting
1.3118 +//
1.3119 +
1.3120 +/*
1.3121 + *
1.3122 + * RStepA3FDevSoundInitializeForConverting - Test step constructor
1.3123 + *
1.3124 + */
1.3125 +RStepA3FDevSoundInitializeForConverting::RStepA3FDevSoundInitializeForConverting(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3126 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1.3127 + {
1.3128 + }
1.3129 +
1.3130 +/*
1.3131 + *
1.3132 + * NewL
1.3133 + *
1.3134 + */
1.3135 +RStepA3FDevSoundInitializeForConverting* RStepA3FDevSoundInitializeForConverting::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3136 + {
1.3137 + RStepA3FDevSoundInitializeForConverting* self = new (ELeave) RStepA3FDevSoundInitializeForConverting(aTestName, aSectName, aInputDataType);
1.3138 + return self;
1.3139 +
1.3140 + }
1.3141 +
1.3142 +/*
1.3143 + *
1.3144 + * KickoffTestL
1.3145 + * - Starts the test
1.3146 + *
1.3147 + */
1.3148 +void RStepA3FDevSoundInitializeForConverting::KickoffTestL()
1.3149 + {
1.3150 + // Create instance of CMMFDevSound
1.3151 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.3152 + iMMFDevSound = CMMFDevSound::NewL();
1.3153 +
1.3154 + //Display the name of Codec being used
1.3155 + DisplayCodecInfo();
1.3156 +
1.3157 + if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
1.3158 + {
1.3159 + TPtrC keyName(_L("UseFourCC"));
1.3160 + ERR_PRINTF3(_L("Error in getting UseFourCC flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
1.3161 + StopTest(KErrPathNotFound);
1.3162 + return;
1.3163 + }
1.3164 +
1.3165 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.3166 +
1.3167 + }
1.3168 +
1.3169 +/*
1.3170 + *
1.3171 + * Fsm
1.3172 + * - Executes playing events of DevSound in sequence
1.3173 + *
1.3174 + */
1.3175 +void RStepA3FDevSoundInitializeForConverting::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.3176 + {
1.3177 + switch (iPlayState)
1.3178 + {
1.3179 + case EStatePlayStart:
1.3180 + {
1.3181 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundInitializeForConverting"),EFsmIncorrectErrorPassed));
1.3182 + if (aDevSoundEvent == EEventPlayStart)
1.3183 + {
1.3184 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.3185 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.3186 + TInt err;
1.3187 + if(iUseFourCC)
1.3188 + {
1.3189 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStateConverting));
1.3190 + }
1.3191 + else
1.3192 + {
1.3193 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStateConverting));
1.3194 + }
1.3195 + if (err == KErrNotSupported)
1.3196 + {
1.3197 + INFO_PRINTF2(_L("CMMFDevSound::InitializeL left with expected error = %d for EMMFStateConverting"), err);
1.3198 + StopTest(err, EPass);
1.3199 + }
1.3200 + else
1.3201 + {
1.3202 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d for EMMFStateConverting"), err);
1.3203 + StopTest(err, EFail);
1.3204 + }
1.3205 + }
1.3206 + else
1.3207 + {
1.3208 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.3209 + StopTest(aError, EFail);
1.3210 + }
1.3211 + break;
1.3212 + }
1.3213 + }
1.3214 +
1.3215 + }
1.3216 +
1.3217 +//
1.3218 +// RStepA3FDevSoundGetSampleNumsAfterStop
1.3219 +//
1.3220 +
1.3221 +/*
1.3222 + *
1.3223 + * RStepA3FDevSoundGetSampleNumsAfterStop - Test step constructor
1.3224 + *
1.3225 + */
1.3226 +RStepA3FDevSoundGetSampleNumsAfterStop::RStepA3FDevSoundGetSampleNumsAfterStop(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3227 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType),
1.3228 + iCheckTimer(ETrue)
1.3229 + {
1.3230 + }
1.3231 +
1.3232 +/*
1.3233 + *
1.3234 + * NewL
1.3235 + *
1.3236 + */
1.3237 +RStepA3FDevSoundGetSampleNumsAfterStop* RStepA3FDevSoundGetSampleNumsAfterStop::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3238 + {
1.3239 + RStepA3FDevSoundGetSampleNumsAfterStop* self = new (ELeave) RStepA3FDevSoundGetSampleNumsAfterStop(aTestName, aSectName, aInputDataType);
1.3240 + return self;
1.3241 +
1.3242 + }
1.3243 +
1.3244 +/*
1.3245 + *
1.3246 + * Fsm
1.3247 + * - Executes playing events of DevSound in sequence
1.3248 + *
1.3249 + */
1.3250 +void RStepA3FDevSoundGetSampleNumsAfterStop::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.3251 + {
1.3252 + switch (iPlayState)
1.3253 + {
1.3254 + case EStatePlayStart:
1.3255 + {
1.3256 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundGetSampleNumsAfterStop"),EFsmIncorrectErrorPassed));
1.3257 + if (aDevSoundEvent == EEventPlayStart)
1.3258 + {
1.3259 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.3260 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.3261 + TInt err;
1.3262 + if(iUseFourCC)
1.3263 + {
1.3264 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.3265 + }
1.3266 + else
1.3267 + {
1.3268 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.3269 + }
1.3270 + if (err != KErrNone)
1.3271 + {
1.3272 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.3273 + StopTest(err);
1.3274 + break;
1.3275 + }
1.3276 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.3277 + iPlayState = EStatePlayInitializing;
1.3278 + }
1.3279 + else
1.3280 + {
1.3281 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.3282 + StopTest(aError, EFail);
1.3283 + }
1.3284 + break;
1.3285 + }
1.3286 +
1.3287 + case EStatePlayInitializing:
1.3288 + {
1.3289 + if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1.3290 + {
1.3291 + if(iConfig)
1.3292 + {
1.3293 + // Set Devsound capability settings using CMMFDevSound::SetConfigL
1.3294 + SetSampleRateAndChannelMode();
1.3295 + TMMFCapabilities capabilities;
1.3296 + capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1.3297 + capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1.3298 +
1.3299 + TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1.3300 + if (errConfig != KErrNone)
1.3301 + {
1.3302 + ERR_PRINTF2(_L("CMMFDevSound::SetConfigL() left with error = %d"), errConfig);
1.3303 + StopTest(errConfig);
1.3304 + break;
1.3305 + }
1.3306 + }
1.3307 + // Initialize audio device and starts the playing process
1.3308 + INFO_PRINTF1(_L("Calling CMMFDevSound::PlayInitL()"));
1.3309 + TRAPD(errPlay, iMMFDevSound->PlayInitL());
1.3310 + if (errPlay != KErrNone)
1.3311 + {
1.3312 + ERR_PRINTF2(_L("CMMFDevSound::PlayInitL() left with error = %d"), errPlay);
1.3313 + StopTest(errPlay);
1.3314 + break;
1.3315 + }
1.3316 + INFO_PRINTF1(_L("State: EStatePlaying"));
1.3317 + iPlayState = EStatePlaying;
1.3318 + }
1.3319 + else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1.3320 + {
1.3321 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.3322 + StopTest(aError);
1.3323 + }
1.3324 + else
1.3325 + {
1.3326 + ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1.3327 + StopTest(aError, EFail);
1.3328 + }
1.3329 +
1.3330 + break;
1.3331 +
1.3332 + }
1.3333 +
1.3334 + case EStatePlaying:
1.3335 + {
1.3336 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundGetSampleNumsAfterStop"),EFsmIncorrectErrorPassed));
1.3337 + if (aDevSoundEvent == EEventBTBF)
1.3338 + {
1.3339 + // Fill the buffer with audio data and play the data in the buffer
1.3340 + CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
1.3341 + TInt err = iFile.Read(buffer->Data());
1.3342 + if (err != KErrNone)
1.3343 + {
1.3344 + ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), err);
1.3345 + StopTest(err);
1.3346 + break;
1.3347 + }
1.3348 + if (buffer->Data().Length() != buffer->RequestSize())
1.3349 + {
1.3350 + INFO_PRINTF3(_L("Data length copied from file = %d. Expected = %d. Must be EOF."), buffer->Data().Length(), buffer->RequestSize());
1.3351 + iBuffer->SetLastBuffer(ETrue);
1.3352 + }
1.3353 +
1.3354 + if (iCheckTimer)
1.3355 + {
1.3356 + iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
1.3357 + }
1.3358 + iCheckTimer = EFalse;
1.3359 + // Playing data in the buffer at the current volume
1.3360 + iMMFDevSound->PlayData();
1.3361 + iBufferCount++;
1.3362 + }
1.3363 + else if (aDevSoundEvent == EEventPlayTimerComplete)
1.3364 + {
1.3365 + iMMFDevSound->Stop();
1.3366 + iPlayState = EStatePlayStopped;
1.3367 + INFO_PRINTF1(_L("EStatePlayStopped"));
1.3368 + }
1.3369 + else
1.3370 + {
1.3371 + ERR_PRINTF2(_L("DevSound EEventBTBF not received as expected. Received event: %d"), aDevSoundEvent);
1.3372 + StopTest(aError, EFail);
1.3373 + }
1.3374 + break;
1.3375 + }
1.3376 +
1.3377 + case EStatePlayStopped:
1.3378 + {
1.3379 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundGetSampleNumsAfterStop"),EFsmIncorrectErrorPassed));
1.3380 + if (aDevSoundEvent == EEventPlayStopped)
1.3381 + {
1.3382 + INFO_PRINTF1(_L("Getting SamplesPlayed after Stop"));
1.3383 + TInt numSamplesStop = iMMFDevSound->SamplesPlayed();
1.3384 + INFO_PRINTF2(_L("SamplesPlayed after Stop: %d"), numSamplesStop);
1.3385 + if (numSamplesStop == KNULLSamples)
1.3386 + {
1.3387 + ERR_PRINTF2(_L("Number of samples played after stop should not be %d"), KNULLSamples );
1.3388 + StopTest(KErrGeneral);
1.3389 + }
1.3390 + else
1.3391 + {
1.3392 + INFO_PRINTF2(_L("Number of samples played after stop is greater than %d"), KNULLSamples );
1.3393 + StopTest(KErrNone);
1.3394 + }
1.3395 + }
1.3396 + else
1.3397 + {
1.3398 + ERR_PRINTF2(_L("Invalid DevSound event received: %d"), aDevSoundEvent);
1.3399 + StopTest(KErrGeneral);
1.3400 + }
1.3401 + }
1.3402 + break;
1.3403 +
1.3404 + default:
1.3405 + {
1.3406 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.3407 + StopTest(KErrGeneral);
1.3408 + }
1.3409 + }
1.3410 +
1.3411 + }
1.3412 +
1.3413 +/*
1.3414 + *
1.3415 + * DoTimerCallback
1.3416 + *
1.3417 + */
1.3418 +void RStepA3FDevSoundGetSampleNumsAfterStop::DoTimerCallback()
1.3419 + {
1.3420 + iTimer->Cancel(); // only really wanted a one-shot
1.3421 + if(!iCheckTimer)
1.3422 + {
1.3423 + Fsm(EEventPlayTimerComplete, KErrNone);
1.3424 + Fsm(EEventPlayStopped, KErrNone);
1.3425 + }
1.3426 +
1.3427 + }
1.3428 +
1.3429 +//
1.3430 +// RStepA3FDevSoundCancelInitializePlay
1.3431 +//
1.3432 +
1.3433 +/*
1.3434 + *
1.3435 + * RStepA3FDevSoundCancelInitializePlay - Test step constructor
1.3436 + *
1.3437 + */
1.3438 +RStepA3FDevSoundCancelInitializePlay::RStepA3FDevSoundCancelInitializePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3439 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1.3440 + {
1.3441 + }
1.3442 +
1.3443 +/*
1.3444 + *
1.3445 + * NewL
1.3446 + *
1.3447 + */
1.3448 +RStepA3FDevSoundCancelInitializePlay* RStepA3FDevSoundCancelInitializePlay::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3449 + {
1.3450 + RStepA3FDevSoundCancelInitializePlay* self = new (ELeave) RStepA3FDevSoundCancelInitializePlay(aTestName, aSectName, aInputDataType);
1.3451 + return self;
1.3452 +
1.3453 + }
1.3454 +
1.3455 +/*
1.3456 + *
1.3457 + * KickoffTestL
1.3458 + * - Starts the test
1.3459 + *
1.3460 + */
1.3461 +void RStepA3FDevSoundCancelInitializePlay::KickoffTestL()
1.3462 + {
1.3463 + // Create instance of CMMFDevSound
1.3464 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.3465 + iMMFDevSound = CMMFDevSound::NewL();
1.3466 +
1.3467 + iTimer = CPeriodic::NewL(CActive::EPriorityHigh);
1.3468 + iCallBack = TCallBack(TimerCallback, this);
1.3469 +
1.3470 + //Display the name of Codec being used
1.3471 + DisplayCodecInfo();
1.3472 + CheckConfigAndFourCCUsage();
1.3473 +
1.3474 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.3475 +
1.3476 + }
1.3477 +
1.3478 +/*
1.3479 + *
1.3480 + * InitializeComplete
1.3481 + *
1.3482 + */
1.3483 +void RStepA3FDevSoundCancelInitializePlay::InitializeComplete(TInt aError)
1.3484 + {
1.3485 + INFO_PRINTF1(_L("InitializeComplete callback was received. This is not the expected behaviour"));
1.3486 + INFO_PRINTF1(_L("InitializeL was not cancelled"));
1.3487 + StopTest(aError, EFail);
1.3488 + }
1.3489 +
1.3490 +/*
1.3491 + *
1.3492 + * DoTimerCallback
1.3493 + *
1.3494 + */
1.3495 +void RStepA3FDevSoundCancelInitializePlay::DoTimerCallback()
1.3496 + {
1.3497 + iTimer->Cancel(); // only really wanted a one-shot
1.3498 + INFO_PRINTF1(_L("InitializeComplete callback was not received. This is the expected behaviour"));
1.3499 + INFO_PRINTF1(_L("Use SetConfigL to verify that DevSound has not been initialised"));
1.3500 + SetSampleRateAndChannelMode();
1.3501 + TMMFCapabilities capabilities;
1.3502 + capabilities.iRate = ConvertDesToTMMFSampleRate(iSampleRate);
1.3503 + capabilities.iChannels = ConvertDesToTMMFMonoStereo(iMonoStereo);
1.3504 +
1.3505 + TRAPD(errConfig, iMMFDevSound->SetConfigL(capabilities));
1.3506 + if(errConfig == KErrNotReady)
1.3507 + {
1.3508 + INFO_PRINTF2(_L("SetConfigL returned with %d as expected"), errConfig);
1.3509 + INFO_PRINTF1(_L("InitializeL was cancelled successfully"));
1.3510 + StopTest(KErrNone);
1.3511 + }
1.3512 + else if (errConfig == KErrNone)
1.3513 + {
1.3514 + INFO_PRINTF2(_L("SetConfigL returned with KErrNone %d"), errConfig);
1.3515 + INFO_PRINTF1(_L("InitializeL was not cancelled successfully"));
1.3516 + StopTest(errConfig, EFail);
1.3517 + }
1.3518 + else
1.3519 + {
1.3520 + INFO_PRINTF2(_L("SetConfigL returned with unexpected error %d"), errConfig);
1.3521 + StopTest(errConfig, EFail);
1.3522 + }
1.3523 + }
1.3524 +
1.3525 +/*
1.3526 + *
1.3527 + * Fsm
1.3528 + * - Executes playing events of DevSound in sequence
1.3529 + *
1.3530 + */
1.3531 +void RStepA3FDevSoundCancelInitializePlay::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.3532 + {
1.3533 + switch (iPlayState)
1.3534 + {
1.3535 + case EStatePlayStart:
1.3536 + {
1.3537 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundCancelInitializePlay"),EFsmIncorrectErrorPassed));
1.3538 + if (aDevSoundEvent == EEventPlayStart)
1.3539 + {
1.3540 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.3541 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.3542 + TInt err;
1.3543 + if(iUseFourCC)
1.3544 + {
1.3545 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.3546 + }
1.3547 + else
1.3548 + {
1.3549 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.3550 + }
1.3551 + if (err != KErrNone)
1.3552 + {
1.3553 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.3554 + StopTest(err);
1.3555 + break;
1.3556 + }
1.3557 + else
1.3558 + {
1.3559 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.3560 + iPlayState = EStatePlayInitializing;
1.3561 + INFO_PRINTF1(_L("Calling CMMFDevSound::CancelInitialize()"));
1.3562 + iMMFDevSound->CancelInitialize();
1.3563 + }
1.3564 + INFO_PRINTF1(_L("Start timer to wait for InitializeComplete"));
1.3565 + iTimer->Start(KMicroSecsInTenSecs, 0, iCallBack);
1.3566 + }
1.3567 + else
1.3568 + {
1.3569 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.3570 + StopTest(aError, EFail);
1.3571 + }
1.3572 + break;
1.3573 + }
1.3574 + default:
1.3575 + {
1.3576 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.3577 + StopTest(KErrGeneral);
1.3578 + }
1.3579 + }
1.3580 +
1.3581 + }
1.3582 +
1.3583 +//
1.3584 +// RStepA3FDevSoundNegCancelInitializePlay
1.3585 +//
1.3586 +
1.3587 +/*
1.3588 + *
1.3589 + * RStepA3FDevSoundNegCancelInitializePlay - Test step constructor
1.3590 + *
1.3591 + */
1.3592 +RStepA3FDevSoundNegCancelInitializePlay::RStepA3FDevSoundNegCancelInitializePlay(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3593 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1.3594 + {
1.3595 + }
1.3596 +
1.3597 +/*
1.3598 + *
1.3599 + * NewL
1.3600 + *
1.3601 + */
1.3602 +RStepA3FDevSoundNegCancelInitializePlay* RStepA3FDevSoundNegCancelInitializePlay::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3603 + {
1.3604 + RStepA3FDevSoundNegCancelInitializePlay* self = new (ELeave) RStepA3FDevSoundNegCancelInitializePlay(aTestName, aSectName, aInputDataType);
1.3605 + return self;
1.3606 +
1.3607 + }
1.3608 +
1.3609 +/*
1.3610 + *
1.3611 + * KickoffTestL
1.3612 + * - Starts the test
1.3613 + *
1.3614 + */
1.3615 +void RStepA3FDevSoundNegCancelInitializePlay::KickoffTestL()
1.3616 + {
1.3617 + // Create instance of CMMFDevSound
1.3618 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.3619 + iMMFDevSound = CMMFDevSound::NewL();
1.3620 +
1.3621 + //Display the name of Codec being used
1.3622 + DisplayCodecInfo();
1.3623 + if(!GetBoolFromConfig(iSectName, _L("UseFourCC"), iUseFourCC))
1.3624 + {
1.3625 + TPtrC keyName(_L("UseFourCC"));
1.3626 + ERR_PRINTF3(_L("Error in getting UseFourCC flag value from config file in %S section via the %S key field."), &iSectName, &keyName);
1.3627 + StopTest(KErrPathNotFound);
1.3628 + return;
1.3629 + }
1.3630 +
1.3631 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.3632 +
1.3633 + }
1.3634 +
1.3635 +/*
1.3636 + *
1.3637 + * InitializeComplete
1.3638 + *
1.3639 + */
1.3640 +void RStepA3FDevSoundNegCancelInitializePlay::InitializeComplete(TInt aError)
1.3641 + {
1.3642 + if (aError == KErrNone)
1.3643 + {
1.3644 + INFO_PRINTF1(_L("InitializeComplete returned with KErrNone"));
1.3645 + INFO_PRINTF1(_L("Calling CancelInitialize after InitializeComplete"));
1.3646 + TInt err;
1.3647 + err = iMMFDevSound->CancelInitialize();
1.3648 + if (err == KErrNotReady)
1.3649 + {
1.3650 + INFO_PRINTF1(_L("CancelInitialize returned with KErrNotReady as expected"));
1.3651 + StopTest(aError);
1.3652 + }
1.3653 + else
1.3654 + {
1.3655 + INFO_PRINTF2(_L("CancelInitialize return with error %d instead of KErrNotReady as expected"), aError);
1.3656 + StopTest(aError, EFail);
1.3657 + }
1.3658 + }
1.3659 + else
1.3660 + {
1.3661 + INFO_PRINTF2(_L("InitializeComplete returned with error %d"), aError);
1.3662 + StopTest(aError, EFail);
1.3663 + }
1.3664 +
1.3665 + }
1.3666 +
1.3667 +/*
1.3668 + *
1.3669 + * Fsm
1.3670 + * - Executes playing events of DevSound in sequence
1.3671 + *
1.3672 + */
1.3673 +void RStepA3FDevSoundNegCancelInitializePlay::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.3674 + {
1.3675 + switch (iPlayState)
1.3676 + {
1.3677 + case EStatePlayStart:
1.3678 + {
1.3679 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundNegCancelInitializePlay"),EFsmIncorrectErrorPassed));
1.3680 + if (aDevSoundEvent == EEventPlayStart)
1.3681 + {
1.3682 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.3683 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.3684 + TInt err;
1.3685 + if(iUseFourCC)
1.3686 + {
1.3687 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.3688 + }
1.3689 + else
1.3690 + {
1.3691 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.3692 + }
1.3693 + if (err != KErrNone)
1.3694 + {
1.3695 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.3696 + StopTest(err);
1.3697 + break;
1.3698 + }
1.3699 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.3700 + iPlayState = EStatePlayInitializing;
1.3701 + }
1.3702 + else
1.3703 + {
1.3704 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.3705 + StopTest(aError, EFail);
1.3706 + }
1.3707 + break;
1.3708 + }
1.3709 +
1.3710 + default:
1.3711 + {
1.3712 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.3713 + StopTest(KErrGeneral);
1.3714 + }
1.3715 + }
1.3716 +
1.3717 + }
1.3718 +
1.3719 +//
1.3720 +// RStepA3FDevSoundEmptyBuffersInCreatedState
1.3721 +//
1.3722 +
1.3723 +/*
1.3724 + *
1.3725 + * RStepA3FDevSoundEmptyBuffersInCreatedState - Test step constructor
1.3726 + *
1.3727 + */
1.3728 +RStepA3FDevSoundEmptyBuffersInCreatedState::RStepA3FDevSoundEmptyBuffersInCreatedState(const TDesC& aTestName)
1.3729 +:RTestStepA3FDevSoundPlayBase(aTestName)
1.3730 + {
1.3731 + }
1.3732 +
1.3733 +/*
1.3734 + *
1.3735 + * NewL
1.3736 + *
1.3737 + */
1.3738 +RStepA3FDevSoundEmptyBuffersInCreatedState* RStepA3FDevSoundEmptyBuffersInCreatedState::NewL(const TDesC& aTestName)
1.3739 + {
1.3740 + RStepA3FDevSoundEmptyBuffersInCreatedState* self = new (ELeave) RStepA3FDevSoundEmptyBuffersInCreatedState(aTestName);
1.3741 + return self;
1.3742 +
1.3743 + }
1.3744 +
1.3745 +/*
1.3746 + *
1.3747 + * KickoffTestL
1.3748 + * - Starts the test
1.3749 + *
1.3750 + */
1.3751 +void RStepA3FDevSoundEmptyBuffersInCreatedState::KickoffTestL()
1.3752 + {
1.3753 + // Create instance of CMMFDevSound
1.3754 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.3755 + iMMFDevSound = CMMFDevSound::NewL();
1.3756 +
1.3757 + //Display the name of Codec being used
1.3758 + DisplayCodecInfo();
1.3759 +
1.3760 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.3761 +
1.3762 + }
1.3763 +
1.3764 +/*
1.3765 + *
1.3766 + * Fsm
1.3767 + * - Executes playing events of DevSound in sequence
1.3768 + *
1.3769 + */
1.3770 +void RStepA3FDevSoundEmptyBuffersInCreatedState::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.3771 + {
1.3772 + switch (iPlayState)
1.3773 + {
1.3774 + case EStatePlayStart:
1.3775 + {
1.3776 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundEmptyBuffersInCreatedState"),EFsmIncorrectErrorPassed));
1.3777 + if (aDevSoundEvent == EEventPlayStart)
1.3778 + {
1.3779 + // Calling EmptyBuffers
1.3780 + INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
1.3781 + TInt err;
1.3782 + err = iMMFDevSound->EmptyBuffers();
1.3783 + if (err == KErrNotReady)
1.3784 + {
1.3785 + ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() returned expected error = %d"), err);
1.3786 + StopTest();
1.3787 + }
1.3788 + else
1.3789 + {
1.3790 + ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() did not return KErrNotReady as expected. Returned with unexpected error = %d"), err);
1.3791 + StopTest(err);
1.3792 + }
1.3793 + }
1.3794 + else
1.3795 + {
1.3796 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.3797 + StopTest(aError, EFail);
1.3798 + }
1.3799 + break;
1.3800 + }
1.3801 + default:
1.3802 + {
1.3803 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.3804 + StopTest(KErrGeneral);
1.3805 + }
1.3806 + }
1.3807 +
1.3808 + }
1.3809 +
1.3810 +//
1.3811 +// RStepA3FDevSoundEmptyBuffersInInitializedState
1.3812 +//
1.3813 +
1.3814 +/*
1.3815 + *
1.3816 + * RStepA3FDevSoundEmptyBuffersInCreatedState - Test step constructor
1.3817 + *
1.3818 + */
1.3819 +RStepA3FDevSoundEmptyBuffersInInitializedState::RStepA3FDevSoundEmptyBuffersInInitializedState(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3820 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1.3821 + {
1.3822 + }
1.3823 +
1.3824 +/*
1.3825 + *
1.3826 + * NewL
1.3827 + *
1.3828 + */
1.3829 +RStepA3FDevSoundEmptyBuffersInInitializedState* RStepA3FDevSoundEmptyBuffersInInitializedState::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3830 + {
1.3831 + RStepA3FDevSoundEmptyBuffersInInitializedState* self = new (ELeave) RStepA3FDevSoundEmptyBuffersInInitializedState(aTestName, aSectName, aInputDataType);
1.3832 + return self;
1.3833 +
1.3834 + }
1.3835 +
1.3836 +/*
1.3837 + *
1.3838 + * KickoffTestL
1.3839 + * - Starts the test
1.3840 + *
1.3841 + */
1.3842 +void RStepA3FDevSoundEmptyBuffersInInitializedState::KickoffTestL()
1.3843 + {
1.3844 + // Create instance of CMMFDevSound
1.3845 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.3846 + iMMFDevSound = CMMFDevSound::NewL();
1.3847 +
1.3848 + //Display the name of Codec being used
1.3849 + DisplayCodecInfo();
1.3850 + CheckConfigAndFourCCUsage();
1.3851 +
1.3852 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.3853 +
1.3854 + }
1.3855 +
1.3856 +/*
1.3857 + *
1.3858 + * Fsm
1.3859 + * - Executes playing events of DevSound in sequence
1.3860 + *
1.3861 + */
1.3862 +void RStepA3FDevSoundEmptyBuffersInInitializedState::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.3863 + {
1.3864 + switch (iPlayState)
1.3865 + {
1.3866 + case EStatePlayStart:
1.3867 + {
1.3868 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundEmptyBuffersInCreatedState"),EFsmIncorrectErrorPassed));
1.3869 + if (aDevSoundEvent == EEventPlayStart)
1.3870 + {
1.3871 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.3872 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.3873 + TInt err;
1.3874 + if(iUseFourCC)
1.3875 + {
1.3876 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.3877 + }
1.3878 + else
1.3879 + {
1.3880 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.3881 + }
1.3882 + if (err != KErrNone)
1.3883 + {
1.3884 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.3885 + StopTest(err);
1.3886 + break;
1.3887 + }
1.3888 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.3889 + iPlayState = EStatePlayInitializing;
1.3890 + }
1.3891 + else
1.3892 + {
1.3893 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.3894 + StopTest(aError, EFail);
1.3895 + }
1.3896 + break;
1.3897 + }
1.3898 + case EStatePlayInitializing:
1.3899 + {
1.3900 + if (aDevSoundEvent == EEventInitCompletePlay && aError == KErrNone)
1.3901 + {
1.3902 + // Calling EmptyBuffers
1.3903 + INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
1.3904 + TInt err;
1.3905 + err = iMMFDevSound->EmptyBuffers();
1.3906 + if (err == KErrNotReady)
1.3907 + {
1.3908 + ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() returned expected error = %d"), err);
1.3909 + StopTest();
1.3910 + }
1.3911 + else
1.3912 + {
1.3913 + ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() did not return KErrNotReady as expected. Returned with unexpected error = %d"), err);
1.3914 + StopTest(err);
1.3915 + }
1.3916 + }
1.3917 + else if (aDevSoundEvent == EEventInitCompletePlay && aError != KErrNone)
1.3918 + {
1.3919 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::InitializeComplete with error = %d"), aError);
1.3920 + StopTest(aError);
1.3921 + }
1.3922 + else
1.3923 + {
1.3924 + ERR_PRINTF2(_L("DevSound EEventInitCompletePlay not received as expected. Received event: %d"), aDevSoundEvent);
1.3925 + StopTest(aError, EFail);
1.3926 + }
1.3927 + break;
1.3928 + }
1.3929 + default:
1.3930 + {
1.3931 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.3932 + StopTest(KErrGeneral);
1.3933 + }
1.3934 + }
1.3935 + }
1.3936 +
1.3937 +//
1.3938 +// RStepA3FDevSoundEmptyBuffersInInitializingState
1.3939 +//
1.3940 +
1.3941 +/*
1.3942 + *
1.3943 + * RStepA3FDevSoundCancelInitializePlay - Test step constructor
1.3944 + *
1.3945 + */
1.3946 +RStepA3FDevSoundEmptyBuffersInInitializingState::RStepA3FDevSoundEmptyBuffersInInitializingState(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3947 +:RTestStepA3FDevSoundPlayBase(aTestName, aSectName, aInputDataType)
1.3948 + {
1.3949 + }
1.3950 +
1.3951 +/*
1.3952 + *
1.3953 + * NewL
1.3954 + *
1.3955 + */
1.3956 +RStepA3FDevSoundEmptyBuffersInInitializingState* RStepA3FDevSoundEmptyBuffersInInitializingState::NewL(const TDesC& aTestName, const TDesC& aSectName, const TFourCC& aInputDataType)
1.3957 + {
1.3958 + RStepA3FDevSoundEmptyBuffersInInitializingState* self = new (ELeave) RStepA3FDevSoundEmptyBuffersInInitializingState(aTestName, aSectName, aInputDataType);
1.3959 + return self;
1.3960 +
1.3961 + }
1.3962 +
1.3963 +/*
1.3964 + *
1.3965 + * KickoffTestL
1.3966 + * - Starts the test
1.3967 + *
1.3968 + */
1.3969 +void RStepA3FDevSoundEmptyBuffersInInitializingState::KickoffTestL()
1.3970 + {
1.3971 + // Create instance of CMMFDevSound
1.3972 + INFO_PRINTF1(_L("--- Creating DevSound object..."));
1.3973 + iMMFDevSound = CMMFDevSound::NewL();
1.3974 +
1.3975 + //Display the name of Codec being used
1.3976 + DisplayCodecInfo();
1.3977 + CheckConfigAndFourCCUsage();
1.3978 +
1.3979 + Fsm(EEventPlayStart,KErrNone); // call to start the DevSound finite state machine for playing
1.3980 +
1.3981 + }
1.3982 +
1.3983 +/*
1.3984 + *
1.3985 + * InitializeComplete
1.3986 + *
1.3987 + */
1.3988 +void RStepA3FDevSoundEmptyBuffersInInitializingState::InitializeComplete(TInt aError)
1.3989 + {
1.3990 + INFO_PRINTF1(_L("InitializeComplete callback was received. This is not the expected behaviour"));
1.3991 + INFO_PRINTF1(_L("EmptyBuffers was not called before InitializeComplete "));
1.3992 + StopTest(aError, EFail);
1.3993 + }
1.3994 +
1.3995 +/*
1.3996 + *
1.3997 + * Fsm
1.3998 + * - Executes playing events of DevSound in sequence
1.3999 + *
1.4000 + */
1.4001 +void RStepA3FDevSoundEmptyBuffersInInitializingState::Fsm(TDevSoundPlayEvents aDevSoundEvent, TInt aError)
1.4002 + {
1.4003 + switch (iPlayState)
1.4004 + {
1.4005 + case EStatePlayStart:
1.4006 + {
1.4007 + __ASSERT_ALWAYS((aError == KErrNone),Panic(_L("RStepA3FDevSoundCancelInitializePlay"),EFsmIncorrectErrorPassed));
1.4008 + if (aDevSoundEvent == EEventPlayStart)
1.4009 + {
1.4010 + // Initializing DevSound object for playing mode to process audio data via desired FourCC code
1.4011 + INFO_PRINTF1(_L("Calling CMMFDevSound::InitializeL"));
1.4012 + TInt err;
1.4013 + if(iUseFourCC)
1.4014 + {
1.4015 + TRAP(err, iMMFDevSound->InitializeL(*this, iInputDataType, EMMFStatePlaying));
1.4016 + }
1.4017 + else
1.4018 + {
1.4019 + TRAP(err, iMMFDevSound->InitializeL(*this, EMMFStatePlaying));
1.4020 + }
1.4021 + if (err != KErrNone)
1.4022 + {
1.4023 + ERR_PRINTF2(_L("CMMFDevSound::InitializeL left with error = %d"), err);
1.4024 + StopTest(err);
1.4025 + break;
1.4026 + }
1.4027 + else
1.4028 + {
1.4029 + INFO_PRINTF1(_L("State: EStatePlayInitializing"));
1.4030 + iPlayState = EStatePlayInitializing;
1.4031 + INFO_PRINTF1(_L("Calling CMMFDevSound::EmptyBuffers()"));
1.4032 + TInt err;
1.4033 + err = iMMFDevSound->EmptyBuffers();
1.4034 + if (err == KErrNotReady)
1.4035 + {
1.4036 + ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() returned expected error = %d"), err);
1.4037 + StopTest();
1.4038 + }
1.4039 + else
1.4040 + {
1.4041 + ERR_PRINTF2(_L("CMMFDevSound::EmptyBuffers() did not return KErrNotReady as expected. Returned with unexpected error = %d"), err);
1.4042 + StopTest(err);
1.4043 + }
1.4044 + }
1.4045 + }
1.4046 + else
1.4047 + {
1.4048 + ERR_PRINTF2(_L("DevSound EEventPlayStart not received as expected. Received event: %d"), aDevSoundEvent);
1.4049 + StopTest(aError, EFail);
1.4050 + }
1.4051 + break;
1.4052 + }
1.4053 + default:
1.4054 + {
1.4055 + ERR_PRINTF2(_L("Invalid DevSound state received: %d"), iPlayState);
1.4056 + StopTest(KErrGeneral);
1.4057 + }
1.4058 + }
1.4059 + }