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