sl@0: // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Functions to act as bench marks for various window server features sl@0: // sl@0: // sl@0: sl@0: #include "TTIME.H" sl@0: #include sl@0: #include sl@0: typedef TBuf<32> TestNameBuf; sl@0: sl@0: LOCAL_D const TUint KHeapSize=0x10000; sl@0: sl@0: class CTimeClient; sl@0: sl@0: class CResultDialog : public CTDialog sl@0: { sl@0: public: sl@0: CResultDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc); sl@0: void ButtonPressL(TInt aButton); sl@0: void ConstructLD(); sl@0: private: sl@0: CTWindowGroup *iGroupWin; sl@0: CWindowGc *iGc; sl@0: }; sl@0: sl@0: class CListWindow : public CTTitledWindow sl@0: { sl@0: public: sl@0: CListWindow(); sl@0: void CloseWindow(); sl@0: void ConstructL(CTWinBase &parent, TBool aExitOnEscape); sl@0: void Draw(); sl@0: virtual void SelectedL(TInt aIndex)=0; sl@0: virtual void WinKeyL(const TKeyEvent &aKey,const TTime& aTime); sl@0: void SetExt(const TPoint &aPos, const TSize &aSize); sl@0: void SetSize(const TSize &); sl@0: protected: sl@0: virtual TPtrC GetText(TInt aLine)=0; sl@0: virtual TInt ListCount()=0; sl@0: void SetSize(); sl@0: private: sl@0: void Resized(const TSize &aSize); sl@0: void SetListPos(TInt aNewPos); sl@0: TInt TextRowHeight() const; sl@0: void RowBox(TRect &aRect, TInt aRow) const; sl@0: void PointerL(const TPointerEvent &aPointer,const TTime& aTime); sl@0: private: sl@0: TInt iListPos; sl@0: TTime iPrevTime; sl@0: TBool iExitOnEscape; sl@0: }; sl@0: sl@0: class CTestList : public CListWindow sl@0: { sl@0: public: sl@0: CTestList(); sl@0: ~CTestList(); sl@0: void ConstructL(CTWinBase &parent); sl@0: static void AppendProfileNum(TDes &aDes, TInt aNum); sl@0: static void AppendProfileCount(TDes &aDes, TInt aNum); sl@0: void SelectedL(TInt aIndex); sl@0: virtual void WinKeyL(const TKeyEvent &aKey,const TTime& aTime); sl@0: void ForegroundAppDialog(); sl@0: void AppendToListL(const TDesC &aDesc); sl@0: private: sl@0: virtual TPtrC GetText(TInt aLine); sl@0: virtual TInt ListCount(); sl@0: private: sl@0: TInt iCount; sl@0: CArrayFixSeg iTestNames; sl@0: RThread iTimeTest; sl@0: }; sl@0: sl@0: class CTimeTestWindowGroup : public CTWindowGroup sl@0: { sl@0: public: sl@0: CTimeTestWindowGroup(CTClient *aClient); sl@0: void KeyL(const TKeyEvent &aKey,const TTime &aTime); sl@0: }; sl@0: sl@0: class CTimeClient : public CTClient sl@0: { sl@0: public: sl@0: CTimeClient(); sl@0: void ConstructL(); sl@0: void KeyL(const TKeyEvent &aKey,const TTime &aTime); sl@0: void Exit(); sl@0: CTWin *CreateTestWindowL(TPoint pos,CTWinBase *parent); sl@0: private: sl@0: TInt iNum; sl@0: }; sl@0: sl@0: const TInt Xmove=8; sl@0: const TInt Ymove=6; sl@0: sl@0: GLREF_D TTimeTestHeader MovingWindowTest1; sl@0: GLREF_D TTimeTestHeader MovingWindowTest2; sl@0: GLREF_D TTimeTestHeader StackedWindowCreate; sl@0: GLREF_D TTimeTestHeader WindowCreateDestroy; sl@0: GLREF_D TTimeTestHeader LoadsaText; sl@0: GLREF_D TTimeTestHeader DrawBitmapTest; sl@0: GLREF_D TTimeTestHeader XorIngTest; sl@0: GLREF_D TTimeTestHeader SmallClearTest; sl@0: GLREF_D TTimeTestHeader RectCompareTest; sl@0: GLREF_D TTimeTestHeader SimpleFlushTest; sl@0: GLREF_D TTimeTestHeader SimpleFlushTest2; sl@0: GLREF_D TTimeTestHeader UseFontTest; sl@0: GLREF_D TTimeTestHeader BitBltTest; sl@0: GLREF_D TTimeTestHeader FullScreenBitBltTest; sl@0: GLREF_D TTimeTestHeader MaskedBitBltTest; sl@0: GLREF_D TTimeTestHeader SpriteTest; sl@0: GLREF_D TTimeTestHeader BitmapDeviceTest1; sl@0: GLREF_D TTimeTestHeader BitmapDeviceTest2; sl@0: GLREF_D TTimeTestHeader FillPatternTest; sl@0: GLREF_D TTimeTestHeader BitmapLoadTest; sl@0: GLREF_D TTimeTestHeader WsBitmapLoadTest; sl@0: GLREF_D TTimeTestHeader RomFileTest; sl@0: GLREF_D TTimeTestHeader TrivialFunctionsTest; sl@0: GLREF_D TTimeTestHeader BackupWindowDrawingCreate1; sl@0: GLREF_D TTimeTestHeader BackupWindowDrawingCreate2; sl@0: GLREF_D TTimeTestHeader MenuEmulationCreate; sl@0: GLREF_D TTimeTestHeader MenuEmulationCreate2; sl@0: sl@0: TTimeTestHeader *tests[]={ sl@0: &MenuEmulationCreate, sl@0: &MenuEmulationCreate2, sl@0: &BitmapLoadTest, sl@0: &WsBitmapLoadTest, sl@0: &RomFileTest, sl@0: &TrivialFunctionsTest, sl@0: &BackupWindowDrawingCreate1, sl@0: &BackupWindowDrawingCreate2, sl@0: &MovingWindowTest1, sl@0: &MovingWindowTest2, sl@0: &StackedWindowCreate, sl@0: // &WindowCreateDestroy, sl@0: &LoadsaText, sl@0: &DrawBitmapTest, sl@0: // &BitmapDeviceTest1, sl@0: // &BitmapDeviceTest2, sl@0: // &XorIngTest, List getting too big sl@0: // &SmallClearTest, List getting too big sl@0: // &RectCompareTest, sl@0: &SpriteTest, sl@0: // &SimpleFlushTest, sl@0: // &SimpleFlushTest2, sl@0: // &UseFontTest, sl@0: &BitBltTest, sl@0: // &FullScreenBitBltTest, sl@0: &MaskedBitBltTest, sl@0: // &FillPatternTest, sl@0: }; sl@0: sl@0: void Panic(TInt aPanic) sl@0: { sl@0: User::Panic(_L("TimeTest"),aPanic); sl@0: } sl@0: sl@0: struct TThreadParams sl@0: { sl@0: TInt iIndex; sl@0: TInt iGroupId; sl@0: }; sl@0: sl@0: TInt TimeThread(TAny *aParams) sl@0: { sl@0: CTrapCleanup* CleanUpStack=CTrapCleanup::New(); sl@0: //__PROFILE_START(0) sl@0: TInt ret=tests[((TThreadParams *)aParams)->iIndex]->function(((TThreadParams *)aParams)->iGroupId); sl@0: //__PROFILE_END(0) sl@0: delete CleanUpStack; sl@0: return ret; sl@0: } sl@0: sl@0: // sl@0: // List Window // sl@0: // sl@0: sl@0: CListWindow::CListWindow() : CTTitledWindow(), iPrevTime(0) sl@0: { sl@0: } sl@0: sl@0: void CListWindow::CloseWindow() sl@0: { sl@0: CTClient *client=((CTimeClient *)Client()); sl@0: delete this; sl@0: client->ResetFocus(); sl@0: } sl@0: sl@0: void CListWindow::SetExt(const TPoint &aPos, const TSize &) sl@0: { sl@0: SetPos(aPos); sl@0: } sl@0: sl@0: void CListWindow::SetSize(const TSize &) sl@0: { sl@0: } sl@0: sl@0: void CListWindow::SetSize() sl@0: { sl@0: iSize.iHeight=ListCount()*(iFont->HeightInPixels()+1)+iTitleHeight+2; sl@0: iSize.iWidth=iFont->TextWidthInPixels(*Client()->Title())+30; sl@0: for(TInt index=0;indexTextWidthInPixels(GetText(index)); sl@0: if (wid>iSize.iWidth) sl@0: iSize.iWidth=wid; sl@0: } sl@0: iSize.iWidth+=4; sl@0: iWin.SetSize(iSize); sl@0: Resized(iSize); sl@0: } sl@0: sl@0: void CListWindow::ConstructL(CTWinBase &parent, TBool aExitOnEscape) sl@0: { sl@0: iExitOnEscape=aExitOnEscape; sl@0: CTTitledWindow::ConstructL(parent); sl@0: } sl@0: sl@0: void CListWindow::SetListPos(TInt aNewPos) sl@0: { sl@0: if (aNewPos>=0 && aNewPosHeightInPixels()+1); sl@0: } sl@0: sl@0: void CListWindow::RowBox(TRect &aRect, TInt aRow) const sl@0: { sl@0: aRect.iTl.iX=2; sl@0: aRect.iTl.iY=iTitleHeight+TextRowHeight()*aRow; sl@0: aRect.iBr.iX=iSize.iWidth-2; sl@0: aRect.iBr.iY=aRect.iTl.iY+TextRowHeight(); sl@0: } sl@0: sl@0: void CListWindow::Draw() sl@0: { sl@0: CTTitledWindow::Draw(); sl@0: iGc->SetPenColor(TRgb::Gray16(0)); sl@0: TPoint pos(2,iTitleHeight+iFont->AscentInPixels()+2); sl@0: TInt gap=TextRowHeight(); sl@0: for(TInt index=0;indexDrawText(GetText(index), pos); sl@0: if (index==iListPos) sl@0: { sl@0: iGc->SetBrushStyle(CGraphicsContext::ESolidBrush); sl@0: iGc->SetBrushColor(TRgb::Gray256(255)); sl@0: iGc->SetPenStyle(CGraphicsContext::ENullPen); sl@0: iGc->SetDrawMode(CGraphicsContext::EDrawModeXOR); sl@0: TRect rect; sl@0: RowBox(rect,index); sl@0: iGc->DrawRect(rect); sl@0: iGc->SetBrushStyle(CGraphicsContext::ENullBrush); sl@0: iGc->SetPenStyle(CGraphicsContext::ESolidPen); sl@0: iGc->SetDrawMode(CGraphicsContext::EDrawModePEN); sl@0: } sl@0: } sl@0: } sl@0: sl@0: void CListWindow::Resized(const TSize &aSize) sl@0: { sl@0: SetDragRect(TRect(0,0,aSize.iWidth,iTitleHeight)); sl@0: } sl@0: sl@0: // sl@0: // Test list window sl@0: // sl@0: sl@0: CTestList::CTestList() : CListWindow(), iTestNames(4) sl@0: { sl@0: } sl@0: sl@0: CTestList::~CTestList() sl@0: { sl@0: } sl@0: sl@0: void CTestList::ConstructL(CTWinBase &parent) sl@0: { sl@0: CListWindow::ConstructL(parent, EFalse); sl@0: for(TUint index=0;index<(sizeof(tests)/sizeof(tests[0]));index++) sl@0: AppendToListL(TPtrC(tests[index]->title)); sl@0: SetSize(); sl@0: /*for(TUint index1=0;index1<(sizeof(tests)/sizeof(tests[0]));index1++) sl@0: Selected(index1);*/ sl@0: } sl@0: sl@0: void CTestList::AppendProfileNum(TDes &aDes, TInt aNum) sl@0: { sl@0: aDes.AppendFormat(_L("%d.%02d, "),aNum/1000000,(aNum%1000000)/10000); sl@0: } sl@0: sl@0: void CTestList::AppendProfileCount(TDes &aDes, TInt aNum) sl@0: { sl@0: aDes.AppendFormat(_L("%d, "),aNum); sl@0: } sl@0: sl@0: #define USE_PROCESS 1 sl@0: sl@0: void CTestList::SelectedL(TInt aIndex) sl@0: { sl@0: #if USE_PROCESS sl@0: TThreadParams params; sl@0: params.iIndex=aIndex; sl@0: TName name; sl@0: name.Format(_L("TimeTest-%x"),iCount++); sl@0: params.iGroupId=Client()->iGroup->GroupWin()->Identifier(); sl@0: User::LeaveIfError(iTimeTest.Create(name,TimeThread,KDefaultStackSize*2,KHeapSize,KHeapSize,¶ms,EOwnerThread)); sl@0: TRequestStatus status; sl@0: iTimeTest.Logon(status); sl@0: __PROFILE_RESET(8); sl@0: iTimeTest.Resume(); sl@0: User::WaitForRequest(status); sl@0: #else sl@0: TThreadParams params; sl@0: params.iIndex=aIndex; sl@0: TimeThread(¶ms); sl@0: #endif sl@0: TBuf<64> buf; sl@0: TBuf<64> buf2; sl@0: TBuf<64> buf3; sl@0: CResultDialog *dialog=new(ELeave) CResultDialog(Client()->iGroup, iGc); sl@0: dialog->ConstructLD(); sl@0: #if USE_PROCESS sl@0: if (status.Int()==KErrNone) sl@0: { sl@0: #endif sl@0: #if !defined(__PROFILING__) sl@0: buf=_L("Profiling information not available"); sl@0: #else sl@0: TProfile profile[6]; sl@0: __PROFILE_DISPLAY(6); sl@0: for (TInt index=1;index<6;index++) sl@0: AppendProfileNum(buf2,profile[index].iTime); sl@0: for (TInt index2=1;index2<6;index2++) sl@0: AppendProfileCount(buf3,profile[index2].iCount); sl@0: buf.Format(_L("Time=%d.%2d"),profile[0].iTime/1000000,(profile[0].iTime%1000000)/10000); sl@0: #endif sl@0: dialog->SetTitle(buf); sl@0: #if USE_PROCESS sl@0: } sl@0: else sl@0: { sl@0: dialog->SetTitle(_L("Error in test")); sl@0: buf.Format(_L("Error=%d"),status.Int()); sl@0: buf2=iTimeTest.ExitCategory(); sl@0: } sl@0: #endif sl@0: dialog->SetLine1(buf2); sl@0: dialog->SetLine2(buf3); sl@0: dialog->SetNumButtons(1); sl@0: dialog->SetButtonText(0,_L("Okay")); sl@0: if (dialog->Display()!=0) sl@0: Panic(0); sl@0: } sl@0: sl@0: TPtrC CTestList::GetText(TInt aLine) sl@0: { sl@0: return(TPtrC(iTestNames[aLine])); sl@0: } sl@0: sl@0: TInt CTestList::ListCount() sl@0: { sl@0: return(iTestNames.Count()); sl@0: } sl@0: sl@0: void CTestList::WinKeyL(const TKeyEvent &aKey,const TTime& aTime) sl@0: { sl@0: if (aKey.iModifiers&EModifierFunc) sl@0: { sl@0: switch(aKey.iCode) sl@0: { sl@0: case EKeyLeftArrow: sl@0: AdjustSize(-Xmove,0,aKey.iModifiers); sl@0: break; sl@0: case EKeyRightArrow: sl@0: AdjustSize(Xmove,0,aKey.iModifiers); sl@0: break; sl@0: case EKeyUpArrow: sl@0: AdjustSize(0,-Ymove,aKey.iModifiers); sl@0: break; sl@0: case EKeyDownArrow: sl@0: AdjustSize(0,Ymove,aKey.iModifiers); sl@0: break; sl@0: default: sl@0: goto not_used; sl@0: } sl@0: } sl@0: else sl@0: goto not_used; sl@0: return; sl@0: not_used: sl@0: CListWindow::WinKeyL(aKey,aTime); sl@0: } sl@0: sl@0: void CTestList::AppendToListL(const TDesC &aDesc) sl@0: { sl@0: TestNameBuf buf(aDesc); sl@0: iTestNames.AppendL(buf); sl@0: } sl@0: sl@0: // sl@0: sl@0: CResultDialog::CResultDialog(CTWindowGroup *aGroupWin,CWindowGc *aGc) : CTDialog(), sl@0: iGroupWin(aGroupWin), sl@0: iGc(aGc) sl@0: { sl@0: } sl@0: sl@0: void CResultDialog::ButtonPressL(TInt aButton) sl@0: { sl@0: if (aButton==0) sl@0: CTDialog::ButtonPressL(aButton); sl@0: } sl@0: sl@0: void CResultDialog::ConstructLD() sl@0: { sl@0: CTDialog::ConstructLD(*iGroupWin, *iGc); sl@0: } sl@0: sl@0: // sl@0: // CTimeTestWindowGroup class // sl@0: // sl@0: sl@0: CTimeTestWindowGroup::CTimeTestWindowGroup(CTClient *aClient) : CTWindowGroup(aClient) sl@0: { sl@0: } sl@0: sl@0: void CTimeTestWindowGroup::KeyL(const TKeyEvent &aKey,const TTime &aTime) sl@0: { sl@0: if (aKey.iModifiers&EModifierFunc) sl@0: { sl@0: switch(aKey.iCode) sl@0: { sl@0: case 'x': sl@0: ((CTimeClient *)Client())->Exit(); sl@0: break; sl@0: } sl@0: } sl@0: else sl@0: iCurWin->WinKeyL(aKey,aTime); sl@0: } sl@0: sl@0: // sl@0: sl@0: CTimeClient::CTimeClient() sl@0: { sl@0: } sl@0: sl@0: CTWin *CTimeClient::CreateTestWindowL(TPoint pos,CTWinBase *parent) sl@0: { sl@0: CTWin *win=new(ELeave) CTestList(); sl@0: TRAPD(err,win->ConstructL(*parent)); sl@0: if (err!=KErrNone) sl@0: goto ctw_err; sl@0: TRAP(err,win->SetPos(pos)); sl@0: if (err!=KErrNone) sl@0: { sl@0: ctw_err: sl@0: delete win; sl@0: User::Leave(err); sl@0: } sl@0: win->Activate(); sl@0: win->AssignGC(*iGc); sl@0: return(win); sl@0: } sl@0: sl@0: void CTimeClient::ConstructL() sl@0: { sl@0: CTClient::ConstructL(); sl@0: sl@0: iGroup=new(ELeave) CTimeTestWindowGroup(this); sl@0: iGroup->ConstructL(); sl@0: sl@0: CreateTestWindowL(TPoint(30,4),iGroup); sl@0: iGroup->SetCurrentWindow(iGroup->Child()); sl@0: } sl@0: sl@0: void CTimeClient::Exit() sl@0: { sl@0: CActiveScheduler::Stop(); sl@0: } sl@0: sl@0: GLDEF_C CTClient *CreateClientL() sl@0: { sl@0: return(new(ELeave) CTimeClient()); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: return(TestLibStartUp(CreateClientL)); sl@0: }