2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2014-05-21 23:19:35 +04:00
|
|
|
#ifndef cmParseJacocoCoverage_h
|
|
|
|
#define cmParseJacocoCoverage_h
|
|
|
|
|
2016-08-24 23:01:40 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class cmCTest;
|
|
|
|
class cmCTestCoverageHandlerContainer;
|
2014-05-21 23:19:35 +04:00
|
|
|
|
|
|
|
/** \class cmParseJacocoCoverage
|
|
|
|
* \brief Parse JaCoCO coverage information
|
|
|
|
*
|
|
|
|
* This class is used to parse coverage information for
|
|
|
|
* java using the JaCoCo tool:
|
|
|
|
*
|
|
|
|
* http://www.eclemma.org/jacoco/trunk/index.html
|
|
|
|
*/
|
|
|
|
class cmParseJacocoCoverage
|
|
|
|
{
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
cmParseJacocoCoverage(cmCTestCoverageHandlerContainer& cont, cmCTest* ctest);
|
2016-05-26 22:58:51 +03:00
|
|
|
bool LoadCoverageData(std::vector<std::string> const& files);
|
2014-05-21 23:19:35 +04:00
|
|
|
|
|
|
|
std::string PackageName;
|
|
|
|
std::string FileName;
|
|
|
|
std::string ModuleName;
|
|
|
|
std::string CurFileName;
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2014-05-21 23:19:35 +04:00
|
|
|
private:
|
|
|
|
// implement virtual from parent
|
|
|
|
// remove files with no coverage
|
|
|
|
void RemoveUnCoveredFiles();
|
|
|
|
// Read a single mcov file
|
|
|
|
bool ReadJacocoXML(const char* f);
|
|
|
|
// split a string based on ,
|
2016-05-16 17:34:04 +03:00
|
|
|
bool SplitString(std::vector<std::string>& args, std::string const& line);
|
|
|
|
bool FindJavaFile(std::string const& routine, std::string& filepath);
|
2014-05-21 23:19:35 +04:00
|
|
|
void InitializeJavaFile(std::string& file);
|
|
|
|
bool LoadSource(std::string d);
|
|
|
|
|
|
|
|
class XMLParser;
|
2016-08-24 23:01:40 +03:00
|
|
|
|
2014-05-21 23:19:35 +04:00
|
|
|
std::map<std::string, std::string> RoutineToDirectory;
|
|
|
|
cmCTestCoverageHandlerContainer& Coverage;
|
|
|
|
cmCTest* CTest;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|