os/graphics/windowing/windowserver/test/t_integ/src/t_perfdata.cpp
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 #include <iniparser.h>
    23 #include <s32file.h>
    24 #include <hal.h>
    25 #include <e32math.h>
    26 
    27 #include "t_perfdata.h"
    28 #include "t_wservconsts.h"
    29 
    30 // Strings used when writing results to file to
    31 // describe the values accordingly.
    32 // e.g. KPerfDataFrameRate = 24
    33 // is the calculated frame rate for the measurements taken.
    34 _LIT(KPerfDataTrimedMean, "KPerfDataTrimedMean");
    35 _LIT(KPerfDataMaxTime,    "KPerfDataMaxTime");
    36 _LIT(KPerfDataMinTime,    "KPerfDataMinTime");
    37 _LIT(KPerfDataFrameRate,  "KPerfDataFrameRate");
    38 
    39 EXPORT_C CTPerfData*  CTPerfData::NewL()
    40 	{
    41 	CTPerfData* self = new(ELeave) CTPerfData();
    42 	CleanupStack::PushL(self);
    43 	self->Construct();
    44 	CleanupStack::Pop(self);
    45 	return self;
    46 	}
    47 
    48 EXPORT_C void CTPerfData::StartCounter()
    49 	{
    50 	iCounter = User::FastCounter();
    51 	}
    52 
    53 EXPORT_C void CTPerfData::StopCounterL()
    54 	{
    55 	TUint32 counter = User::FastCounter();
    56 	iResults.AppendL(counter-iCounter);
    57 	iCounter=counter;
    58 	}
    59 
    60 EXPORT_C void CTPerfData::WriteResultsL(const TDesC& aFileName)
    61 	{
    62 	AnalyseResultsL();
    63 
    64 	RFs myFs;
    65 	User::LeaveIfError(myFs.Connect());
    66 
    67 	RFileWriteStream writer;
    68 	writer.PushL(); // writer on cleanup stack
    69 	TInt err = myFs.MkDirAll(aFileName);
    70 
    71 	if (err==KErrNone || err==KErrAlreadyExists)
    72 		{
    73 		User::LeaveIfError(writer.Replace(myFs, aFileName, EFileStreamText|EFileWrite));
    74 		writer.CommitL();
    75 		CleanupStack::PopAndDestroy(&writer); // writer
    76 
    77 		CIniData* myData=CIniData::NewL(aFileName);
    78 		CleanupStack::PushL(myData);
    79 
    80 		TBuf<255> tempStore;
    81 		_LIT(KIntData, "%d");
    82 		tempStore.Format(KIntData,iTrimedMean);
    83 		User::LeaveIfError(myData->AddValue(KDefaultSectionName, KPerfDataTrimedMean, tempStore));
    84 		tempStore.Format(KIntData,iMaxTime);
    85 		User::LeaveIfError(myData->AddValue(KDefaultSectionName, KPerfDataMaxTime, tempStore));
    86 		tempStore.Format(KIntData,iMinTime);
    87 		User::LeaveIfError(myData->AddValue(KDefaultSectionName, KPerfDataMinTime, tempStore));
    88 		_LIT(KRealData, "%4.0f");
    89 		tempStore.Format(KRealData,iFrameRate);
    90 		User::LeaveIfError(myData->AddValue(KDefaultSectionName, KPerfDataFrameRate, tempStore));
    91 		myData->WriteToFileL();
    92 
    93 		CleanupStack::PopAndDestroy(myData);
    94 		}
    95 	else
    96 		{
    97 		CleanupStack::PopAndDestroy(&writer); // writer
    98 		}
    99 
   100 	myFs.Close();
   101 	}
   102 
   103 void CTPerfData::Construct()
   104 	{
   105 	iResults.Reset();
   106 	}
   107 
   108 CTPerfData::~CTPerfData()
   109 	{
   110 	iResults.Reset();
   111 	}
   112 
   113 void CTPerfData::AnalyseResultsL()
   114 	{
   115 	TrimedMeanL();
   116 	MaxTime();
   117 	MinTime();
   118 	FrameRateL();
   119 	}
   120 
   121 void CTPerfData::TrimedMeanL()
   122 	{
   123 	TInt64 total = 0;
   124 	if (iResults.Count() <= 50)
   125 		{
   126 		RDebug::Print(_L("Not enough results for trimming - need more than 50, but got %d"), iResults.Count());
   127 		iTrimedMean = 0;
   128 		}
   129 	else
   130 		{
   131 		TReal tempVar = iResults.Count() * 0.20;
   132 		TInt32 twentyPercentCount = 0;
   133 		User::LeaveIfError(Math::Int(twentyPercentCount, tempVar));
   134 
   135 
   136 
   137 		for (TInt count = twentyPercentCount; count < iResults.Count()-twentyPercentCount; count++)
   138 			{
   139 			total += iResults[count];
   140 			}
   141 
   142 		iTrimedMean = (static_cast<TUint32>(total/(iResults.Count()-(static_cast<TInt64>(twentyPercentCount)*2))));
   143 		}
   144 
   145 	RDebug::Print(_L("CTPerfData::TrimedMeanL - %d"), iTrimedMean);
   146 	}
   147 
   148 void CTPerfData::MaxTime()
   149 	{
   150 	TUint32 result = iResults[0];
   151 	for(TInt i = 0; i < iResults.Count(); i++)
   152 		{
   153 		if(iResults[i] > result)
   154 			{
   155 			result = iResults[i];
   156 			}
   157 		}
   158 	iMaxTime = result;
   159 
   160 	RDebug::Print(_L("CTPerfData::MaxTime - %d"), iMaxTime);
   161 	}
   162 
   163 void CTPerfData::MinTime()
   164 	{
   165 	TUint32 result = iResults[0];
   166 	for(TInt i = 0; i < iResults.Count(); i++)
   167 		{
   168 		if(iResults[i] < result)
   169 			{
   170 			result = iResults[i];
   171 			}
   172 		}
   173 	iMinTime = result;
   174 
   175 	RDebug::Print(_L("CTPerfData::MinTime - %d"), iMinTime);
   176 	}
   177 
   178 void CTPerfData::FrameRateL()
   179 	{
   180 	iFrameRate = 0;
   181 	if (iTrimedMean==0)
   182 		{
   183 		TrimedMeanL();
   184 		}
   185 	TInt counterFreq = 1;
   186 	User::LeaveIfError(HAL::Get(HALData::EFastCounterFrequency, counterFreq));
   187 
   188 	if (iTrimedMean)
   189 		{
   190 		iFrameRate = static_cast<TReal>(counterFreq)/iTrimedMean;
   191 		}
   192 	else
   193 		{
   194 		User::Leave(KErrAbort);
   195 		}
   196 
   197 	RDebug::Print(_L("CTPerfData::FrameRate - %4.0f"), iFrameRate);
   198 	}