Update contrib.
1 // Copyright (c) 1995-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.
14 // Functions to act as bench marks for various window server features
20 #include <e32def_private.h>
21 typedef TBuf<32> TestNameBuf;
23 LOCAL_D const TUint KHeapSize=0x10000;
27 class CResultDialog : public CTDialog
30 CResultDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc);
31 void ButtonPressL(TInt aButton);
34 CTWindowGroup *iGroupWin;
38 class CListWindow : public CTTitledWindow
43 void ConstructL(CTWinBase &parent, TBool aExitOnEscape);
45 virtual void SelectedL(TInt aIndex)=0;
46 virtual void WinKeyL(const TKeyEvent &aKey,const TTime& aTime);
47 void SetExt(const TPoint &aPos, const TSize &aSize);
48 void SetSize(const TSize &);
50 virtual TPtrC GetText(TInt aLine)=0;
51 virtual TInt ListCount()=0;
54 void Resized(const TSize &aSize);
55 void SetListPos(TInt aNewPos);
56 TInt TextRowHeight() const;
57 void RowBox(TRect &aRect, TInt aRow) const;
58 void PointerL(const TPointerEvent &aPointer,const TTime& aTime);
65 class CTestList : public CListWindow
70 void ConstructL(CTWinBase &parent);
71 static void AppendProfileNum(TDes &aDes, TInt aNum);
72 static void AppendProfileCount(TDes &aDes, TInt aNum);
73 void SelectedL(TInt aIndex);
74 virtual void WinKeyL(const TKeyEvent &aKey,const TTime& aTime);
75 void ForegroundAppDialog();
76 void AppendToListL(const TDesC &aDesc);
78 virtual TPtrC GetText(TInt aLine);
79 virtual TInt ListCount();
82 CArrayFixSeg<TestNameBuf> iTestNames;
86 class CTimeTestWindowGroup : public CTWindowGroup
89 CTimeTestWindowGroup(CTClient *aClient);
90 void KeyL(const TKeyEvent &aKey,const TTime &aTime);
93 class CTimeClient : public CTClient
98 void KeyL(const TKeyEvent &aKey,const TTime &aTime);
100 CTWin *CreateTestWindowL(TPoint pos,CTWinBase *parent);
108 GLREF_D TTimeTestHeader MovingWindowTest1;
109 GLREF_D TTimeTestHeader MovingWindowTest2;
110 GLREF_D TTimeTestHeader StackedWindowCreate;
111 GLREF_D TTimeTestHeader WindowCreateDestroy;
112 GLREF_D TTimeTestHeader LoadsaText;
113 GLREF_D TTimeTestHeader DrawBitmapTest;
114 GLREF_D TTimeTestHeader XorIngTest;
115 GLREF_D TTimeTestHeader SmallClearTest;
116 GLREF_D TTimeTestHeader RectCompareTest;
117 GLREF_D TTimeTestHeader SimpleFlushTest;
118 GLREF_D TTimeTestHeader SimpleFlushTest2;
119 GLREF_D TTimeTestHeader UseFontTest;
120 GLREF_D TTimeTestHeader BitBltTest;
121 GLREF_D TTimeTestHeader FullScreenBitBltTest;
122 GLREF_D TTimeTestHeader MaskedBitBltTest;
123 GLREF_D TTimeTestHeader SpriteTest;
124 GLREF_D TTimeTestHeader BitmapDeviceTest1;
125 GLREF_D TTimeTestHeader BitmapDeviceTest2;
126 GLREF_D TTimeTestHeader FillPatternTest;
127 GLREF_D TTimeTestHeader BitmapLoadTest;
128 GLREF_D TTimeTestHeader WsBitmapLoadTest;
129 GLREF_D TTimeTestHeader RomFileTest;
130 GLREF_D TTimeTestHeader TrivialFunctionsTest;
131 GLREF_D TTimeTestHeader BackupWindowDrawingCreate1;
132 GLREF_D TTimeTestHeader BackupWindowDrawingCreate2;
133 GLREF_D TTimeTestHeader MenuEmulationCreate;
134 GLREF_D TTimeTestHeader MenuEmulationCreate2;
136 TTimeTestHeader *tests[]={
137 &MenuEmulationCreate,
138 &MenuEmulationCreate2,
142 &TrivialFunctionsTest,
143 &BackupWindowDrawingCreate1,
144 &BackupWindowDrawingCreate2,
147 &StackedWindowCreate,
148 // &WindowCreateDestroy,
151 // &BitmapDeviceTest1,
152 // &BitmapDeviceTest2,
153 // &XorIngTest, List getting too big
154 // &SmallClearTest, List getting too big
158 // &SimpleFlushTest2,
161 // &FullScreenBitBltTest,
166 void Panic(TInt aPanic)
168 User::Panic(_L("TimeTest"),aPanic);
177 TInt TimeThread(TAny *aParams)
179 CTrapCleanup* CleanUpStack=CTrapCleanup::New();
181 TInt ret=tests[((TThreadParams *)aParams)->iIndex]->function(((TThreadParams *)aParams)->iGroupId);
191 CListWindow::CListWindow() : CTTitledWindow(), iPrevTime(0)
195 void CListWindow::CloseWindow()
197 CTClient *client=((CTimeClient *)Client());
199 client->ResetFocus();
202 void CListWindow::SetExt(const TPoint &aPos, const TSize &)
207 void CListWindow::SetSize(const TSize &)
211 void CListWindow::SetSize()
213 iSize.iHeight=ListCount()*(iFont->HeightInPixels()+1)+iTitleHeight+2;
214 iSize.iWidth=iFont->TextWidthInPixels(*Client()->Title())+30;
215 for(TInt index=0;index<ListCount();index++)
217 TInt wid=iFont->TextWidthInPixels(GetText(index));
218 if (wid>iSize.iWidth)
226 void CListWindow::ConstructL(CTWinBase &parent, TBool aExitOnEscape)
228 iExitOnEscape=aExitOnEscape;
229 CTTitledWindow::ConstructL(parent);
232 void CListWindow::SetListPos(TInt aNewPos)
234 if (aNewPos>=0 && aNewPos<ListCount())
241 void CListWindow::WinKeyL(const TKeyEvent &aKey, const TTime&)
246 SetListPos(iListPos-1);
249 SetListPos(iListPos+1);
254 case EKeyEscape: // Fall through from EKeyEnter
261 void CListWindow::PointerL(const TPointerEvent &aPointer,const TTime& aTime)
263 if (aPointer.iType==TPointerEvent::EButton1Down)
266 for(TInt index=0;index<ListCount();index++)
269 if (rect.Contains(aPointer.iPosition))
271 if (index==iListPos && aPointer.iModifiers&EModifierDoubleClick)
282 CTTitledWindow::PointerL(aPointer,aTime);
285 TInt CListWindow::TextRowHeight() const
287 return(iFont->HeightInPixels()+1);
290 void CListWindow::RowBox(TRect &aRect, TInt aRow) const
293 aRect.iTl.iY=iTitleHeight+TextRowHeight()*aRow;
294 aRect.iBr.iX=iSize.iWidth-2;
295 aRect.iBr.iY=aRect.iTl.iY+TextRowHeight();
298 void CListWindow::Draw()
300 CTTitledWindow::Draw();
301 iGc->SetPenColor(TRgb::Gray16(0));
302 TPoint pos(2,iTitleHeight+iFont->AscentInPixels()+2);
303 TInt gap=TextRowHeight();
304 for(TInt index=0;index<ListCount();index++,pos.iY+=gap)
306 iGc->DrawText(GetText(index), pos);
309 iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
310 iGc->SetBrushColor(TRgb::Gray256(255));
311 iGc->SetPenStyle(CGraphicsContext::ENullPen);
312 iGc->SetDrawMode(CGraphicsContext::EDrawModeXOR);
316 iGc->SetBrushStyle(CGraphicsContext::ENullBrush);
317 iGc->SetPenStyle(CGraphicsContext::ESolidPen);
318 iGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
323 void CListWindow::Resized(const TSize &aSize)
325 SetDragRect(TRect(0,0,aSize.iWidth,iTitleHeight));
332 CTestList::CTestList() : CListWindow(), iTestNames(4)
336 CTestList::~CTestList()
340 void CTestList::ConstructL(CTWinBase &parent)
342 CListWindow::ConstructL(parent, EFalse);
343 for(TUint index=0;index<(sizeof(tests)/sizeof(tests[0]));index++)
344 AppendToListL(TPtrC(tests[index]->title));
346 /*for(TUint index1=0;index1<(sizeof(tests)/sizeof(tests[0]));index1++)
350 void CTestList::AppendProfileNum(TDes &aDes, TInt aNum)
352 aDes.AppendFormat(_L("%d.%02d, "),aNum/1000000,(aNum%1000000)/10000);
355 void CTestList::AppendProfileCount(TDes &aDes, TInt aNum)
357 aDes.AppendFormat(_L("%d, "),aNum);
360 #define USE_PROCESS 1
362 void CTestList::SelectedL(TInt aIndex)
365 TThreadParams params;
366 params.iIndex=aIndex;
368 name.Format(_L("TimeTest-%x"),iCount++);
369 params.iGroupId=Client()->iGroup->GroupWin()->Identifier();
370 User::LeaveIfError(iTimeTest.Create(name,TimeThread,KDefaultStackSize*2,KHeapSize,KHeapSize,¶ms,EOwnerThread));
371 TRequestStatus status;
372 iTimeTest.Logon(status);
375 User::WaitForRequest(status);
377 TThreadParams params;
378 params.iIndex=aIndex;
384 CResultDialog *dialog=new(ELeave) CResultDialog(Client()->iGroup, iGc);
385 dialog->ConstructLD();
387 if (status.Int()==KErrNone)
390 #if !defined(__PROFILING__)
391 buf=_L("Profiling information not available");
394 __PROFILE_DISPLAY(6);
395 for (TInt index=1;index<6;index++)
396 AppendProfileNum(buf2,profile[index].iTime);
397 for (TInt index2=1;index2<6;index2++)
398 AppendProfileCount(buf3,profile[index2].iCount);
399 buf.Format(_L("Time=%d.%2d"),profile[0].iTime/1000000,(profile[0].iTime%1000000)/10000);
401 dialog->SetTitle(buf);
406 dialog->SetTitle(_L("Error in test"));
407 buf.Format(_L("Error=%d"),status.Int());
408 buf2=iTimeTest.ExitCategory();
411 dialog->SetLine1(buf2);
412 dialog->SetLine2(buf3);
413 dialog->SetNumButtons(1);
414 dialog->SetButtonText(0,_L("Okay"));
415 if (dialog->Display()!=0)
419 TPtrC CTestList::GetText(TInt aLine)
421 return(TPtrC(iTestNames[aLine]));
424 TInt CTestList::ListCount()
426 return(iTestNames.Count());
429 void CTestList::WinKeyL(const TKeyEvent &aKey,const TTime& aTime)
431 if (aKey.iModifiers&EModifierFunc)
436 AdjustSize(-Xmove,0,aKey.iModifiers);
439 AdjustSize(Xmove,0,aKey.iModifiers);
442 AdjustSize(0,-Ymove,aKey.iModifiers);
445 AdjustSize(0,Ymove,aKey.iModifiers);
455 CListWindow::WinKeyL(aKey,aTime);
458 void CTestList::AppendToListL(const TDesC &aDesc)
460 TestNameBuf buf(aDesc);
461 iTestNames.AppendL(buf);
466 CResultDialog::CResultDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc) : CTDialog(),
467 iGroupWin(aGroupWin),
472 void CResultDialog::ButtonPressL(TInt aButton)
475 CTDialog::ButtonPressL(aButton);
478 void CResultDialog::ConstructLD()
480 CTDialog::ConstructLD(*iGroupWin, *iGc);
484 // CTimeTestWindowGroup class //
487 CTimeTestWindowGroup::CTimeTestWindowGroup(CTClient *aClient) : CTWindowGroup(aClient)
491 void CTimeTestWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &aTime)
493 if (aKey.iModifiers&EModifierFunc)
498 ((CTimeClient *)Client())->Exit();
503 iCurWin->WinKeyL(aKey,aTime);
508 CTimeClient::CTimeClient()
512 CTWin *CTimeClient::CreateTestWindowL(TPoint pos,CTWinBase *parent)
514 CTWin *win=new(ELeave) CTestList();
515 TRAPD(err,win->ConstructL(*parent));
518 TRAP(err,win->SetPos(pos));
530 void CTimeClient::ConstructL()
532 CTClient::ConstructL();
534 iGroup=new(ELeave) CTimeTestWindowGroup(this);
535 iGroup->ConstructL();
537 CreateTestWindowL(TPoint(30,4),iGroup);
538 iGroup->SetCurrentWindow(iGroup->Child());
541 void CTimeClient::Exit()
543 CActiveScheduler::Stop();
546 GLDEF_C CTClient *CreateClientL()
548 return(new(ELeave) CTimeClient());
551 GLDEF_C TInt E32Main()
553 return(TestLibStartUp(CreateClientL));