1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_testbase.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,462 @@
1.4 +// Copyright (c) 2008-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 +//
1.18 +
1.19 +#include "char_a3f_devsound_testbase.h"
1.20 +#include "char_a3f_devsound_playrecordclients.h"
1.21 +#include "char_a3f_devsound_toneclient.h"
1.22 +
1.23 +const TUint KRateLookup[] =
1.24 + {
1.25 + EMMFSampleRate8000Hz,
1.26 + EMMFSampleRate11025Hz,
1.27 + EMMFSampleRate16000Hz,
1.28 + EMMFSampleRate22050Hz,
1.29 + EMMFSampleRate32000Hz,
1.30 + EMMFSampleRate44100Hz,
1.31 + EMMFSampleRate48000Hz,
1.32 + EMMFSampleRate88200Hz,
1.33 + EMMFSampleRate96000Hz,
1.34 + EMMFSampleRate12000Hz,
1.35 + EMMFSampleRate24000Hz,
1.36 + EMMFSampleRate64000Hz
1.37 + };
1.38 +
1.39 +const TUint KChannelsLookup[] =
1.40 + {
1.41 + EMMFMono,
1.42 + EMMFStereo
1.43 + };
1.44 +
1.45 +RA3FDevSoundTestBase::RA3FDevSoundTestBase(const TDesC& aTestName)
1.46 + : iFourCCString(KNullDesC),
1.47 + iFourCCCode(KMMFFourCCCodeNULL),
1.48 + iDevSoundState(EStateInitial),
1.49 + iDevsoundToneClient(NULL),
1.50 + iDevsoundPlayClient(NULL),
1.51 + iDevsoundRecordClient(NULL),
1.52 + iMMFDevSound(NULL),
1.53 + iTimer(NULL), iBuffer(NULL)
1.54 + {
1.55 + iTestStepName = aTestName;
1.56 + }
1.57 +
1.58 +void RA3FDevSoundTestBase::KickoffTestL()
1.59 + {
1.60 + INFO_PRINTF1(_L("__________ Creating DevSound object ___________"));
1.61 +
1.62 + // Create devsound object
1.63 + TRAPD(err, iMMFDevSound = CMMFDevSound::NewL());
1.64 + if (err != KErrNone)
1.65 + {
1.66 + ERR_PRINTF2(_L("Could not create DevSound object. Error = %d"), err);
1.67 + StopTest(err);
1.68 + return;
1.69 + }
1.70 + INFO_PRINTF1(_L("DevSound State: EStateCreated"));
1.71 + iDevSoundState = EStateCreated;
1.72 + // Connect RFs
1.73 + err = iFs.Connect();
1.74 + if (err != KErrNone)
1.75 + {
1.76 + ERR_PRINTF2(_L("Could not connect to Filesystem. Error = %d"), err);
1.77 + StopTest(err);
1.78 + return;
1.79 + }
1.80 + DoKickoffTestL();
1.81 + INFO_PRINTF1(_L("DevSound Event: EEventInitialize"));
1.82 + Fsm(EEventInitialize, KErrNone);
1.83 + }
1.84 +
1.85 +void RA3FDevSoundTestBase::CloseTest()
1.86 + {
1.87 + if (iMMFDevSound)
1.88 + {
1.89 + INFO_PRINTF1(KMsgDeleteDevsound);
1.90 + delete iMMFDevSound;
1.91 + }
1.92 + if(iTimer)
1.93 + {
1.94 + delete iTimer;
1.95 + }
1.96 + if(iDevsoundToneClient)
1.97 + {
1.98 + delete iDevsoundToneClient;
1.99 + }
1.100 + if(iDevsoundPlayClient)
1.101 + {
1.102 + delete iDevsoundPlayClient;
1.103 + }
1.104 + if(iDevsoundRecordClient)
1.105 + {
1.106 + delete iDevsoundRecordClient;
1.107 + }
1.108 + if (iAsyncWriteBTFAO)
1.109 + {
1.110 + delete iAsyncWriteBTFAO;
1.111 + iAsyncWriteBTFAO = NULL;
1.112 + }
1.113 +
1.114 + iFile.Close();
1.115 + iFs.Close();
1.116 + }
1.117 +
1.118 +/*
1.119 + *
1.120 + * CallStopTest
1.121 + *
1.122 + */
1.123 +void RA3FDevSoundTestBase::CallStopTest(TInt aError)
1.124 + {
1.125 + StopTest(aError);
1.126 + }
1.127 +
1.128 +
1.129 +void RA3FDevSoundTestBase::StartTimer(TTimeIntervalMicroSeconds32 aWaitTime)
1.130 + {
1.131 + TTimeIntervalMicroSeconds32 timeInterval;
1.132 +
1.133 + if(aWaitTime <= TTimeIntervalMicroSeconds32(0))
1.134 + {
1.135 + timeInterval = KMicroSecsInOneSec;
1.136 + }
1.137 + else
1.138 + {
1.139 + timeInterval = aWaitTime;
1.140 + }
1.141 + TCallBack callback (TimerCallback, this);
1.142 + iTimer->Start(timeInterval, timeInterval, callback);
1.143 + INFO_PRINTF1(_L("Timer has been started"));
1.144 + }
1.145 +
1.146 +TInt RA3FDevSoundTestBase::TimerCallback(TAny* aPtr)
1.147 + {
1.148 + static_cast<RA3FDevSoundTestBase*>(aPtr)->DoTimerCallback();
1.149 + return KErrNone;
1.150 + }
1.151 +
1.152 +void RA3FDevSoundTestBase::DoTimerCallback()
1.153 + {
1.154 + __ASSERT_ALWAYS(0, Panic(_L("RA3FDevSoundTestBase"), EInvalidCallbackCall));
1.155 + }
1.156 +
1.157 +void RA3FDevSoundTestBase::EncodingFromStringToTFourCC(const TDesC& aFourCCString)
1.158 + {
1.159 + iFourCCString.Copy(aFourCCString);
1.160 + if(aFourCCString.Length() <= KTFourCC)
1.161 + {
1.162 + while( iFourCCString.Length() < KTFourCC )
1.163 + {
1.164 + iFourCCString.Insert(0, _L(" "));
1.165 + }
1.166 + iFourCCCode = TFourCC(iFourCCString[3] << 24 | iFourCCString[2] << 16 | iFourCCString[1] << 8 | iFourCCString[0]);
1.167 + }
1.168 + else
1.169 + {
1.170 + ERR_PRINTF2(KMsgErrorFourccLength,iFourCCString.Length());
1.171 + StopTest(KErrUnknown);
1.172 + }
1.173 + }
1.174 +
1.175 +void RA3FDevSoundTestBase::InitializeComplete(TInt aError)
1.176 + {
1.177 + INFO_PRINTF1(_L("========== DevSound InitializeComplete() callback =========="));
1.178 + INFO_PRINTF3(KMsgErrorDevSoundCallback, &KInitializeCompleteText, aError);
1.179 + if(iDevSoundState == EStateInitializing)
1.180 + {
1.181 + INFO_PRINTF1(_L("DevSound Event: EEventInitComplete"));
1.182 + Fsm(EEventInitComplete, aError);
1.183 + }
1.184 + }
1.185 +
1.186 +void RA3FDevSoundTestBase::ToneFinished(TInt aError)
1.187 + {
1.188 + INFO_PRINTF1(_L("========== DevSound ToneFinished() callback =========="));
1.189 + if (aError == KErrUnderflow)
1.190 + {
1.191 + INFO_PRINTF2(_L("DevSound called CMMFDevSound::ToneFinished with error = %d as expected"), aError);
1.192 + StopTest(aError,EPass);
1.193 + }
1.194 + else
1.195 + {
1.196 + ERR_PRINTF2(_L("DevSound called CMMFDevSound::ToneFinished with error = %d"), aError);
1.197 + ERR_PRINTF2(_L("Expected error = %d"), KErrUnderflow);
1.198 + StopTest(aError);
1.199 + }
1.200 + }
1.201 +
1.202 +void RA3FDevSoundTestBase::BufferToBeFilled(CMMFBuffer* aBuffer)
1.203 + {
1.204 + INFO_PRINTF1(_L("========== DevSound BufferToBeFilled() callback =========="));
1.205 + if (!aBuffer)
1.206 + {
1.207 + ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
1.208 + StopTest(KErrGeneral);
1.209 + }
1.210 + else
1.211 + {
1.212 + iBuffer = aBuffer;
1.213 + INFO_PRINTF1(_L("DevSound Event: EEventBTBF"));
1.214 + Fsm(EEventBTBF, KErrNone);
1.215 + }
1.216 + }
1.217 +
1.218 +void RA3FDevSoundTestBase::PlayError(TInt aError)
1.219 + {
1.220 + INFO_PRINTF1(_L("========== DevSound PlayError() callback =========="));
1.221 + INFO_PRINTF3(KMsgErrorDevSoundCallback, &KPlayErrorText, aError);
1.222 + if(iBuffer->LastBuffer() && (aError == KErrUnderflow))
1.223 + {
1.224 + INFO_PRINTF1(_L("Playback completed normally"));
1.225 + StopTest();
1.226 + }
1.227 + else
1.228 + {
1.229 + INFO_PRINTF1(_L("Playback completed with error"));
1.230 + StopTest(aError, EFail);
1.231 + }
1.232 + }
1.233 +
1.234 +void RA3FDevSoundTestBase::BufferToBeEmptied(CMMFBuffer* aBuffer)
1.235 + {
1.236 + INFO_PRINTF1(_L("DevSound called BufferToBeEmptied."));
1.237 + if (!aBuffer)
1.238 + {
1.239 + INFO_PRINTF1(_L("BufferToBeEmptied callback received a NULL CMMFBuffer"));
1.240 + StopTest(KErrGeneral);
1.241 + return;
1.242 + }
1.243 + iBuffer = aBuffer;
1.244 + if(aBuffer->LastBuffer())
1.245 + {
1.246 + if(iDevSoundState == EStatePause)
1.247 + {
1.248 + // We need to call CMMFDevSound->Stop() here if last buffer flag set
1.249 + INFO_PRINTF1(_L("Devsound is in Paused state and CMMFBuffer::LastBuffer is set"));
1.250 + INFO_PRINTF1(_L("iMMFDevSound->Stop()"));
1.251 + iMMFDevSound->Stop();
1.252 + StopTest();
1.253 + }
1.254 + else
1.255 + {
1.256 + INFO_PRINTF1(_L("***** Unknown behaviour: Last buffer flag set before calling CMMFDevSound->Pause()"));
1.257 + StopTest(KErrUnknown);
1.258 + }
1.259 + }
1.260 + else
1.261 + {
1.262 + INFO_PRINTF1(_L("DevSound Event: EEventBTBE"));
1.263 + Fsm(EEventBTBE, KErrNone);
1.264 + }
1.265 + }
1.266 +
1.267 +void RA3FDevSoundTestBase::RecordError(TInt aError)
1.268 + {
1.269 + INFO_PRINTF2(_L("DevSound called RecordError with error = %d"), aError);
1.270 + if (aError == KErrUnderflow)
1.271 + {
1.272 + StopTest(aError);
1.273 + }
1.274 + }
1.275 +
1.276 +void RA3FDevSoundTestBase::ConvertError(TInt /*aError*/)
1.277 + {
1.278 + __ASSERT_ALWAYS(0, Panic(_L("RA3FDevSoundTestBase"), EInvalidCallbackCall));
1.279 + }
1.280 +
1.281 +void RA3FDevSoundTestBase::DeviceMessage(TUid /*aMessageType*/, const TDesC8& /*aMsg*/)
1.282 + {
1.283 + __ASSERT_ALWAYS(0, Panic(_L("RA3FDevSoundTestBase"), EInvalidCallbackCall));
1.284 + }
1.285 +
1.286 +void RA3FDevSoundTestBase::SendEventToClient(const TMMFEvent& aEvent)
1.287 + {
1.288 + INFO_PRINTF3(_L("RA3FDevSoundTestBase::SendEventToClient type=0x%08x errorCode=%d"),aEvent.iEventType, aEvent.iErrorCode);
1.289 + if(aEvent.iEventType == KMMFEventCategoryAudioResourceAvailable)
1.290 + {
1.291 + INFO_PRINTF1(_L("Received KMMFEventCategoryAudioResourceAvailable"));
1.292 + Fsm(EResourceAvailable, aEvent.iErrorCode);
1.293 + }
1.294 + }
1.295 +
1.296 +void RA3FDevSoundTestBase::SampleRateFromTIntToTMMFSampleRate(TInt aSampleRate, TMMFSampleRate &aESampleRate)
1.297 + {
1.298 + const TSampleRateToTMMFSampleRate SampleRateLookUp [] =
1.299 + {
1.300 + {8000, EMMFSampleRate8000Hz},
1.301 + {11025, EMMFSampleRate11025Hz},
1.302 + {16000, EMMFSampleRate16000Hz},
1.303 + {22050, EMMFSampleRate22050Hz},
1.304 + {32000, EMMFSampleRate32000Hz},
1.305 + {44100, EMMFSampleRate44100Hz},
1.306 + {48000, EMMFSampleRate48000Hz},
1.307 + {88200, EMMFSampleRate88200Hz},
1.308 + {96000, EMMFSampleRate96000Hz},
1.309 + {12000, EMMFSampleRate12000Hz},
1.310 + {24000, EMMFSampleRate24000Hz},
1.311 + {64000, EMMFSampleRate64000Hz}
1.312 + };
1.313 +
1.314 + const TInt length = sizeof SampleRateLookUp / sizeof *SampleRateLookUp;
1.315 +
1.316 + for(TInt i = 0; i < length; i++)
1.317 + {
1.318 + if(aSampleRate == SampleRateLookUp[i].iTIntSampleRate)
1.319 + {
1.320 + aESampleRate = SampleRateLookUp[i].iTMMFSampleRate;
1.321 + return;
1.322 + }
1.323 + }
1.324 + ERR_PRINTF1(_L("User SampleRate doesn't match any of the specified sample rates"));
1.325 + StopTest(KErrGeneral);
1.326 + }
1.327 +
1.328 +
1.329 +void RA3FDevSoundTestBase::SampleRateFromTUintToString(TUint aSampleRate, TDes& aStringSampleRate)
1.330 + {
1.331 + const TSampleRateToString SampleRateLookUp [] =
1.332 + {
1.333 + {0x00000001, KEMMFSampleRate8000Hz() },
1.334 + {0x00000002, KEMMFSampleRate11025Hz()},
1.335 + {0x00000004, KEMMFSampleRate16000Hz()},
1.336 + {0x00000008, KEMMFSampleRate22050Hz()},
1.337 + {0x00000010, KEMMFSampleRate32000Hz()},
1.338 + {0x00000020, KEMMFSampleRate44100Hz()},
1.339 + {0x00000040, KEMMFSampleRate48000Hz()},
1.340 + {0x00000080, KEMMFSampleRate88200Hz()},
1.341 + {0x00000100, KEMMFSampleRate96000Hz()},
1.342 + {0x00000200, KEMMFSampleRate12000Hz()},
1.343 + {0x00000400, KEMMFSampleRate24000Hz()},
1.344 + {0x00000800, KEMMFSampleRate64000Hz()}
1.345 + };
1.346 +
1.347 + const TInt length = sizeof SampleRateLookUp / sizeof *SampleRateLookUp;
1.348 +
1.349 + for (TInt i =0; i < length; i++)
1.350 + {
1.351 + if(aSampleRate == SampleRateLookUp[i].iTUIntSampleRate)
1.352 + {
1.353 + aStringSampleRate.Copy(SampleRateLookUp[i].iTPtrSampleRate);
1.354 + return;
1.355 + }
1.356 + }
1.357 + ERR_PRINTF1(_L("SampleRate doesn't match any of the specified sample rates"));
1.358 + StopTest(KErrGeneral);
1.359 + }
1.360 +
1.361 +void RA3FDevSoundTestBase::ChannelsFromTUintToString(TUint aChannels,TDes& aStringChannels)
1.362 + {
1.363 + const TChannelsToString ChannelsLookUp [] =
1.364 + {
1.365 + {0x00000001, KEMMFMono() },
1.366 + {0x00000002, KEMMFStereo()},
1.367 + };
1.368 + const TInt length = sizeof ChannelsLookUp / sizeof *ChannelsLookUp;
1.369 +
1.370 + for (TInt i =0; i < length; i++)
1.371 + {
1.372 + if(aChannels == ChannelsLookUp[i].iTUIntChannels)
1.373 + {
1.374 + aStringChannels.Copy(ChannelsLookUp[i].iTPtrChannels);
1.375 + return;
1.376 + }
1.377 + }
1.378 + ERR_PRINTF1(_L("Channels doesn't match any of the specified channels"));
1.379 + StopTest(KErrGeneral);
1.380 + }
1.381 +
1.382 +
1.383 +void RA3FDevSoundTestBase::PrintSupportedCapabilities(TUint aSampleRate,TUint aChannel)
1.384 + {
1.385 + TInt length = sizeof KRateLookup / sizeof *KRateLookup;
1.386 + TBuf<KMaxSampleRateStringLength> stringSampleRate;
1.387 + TBuf<KMaxChannelsStringLength> channels;
1.388 +
1.389 + for(TInt i = 0; i < length ; i++)
1.390 + {
1.391 + if(aSampleRate & KRateLookup[i])
1.392 + {
1.393 + SampleRateFromTUintToString(KRateLookup[i],stringSampleRate);
1.394 + INFO_PRINTF3(_L("Supported Sample rate 0x%08x %S"),KRateLookup[i],&stringSampleRate);
1.395 + }
1.396 + }
1.397 + length = sizeof KChannelsLookup / sizeof *KChannelsLookup;
1.398 +
1.399 + for(TInt i = 0; i < length ; i++)
1.400 + {
1.401 + if(aChannel & KChannelsLookup[i])
1.402 + {
1.403 + ChannelsFromTUintToString(KChannelsLookup[i],channels);
1.404 + INFO_PRINTF3(_L("Supported channels 0x%08x %S"),KChannelsLookup[i],&channels);
1.405 + }
1.406 + }
1.407 + }
1.408 +
1.409 +//
1.410 +// CAsyncWriteBufferToFile
1.411 +//
1.412 +
1.413 +CAsyncWriteBufferToFile::CAsyncWriteBufferToFile(RFile& aFile, CMMFDevSound* aDevSound, RA3FDevSoundTestBase& aTestStep)
1.414 +:CActive(EPriorityStandard),
1.415 + iFile(aFile),
1.416 + iDevSound(aDevSound),
1.417 + iTestStep(aTestStep)
1.418 + {
1.419 + CActiveScheduler::Add(this);
1.420 + }
1.421 +
1.422 +CAsyncWriteBufferToFile::~CAsyncWriteBufferToFile()
1.423 + {
1.424 + Cancel();
1.425 + }
1.426 +
1.427 +CAsyncWriteBufferToFile* CAsyncWriteBufferToFile::NewL(RFile& aFile, CMMFDevSound* aDevSound, RA3FDevSoundTestBase& aTestStep)
1.428 + {
1.429 + CAsyncWriteBufferToFile* self = new(ELeave) CAsyncWriteBufferToFile(aFile, aDevSound, aTestStep);
1.430 + CleanupStack::PushL(self);
1.431 + self->ConstructL();
1.432 + CleanupStack::Pop(self);
1.433 + return self;
1.434 + }
1.435 +
1.436 +void CAsyncWriteBufferToFile::ConstructL()
1.437 + {
1.438 + // Nothing to do here
1.439 + }
1.440 +
1.441 +void CAsyncWriteBufferToFile::RunL()
1.442 + {
1.443 + //If error occurs then deal with problem in RunError()
1.444 + User::LeaveIfError(iStatus.Int());
1.445 + // Continue recording data to a buffer
1.446 + iDevSound->RecordData();
1.447 +
1.448 + }
1.449 +
1.450 +void CAsyncWriteBufferToFile::Start(CMMFDataBuffer* aBuffer)
1.451 + {
1.452 + iFile.Write(aBuffer->Data(), iStatus);
1.453 + SetActive();
1.454 + }
1.455 +
1.456 +void CAsyncWriteBufferToFile::DoCancel()
1.457 + {
1.458 + // Can't cancel an async write request
1.459 + }
1.460 +
1.461 +TInt CAsyncWriteBufferToFile::RunError(TInt aError)
1.462 + {
1.463 + iTestStep.CallStopTest(aError);
1.464 + return KErrNone;
1.465 + }