traceservices/tracefw/integ_test/ost/TEF/te_ostv2integsuite_performance/inc/sanity/te_perfsanitytimer.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:39:58 +0100
branchRCL_3
changeset 24 cc28652e0254
parent 23 26645d81f48d
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201035 Kit: 201035

// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// UTrace Performance Tests Kernel-Side Timer.
//



/**
 @file te_perfsanitytimer.h
 @internalTechnology
 @prototype
*/
#ifndef TE_UPTSANITYTIMER_H_
#define TE_UPTSANITYTIMER_H_

#ifndef __KERNEL_MODE__
#include "timer/te_perfusertimer.h"
#else
#include "timer/te_perfkerneltimer.h"
#endif
#include "te_perfsanityhelpers.h"

class TTestTimer
{
private:
enum TTestMethodType
	{
	ESanityFoo,
	ESanityFooLong,
	EUtraceUsr,
	EUtraceKrn,
	};
	
public:
	TBool	TestUserTimer(TUint32& aTestTime);
	TBool	TestUserLongTimer(TUint32& aTestTime);
	TBool	TestKernelTimer(TUint32& aTestTime);
	TBool	TestKernelLongTimer(TUint32& aTestTime);
	TBool	TestUTraceUserTimer(TUint32& aTestTime);
	TBool	TestUTraceKernelTimer(TUint32& aTestTime);
	TUint32 Count(){return iCount;}
private:
	TBool	VerifyTime(TUint32 aTime);
	TBool	DoTestUTraceTimer(const TInt aApi, TUint32& aTestTime);
	TBool	DoTestTrace(const TTestMethodType aMethod, TUint32& aTestTime);
private:
	#ifndef __KERNEL_MODE__
	CUptTimer		iTimer;
	#else
	TKernelTimer	iTimer;
	#endif
	/**
	 * In case you want the latest count...
	 */
	TUint32			iCount;
};

#endif /*TE_UPTSANITYTIMER_H_*/