os/graphics/windowing/windowserver/test/t_integ/inc/t_perfdata.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
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".
     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 #include <e32base.h>
    23 
    24 #ifndef __T_PERF_DATA_H__
    25 #define __T_PERF_DATA_H__
    26 
    27 class CTPerfData : public CBase
    28 	{
    29 public:
    30 	IMPORT_C static CTPerfData* NewL();
    31 
    32 	/**
    33 	* Start performance counter. Use this to mark the
    34 	* point at which measurement is to start e.g. beginning
    35 	* of draw frame.
    36 	*/
    37 	IMPORT_C void StartCounter();
    38 
    39 	/**
    40 	* Stop performance counter. Call this to mark the point
    41 	* at which measurement is to finish e.g. end of draw
    42 	* frame.
    43 	*/
    44 	IMPORT_C void StopCounterL();
    45 
    46 	/**
    47 	* Write performance results to designated file
    48 	*
    49 	* @param	aFileName Name of file to write to
    50 	* @leave	System wide error code.
    51 	*/
    52 	IMPORT_C void WriteResultsL(const TDesC& aFileName);
    53 
    54 
    55 	~CTPerfData();
    56 
    57 private:
    58 	void Construct();
    59 	void AnalyseResultsL();
    60 	void TrimedMeanL();
    61 	void MaxTime();
    62 	void MinTime();
    63 	void FrameRateL();
    64 	CTPerfData() {}
    65 
    66 private:
    67 	RArray<TUint32> iResults;
    68 	TUint32 iCounter;
    69 	TUint32 iTrimedMean;
    70 	TUint32 iMaxTime;
    71 	TUint32 iMinTime;
    72 	TReal iFrameRate;
    73 	};
    74 
    75 #endif //__T_PERF_DATA_H__