mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 14:23:10 -05:00
bcbb212df7
Wide use of CMake 3.28.{1,0[-rcN]} has uncovered some hangs and crashes
in libuv SIGCHLD handling on some platforms, particularly in virtualization
environments on macOS hosts. Although the bug does not seem to be in CMake,
we can restore stability in the CMake 3.28 release series for users of such
platforms by reverting our new uses of libuv for process execution.
Revert implementation changes merged by commit 4771544386 (Merge topic
'replace-cmsysprocess-with-cmuvprocesschain', 2023-09-06, v3.28.0-rc1~138),
but keep test suite updates.
Issue: #25414, #25500, #25562, #25589
82 lines
2.4 KiB
C++
82 lines
2.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 <set>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "cmsys/RegularExpression.hxx"
|
|
|
|
class cmXMLElement;
|
|
|
|
/** \class cmCTestLaunchReporter
|
|
* \brief Generate CTest XML output for the 'ctest --launch' tool.
|
|
*/
|
|
class cmCTestLaunchReporter
|
|
{
|
|
public:
|
|
// Initialize the launcher from its command line.
|
|
cmCTestLaunchReporter();
|
|
~cmCTestLaunchReporter();
|
|
|
|
cmCTestLaunchReporter(const cmCTestLaunchReporter&) = delete;
|
|
cmCTestLaunchReporter& operator=(const cmCTestLaunchReporter&) = delete;
|
|
|
|
// Methods to check the result of the real command.
|
|
bool IsError() const;
|
|
|
|
// Launcher options specified before the real command.
|
|
std::string OptionOutput;
|
|
std::string OptionSource;
|
|
std::string OptionLanguage;
|
|
std::string OptionTargetName;
|
|
std::string OptionTargetType;
|
|
std::string OptionBuildDir;
|
|
std::string OptionFilterPrefix;
|
|
|
|
// The real command line appearing after launcher arguments.
|
|
std::string CWD;
|
|
|
|
// The real command line after response file expansion.
|
|
std::vector<std::string> RealArgs;
|
|
|
|
// A hash of the real command line is unique and unlikely to collide.
|
|
std::string LogHash;
|
|
void ComputeFileNames();
|
|
|
|
bool Passthru;
|
|
struct cmsysProcess_s* Process;
|
|
int ExitCode;
|
|
|
|
// Temporary log files for stdout and stderr of real command.
|
|
std::string LogDir;
|
|
std::string LogOut;
|
|
std::string LogErr;
|
|
|
|
// Labels associated with the build rule.
|
|
std::set<std::string> Labels;
|
|
void LoadLabels();
|
|
bool SourceMatches(std::string const& lhs, std::string const& rhs);
|
|
|
|
// Regular expressions to match warnings and their exceptions.
|
|
std::vector<cmsys::RegularExpression> RegexWarning;
|
|
std::vector<cmsys::RegularExpression> RegexWarningSuppress;
|
|
bool Match(std::string const& line,
|
|
std::vector<cmsys::RegularExpression>& regexps);
|
|
bool MatchesFilterPrefix(std::string const& line) const;
|
|
|
|
// Methods to generate the xml fragment.
|
|
void WriteXML();
|
|
void WriteXMLAction(cmXMLElement&) const;
|
|
void WriteXMLCommand(cmXMLElement&);
|
|
void WriteXMLResult(cmXMLElement&);
|
|
void WriteXMLLabels(cmXMLElement&);
|
|
void DumpFileToXML(cmXMLElement&, const char* tag, std::string const& fname);
|
|
|
|
// Configuration
|
|
std::string SourceDir;
|
|
};
|