sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef UTILS_H
|
sl@0
|
23 |
#define UTILS_H
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <e32math.h>
|
sl@0
|
26 |
#include <w32std.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
/*******************************************************************************
|
sl@0
|
29 |
This is a wrapper round the horrific Math::Rand interface
|
sl@0
|
30 |
*******************************************************************************/
|
sl@0
|
31 |
|
sl@0
|
32 |
const TInt KPosLimit = 350;
|
sl@0
|
33 |
|
sl@0
|
34 |
_LIT(KLogFileName, "logging.log"); //to be used to replay the same testrun
|
sl@0
|
35 |
_LIT(KAnimDllName, "a0005924.dll");
|
sl@0
|
36 |
|
sl@0
|
37 |
class CTestExecWatchCat;
|
sl@0
|
38 |
|
sl@0
|
39 |
class CExecutionContext : public CBase
|
sl@0
|
40 |
{
|
sl@0
|
41 |
friend class CTestExecWatchCat;
|
sl@0
|
42 |
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
class CLogMediator : public CBase
|
sl@0
|
45 |
{
|
sl@0
|
46 |
public:
|
sl@0
|
47 |
TInt PlaybackInt ();
|
sl@0
|
48 |
void RecordInt (TInt aIntToBeRecorded);
|
sl@0
|
49 |
static CLogMediator* NewLC (CExecutionContext& aExecutionContext, RFs& aFs, const TDesC& aFileName);
|
sl@0
|
50 |
~CLogMediator ();
|
sl@0
|
51 |
|
sl@0
|
52 |
private:
|
sl@0
|
53 |
CLogMediator (CExecutionContext& aExecutionContext);
|
sl@0
|
54 |
void ConstructL (RFs& aFs, const TDesC& aFileName);
|
sl@0
|
55 |
|
sl@0
|
56 |
private:
|
sl@0
|
57 |
RFile iLog;
|
sl@0
|
58 |
CExecutionContext& iExecutionContext;
|
sl@0
|
59 |
TInt64 iEntryNo;
|
sl@0
|
60 |
TBool iStalled;
|
sl@0
|
61 |
};
|
sl@0
|
62 |
|
sl@0
|
63 |
enum TExecutionMode
|
sl@0
|
64 |
{
|
sl@0
|
65 |
ECtxRandom,
|
sl@0
|
66 |
ECtxRandomAndRecord,
|
sl@0
|
67 |
ECtxPlayback
|
sl@0
|
68 |
};
|
sl@0
|
69 |
|
sl@0
|
70 |
static CExecutionContext* NewL (TExecutionMode aExecutionMode, CTestExecWatchCat& aWatchCat);
|
sl@0
|
71 |
TExecutionMode ContextMode ();
|
sl@0
|
72 |
~CExecutionContext ();
|
sl@0
|
73 |
void MediatorDestroyed (CLogMediator* aMediator);
|
sl@0
|
74 |
void MediatorEmptied (CLogMediator* aMediator);
|
sl@0
|
75 |
|
sl@0
|
76 |
private:
|
sl@0
|
77 |
CExecutionContext (TExecutionMode aExecutionMode, CTestExecWatchCat& aWatchCat);
|
sl@0
|
78 |
void ConstructL ();
|
sl@0
|
79 |
CLogMediator& CreateLogMediatorL (const TDesC& aLogName);
|
sl@0
|
80 |
|
sl@0
|
81 |
private:
|
sl@0
|
82 |
RFs iFs;
|
sl@0
|
83 |
RPointerArray<CLogMediator> iMediators;
|
sl@0
|
84 |
CTestExecWatchCat& iWatchCat;
|
sl@0
|
85 |
TExecutionMode iContextMode;
|
sl@0
|
86 |
};
|
sl@0
|
87 |
|
sl@0
|
88 |
class CTestExecWatchCat : public CBase
|
sl@0
|
89 |
{
|
sl@0
|
90 |
friend class CExecutionContext;
|
sl@0
|
91 |
|
sl@0
|
92 |
public:
|
sl@0
|
93 |
static CTestExecWatchCat* NewL (CExecutionContext::TExecutionMode aExecutionMode);
|
sl@0
|
94 |
void SetLoggingPathL(const TDesC& aPath);
|
sl@0
|
95 |
|
sl@0
|
96 |
private:
|
sl@0
|
97 |
CTestExecWatchCat ( );
|
sl@0
|
98 |
~CTestExecWatchCat ( );
|
sl@0
|
99 |
|
sl@0
|
100 |
void ConstructL (CExecutionContext::TExecutionMode aExecutionMode );
|
sl@0
|
101 |
void ExecutionContextRunOut (CExecutionContext* aContext );
|
sl@0
|
102 |
|
sl@0
|
103 |
private:
|
sl@0
|
104 |
CExecutionContext* iExecutionContext;
|
sl@0
|
105 |
};
|
sl@0
|
106 |
|
sl@0
|
107 |
class TRnd
|
sl@0
|
108 |
{
|
sl@0
|
109 |
public:
|
sl@0
|
110 |
static TInt rnd ( TInt x = 0 );
|
sl@0
|
111 |
static TInt64 Seed();
|
sl@0
|
112 |
static void SetSeed(TInt64 aSeed);
|
sl@0
|
113 |
static void SetLogMediator(CExecutionContext::CLogMediator* aMediator);
|
sl@0
|
114 |
static void SetExecutionContext(CExecutionContext* aExecutionContext);
|
sl@0
|
115 |
private:
|
sl@0
|
116 |
static TInt GenRand (TInt x );
|
sl@0
|
117 |
|
sl@0
|
118 |
private:
|
sl@0
|
119 |
static CExecutionContext::CLogMediator* iMediator;
|
sl@0
|
120 |
static CExecutionContext* iExecutionContext;
|
sl@0
|
121 |
static TInt64 iSeed;
|
sl@0
|
122 |
|
sl@0
|
123 |
friend class CTestExecWatchCat;
|
sl@0
|
124 |
};
|
sl@0
|
125 |
|
sl@0
|
126 |
class TTickUtils
|
sl@0
|
127 |
{
|
sl@0
|
128 |
public:
|
sl@0
|
129 |
static TUint32 CalcTickDelta (TUint32 tick1, TUint32 tick2 );
|
sl@0
|
130 |
|
sl@0
|
131 |
};
|
sl@0
|
132 |
|
sl@0
|
133 |
/*******************************************************************************
|
sl@0
|
134 |
This is a small helper function for drawing regions
|
sl@0
|
135 |
*******************************************************************************/
|
sl@0
|
136 |
static void DrawRegion (const TRegion& aRegion, CGraphicsContext& aGc)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
const TRect * rect = aRegion.RectangleList ();
|
sl@0
|
139 |
for (TInt r = 0; r < aRegion.Count (); ++r)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
aGc.DrawRect (*rect);
|
sl@0
|
142 |
++rect;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
#endif // UTILS_H
|