1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_integ/inc/t_pseudoappeng.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,110 @@
1.4 +// Copyright (c) 2007-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 __T_PSEUDOAPP_ENG_H__
1.26 +#define __T_PSEUDOAPP_ENG_H__
1.27 +
1.28 +#include <w32std.h>
1.29 +#include <iniparser.h>
1.30 +#include <graphics/surface.h> //TSurfaceId
1.31 +#include <graphics/surfacemanager.h> //RSurfaceManager
1.32 +#include <graphics/surfaceupdateclient.h>
1.33 +
1.34 +#include "t_pseudoappscreen.h"
1.35 +#include "t_pseudoapptestresults.h"
1.36 +
1.37 +enum TPseudoAppEngPanics
1.38 + {
1.39 + TPseudoAppEngAlreadyStarted = 1,
1.40 + TPseudoAppEngAlreadyStopped
1.41 + };
1.42 +
1.43 +#ifndef T_PSEUDOAPP1
1.44 +_LIT(KTPseudoAppPanicTxt, "t_pseudoapp.exe");
1.45 +#else
1.46 +_LIT(KTPseudoAppPanicTxt, "t_pseudoapp1.exe");
1.47 +#endif //T_PSEUDOAPP1
1.48 +
1.49 +_LIT(KGraphicsWservSurfaceTestResult, "GraphicsWservSurfaceTestResult");
1.50 +_LIT(KGraphicsWservSurfaceFrameRate, "GraphicsWservSurfaceFrameRate");
1.51 +_LIT(KGraphicsWservSurfaceTotalTestTime, "GraphicsWservSurfaceTotalTestTime");
1.52 +
1.53 +class CTPseudoAppShared;
1.54 +
1.55 +class CTPseudoAppEng : public CTimer
1.56 + {
1.57 +public:
1.58 + static CTPseudoAppEng* NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow);
1.59 + ~CTPseudoAppEng();
1.60 +
1.61 + void ImportPseudoAppConfigL();
1.62 + void RotateL();
1.63 + TBool Drawing();
1.64 + void StartDrawingL();
1.65 + void StopDrawing();
1.66 +
1.67 +private:
1.68 + // Implement CTimer
1.69 + void RunL();
1.70 + void DoCancel();
1.71 +
1.72 + // private constructors - use NewL to construct a CTPseudoAppEng!
1.73 + CTPseudoAppEng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow);
1.74 + void ConstructL();
1.75 +
1.76 + void SendUpdateRequest(TInt aScreen);
1.77 +
1.78 + void WriteResultsL(const TDesC& aFileName);
1.79 + void TestFinishedL(const TDesC& aFileName);
1.80 +
1.81 +private:
1.82 + // Window server handling
1.83 + RWsSession& iClient;
1.84 + RWindow& iWindow;
1.85 + CWsScreenDevice& iScreenDevice;
1.86 + CWindowGc * iGc;
1.87 +
1.88 + RSurfaceUpdateSession iSurfaceUpdateSession;
1.89 + CTPseudoAppShared* iPseudoAppShared;
1.90 +
1.91 + TSize iScreenSize;
1.92 + TInt iScreenCounter;
1.93 + TInt iFrameDuration;
1.94 + TInt iFrameDelay;
1.95 +
1.96 + TUint64 iTimeStampBefore;
1.97 + TInt iCounterFreq;
1.98 + TBool iInitTimer;
1.99 + TTime iStartTime;
1.100 + TUint64 iTotalCompositionTime;
1.101 +
1.102 + CIniData* iUtils;
1.103 + TGceTestResults iGceTestResults;
1.104 + SurfaceDetails iSurfDetails;
1.105 + TInt iFrameCounter;
1.106 + TBool iDrawing;
1.107 + TBool iUseGlobalUpdate;
1.108 + };
1.109 +
1.110 +#endif //__T_PSEUDOAPP_ENG_H__
1.111 +
1.112 +
1.113 +