summaryrefslogtreecommitdiffstats
path: root/tester/covoar/ReportsText.h
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-05-09 21:50:37 +1000
committerChris Johns <chrisj@rtems.org>2014-06-18 16:48:08 +1200
commit100f517ab37265acdf067e36b6860020ec8b2184 (patch)
tree2316c8b888e11dcbcfbfc66a0c1e31991ea20656 /tester/covoar/ReportsText.h
parent4.11: Add ntp patch. (diff)
downloadrtems-tools-100f517ab37265acdf067e36b6860020ec8b2184.tar.bz2
covoar: Merger the covoar source from rtems-testing.git.
Use waf to build covoar.
Diffstat (limited to 'tester/covoar/ReportsText.h')
-rw-r--r--tester/covoar/ReportsText.h124
1 files changed, 124 insertions, 0 deletions
diff --git a/tester/covoar/ReportsText.h b/tester/covoar/ReportsText.h
new file mode 100644
index 0000000..9ae87d4
--- /dev/null
+++ b/tester/covoar/ReportsText.h
@@ -0,0 +1,124 @@
+/*! @file ReportsText.h
+ * @brief Reports Text Format Write Specification
+ *
+ * This file contains the specification of the Reports methods. This
+ * collection of methods is used to generate the various reports of
+ * the analysis results.
+ */
+
+#ifndef __REPORTSTEXT_H__
+#define __REPORTSTEXT_H__
+
+#include <stdint.h>
+#include "ReportsBase.h"
+
+namespace Coverage {
+
+/*!
+ * This class contains all methods and data necessary to
+ * produce all text style reports.
+ */
+class ReportsText: public ReportsBase {
+
+ public:
+ ReportsText( time_t timestamp );
+ virtual ~ReportsText();
+
+ /*!
+ * This method produces a report that contains information about each
+ * uncovered branch statement.
+ *
+ * @param[in] fileName identifies the branch report file name
+ */
+ void WriteBranchReport(
+ const char* const fileName
+ );
+
+ /*!
+ * This method produces a report that contains information about each
+ * uncovered range of bytes.
+ *
+ * @param[in] fileName identifies the coverage report file name
+ */
+ void WriteCoverageReport(
+ const char* const fileName
+ );
+
+ /*!
+ * This method produces a summary report that lists each uncovered
+ * range of bytes.
+ *
+ * @param[in] fileName identifies the size report file name
+ */
+ void WriteSizeReport(
+ const char* const fileName
+ );
+
+ protected:
+
+ /* Inherit documentation from base class. */
+ virtual void PutAnnotatedLine(
+ FILE* aFile,
+ AnnotatedLineState_t state,
+ std::string line,
+ uint32_t id
+ );
+
+ /* Inherit documentation from base class. */
+ virtual void AnnotatedStart(
+ FILE* aFile
+ );
+
+ /* Inherit documentation from base class. */
+ virtual void AnnotatedEnd(
+ FILE* aFile
+ );
+
+ /* Inherit documentation from base class. */
+ virtual bool PutNoBranchInfo(
+ FILE* report
+ );
+
+ /* Inherit documentation from base class. */
+ virtual bool PutBranchEntry(
+ FILE* report,
+ unsigned int number,
+ Coverage::DesiredSymbols::symbolSet_t::iterator symbolPtr,
+ Coverage::CoverageRanges::ranges_t::iterator rangePtr
+ );
+
+ /* Inherit documentation from base class. */
+ virtual void putCoverageNoRange(
+ FILE* report,
+ FILE* noRangeFile,
+ unsigned int number,
+ std::string symbol
+ );
+
+ /* Inherit documentation from base class. */
+ virtual bool PutCoverageLine(
+ FILE* report,
+ unsigned int number,
+ Coverage::DesiredSymbols::symbolSet_t::iterator ditr,
+ Coverage::CoverageRanges::ranges_t::iterator ritr
+ );
+
+ /* Inherit documentation from base class. */
+ virtual bool PutSizeLine(
+ FILE* report,
+ unsigned int number,
+ Coverage::DesiredSymbols::symbolSet_t::iterator symbol,
+ Coverage::CoverageRanges::ranges_t::iterator range
+ );
+
+ /* Inherit documentation from base class. */
+ virtual bool PutSymbolSummaryLine(
+ FILE* report,
+ unsigned int number,
+ Coverage::DesiredSymbols::symbolSet_t::iterator symbol
+ );
+};
+
+}
+
+#endif