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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include <iniparser.h>
27 #include "t_perfdata.h"
28 #include "t_wservconsts.h"
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");
39 EXPORT_C CTPerfData* CTPerfData::NewL()
41 CTPerfData* self = new(ELeave) CTPerfData();
42 CleanupStack::PushL(self);
44 CleanupStack::Pop(self);
48 EXPORT_C void CTPerfData::StartCounter()
50 iCounter = User::FastCounter();
53 EXPORT_C void CTPerfData::StopCounterL()
55 TUint32 counter = User::FastCounter();
56 iResults.AppendL(counter-iCounter);
60 EXPORT_C void CTPerfData::WriteResultsL(const TDesC& aFileName)
65 User::LeaveIfError(myFs.Connect());
67 RFileWriteStream writer;
68 writer.PushL(); // writer on cleanup stack
69 TInt err = myFs.MkDirAll(aFileName);
71 if (err==KErrNone || err==KErrAlreadyExists)
73 User::LeaveIfError(writer.Replace(myFs, aFileName, EFileStreamText|EFileWrite));
75 CleanupStack::PopAndDestroy(&writer); // writer
77 CIniData* myData=CIniData::NewL(aFileName);
78 CleanupStack::PushL(myData);
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();
93 CleanupStack::PopAndDestroy(myData);
97 CleanupStack::PopAndDestroy(&writer); // writer
103 void CTPerfData::Construct()
108 CTPerfData::~CTPerfData()
113 void CTPerfData::AnalyseResultsL()
121 void CTPerfData::TrimedMeanL()
124 if (iResults.Count() <= 50)
126 RDebug::Print(_L("Not enough results for trimming - need more than 50, but got %d"), iResults.Count());
131 TReal tempVar = iResults.Count() * 0.20;
132 TInt32 twentyPercentCount = 0;
133 User::LeaveIfError(Math::Int(twentyPercentCount, tempVar));
137 for (TInt count = twentyPercentCount; count < iResults.Count()-twentyPercentCount; count++)
139 total += iResults[count];
142 iTrimedMean = (static_cast<TUint32>(total/(iResults.Count()-(static_cast<TInt64>(twentyPercentCount)*2))));
145 RDebug::Print(_L("CTPerfData::TrimedMeanL - %d"), iTrimedMean);
148 void CTPerfData::MaxTime()
150 TUint32 result = iResults[0];
151 for(TInt i = 0; i < iResults.Count(); i++)
153 if(iResults[i] > result)
155 result = iResults[i];
160 RDebug::Print(_L("CTPerfData::MaxTime - %d"), iMaxTime);
163 void CTPerfData::MinTime()
165 TUint32 result = iResults[0];
166 for(TInt i = 0; i < iResults.Count(); i++)
168 if(iResults[i] < result)
170 result = iResults[i];
175 RDebug::Print(_L("CTPerfData::MinTime - %d"), iMinTime);
178 void CTPerfData::FrameRateL()
185 TInt counterFreq = 1;
186 User::LeaveIfError(HAL::Get(HALData::EFastCounterFrequency, counterFreq));
190 iFrameRate = static_cast<TReal>(counterFreq)/iTrimedMean;
194 User::Leave(KErrAbort);
197 RDebug::Print(_L("CTPerfData::FrameRate - %4.0f"), iFrameRate);