2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2010-05-25 09:23:25 -04:00
|
|
|
#ifndef cmParsePHPCoverage_h
|
|
|
|
#define cmParsePHPCoverage_h
|
|
|
|
|
2016-08-24 22:01:40 +02:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
|
|
|
|
|
|
|
#include <iosfwd>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class cmCTest;
|
|
|
|
class cmCTestCoverageHandlerContainer;
|
2010-05-25 09:23:25 -04: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-05-16 10:34:04 -04:00
|
|
|
cmParsePHPCoverage(cmCTestCoverageHandlerContainer& cont, cmCTest* ctest);
|
2010-05-25 09:23:25 -04:00
|
|
|
bool ReadPHPCoverageDirectory(const char* dir);
|
|
|
|
void PrintCoverage();
|
2016-05-16 10:34:04 -04:00
|
|
|
|
2010-05-25 09:23:25 -04:00
|
|
|
private:
|
|
|
|
bool ReadPHPData(const char* file);
|
2014-01-03 22:47:13 -07:00
|
|
|
bool ReadArraySize(std::istream& in, int& size);
|
|
|
|
bool ReadFileInformation(std::istream& in);
|
|
|
|
bool ReadInt(std::istream& in, int& v);
|
2014-02-10 00:21:34 -05:00
|
|
|
bool ReadCoverageArray(std::istream& in, std::string const&);
|
2014-01-03 22:47:13 -07:00
|
|
|
bool ReadUntil(std::istream& in, char until);
|
2010-05-25 09:23:25 -04:00
|
|
|
cmCTestCoverageHandlerContainer& Coverage;
|
|
|
|
cmCTest* CTest;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|