os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoappeng.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2007-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
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef __T_PSEUDOAPP_ENG_H__
sl@0
    23
#define __T_PSEUDOAPP_ENG_H__
sl@0
    24
sl@0
    25
#include <w32std.h>
sl@0
    26
#include <iniparser.h>
sl@0
    27
#include <graphics/surface.h>		//TSurfaceId
sl@0
    28
#include <graphics/surfacemanager.h>	//RSurfaceManager
sl@0
    29
#include <graphics/surfaceupdateclient.h>
sl@0
    30
sl@0
    31
#include "t_pseudoappscreen.h"
sl@0
    32
#include "t_pseudoapptestresults.h"
sl@0
    33
sl@0
    34
enum TPseudoAppEngPanics
sl@0
    35
    {
sl@0
    36
    TPseudoAppEngAlreadyStarted = 1,
sl@0
    37
	TPseudoAppEngAlreadyStopped
sl@0
    38
    };
sl@0
    39
sl@0
    40
#ifndef T_PSEUDOAPP1
sl@0
    41
_LIT(KTPseudoAppPanicTxt,   "t_pseudoapp.exe");
sl@0
    42
#else
sl@0
    43
_LIT(KTPseudoAppPanicTxt,   "t_pseudoapp1.exe");
sl@0
    44
#endif //T_PSEUDOAPP1
sl@0
    45
sl@0
    46
_LIT(KGraphicsWservSurfaceTestResult,        			"GraphicsWservSurfaceTestResult");
sl@0
    47
_LIT(KGraphicsWservSurfaceFrameRate,         			"GraphicsWservSurfaceFrameRate");
sl@0
    48
_LIT(KGraphicsWservSurfaceTotalTestTime,         "GraphicsWservSurfaceTotalTestTime");
sl@0
    49
sl@0
    50
class CTPseudoAppShared;
sl@0
    51
sl@0
    52
class CTPseudoAppEng : public CTimer
sl@0
    53
	{
sl@0
    54
public:
sl@0
    55
	static CTPseudoAppEng* NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow);
sl@0
    56
	~CTPseudoAppEng();
sl@0
    57
sl@0
    58
	void ImportPseudoAppConfigL();
sl@0
    59
	void RotateL();
sl@0
    60
	TBool Drawing();
sl@0
    61
	void StartDrawingL();
sl@0
    62
	void StopDrawing();
sl@0
    63
sl@0
    64
private:
sl@0
    65
	// Implement CTimer
sl@0
    66
	void RunL();
sl@0
    67
	void DoCancel();
sl@0
    68
sl@0
    69
    // private constructors - use NewL to construct a CTPseudoAppEng!
sl@0
    70
    CTPseudoAppEng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow);
sl@0
    71
    void ConstructL();
sl@0
    72
sl@0
    73
    void SendUpdateRequest(TInt aScreen);
sl@0
    74
sl@0
    75
    void WriteResultsL(const TDesC& aFileName);
sl@0
    76
	void TestFinishedL(const TDesC& aFileName);
sl@0
    77
sl@0
    78
private:
sl@0
    79
	// Window server handling
sl@0
    80
	RWsSession& iClient;
sl@0
    81
	RWindow& iWindow;
sl@0
    82
	CWsScreenDevice& iScreenDevice;
sl@0
    83
	CWindowGc * iGc;
sl@0
    84
sl@0
    85
	RSurfaceUpdateSession iSurfaceUpdateSession;
sl@0
    86
	CTPseudoAppShared* iPseudoAppShared;
sl@0
    87
	
sl@0
    88
	TSize iScreenSize;
sl@0
    89
	TInt iScreenCounter;
sl@0
    90
	TInt iFrameDuration;
sl@0
    91
	TInt iFrameDelay;
sl@0
    92
sl@0
    93
	TUint64 iTimeStampBefore;
sl@0
    94
	TInt iCounterFreq;
sl@0
    95
	TBool iInitTimer;
sl@0
    96
	TTime iStartTime;
sl@0
    97
	TUint64 iTotalCompositionTime;
sl@0
    98
sl@0
    99
	CIniData* iUtils;
sl@0
   100
	TGceTestResults iGceTestResults;
sl@0
   101
	SurfaceDetails iSurfDetails;
sl@0
   102
	TInt iFrameCounter;
sl@0
   103
	TBool iDrawing;
sl@0
   104
	TBool iUseGlobalUpdate;
sl@0
   105
	};
sl@0
   106
sl@0
   107
#endif //__T_PSEUDOAPP_ENG_H__
sl@0
   108
sl@0
   109
sl@0
   110