First public contribution.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #ifndef __T_PSEUDOAPP_ENG_H__
23 #define __T_PSEUDOAPP_ENG_H__
26 #include <iniparser.h>
27 #include <graphics/surface.h> //TSurfaceId
28 #include <graphics/surfacemanager.h> //RSurfaceManager
29 #include <graphics/surfaceupdateclient.h>
31 #include "t_pseudoappscreen.h"
32 #include "t_pseudoapptestresults.h"
34 enum TPseudoAppEngPanics
36 TPseudoAppEngAlreadyStarted = 1,
37 TPseudoAppEngAlreadyStopped
41 _LIT(KTPseudoAppPanicTxt, "t_pseudoapp.exe");
43 _LIT(KTPseudoAppPanicTxt, "t_pseudoapp1.exe");
46 _LIT(KGraphicsWservSurfaceTestResult, "GraphicsWservSurfaceTestResult");
47 _LIT(KGraphicsWservSurfaceFrameRate, "GraphicsWservSurfaceFrameRate");
48 _LIT(KGraphicsWservSurfaceTotalTestTime, "GraphicsWservSurfaceTotalTestTime");
50 class CTPseudoAppShared;
52 class CTPseudoAppEng : public CTimer
55 static CTPseudoAppEng* NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow);
58 void ImportPseudoAppConfigL();
69 // private constructors - use NewL to construct a CTPseudoAppEng!
70 CTPseudoAppEng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow);
73 void SendUpdateRequest(TInt aScreen);
75 void WriteResultsL(const TDesC& aFileName);
76 void TestFinishedL(const TDesC& aFileName);
79 // Window server handling
82 CWsScreenDevice& iScreenDevice;
85 RSurfaceUpdateSession iSurfaceUpdateSession;
86 CTPseudoAppShared* iPseudoAppShared;
93 TUint64 iTimeStampBefore;
97 TUint64 iTotalCompositionTime;
100 TGceTestResults iGceTestResults;
101 SurfaceDetails iSurfDetails;
104 TBool iUseGlobalUpdate;
107 #endif //__T_PSEUDOAPP_ENG_H__