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 |
#ifndef TCWGCECSCBASE_H_
|
sl@0
|
17 |
#define TCWGCECSCBASE_H_
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <test/tefunit.h>
|
sl@0
|
20 |
#include <w32debug.h>
|
sl@0
|
21 |
#include "surfaceutility.h"
|
sl@0
|
22 |
#include <e32property.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
class TPerfProperties
|
sl@0
|
25 |
{
|
sl@0
|
26 |
public:
|
sl@0
|
27 |
TBool GetValue(TUint aKey);
|
sl@0
|
28 |
void PrintAllL(CTestFixture& aLogger);
|
sl@0
|
29 |
TBool ResetValue(TUint aKey);
|
sl@0
|
30 |
void UpdateAll();
|
sl@0
|
31 |
void ResetAll();
|
sl@0
|
32 |
private:
|
sl@0
|
33 |
#ifdef GCE_BACKEND_PROFILING
|
sl@0
|
34 |
TInt iValue[EPerfLastKey];
|
sl@0
|
35 |
TInt iPrevValue[EPerfLastKey];
|
sl@0
|
36 |
const static TBuf<100> propertyKeysTxt[EPerfLastKey];
|
sl@0
|
37 |
#endif
|
sl@0
|
38 |
};
|
sl@0
|
39 |
|
sl@0
|
40 |
class CWsGceCscBase: public CTestFixture
|
sl@0
|
41 |
{
|
sl@0
|
42 |
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
template <class Referee,class LoggerOwner>
|
sl@0
|
45 |
class SafePointer
|
sl@0
|
46 |
{
|
sl@0
|
47 |
public:
|
sl@0
|
48 |
SafePointer(LoggerOwner* aOwner,Referee* aReferee=NULL):
|
sl@0
|
49 |
iOwner(aOwner), iReferee(aReferee)
|
sl@0
|
50 |
{}
|
sl@0
|
51 |
Referee* operator=(Referee* aReferee)
|
sl@0
|
52 |
{
|
sl@0
|
53 |
return iReferee=aReferee;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
Referee*& operator()()
|
sl@0
|
56 |
{
|
sl@0
|
57 |
return iReferee;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
Referee* operator->()
|
sl@0
|
60 |
{
|
sl@0
|
61 |
if (iReferee==NULL)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
iOwner -> INFO_PRINTF1(_L("Tried to dereference a pointer that is null!"));
|
sl@0
|
64 |
User::Panic(_L("null pointer"),__LINE__);
|
sl@0
|
65 |
}
|
sl@0
|
66 |
return iReferee;
|
sl@0
|
67 |
}
|
sl@0
|
68 |
private:
|
sl@0
|
69 |
LoggerOwner* iOwner;
|
sl@0
|
70 |
Referee* iReferee;
|
sl@0
|
71 |
};
|
sl@0
|
72 |
|
sl@0
|
73 |
public:
|
sl@0
|
74 |
CWsGceCscBase();
|
sl@0
|
75 |
virtual ~CWsGceCscBase();
|
sl@0
|
76 |
virtual void SetupL();
|
sl@0
|
77 |
virtual void TearDownL();
|
sl@0
|
78 |
virtual void TearDownFromDeleteL();
|
sl@0
|
79 |
|
sl@0
|
80 |
protected:
|
sl@0
|
81 |
typedef TBuf<KMaxTestName> TTestName;
|
sl@0
|
82 |
|
sl@0
|
83 |
class TPostTestCleanup
|
sl@0
|
84 |
{
|
sl@0
|
85 |
protected:
|
sl@0
|
86 |
TPostTestCleanup() {}
|
sl@0
|
87 |
public:
|
sl@0
|
88 |
CSurfaceUtility* iSharedUtility;
|
sl@0
|
89 |
TBool iCleanedUpOnExit;
|
sl@0
|
90 |
};
|
sl@0
|
91 |
|
sl@0
|
92 |
|
sl@0
|
93 |
typedef enum TOptimizationLevel
|
sl@0
|
94 |
{
|
sl@0
|
95 |
EDisable,
|
sl@0
|
96 |
EDetectFrontmostFullScreenOpaqueLayer,
|
sl@0
|
97 |
EMaximum,
|
sl@0
|
98 |
} TOptimizationLevel;
|
sl@0
|
99 |
|
sl@0
|
100 |
|
sl@0
|
101 |
protected:
|
sl@0
|
102 |
void SetCompositionMode(RWindow& aWindow, TDisplayMode aMode);
|
sl@0
|
103 |
|
sl@0
|
104 |
TBool Compare(CFbsBitmap& aBitmap1, CFbsBitmap& aBitmap2);
|
sl@0
|
105 |
|
sl@0
|
106 |
void ConstructOpaqueWindowLC(RWindow& aWindow,
|
sl@0
|
107 |
const TRgb& aColor,
|
sl@0
|
108 |
TInt aPos,
|
sl@0
|
109 |
const TPoint& aPoint,
|
sl@0
|
110 |
const TSize& aSize);
|
sl@0
|
111 |
|
sl@0
|
112 |
void ConstructOpaqueWindowL(RWindow& aWindow,
|
sl@0
|
113 |
const TRgb& aColor,
|
sl@0
|
114 |
TInt aPos,
|
sl@0
|
115 |
const TPoint& aPoint,
|
sl@0
|
116 |
const TSize& aSize);
|
sl@0
|
117 |
|
sl@0
|
118 |
void SetBackgroundColorWindow(RWindow& aWindow, const TRgb& aColor);
|
sl@0
|
119 |
|
sl@0
|
120 |
void ConstructOpaqueSurfacedWindowLC(RWindow& aWindow,
|
sl@0
|
121 |
const TRgb& aColor,
|
sl@0
|
122 |
TInt aPos,
|
sl@0
|
123 |
const TPoint& aPoint,
|
sl@0
|
124 |
const TSize& aSize,
|
sl@0
|
125 |
TSurfaceId& aSurfaceID);
|
sl@0
|
126 |
void ConstructOpaqueSurfacedWindowL(RWindow& aWindow,
|
sl@0
|
127 |
const TRgb& aColor,
|
sl@0
|
128 |
TInt aPos,
|
sl@0
|
129 |
const TPoint& aPoint,
|
sl@0
|
130 |
const TSize& aSize,
|
sl@0
|
131 |
const TSurfaceId& aSurfaceID);
|
sl@0
|
132 |
|
sl@0
|
133 |
protected:
|
sl@0
|
134 |
inline TInt ObjIndScr(TInt aScreen,TInt aWin=0,TInt aLayer=0,TInt aExtra=0);
|
sl@0
|
135 |
template <class DataType> // DataType may be TSurfaceId, TInt,TRect, TSurfaceConfiguration (not TRegion)
|
sl@0
|
136 |
TInt DebugInfo(TWsDebugInfoFunc aFunction, TInt aObjectIndex, TDes8& aHostBuffer,const DataType*&aReturnedObject)const
|
sl@0
|
137 |
{
|
sl@0
|
138 |
return DebugInfo(aFunction,aObjectIndex,aHostBuffer,(const void*&)aReturnedObject,sizeof(DataType));
|
sl@0
|
139 |
}
|
sl@0
|
140 |
TInt DebugInfo(TWsDebugInfoFunc aFunction,
|
sl@0
|
141 |
TInt aParam,
|
sl@0
|
142 |
TDes8& aHostBuffer,
|
sl@0
|
143 |
const void*&aReturnedObject,
|
sl@0
|
144 |
TInt aObjectSize)const;
|
sl@0
|
145 |
void TefUnitFailLeaveL();
|
sl@0
|
146 |
static void Pause(TInt aMilliseconds=200);
|
sl@0
|
147 |
TBool GCEIsSupported() const;
|
sl@0
|
148 |
static TBool GCEIsSupportedStatic();
|
sl@0
|
149 |
static TPostTestCleanup& PostTestCleanupInstance();
|
sl@0
|
150 |
|
sl@0
|
151 |
protected:
|
sl@0
|
152 |
TBool iDoTearDown;
|
sl@0
|
153 |
RWsSession iSession;
|
sl@0
|
154 |
RWindowGroup iGroup;
|
sl@0
|
155 |
CWsScreenDevice* iScreenDevice;
|
sl@0
|
156 |
CWindowGc* iGc;
|
sl@0
|
157 |
TInt iWindowHandle;
|
sl@0
|
158 |
TBool iTransparencyEnabled;
|
sl@0
|
159 |
TRgb iRed, iGreen, iBlue, iCyan, iMagenta, iYellow, iWhite;
|
sl@0
|
160 |
TDisplayMode iDisplayMode;
|
sl@0
|
161 |
SafePointer<CSurfaceUtility,CWsGceCscBase> iUtility;
|
sl@0
|
162 |
static const TInt KMaxInfoLines=5;
|
sl@0
|
163 |
TTestName iTestInfo[KMaxInfoLines];
|
sl@0
|
164 |
TTestName iTestName;
|
sl@0
|
165 |
static const TUidPixelFormat KSurfaceFormat = EUidPixelFormatXRGB_8888;
|
sl@0
|
166 |
static const TInt KBytesPerPixel = 4; // Four bytes per pixel for the format above.
|
sl@0
|
167 |
TPerfProperties iProperties;
|
sl@0
|
168 |
};
|
sl@0
|
169 |
|
sl@0
|
170 |
inline TInt CWsGceCscBase::ObjIndScr(TInt aScreen,
|
sl@0
|
171 |
TInt aWin,
|
sl@0
|
172 |
TInt aLayer,
|
sl@0
|
173 |
TInt aExtra)
|
sl@0
|
174 |
{
|
sl@0
|
175 |
return (aScreen<<EWsDebugArgScreenShift)
|
sl@0
|
176 |
| (aWin<<EWsDebugArgWindowShift)
|
sl@0
|
177 |
| (aLayer<<EWsDebugArgLayerShift)
|
sl@0
|
178 |
| (aExtra<<EWsDebugArgExtraShift);
|
sl@0
|
179 |
}
|
sl@0
|
180 |
|
sl@0
|
181 |
#endif /*TCWGCECSCBASE_H_*/
|