os/graphics/windowing/windowserver/test/t_integ/inc/t_perfdata.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include <e32base.h>
sl@0
    23
sl@0
    24
#ifndef __T_PERF_DATA_H__
sl@0
    25
#define __T_PERF_DATA_H__
sl@0
    26
sl@0
    27
class CTPerfData : public CBase
sl@0
    28
	{
sl@0
    29
public:
sl@0
    30
	IMPORT_C static CTPerfData* NewL();
sl@0
    31
sl@0
    32
	/**
sl@0
    33
	* Start performance counter. Use this to mark the
sl@0
    34
	* point at which measurement is to start e.g. beginning
sl@0
    35
	* of draw frame.
sl@0
    36
	*/
sl@0
    37
	IMPORT_C void StartCounter();
sl@0
    38
sl@0
    39
	/**
sl@0
    40
	* Stop performance counter. Call this to mark the point
sl@0
    41
	* at which measurement is to finish e.g. end of draw
sl@0
    42
	* frame.
sl@0
    43
	*/
sl@0
    44
	IMPORT_C void StopCounterL();
sl@0
    45
sl@0
    46
	/**
sl@0
    47
	* Write performance results to designated file
sl@0
    48
	*
sl@0
    49
	* @param	aFileName Name of file to write to
sl@0
    50
	* @leave	System wide error code.
sl@0
    51
	*/
sl@0
    52
	IMPORT_C void WriteResultsL(const TDesC& aFileName);
sl@0
    53
sl@0
    54
sl@0
    55
	~CTPerfData();
sl@0
    56
sl@0
    57
private:
sl@0
    58
	void Construct();
sl@0
    59
	void AnalyseResultsL();
sl@0
    60
	void TrimedMeanL();
sl@0
    61
	void MaxTime();
sl@0
    62
	void MinTime();
sl@0
    63
	void FrameRateL();
sl@0
    64
	CTPerfData() {}
sl@0
    65
sl@0
    66
private:
sl@0
    67
	RArray<TUint32> iResults;
sl@0
    68
	TUint32 iCounter;
sl@0
    69
	TUint32 iTrimedMean;
sl@0
    70
	TUint32 iMaxTime;
sl@0
    71
	TUint32 iMinTime;
sl@0
    72
	TReal iFrameRate;
sl@0
    73
	};
sl@0
    74
sl@0
    75
#endif //__T_PERF_DATA_H__