cmake/Source/CTest/cmParseCoberturaCoverage.h

43 lines
1.3 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2021-09-14 00:13:48 +02:00
#pragma once
2014-08-03 19:52:23 +02:00
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h" // IWYU pragma: keep
2016-10-30 18:24:19 +01:00
#include <string>
#include <vector>
class cmCTest;
class cmCTestCoverageHandlerContainer;
2014-08-03 19:52:23 +02:00
/** \class cmParsePythonCoverage
* \brief Parse coverage.py Python coverage information
*
* This class is used to parse the output of the coverage.py tool that
* is currently maintained by Ned Batchelder. That tool has a command
* that produces xml output in the format typically output by the common
* Java-based Cobertura coverage application. This helper class parses
* that XML file to fill the coverage-handler container.
*/
2015-04-27 22:25:09 +02:00
class cmParseCoberturaCoverage
2014-08-03 19:52:23 +02:00
{
public:
//! Create the coverage parser by passing in the coverage handler
//! container and the cmCTest object
2015-04-27 22:25:09 +02:00
cmParseCoberturaCoverage(cmCTestCoverageHandlerContainer& cont,
2016-07-09 11:21:54 +02:00
cmCTest* ctest);
2014-08-03 19:52:23 +02:00
2015-04-27 22:25:09 +02:00
bool inSources;
bool inSource;
std::vector<std::string> filepaths;
2014-08-03 19:52:23 +02:00
//! Read the XML produced by running `coverage xml`
bool ReadCoverageXML(const char* xmlFile);
private:
class XMLParser;
2016-10-30 18:24:19 +01:00
2014-08-03 19:52:23 +02:00
cmCTestCoverageHandlerContainer& Coverage;
cmCTest* CTest;
std::string CurFileName;
};