sl@0
|
1 |
// Copyright (c) 1996-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 |
// used for timing graphics
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "TTIME.H"
|
sl@0
|
19 |
|
sl@0
|
20 |
#define TEST_ROM_BITMAP_NAME _L("Z:\\WSTEST\\TROM.MBM")
|
sl@0
|
21 |
|
sl@0
|
22 |
enum TFuncType
|
sl@0
|
23 |
{
|
sl@0
|
24 |
ESimpleFlush,
|
sl@0
|
25 |
ESpriteSetting,
|
sl@0
|
26 |
EBitmapDevice,
|
sl@0
|
27 |
ETrivialFunctions,
|
sl@0
|
28 |
ELoadBitmap,
|
sl@0
|
29 |
};
|
sl@0
|
30 |
|
sl@0
|
31 |
class TWsTest : public CBase
|
sl@0
|
32 |
{
|
sl@0
|
33 |
public:
|
sl@0
|
34 |
void DoTestL(TInt aOwningGroup, TFuncType aFunc, TInt aParam1, TAny *aParam2);
|
sl@0
|
35 |
void SimpleFlush(TInt aParam1, TAny *aParam2);
|
sl@0
|
36 |
void SpriteSettingL(TInt aParam1, TAny *aParam2);
|
sl@0
|
37 |
void BitmapDeviceL(TInt aParam, TAny *);
|
sl@0
|
38 |
void TrivialFunctions(TInt aParam1, TAny *aParam2);
|
sl@0
|
39 |
void LoadBitmapL(TInt aParam1, TAny *aParam2);
|
sl@0
|
40 |
private:
|
sl@0
|
41 |
void createSpriteBitmapL(CFbsBitmap *aBitmap, CFbsBitmapDevice *&aBitmapDevice, const TSize &aSize, TBool aDoMask);
|
sl@0
|
42 |
private:
|
sl@0
|
43 |
RWsSession iWs;
|
sl@0
|
44 |
RWindowGroup iGroup;
|
sl@0
|
45 |
RWindow iWindow;
|
sl@0
|
46 |
CWsScreenDevice *iDevice;
|
sl@0
|
47 |
CWindowGc *iGc;
|
sl@0
|
48 |
};
|
sl@0
|
49 |
|
sl@0
|
50 |
TInt CreateWsTest(TInt aOwningGroup, TFuncType aFunc, TInt aParam1, TAny *aParam2)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
TWsTest *iTest=NULL;
|
sl@0
|
53 |
TRAPD(err,iTest=new(ELeave) TWsTest());
|
sl@0
|
54 |
if (err==KErrNone)
|
sl@0
|
55 |
{
|
sl@0
|
56 |
TRAP(err,iTest->DoTestL(aOwningGroup, aFunc, aParam1, aParam2));
|
sl@0
|
57 |
delete iTest;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
return(err);
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
void TWsTest::DoTestL(TInt aOwningGroup, TFuncType aFunc, TInt aParam1, TAny *aParam2)
|
sl@0
|
63 |
{
|
sl@0
|
64 |
iWs.Connect();
|
sl@0
|
65 |
iDevice=new(ELeave) CWsScreenDevice(iWs);
|
sl@0
|
66 |
iDevice->Construct();
|
sl@0
|
67 |
iGroup=RWindowGroup(iWs);
|
sl@0
|
68 |
iGroup.Construct(ENullWsHandle);
|
sl@0
|
69 |
iGroup.SetOwningWindowGroup(aOwningGroup);
|
sl@0
|
70 |
//
|
sl@0
|
71 |
iWindow=RWindow(iWs);
|
sl@0
|
72 |
iWindow.Construct(iGroup,ENullWsHandle);
|
sl@0
|
73 |
iWindow.SetExtent(TPoint(), iDevice->SizeInPixels());
|
sl@0
|
74 |
iWindow.Activate();
|
sl@0
|
75 |
//
|
sl@0
|
76 |
iDevice->CreateContext(iGc);
|
sl@0
|
77 |
iWindow.BeginRedraw();
|
sl@0
|
78 |
iGc->Activate(iWindow);
|
sl@0
|
79 |
iGc->Clear();
|
sl@0
|
80 |
iWindow.EndRedraw();
|
sl@0
|
81 |
//
|
sl@0
|
82 |
switch(aFunc)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
case ESimpleFlush:
|
sl@0
|
85 |
SimpleFlush(aParam1, aParam2);
|
sl@0
|
86 |
break;
|
sl@0
|
87 |
case ESpriteSetting:
|
sl@0
|
88 |
SpriteSettingL(aParam1, aParam2);
|
sl@0
|
89 |
break;
|
sl@0
|
90 |
case EBitmapDevice:
|
sl@0
|
91 |
BitmapDeviceL(aParam1, aParam2);
|
sl@0
|
92 |
break;
|
sl@0
|
93 |
case ETrivialFunctions:
|
sl@0
|
94 |
TrivialFunctions(aParam1, aParam2);
|
sl@0
|
95 |
break;
|
sl@0
|
96 |
case ELoadBitmap:
|
sl@0
|
97 |
LoadBitmapL(aParam1, aParam2);
|
sl@0
|
98 |
break;
|
sl@0
|
99 |
default:;
|
sl@0
|
100 |
}
|
sl@0
|
101 |
delete iGc;
|
sl@0
|
102 |
iWindow.Close();
|
sl@0
|
103 |
iGroup.Close();
|
sl@0
|
104 |
delete iDevice;
|
sl@0
|
105 |
iWs.Close();
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
// Flush //
|
sl@0
|
109 |
|
sl@0
|
110 |
void TWsTest::SimpleFlush(TInt aParam, TAny *)
|
sl@0
|
111 |
{
|
sl@0
|
112 |
TTimeIntervalMicroSeconds32 interval(100000);
|
sl@0
|
113 |
TInt distance=10;
|
sl@0
|
114 |
if (aParam==0)
|
sl@0
|
115 |
{
|
sl@0
|
116 |
TTimeIntervalMicroSeconds32 origInterval;
|
sl@0
|
117 |
TInt origDistance;
|
sl@0
|
118 |
iWs.GetDoubleClickSettings(origInterval,origDistance);
|
sl@0
|
119 |
for(TInt nTimes=0;nTimes<5000-1;nTimes++)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
iWs.SetDoubleClick(interval,distance);
|
sl@0
|
122 |
iWs.Flush();
|
sl@0
|
123 |
}
|
sl@0
|
124 |
iWs.SetDoubleClick(origInterval,origDistance);
|
sl@0
|
125 |
}
|
sl@0
|
126 |
else
|
sl@0
|
127 |
{
|
sl@0
|
128 |
for(TInt nTimes=0;nTimes<5000;nTimes++)
|
sl@0
|
129 |
iWs.GetDoubleClickSettings(interval,distance);
|
sl@0
|
130 |
}
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
TInt SimpleFlushTestFunc(TInt aOwningGroup)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
return(CreateWsTest(aOwningGroup, ESimpleFlush, 0, NULL));
|
sl@0
|
136 |
}
|
sl@0
|
137 |
|
sl@0
|
138 |
TInt SimpleFlushTestFunc2(TInt aOwningGroup)
|
sl@0
|
139 |
{
|
sl@0
|
140 |
return(CreateWsTest(aOwningGroup, ESimpleFlush, 1, NULL));
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|
sl@0
|
143 |
GLDEF_D TTimeTestHeader SimpleFlushTest={_S("Simple Flush[1] x5000"),SimpleFlushTestFunc};
|
sl@0
|
144 |
GLDEF_D TTimeTestHeader SimpleFlushTest2={_S("Simple Flush[2] x5000"),SimpleFlushTestFunc2};
|
sl@0
|
145 |
|
sl@0
|
146 |
// IP Read/Write //
|
sl@0
|
147 |
|
sl@0
|
148 |
#if 0
|
sl@0
|
149 |
TInt ReadWriteThreadFunc(TAny *aParams)
|
sl@0
|
150 |
{
|
sl@0
|
151 |
TWinCommand command;
|
sl@0
|
152 |
RProcess().CommandLine(command);
|
sl@0
|
153 |
TDesC8 *cmd=&command;
|
sl@0
|
154 |
RThread thread;
|
sl@0
|
155 |
thread.Open(_L("TimeTest"));
|
sl@0
|
156 |
TAny *remotePtr=*(TAny **)aCmd->Ptr();
|
sl@0
|
157 |
TBuf<0x10> buf;
|
sl@0
|
158 |
for(TInt count=0;count<100000;count++)
|
sl@0
|
159 |
thread.ReadL(remotePtr,buf,0);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
void TWsTest::IPReadWriteL(TInt aParam, TAny *)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
TBuf<0x10> srcData;
|
sl@0
|
165 |
srcData.Append(_L("1234567890ABCDEF"));
|
sl@0
|
166 |
RProcess process;
|
sl@0
|
167 |
TWinCommand command;
|
sl@0
|
168 |
*((TAny **)command.Ptr())=&srcData;
|
sl@0
|
169 |
User::LeaveIfError(process.Create(_L("TimeThread1"),);
|
sl@0
|
170 |
TRequestStatus status;
|
sl@0
|
171 |
process.Logon(status);
|
sl@0
|
172 |
process.Resume();
|
sl@0
|
173 |
User::WaitForRequest(status);
|
sl@0
|
174 |
process.Close();
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
TInt SimpleFlushTestFunc(TInt aOwningGroup)
|
sl@0
|
178 |
{
|
sl@0
|
179 |
return(CreateWsTest(aOwningGroup, ESimpleFlush, 0, NULL));
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
TInt SimpleFlushTestFunc2(TInt aOwningGroup)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
return(CreateWsTest(aOwningGroup, ESimpleFlush, 1, NULL));
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
GLDEF_D TTimeTestHeader SimpleFlushTest={_S("Simple Flush[1] x5000"),SimpleFlushTestFunc};
|
sl@0
|
188 |
GLDEF_D TTimeTestHeader SimpleFlushTest2={_S("Simple Flush[2] x5000"),SimpleFlushTestFunc2};
|
sl@0
|
189 |
#endif
|
sl@0
|
190 |
// Bitmap device //
|
sl@0
|
191 |
|
sl@0
|
192 |
void TWsTest::BitmapDeviceL(TInt aParam, TAny *)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
CFbsBitmap *bitmap=new(ELeave) CFbsBitmap();
|
sl@0
|
195 |
User::LeaveIfError(bitmap->Create(TSize(10,10),EGray4));
|
sl@0
|
196 |
CFbsBitmapDevice *bitmapDevicePerm=NULL;
|
sl@0
|
197 |
if (aParam==1)
|
sl@0
|
198 |
bitmapDevicePerm=CFbsBitmapDevice::NewL(bitmap);
|
sl@0
|
199 |
for(TInt nTimes=0;nTimes<100;nTimes++)
|
sl@0
|
200 |
{
|
sl@0
|
201 |
CFbsBitmapDevice *bitmapDevice=CFbsBitmapDevice::NewL(bitmap);
|
sl@0
|
202 |
delete bitmapDevice;
|
sl@0
|
203 |
}
|
sl@0
|
204 |
delete bitmapDevicePerm;
|
sl@0
|
205 |
delete bitmap;
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
TInt BitmapDeviceTestFunc1(TInt aOwningGroup)
|
sl@0
|
209 |
{
|
sl@0
|
210 |
return(CreateWsTest(aOwningGroup, EBitmapDevice, 0, NULL));
|
sl@0
|
211 |
}
|
sl@0
|
212 |
|
sl@0
|
213 |
TInt BitmapDeviceTestFunc2(TInt aOwningGroup)
|
sl@0
|
214 |
{
|
sl@0
|
215 |
return(CreateWsTest(aOwningGroup, EBitmapDevice, 1, NULL));
|
sl@0
|
216 |
}
|
sl@0
|
217 |
|
sl@0
|
218 |
GLDEF_D TTimeTestHeader BitmapDeviceTest1={_S("Bitmap Device (reload)"),BitmapDeviceTestFunc1};
|
sl@0
|
219 |
GLDEF_D TTimeTestHeader BitmapDeviceTest2={_S("Bitmap Device "),BitmapDeviceTestFunc2};
|
sl@0
|
220 |
|
sl@0
|
221 |
// Sprite Setting //
|
sl@0
|
222 |
|
sl@0
|
223 |
void TWsTest::createSpriteBitmapL(CFbsBitmap *aBitmap, CFbsBitmapDevice *&aBitmapDevice, const TSize &aSize, TBool aDoMask)
|
sl@0
|
224 |
{
|
sl@0
|
225 |
User::LeaveIfError(aBitmap->Create(aSize,EGray4));
|
sl@0
|
226 |
aBitmapDevice=CFbsBitmapDevice::NewL(aBitmap);
|
sl@0
|
227 |
CFbsBitGc *gc=CFbsBitGc::NewL();
|
sl@0
|
228 |
gc->Activate(aBitmapDevice);
|
sl@0
|
229 |
gc->SetBrushColor(TRgb::Gray4(aDoMask ? 0 : 2));
|
sl@0
|
230 |
gc->SetBrushStyle(CGraphicsContext::ESolidBrush);
|
sl@0
|
231 |
gc->SetPenStyle(CGraphicsContext::ENullPen);
|
sl@0
|
232 |
gc->DrawRect(TRect(aSize));
|
sl@0
|
233 |
gc->SetPenStyle(CGraphicsContext::ESolidPen);
|
sl@0
|
234 |
gc->SetPenColor(TRgb::Gray4(aDoMask ? 3 : 0));
|
sl@0
|
235 |
gc->SetBrushColor(TRgb::Gray4(aDoMask ? 3 : 1));
|
sl@0
|
236 |
gc->DrawEllipse(TRect(aSize));
|
sl@0
|
237 |
delete gc;
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
void TWsTest::SpriteSettingL(TInt , TAny *)
|
sl@0
|
241 |
{
|
sl@0
|
242 |
RWsSprite sprite;
|
sl@0
|
243 |
TSize size(32,32);
|
sl@0
|
244 |
sprite=RWsSprite(iWs);
|
sl@0
|
245 |
CFbsBitmap *bitmap=new(ELeave) CFbsBitmap();
|
sl@0
|
246 |
CFbsBitmap *mask=new(ELeave) CFbsBitmap();
|
sl@0
|
247 |
CFbsBitmapDevice *bitmapDevice=NULL; //To stop warning
|
sl@0
|
248 |
TRAPD(err,createSpriteBitmapL(bitmap,bitmapDevice,size,EFalse));
|
sl@0
|
249 |
delete bitmapDevice;
|
sl@0
|
250 |
TRAP(err,createSpriteBitmapL(mask,bitmapDevice,size,ETrue));
|
sl@0
|
251 |
delete bitmapDevice;
|
sl@0
|
252 |
TSpriteMember spriteData;
|
sl@0
|
253 |
spriteData.iBitmap=bitmap;
|
sl@0
|
254 |
spriteData.iMaskBitmap=mask;
|
sl@0
|
255 |
spriteData.iInvertMask=EFalse;
|
sl@0
|
256 |
spriteData.iInterval=TTimeIntervalMicroSeconds32(0);
|
sl@0
|
257 |
User::LeaveIfError(sprite.Construct(iWindow,TPoint(0,0),0));
|
sl@0
|
258 |
User::LeaveIfError(sprite.AppendMember(spriteData));
|
sl@0
|
259 |
User::LeaveIfError(sprite.Activate());
|
sl@0
|
260 |
for(TInt i=0;i<500;i++)
|
sl@0
|
261 |
sprite.SetPosition(TPoint(i&0x7f,i&0x7f));
|
sl@0
|
262 |
sprite.Close();
|
sl@0
|
263 |
delete mask;
|
sl@0
|
264 |
delete bitmap;
|
sl@0
|
265 |
}
|
sl@0
|
266 |
|
sl@0
|
267 |
TInt SpriteSettingTestFunc(TInt aOwningGroup)
|
sl@0
|
268 |
{
|
sl@0
|
269 |
return(CreateWsTest(aOwningGroup, ESpriteSetting, 0, NULL));
|
sl@0
|
270 |
}
|
sl@0
|
271 |
|
sl@0
|
272 |
GLDEF_D TTimeTestHeader SpriteTest={_S("Sprite Setting"),SpriteSettingTestFunc};
|
sl@0
|
273 |
|
sl@0
|
274 |
void TWsTest::TrivialFunctions(TInt , TAny *)
|
sl@0
|
275 |
{
|
sl@0
|
276 |
for(TInt i=0;i<100000;i++)
|
sl@0
|
277 |
iWs.FreeSystemPointerCursorList();
|
sl@0
|
278 |
}
|
sl@0
|
279 |
|
sl@0
|
280 |
TInt TrivialFunctionsTestFunc(TInt aOwningGroup)
|
sl@0
|
281 |
{
|
sl@0
|
282 |
return(CreateWsTest(aOwningGroup, ETrivialFunctions, 0, NULL));
|
sl@0
|
283 |
}
|
sl@0
|
284 |
|
sl@0
|
285 |
GLDEF_D TTimeTestHeader TrivialFunctionsTest={_S("TrivialFunctions"),TrivialFunctionsTestFunc};
|
sl@0
|
286 |
|
sl@0
|
287 |
void TWsTest::LoadBitmapL(TInt aMode, TAny *)
|
sl@0
|
288 |
{
|
sl@0
|
289 |
if (aMode<2)
|
sl@0
|
290 |
{
|
sl@0
|
291 |
for(TInt count=0;count<10;count++)
|
sl@0
|
292 |
{
|
sl@0
|
293 |
if (aMode==0)
|
sl@0
|
294 |
{
|
sl@0
|
295 |
CFbsBitmap *bit=new(ELeave) CFbsBitmap();
|
sl@0
|
296 |
User::LeaveIfError(bit->Load(TEST_ROM_BITMAP_NAME,0));
|
sl@0
|
297 |
delete bit;
|
sl@0
|
298 |
}
|
sl@0
|
299 |
else
|
sl@0
|
300 |
{
|
sl@0
|
301 |
CWsBitmap *bit=new(ELeave) CWsBitmap(iWs);
|
sl@0
|
302 |
User::LeaveIfError(bit->Load(TEST_ROM_BITMAP_NAME,0));
|
sl@0
|
303 |
delete bit;
|
sl@0
|
304 |
}
|
sl@0
|
305 |
}
|
sl@0
|
306 |
}
|
sl@0
|
307 |
else for(TInt count=0;count<100;count++)
|
sl@0
|
308 |
{
|
sl@0
|
309 |
//__PROFILE_START(1)
|
sl@0
|
310 |
RFs fs;
|
sl@0
|
311 |
User::LeaveIfError(fs.Connect());
|
sl@0
|
312 |
fs.SetNotifyUser(EFalse);
|
sl@0
|
313 |
//__PROFILE_END(1)
|
sl@0
|
314 |
//__PROFILE_START(2)
|
sl@0
|
315 |
TParse parse;
|
sl@0
|
316 |
User::LeaveIfError(fs.Parse(TEST_ROM_BITMAP_NAME,parse));
|
sl@0
|
317 |
//__PROFILE_END(2)
|
sl@0
|
318 |
//__PROFILE_START(3)
|
sl@0
|
319 |
TInt drive;
|
sl@0
|
320 |
User::LeaveIfError(RFs::CharToDrive(parse.Drive()[0],drive));
|
sl@0
|
321 |
TDriveInfo driveinfo;
|
sl@0
|
322 |
User::LeaveIfError(fs.Drive(driveinfo,drive));
|
sl@0
|
323 |
//__PROFILE_END(3)
|
sl@0
|
324 |
//__PROFILE_START(4)
|
sl@0
|
325 |
RFile tempfile;
|
sl@0
|
326 |
User::LeaveIfError(tempfile.Open(fs,TEST_ROM_BITMAP_NAME,EFileShareAny));
|
sl@0
|
327 |
TInt aAddress;
|
sl@0
|
328 |
tempfile.Seek(ESeekAddress,aAddress);
|
sl@0
|
329 |
//__PROFILE_END(4)
|
sl@0
|
330 |
//__PROFILE_START(5)
|
sl@0
|
331 |
tempfile.Close();
|
sl@0
|
332 |
fs.Close();
|
sl@0
|
333 |
//__PROFILE_END(5)
|
sl@0
|
334 |
}
|
sl@0
|
335 |
}
|
sl@0
|
336 |
|
sl@0
|
337 |
TInt LoadBitmapTestFunc(TInt aOwningGroup)
|
sl@0
|
338 |
{
|
sl@0
|
339 |
return(CreateWsTest(aOwningGroup, ELoadBitmap, 0, NULL));
|
sl@0
|
340 |
}
|
sl@0
|
341 |
TInt LoadWsBitmapTestFunc(TInt aOwningGroup)
|
sl@0
|
342 |
{
|
sl@0
|
343 |
return(CreateWsTest(aOwningGroup, ELoadBitmap, 1, NULL));
|
sl@0
|
344 |
}
|
sl@0
|
345 |
TInt LoadRomFileTestFunc(TInt aOwningGroup)
|
sl@0
|
346 |
{
|
sl@0
|
347 |
return(CreateWsTest(aOwningGroup, ELoadBitmap, 3, NULL));
|
sl@0
|
348 |
}
|
sl@0
|
349 |
|
sl@0
|
350 |
GLDEF_D TTimeTestHeader BitmapLoadTest={_S("Load Bitmap"),LoadBitmapTestFunc};
|
sl@0
|
351 |
GLDEF_D TTimeTestHeader WsBitmapLoadTest={_S("Load WsBitmap"),LoadWsBitmapTestFunc};
|
sl@0
|
352 |
GLDEF_D TTimeTestHeader RomFileTest={_S("Rom File"),LoadRomFileTestFunc};
|