sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #ifndef __T_PSEUDOAPP_ENG_H__ sl@0: #define __T_PSEUDOAPP_ENG_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include //TSurfaceId sl@0: #include //RSurfaceManager sl@0: #include sl@0: sl@0: #include "t_pseudoappscreen.h" sl@0: #include "t_pseudoapptestresults.h" sl@0: sl@0: enum TPseudoAppEngPanics sl@0: { sl@0: TPseudoAppEngAlreadyStarted = 1, sl@0: TPseudoAppEngAlreadyStopped sl@0: }; sl@0: sl@0: #ifndef T_PSEUDOAPP1 sl@0: _LIT(KTPseudoAppPanicTxt, "t_pseudoapp.exe"); sl@0: #else sl@0: _LIT(KTPseudoAppPanicTxt, "t_pseudoapp1.exe"); sl@0: #endif //T_PSEUDOAPP1 sl@0: sl@0: _LIT(KGraphicsWservSurfaceTestResult, "GraphicsWservSurfaceTestResult"); sl@0: _LIT(KGraphicsWservSurfaceFrameRate, "GraphicsWservSurfaceFrameRate"); sl@0: _LIT(KGraphicsWservSurfaceTotalTestTime, "GraphicsWservSurfaceTotalTestTime"); sl@0: sl@0: class CTPseudoAppShared; sl@0: sl@0: class CTPseudoAppEng : public CTimer sl@0: { sl@0: public: sl@0: static CTPseudoAppEng* NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow); sl@0: ~CTPseudoAppEng(); sl@0: sl@0: void ImportPseudoAppConfigL(); sl@0: void RotateL(); sl@0: TBool Drawing(); sl@0: void StartDrawingL(); sl@0: void StopDrawing(); sl@0: sl@0: private: sl@0: // Implement CTimer sl@0: void RunL(); sl@0: void DoCancel(); sl@0: sl@0: // private constructors - use NewL to construct a CTPseudoAppEng! sl@0: CTPseudoAppEng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow); sl@0: void ConstructL(); sl@0: sl@0: void SendUpdateRequest(TInt aScreen); sl@0: sl@0: void WriteResultsL(const TDesC& aFileName); sl@0: void TestFinishedL(const TDesC& aFileName); sl@0: sl@0: private: sl@0: // Window server handling sl@0: RWsSession& iClient; sl@0: RWindow& iWindow; sl@0: CWsScreenDevice& iScreenDevice; sl@0: CWindowGc * iGc; sl@0: sl@0: RSurfaceUpdateSession iSurfaceUpdateSession; sl@0: CTPseudoAppShared* iPseudoAppShared; sl@0: sl@0: TSize iScreenSize; sl@0: TInt iScreenCounter; sl@0: TInt iFrameDuration; sl@0: TInt iFrameDelay; sl@0: sl@0: TUint64 iTimeStampBefore; sl@0: TInt iCounterFreq; sl@0: TBool iInitTimer; sl@0: TTime iStartTime; sl@0: TUint64 iTotalCompositionTime; sl@0: sl@0: CIniData* iUtils; sl@0: TGceTestResults iGceTestResults; sl@0: SurfaceDetails iSurfDetails; sl@0: TInt iFrameCounter; sl@0: TBool iDrawing; sl@0: TBool iUseGlobalUpdate; sl@0: }; sl@0: sl@0: #endif //__T_PSEUDOAPP_ENG_H__ sl@0: sl@0: sl@0: