cmake/Source/CTest/cmParsePHPCoverage.h

40 lines
1.1 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. */
2010-06-23 01:18:35 +03:00
#ifndef cmParsePHPCoverage_h
#define cmParsePHPCoverage_h
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h" // IWYU pragma: keep
2016-10-30 18:24:19 +01:00
#include <iosfwd>
#include <string>
class cmCTest;
class cmCTestCoverageHandlerContainer;
2010-06-23 01:18:35 +03:00
/** \class cmParsePHPCoverage
* \brief Parse xdebug PHP coverage information
*
* This class is used to parse php coverage information produced
* by xdebug. The data is stored as a php dump of the array
* return by xdebug coverage. It is an array of arrays.
*/
class cmParsePHPCoverage
{
public:
2016-07-09 11:21:54 +02:00
cmParsePHPCoverage(cmCTestCoverageHandlerContainer& cont, cmCTest* ctest);
2010-06-23 01:18:35 +03:00
bool ReadPHPCoverageDirectory(const char* dir);
void PrintCoverage();
2016-07-09 11:21:54 +02:00
2010-06-23 01:18:35 +03:00
private:
bool ReadPHPData(const char* file);
2014-08-03 19:52:23 +02:00
bool ReadArraySize(std::istream& in, int& size);
bool ReadFileInformation(std::istream& in);
bool ReadInt(std::istream& in, int& v);
2015-04-27 22:25:09 +02:00
bool ReadCoverageArray(std::istream& in, std::string const&);
2014-08-03 19:52:23 +02:00
bool ReadUntil(std::istream& in, char until);
2010-06-23 01:18:35 +03:00
cmCTestCoverageHandlerContainer& Coverage;
cmCTest* CTest;
};
#endif