os/graphics/windowing/windowserver/test/t_integ/inc/t_dsaappeng.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_DSA_APP_ENG_H__
    23 #define __T_DSA_APP_ENG_H__
    24 
    25 // INCLUDES
    26 #include <w32std.h>
    27 
    28 class CTPerfData;
    29 
    30 // ENUMERATIONS
    31 
    32 enum DirScrAccEngPanics
    33     {
    34     DirScrAccEngAlreadyStarted = 1,
    35 	DirScrAccEngAlreadyStopped
    36     };
    37 
    38 class CTDsaAppEng : public CTimer, public MDirectScreenAccess
    39 	{
    40 
    41 public:
    42 
    43 	// Construction & destruction
    44 	static CTDsaAppEng* NewL 
    45 		(
    46 		RWsSession& aClient, 
    47 		CWsScreenDevice& aScreenDevice, 
    48 		RWindow& aWindow
    49 		);
    50 
    51 	~CTDsaAppEng();	
    52 
    53 public:
    54 
    55 	// Start and stop the drawing
    56 	void StartDrawing();
    57 	void StopDrawing();
    58 
    59 	// Are we drawing
    60 	inline TBool Drawing(){return iDrawing;}
    61 
    62 private:
    63 
    64 	// Implement MDirectScreenAccess 
    65 	void Restart(RDirectScreenAccess::TTerminationReasons aReason);
    66 	void AbortNow(RDirectScreenAccess::TTerminationReasons aReason);
    67 
    68 private:
    69 
    70 	// Implement CTimer
    71 	void RunL();
    72 	void DoCancel();
    73 
    74 private:
    75 
    76     // private constructors - use NewL to construct a CTDsaAppEng!
    77     CTDsaAppEng
    78         (
    79 		RWsSession& aClient, 
    80 		CWsScreenDevice& aScreenDevice, 
    81 		RWindow& aWindow
    82         );
    83 
    84     void ConstructL();	
    85     void CreateTestFileL(const TDesC& aFileName);
    86     void WriteResultsL(const TDesC& aFileName);
    87  
    88 private:
    89 
    90 	// Window server handling
    91 	RWsSession& iClient;
    92 	CWsScreenDevice& iScreenDevice;
    93 	RWindow& iWindow;
    94 
    95 	// Direct Screen Access
    96 	CDirectScreenAccess* iDirectScreenAccess;
    97 	CFbsBitGc* iGc;
    98 	RRegion* iRegion;
    99 	
   100 	CTPerfData * iPerfData;
   101 	
   102 	// Are we drawing
   103 	TBool iDrawing;
   104 	
   105 	TInt iFrameCount;
   106 	TInt iFinishTesting;
   107 	TInt iCounterFrequency;
   108 	TUint32 iPrevCounter;
   109 
   110 	TInt iPrevRotation;
   111 	TInt iRotationAbortCount;
   112 	
   113 	RSemaphore iSemaphore;
   114 	};
   115 
   116 #endif // __T_DSA_APP_ENG_H__
   117 
   118