os/graphics/windowing/windowserver/test/t_stress/inc/comparison.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/t_stress/inc/comparison.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,167 @@
     1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @test
    1.22 + @internalComponent
    1.23 +*/
    1.24 +
    1.25 +#ifndef COMPARISON_H
    1.26 +#define COMPARISON_H
    1.27 +
    1.28 +
    1.29 +
    1.30 +#include "stresslet.h"
    1.31 +#include "test_step_comparison.h"
    1.32 +#include "test_step_conf.h"
    1.33 +
    1.34 +#include "utils.h"
    1.35 +
    1.36 +class CCompWin;
    1.37 +class CCrpClient;
    1.38 +
    1.39 +	
    1.40 +class CComparison : public CStresslet
    1.41 +	{
    1.42 +private:
    1.43 +	class COperationTimer : public CTimer
    1.44 +	{
    1.45 +	public:
    1.46 +		COperationTimer(CComparison* aComp);
    1.47 +		void ConstructL();
    1.48 +		//pure virtual functions from CActive
    1.49 +		void DoCancel();
    1.50 +		void RunL();
    1.51 +	private:
    1.52 +		CComparison* iComp;
    1.53 +	};
    1.54 +	
    1.55 +	//delayed bitmap comparison
    1.56 +	class COneShotCompare : public CAsyncOneShot
    1.57 +	{
    1.58 +	public:
    1.59 +		COneShotCompare(TInt aPriority, CComparison& aComparison);
    1.60 +		static COneShotCompare* NewL(TInt aPriority, CComparison& aComparison);
    1.61 +		virtual void RunL();
    1.62 +	private:
    1.63 +		CComparison& iComparison;
    1.64 +	};
    1.65 +	
    1.66 +	friend class COneShotCompare;
    1.67 +	
    1.68 +	enum TMode
    1.69 +		{
    1.70 +		EAct,
    1.71 +		EMove,
    1.72 +		EResize
    1.73 +		};
    1.74 +	enum TAct
    1.75 +		{
    1.76 +		EACreate,
    1.77 +		EADestroy,
    1.78 +		EAFront,
    1.79 +		EABack,
    1.80 +		EAMove,
    1.81 +		EAResize,
    1.82 +		EATick,
    1.83 +		EAToggleVisible,
    1.84 +		EACount
    1.85 +		};
    1.86 +	struct TBehaviour
    1.87 +		{
    1.88 +		CCompWin* iWin;
    1.89 +		TPoint iPos;
    1.90 +		TInt iCount;
    1.91 +		};
    1.92 +public:
    1.93 +	static CComparison * NewLC(MTestStepReporter& aReporter);
    1.94 +	virtual ~CComparison();
    1.95 +
    1.96 +	void Verify(CFbsBitmap * aServerBmp);
    1.97 +	void SetRunDataL(const TRunData& aRunData, MTestStepConfigurationContextFactory* aConfFactory);
    1.98 +	TBool WindowsReadyForVerification() const;
    1.99 +	void SetVerifyTick(TUint32 aTick);
   1.100 +	
   1.101 +private:
   1.102 +	void HandleRedraw(TWsRedrawEvent &aEvent);
   1.103 +	void HandleEvent(TWsEvent &aEvent);
   1.104 +	
   1.105 +	virtual void StartL();
   1.106 +	TInt Tick();
   1.107 +
   1.108 +	void TickL();
   1.109 +	void ActL();
   1.110 +	void MoveL();
   1.111 +	void ResizeL();
   1.112 +	
   1.113 +	void DoStuffL();
   1.114 +	void CreateWindowL();
   1.115 +	void DestroyWindow();
   1.116 +	void MoveWindow();
   1.117 +	void ResizeWindow();
   1.118 +	void BringWindowToFrontL();
   1.119 +	void SendWindowToBackL();
   1.120 +	void TickWindowL();
   1.121 +	void ToggleVisible();
   1.122 +
   1.123 +	TInt FindTopWindow(CCompWin* aWin);
   1.124 +	void DrawBitmap();
   1.125 +	CCompWin* RandomWindow();
   1.126 +	TBool BitmapsMatch(const CFbsBitmap * aBitmap1, const CFbsBitmap * aBitmap2);
   1.127 +	void Touch();
   1.128 +	
   1.129 +	CComparison (MTestStepReporter& aReporter);
   1.130 +	
   1.131 +	void ConstructL();
   1.132 +	void WriteLog();
   1.133 +private:
   1.134 +	TInt64 iFirstSeed;
   1.135 +	TMode iMode;
   1.136 +	TAct iAct;
   1.137 +	TBool iWasOk;
   1.138 +	TBehaviour iBehaviour;
   1.139 +	CPeriodic* iPeriodic;
   1.140 +	RWindowGroup* iWinGroup;
   1.141 +	RBlankWindow* iBackground;
   1.142 +	RPointerArray<CCompWin> iWindows;
   1.143 +	CFbsBitmap * iBitmap[2];
   1.144 +	CFbsBitmapDevice * iDevice[2];
   1.145 +	CFbsBitGc * iBmpGc;
   1.146 +	CFbsBitmap * iDifferenceBitmap;
   1.147 +	CFbsBitmapDevice * iDifferenceDevice;
   1.148 +	CWsScreenDevice* iScreen;
   1.149 +	CFbsBitmap *iScreenBitmap;
   1.150 +	RFs iFs;
   1.151 +	TTime iStartTime;
   1.152 +	TInt iCurrentBmp;
   1.153 +	TInt iLastBmp;
   1.154 +	TInt iTestNum;
   1.155 +	TInt iErrorNum;
   1.156 +	TUint32 iPixel1;
   1.157 +	TUint32 iPixel2;
   1.158 +	TPoint iPixelPos;
   1.159 +	
   1.160 +	TBool iMustConclude;
   1.161 +	TInt  iNumWindowsLeft;	//number of windows to be created before test is over
   1.162 +	CTestExecWatchCat* iWatchCat;
   1.163 +	TRunData iData;
   1.164 +
   1.165 +	TBool iStuffDone;
   1.166 +	COperationTimer* iTimer;
   1.167 +	COneShotCompare *iOneShotCompare;
   1.168 +	};
   1.169 +
   1.170 +#endif // COMPARISON_H