Update contrib.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
26 /*************************************************************************************
31 Math::Rand() degenerates to approx seed*3.3+38 for the first numbers generated
32 with a low seed, which isn't very random. To illustrate: The random numbers generated
33 by the seeds {0..9} are {38, 41, 45, 48, 51, 54, 58, 61, 64, 68}.
35 const TInt64 KMinSeed = 1000000000;
37 TInt64 TRnd::iSeed = KMinSeed; // Need to change CComparison::StartL() to use this value
39 CExecutionContext::CLogMediator* TRnd::iMediator = NULL;
40 CExecutionContext* TRnd::iExecutionContext = NULL;
47 void TRnd::SetSeed(TInt64 aSeed)
52 void TRnd::SetLogMediator(CExecutionContext::CLogMediator* aMediator)
54 iMediator = aMediator;
57 void TRnd::SetExecutionContext(CExecutionContext* aExecutionContext)
59 iExecutionContext = aExecutionContext;
63 TInt TRnd::GenRand(TInt x)
65 TInt res = Math::Rand( iSeed );
73 TInt TRnd::rnd(TInt x)
77 switch ( iExecutionContext->ContextMode() )
79 case CExecutionContext::ECtxPlayback:
80 res = iMediator->PlaybackInt();
83 case CExecutionContext::ECtxRandomAndRecord:
85 iMediator->RecordInt( res );
88 case CExecutionContext::ECtxRandom: // fallthrough
97 /*************************************************************************************
98 class CExecutionContext
100 TInt CExecutionContext::CLogMediator::PlaybackInt()
108 TBool failed = ETrue;
114 readRes = iLog.Read( logRec, 3 ); // 'Num'
118 if ( readRes == KErrNone && logRec == _L8("Num") )
120 iLog.Read( logRec, 16 ); // EntryNo, 16 characters
122 strLex.Assign( logRec );
123 TInt64 readVal64 = 0;
124 readRes = strLex.Val( readVal64, EDecimal );
125 if ( KErrNone == readRes && readVal64 == iEntryNo )
128 readRes = iLog.Read( logRec, 3 ); // ' = '
130 if ( readRes == KErrNone && logRec == _L8(" = ") )
133 readRes = iLog.Read( logRec, 13 ); // value 12 + eol
134 strLex.Assign( logRec );
138 readRes = strLex.Val( readVal32, EDecimal );
140 if ( KErrNone == readRes )
141 { // finally we got a number
143 res = (TInt) readVal32;
155 iExecutionContext.MediatorEmptied( this );
167 void CExecutionContext::CLogMediator::RecordInt(TInt aIntToBeRecorded)
172 logRec.Format( _L8("Num%016Ld = %012d\n"), iEntryNo, aIntToBeRecorded );
173 iLog.Write( logRec );
179 CExecutionContext::CLogMediator::CLogMediator(CExecutionContext& aExecutionContext):
180 iExecutionContext( aExecutionContext )
183 CExecutionContext::CLogMediator::~CLogMediator()
186 iExecutionContext.MediatorDestroyed ( this );
189 void CExecutionContext::CLogMediator::ConstructL( RFs& aFs, const TDesC& aFileName )
193 switch ( iExecutionContext.ContextMode() )
195 case CExecutionContext::ECtxPlayback:
196 fileErr = iLog.Open( aFs, aFileName, EFileRead );
199 case CExecutionContext::ECtxRandomAndRecord:
200 fileErr = iLog.Create( aFs, aFileName, EFileWrite );
201 if(fileErr == KErrAlreadyExists)
203 fileErr = iLog.Replace( aFs, aFileName, EFileWrite );
205 else if(fileErr == KErrPathNotFound)
207 User::LeaveIfError(aFs.CreatePrivatePath(EDriveC));
208 fileErr = iLog.Create( aFs, aFileName, EFileWrite );
210 __ASSERT_ALWAYS(KErrNone == fileErr, User::Panic(_L("t_stress utils.cpp"), EPanic2));
214 fileErr = KErrGeneral;
218 User::LeaveIfError( fileErr );
222 CExecutionContext::CLogMediator* CExecutionContext::CLogMediator::NewLC(CExecutionContext& aExecutionContext, RFs& aFs, const TDesC& aFileName )
224 CExecutionContext::CLogMediator* self = new (ELeave) CExecutionContext::CLogMediator( aExecutionContext );
225 CleanupStack::PushL ( self );
226 self->ConstructL( aFs, aFileName );
230 CExecutionContext* CExecutionContext::NewL(CExecutionContext::TExecutionMode aExecutionMode, CTestExecWatchCat& aWatchCat)
232 CExecutionContext* self = new (ELeave) CExecutionContext( aExecutionMode, aWatchCat );
233 CleanupStack::PushL ( self );
235 CleanupStack::Pop( self );
239 CExecutionContext::TExecutionMode CExecutionContext::ContextMode()
244 CExecutionContext::CLogMediator& CExecutionContext::CreateLogMediatorL(const TDesC& aLogName)
246 CExecutionContext::CLogMediator* mediator = CExecutionContext::CLogMediator::NewLC( *this, iFs, aLogName );
247 iMediators.AppendL( mediator );
248 CleanupStack::Pop(mediator);
252 void CExecutionContext::MediatorDestroyed(CLogMediator* aMediator)
254 TInt pos = iMediators.Find( aMediator );
255 iMediators.Remove ( pos );
258 void CExecutionContext::MediatorEmptied(CLogMediator* aMediator)
261 iWatchCat.ExecutionContextRunOut( this );
265 void CExecutionContext::ConstructL()
267 TInt conResult = iFs.Connect();
268 User::LeaveIfError( conResult );
272 CExecutionContext::CExecutionContext(CExecutionContext::TExecutionMode aExecutionMode, CTestExecWatchCat& aWatchCat):
273 iWatchCat(aWatchCat),
274 iContextMode(aExecutionMode)
277 CExecutionContext::~CExecutionContext()
279 while ( iMediators.Count() > 0 )
281 delete iMediators[0]; // this will remove the mediator from the list
288 /*************************************************************************************
289 class CTestExecWatchCat
291 CTestExecWatchCat* CTestExecWatchCat::NewL(CExecutionContext::TExecutionMode aExecutionMode)
293 CTestExecWatchCat* self = new (ELeave) CTestExecWatchCat();
294 CleanupStack::PushL( self );
295 self->ConstructL( aExecutionMode );
297 // finally hook into TRnd
298 TRnd::SetExecutionContext(self->iExecutionContext);
300 CleanupStack::Pop(self);
304 void CTestExecWatchCat::ConstructL( CExecutionContext::TExecutionMode aExecutionMode )
306 iExecutionContext = CExecutionContext::NewL( aExecutionMode, *this );
310 CTestExecWatchCat::CTestExecWatchCat()
313 CTestExecWatchCat::~CTestExecWatchCat()
315 delete iExecutionContext;
318 void CTestExecWatchCat::ExecutionContextRunOut(CExecutionContext* /*aContext*/)
322 Sets the path where the logging file will be created, then constructs the mediator
324 void CTestExecWatchCat::SetLoggingPathL(const TDesC& aPath)
327 path.CleanupClosePushL();
328 path.CreateL(aPath.Length() + 16);
332 if (aPath[aPath.Length()-1] != '\\')
337 path.Append(KLogFileName);
338 // now construct log mediator
339 CExecutionContext::CLogMediator& mediator = iExecutionContext->CreateLogMediatorL( path );
340 TRnd::SetLogMediator(&mediator);
341 CleanupStack::PopAndDestroy(&path);
344 /*************************************************************************************
347 TUint32 TTickUtils::CalcTickDelta(TUint32 tick1, TUint32 tick2)