mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-01 20:00:51 -05:00
0b96ae1f6a
Run the `clang-format.bash` script to update all our C and C++ code to a new style defined by `.clang-format`, now with "east const" enforcement. Use `clang-format` version 18. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit. Issue: #26123
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#pragma once
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class cmCTest;
|
|
class cmCTestCoverageHandlerContainer;
|
|
|
|
/** \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:
|
|
cmParseJacocoCoverage(cmCTestCoverageHandlerContainer& cont, cmCTest* ctest);
|
|
bool LoadCoverageData(std::vector<std::string> const& files);
|
|
|
|
std::string PackageName;
|
|
std::string FileName;
|
|
std::string ModuleName;
|
|
std::string CurFileName;
|
|
|
|
private:
|
|
// implement virtual from parent
|
|
// remove files with no coverage
|
|
void RemoveUnCoveredFiles();
|
|
// Read a single mcov file
|
|
bool ReadJacocoXML(char const* f);
|
|
// split a string based on ,
|
|
bool SplitString(std::vector<std::string>& args, std::string const& line);
|
|
bool FindJavaFile(std::string const& routine, std::string& filepath);
|
|
void InitializeJavaFile(std::string& file);
|
|
bool LoadSource(std::string d);
|
|
|
|
class XMLParser;
|
|
|
|
std::map<std::string, std::string> RoutineToDirectory;
|
|
cmCTestCoverageHandlerContainer& Coverage;
|
|
cmCTest* CTest;
|
|
};
|