diff -r 000000000000 -r 08ec8eefde2f traceservices/tracefw/integ_test/ost/TEF/te_ostv2integsuite_performance/inc/te_perfcsvgenerator.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/traceservices/tracefw/integ_test/ost/TEF/te_ostv2integsuite_performance/inc/te_perfcsvgenerator.h Fri Jan 22 11:06:30 2010 +0200 @@ -0,0 +1,70 @@ +// 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 CSV output generator +// + + + +/** + @file te_perfcsvgenerator.h + @internalTechnology + @prototype +*/ + +#ifndef TE_UPTCSVGENERATOR_H +#define TE_UPTCSVGENERATOR_H + +#include +#include +#include "te_perfapicall.h" +#include "te_perfplugin.h" + + + +/** +This is a user-side utility class manipulate csv files and append or overwrite these file with + performance data metrics . + + pre-conditions? assumptions before calling? + +@internalTechnology +@prototype + */ +class CUptCsvGenerator: public CBase + { +public: + CUptCsvGenerator(); + ~CUptCsvGenerator(); + + TInt Open(const TDesC& aFileName, const TBool& aAppend); + TInt Close(); + void WriteL(const RArray& aPerformanceData); + void WriteL(const RArray& aPerformanceConfig); + void WriteApiNameL(const TInt aApiEnum); + TInt WriteNewLine(); + TInt WriteHeader(const TInt& aTestType); + + TInt Test(); +private: + //Private helper method for sanity tests + TInt FillReferenceBuffer(RBuf8& aBufferName, const TInt& aAppendCount, const RArray& aDataName, const TInt& aData1Count, const RArray& aData2Name, const TInt& aData2Count); + + //data for connecting to file sessions for generating csv + RFs iCsvFileSession; + RFile iCsvFile; + }; + +#endif + +