cmake/Source/CTest/cmCTestLaunch.cxx

614 lines
17 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. */
2009-10-04 10:30:41 +03:00
#include "cmCTestLaunch.h"
2020-02-01 23:06:01 +01:00
#include <cstdlib>
#include <cstring>
#include <iostream>
2017-07-20 19:35:53 +02:00
#include "cmsys/FStream.hxx"
#include "cmsys/Process.h"
#include "cmsys/RegularExpression.hxx"
2009-10-04 10:30:41 +03:00
2017-04-14 19:02:05 +02:00
#include "cmCryptoHash.h"
#include "cmGeneratedFileStream.h"
#include "cmGlobalGenerator.h"
#include "cmMakefile.h"
#include "cmProcessOutput.h"
2019-11-11 23:01:05 +01:00
#include "cmState.h"
2017-04-14 19:02:05 +02:00
#include "cmStateSnapshot.h"
2020-02-01 23:06:01 +01:00
#include "cmStringAlgorithms.h"
2017-04-14 19:02:05 +02:00
#include "cmSystemTools.h"
#include "cmXMLWriter.h"
#include "cmake.h"
2015-04-27 22:25:09 +02:00
#ifdef _WIN32
2018-08-09 18:06:22 +02:00
# include <fcntl.h> // for _O_BINARY
# include <io.h> // for _setmode
# include <stdio.h> // for std{out,err} and fileno
2015-04-27 22:25:09 +02:00
#endif
2009-10-04 10:30:41 +03:00
cmCTestLaunch::cmCTestLaunch(int argc, const char* const* argv)
{
this->Passthru = true;
2018-01-26 17:06:56 +01:00
this->Process = nullptr;
2009-10-04 10:30:41 +03:00
this->ExitCode = 1;
this->CWD = cmSystemTools::GetCurrentWorkingDirectory();
2016-07-09 11:21:54 +02:00
if (!this->ParseArguments(argc, argv)) {
2009-10-04 10:30:41 +03:00
return;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
this->ComputeFileNames();
this->ScrapeRulesLoaded = false;
this->HaveOut = false;
this->HaveErr = false;
this->Process = cmsysProcess_New();
}
cmCTestLaunch::~cmCTestLaunch()
{
cmsysProcess_Delete(this->Process);
2016-07-09 11:21:54 +02:00
if (!this->Passthru) {
2015-04-27 22:25:09 +02:00
cmSystemTools::RemoveFile(this->LogOut);
cmSystemTools::RemoveFile(this->LogErr);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
}
bool cmCTestLaunch::ParseArguments(int argc, const char* const* argv)
{
// Launcher options occur first and are separated from the real
// command line by a '--' option.
2016-07-09 11:21:54 +02:00
enum Doing
{
DoingNone,
DoingOutput,
DoingSource,
DoingLanguage,
DoingTargetName,
DoingTargetType,
DoingBuildDir,
DoingCount,
DoingFilterPrefix
};
2009-10-04 10:30:41 +03:00
Doing doing = DoingNone;
int arg0 = 0;
2016-07-09 11:21:54 +02:00
for (int i = 1; !arg0 && i < argc; ++i) {
2009-10-04 10:30:41 +03:00
const char* arg = argv[i];
2016-07-09 11:21:54 +02:00
if (strcmp(arg, "--") == 0) {
arg0 = i + 1;
} else if (strcmp(arg, "--output") == 0) {
2009-10-04 10:30:41 +03:00
doing = DoingOutput;
2016-07-09 11:21:54 +02:00
} else if (strcmp(arg, "--source") == 0) {
2009-10-04 10:30:41 +03:00
doing = DoingSource;
2016-07-09 11:21:54 +02:00
} else if (strcmp(arg, "--language") == 0) {
2009-10-04 10:30:41 +03:00
doing = DoingLanguage;
2016-07-09 11:21:54 +02:00
} else if (strcmp(arg, "--target-name") == 0) {
2009-10-04 10:30:41 +03:00
doing = DoingTargetName;
2016-07-09 11:21:54 +02:00
} else if (strcmp(arg, "--target-type") == 0) {
2009-10-04 10:30:41 +03:00
doing = DoingTargetType;
2016-07-09 11:21:54 +02:00
} else if (strcmp(arg, "--build-dir") == 0) {
2009-10-04 10:30:41 +03:00
doing = DoingBuildDir;
2016-07-09 11:21:54 +02:00
} else if (strcmp(arg, "--filter-prefix") == 0) {
2014-08-03 19:52:23 +02:00
doing = DoingFilterPrefix;
2016-07-09 11:21:54 +02:00
} else if (doing == DoingOutput) {
2009-10-04 10:30:41 +03:00
this->OptionOutput = arg;
doing = DoingNone;
2016-07-09 11:21:54 +02:00
} else if (doing == DoingSource) {
2009-10-04 10:30:41 +03:00
this->OptionSource = arg;
doing = DoingNone;
2016-07-09 11:21:54 +02:00
} else if (doing == DoingLanguage) {
2009-10-04 10:30:41 +03:00
this->OptionLanguage = arg;
2016-07-09 11:21:54 +02:00
if (this->OptionLanguage == "CXX") {
2009-10-04 10:30:41 +03:00
this->OptionLanguage = "C++";
}
2016-07-09 11:21:54 +02:00
doing = DoingNone;
} else if (doing == DoingTargetName) {
2009-10-04 10:30:41 +03:00
this->OptionTargetName = arg;
doing = DoingNone;
2016-07-09 11:21:54 +02:00
} else if (doing == DoingTargetType) {
2009-10-04 10:30:41 +03:00
this->OptionTargetType = arg;
doing = DoingNone;
2016-07-09 11:21:54 +02:00
} else if (doing == DoingBuildDir) {
2009-10-04 10:30:41 +03:00
this->OptionBuildDir = arg;
doing = DoingNone;
2016-07-09 11:21:54 +02:00
} else if (doing == DoingFilterPrefix) {
2014-08-03 19:52:23 +02:00
this->OptionFilterPrefix = arg;
doing = DoingNone;
2009-10-04 10:30:41 +03:00
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// Extract the real command line.
2016-07-09 11:21:54 +02:00
if (arg0) {
2009-10-04 10:30:41 +03:00
this->RealArgC = argc - arg0;
this->RealArgV = argv + arg0;
2016-07-09 11:21:54 +02:00
for (int i = 0; i < this->RealArgC; ++i) {
2009-10-04 10:30:41 +03:00
this->HandleRealArg(this->RealArgV[i]);
}
2016-07-09 11:21:54 +02:00
return true;
}
2016-10-30 18:24:19 +01:00
this->RealArgC = 0;
2018-01-26 17:06:56 +01:00
this->RealArgV = nullptr;
2016-10-30 18:24:19 +01:00
std::cerr << "No launch/command separator ('--') found!\n";
return false;
2009-10-04 10:30:41 +03:00
}
void cmCTestLaunch::HandleRealArg(const char* arg)
{
#ifdef _WIN32
// Expand response file arguments.
2016-07-09 11:21:54 +02:00
if (arg[0] == '@' && cmSystemTools::FileExists(arg + 1)) {
cmsys::ifstream fin(arg + 1);
2009-10-04 10:30:41 +03:00
std::string line;
2016-07-09 11:21:54 +02:00
while (cmSystemTools::GetLineFromStream(fin, line)) {
2009-10-04 10:30:41 +03:00
cmSystemTools::ParseWindowsCommandLine(line.c_str(), this->RealArgs);
}
2016-07-09 11:21:54 +02:00
return;
}
2009-10-04 10:30:41 +03:00
#endif
2019-11-11 23:01:05 +01:00
this->RealArgs.emplace_back(arg);
2009-10-04 10:30:41 +03:00
}
void cmCTestLaunch::ComputeFileNames()
{
// We just passthru the behavior of the real command unless the
// CTEST_LAUNCH_LOGS environment variable is set.
const char* d = getenv("CTEST_LAUNCH_LOGS");
2016-07-09 11:21:54 +02:00
if (!(d && *d)) {
2009-10-04 10:30:41 +03:00
return;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
this->Passthru = false;
// The environment variable specifies the directory into which we
// generate build logs.
this->LogDir = d;
cmSystemTools::ConvertToUnixSlashes(this->LogDir);
this->LogDir += "/";
// We hash the input command working dir and command line to obtain
// a repeatable and (probably) unique name for log files.
2017-04-14 19:02:05 +02:00
cmCryptoHash md5(cmCryptoHash::AlgoMD5);
md5.Initialize();
md5.Append(this->CWD);
2018-01-26 17:06:56 +01:00
for (std::string const& realArg : this->RealArgs) {
md5.Append(realArg);
2016-07-09 11:21:54 +02:00
}
2017-04-14 19:02:05 +02:00
this->LogHash = md5.FinalizeHex();
2009-10-04 10:30:41 +03:00
// We store stdout and stderr in temporary log files.
2020-02-01 23:06:01 +01:00
this->LogOut = cmStrCat(this->LogDir, "launch-", this->LogHash, "-out.txt");
this->LogErr = cmStrCat(this->LogDir, "launch-", this->LogHash, "-err.txt");
2009-10-04 10:30:41 +03:00
}
void cmCTestLaunch::RunChild()
{
2011-01-16 11:35:12 +01:00
// Ignore noopt make rules
2016-07-09 11:21:54 +02:00
if (this->RealArgs.empty() || this->RealArgs[0] == ":") {
2011-01-16 11:35:12 +01:00
this->ExitCode = 0;
return;
2016-07-09 11:21:54 +02:00
}
2011-01-16 11:35:12 +01:00
2009-10-04 10:30:41 +03:00
// Prepare to run the real command.
cmsysProcess* cp = this->Process;
cmsysProcess_SetCommand(cp, this->RealArgV);
2014-08-03 19:52:23 +02:00
cmsys::ofstream fout;
cmsys::ofstream ferr;
2016-07-09 11:21:54 +02:00
if (this->Passthru) {
2009-10-04 10:30:41 +03:00
// In passthru mode we just share the output pipes.
cmsysProcess_SetPipeShared(cp, cmsysProcess_Pipe_STDOUT, 1);
cmsysProcess_SetPipeShared(cp, cmsysProcess_Pipe_STDERR, 1);
2016-07-09 11:21:54 +02:00
} else {
2009-10-04 10:30:41 +03:00
// In full mode we record the child output pipes to log files.
2016-07-09 11:21:54 +02:00
fout.open(this->LogOut.c_str(), std::ios::out | std::ios::binary);
ferr.open(this->LogErr.c_str(), std::ios::out | std::ios::binary);
}
2009-10-04 10:30:41 +03:00
2015-04-27 22:25:09 +02:00
#ifdef _WIN32
// Do this so that newline transformation is not done when writing to cout
// and cerr below.
_setmode(fileno(stdout), _O_BINARY);
_setmode(fileno(stderr), _O_BINARY);
#endif
2009-10-04 10:30:41 +03:00
// Run the real command.
cmsysProcess_Execute(cp);
// Record child stdout and stderr if necessary.
2016-07-09 11:21:54 +02:00
if (!this->Passthru) {
2018-01-26 17:06:56 +01:00
char* data = nullptr;
2009-10-04 10:30:41 +03:00
int length = 0;
2017-04-14 19:02:05 +02:00
cmProcessOutput processOutput;
std::string strdata;
2018-01-26 17:06:56 +01:00
while (int p = cmsysProcess_WaitForData(cp, &data, &length, nullptr)) {
2016-07-09 11:21:54 +02:00
if (p == cmsysProcess_Pipe_STDOUT) {
2017-04-14 19:02:05 +02:00
processOutput.DecodeText(data, length, strdata, 1);
fout.write(strdata.c_str(), strdata.size());
std::cout.write(strdata.c_str(), strdata.size());
2009-10-04 10:30:41 +03:00
this->HaveOut = true;
2016-07-09 11:21:54 +02:00
} else if (p == cmsysProcess_Pipe_STDERR) {
2017-04-14 19:02:05 +02:00
processOutput.DecodeText(data, length, strdata, 2);
ferr.write(strdata.c_str(), strdata.size());
std::cerr.write(strdata.c_str(), strdata.size());
2009-10-04 10:30:41 +03:00
this->HaveErr = true;
}
}
2017-04-14 19:02:05 +02:00
processOutput.DecodeText(std::string(), strdata, 1);
if (!strdata.empty()) {
fout.write(strdata.c_str(), strdata.size());
std::cout.write(strdata.c_str(), strdata.size());
}
processOutput.DecodeText(std::string(), strdata, 2);
if (!strdata.empty()) {
ferr.write(strdata.c_str(), strdata.size());
std::cerr.write(strdata.c_str(), strdata.size());
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// Wait for the real command to finish.
2018-01-26 17:06:56 +01:00
cmsysProcess_WaitForExit(cp, nullptr);
2009-10-04 10:30:41 +03:00
this->ExitCode = cmsysProcess_GetExitValue(cp);
}
int cmCTestLaunch::Run()
{
2016-07-09 11:21:54 +02:00
if (!this->Process) {
2009-10-04 10:30:41 +03:00
std::cerr << "Could not allocate cmsysProcess instance!\n";
return -1;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
this->RunChild();
2016-07-09 11:21:54 +02:00
if (this->CheckResults()) {
2009-10-04 10:30:41 +03:00
return this->ExitCode;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
this->LoadConfig();
this->WriteXML();
return this->ExitCode;
}
void cmCTestLaunch::LoadLabels()
{
2016-07-09 11:21:54 +02:00
if (this->OptionBuildDir.empty() || this->OptionTargetName.empty()) {
2009-10-04 10:30:41 +03:00
return;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// Labels are listed in per-target files.
2020-02-01 23:06:01 +01:00
std::string fname = cmStrCat(this->OptionBuildDir, "/CMakeFiles/",
this->OptionTargetName, ".dir/Labels.txt");
2009-10-04 10:30:41 +03:00
// We are interested in per-target labels for this source file.
std::string source = this->OptionSource;
cmSystemTools::ConvertToUnixSlashes(source);
// Load the labels file.
2014-08-03 19:52:23 +02:00
cmsys::ifstream fin(fname.c_str(), std::ios::in | std::ios::binary);
2016-07-09 11:21:54 +02:00
if (!fin) {
return;
}
2009-10-04 10:30:41 +03:00
bool inTarget = true;
bool inSource = false;
std::string line;
2016-07-09 11:21:54 +02:00
while (cmSystemTools::GetLineFromStream(fin, line)) {
if (line.empty() || line[0] == '#') {
2009-10-04 10:30:41 +03:00
// Ignore blank and comment lines.
continue;
2017-07-20 19:35:53 +02:00
}
if (line[0] == ' ') {
2009-10-04 10:30:41 +03:00
// Label lines appear indented by one space.
2016-07-09 11:21:54 +02:00
if (inTarget || inSource) {
2019-11-11 23:01:05 +01:00
this->Labels.insert(line.substr(1));
2009-10-04 10:30:41 +03:00
}
2016-07-09 11:21:54 +02:00
} else if (!this->OptionSource.empty() && !inSource) {
2009-10-04 10:30:41 +03:00
// Non-indented lines specify a source file name. The first one
// is the end of the target-wide labels. Use labels following a
// matching source.
inTarget = false;
inSource = this->SourceMatches(line, source);
2016-07-09 11:21:54 +02:00
} else {
2009-10-04 10:30:41 +03:00
return;
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
}
bool cmCTestLaunch::SourceMatches(std::string const& lhs,
std::string const& rhs)
{
// TODO: Case sensitivity, UseRelativePaths, etc. Note that both
// paths in the comparison get generated by CMake. This is done for
// every source in the target, so it should be efficient (cannot use
// cmSystemTools::IsSameFile).
return lhs == rhs;
}
bool cmCTestLaunch::IsError() const
{
return this->ExitCode != 0;
}
void cmCTestLaunch::WriteXML()
{
// Name the xml file.
2020-02-01 23:06:01 +01:00
std::string logXML =
cmStrCat(this->LogDir, this->IsError() ? "error-" : "warning-",
this->LogHash, ".xml");
2009-10-04 10:30:41 +03:00
// Use cmGeneratedFileStream to atomically create the report file.
2018-10-28 12:09:07 +01:00
cmGeneratedFileStream fxml(logXML);
2015-08-17 11:37:30 +02:00
cmXMLWriter xml(fxml, 2);
2018-08-09 18:06:22 +02:00
cmXMLElement e2(xml, "Failure");
e2.Attribute("type", this->IsError() ? "Error" : "Warning");
this->WriteXMLAction(e2);
this->WriteXMLCommand(e2);
this->WriteXMLResult(e2);
this->WriteXMLLabels(e2);
2009-10-04 10:30:41 +03:00
}
2018-08-09 18:06:22 +02:00
void cmCTestLaunch::WriteXMLAction(cmXMLElement& e2)
2009-10-04 10:30:41 +03:00
{
2018-08-09 18:06:22 +02:00
e2.Comment("Meta-information about the build action");
cmXMLElement e3(e2, "Action");
2009-10-04 10:30:41 +03:00
// TargetName
2016-07-09 11:21:54 +02:00
if (!this->OptionTargetName.empty()) {
2018-08-09 18:06:22 +02:00
e3.Element("TargetName", this->OptionTargetName);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// Language
2016-07-09 11:21:54 +02:00
if (!this->OptionLanguage.empty()) {
2018-08-09 18:06:22 +02:00
e3.Element("Language", this->OptionLanguage);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// SourceFile
2016-07-09 11:21:54 +02:00
if (!this->OptionSource.empty()) {
2009-10-04 10:30:41 +03:00
std::string source = this->OptionSource;
cmSystemTools::ConvertToUnixSlashes(source);
// If file is in source tree use its relative location.
2018-04-23 21:13:27 +02:00
if (cmSystemTools::FileIsFullPath(this->SourceDir) &&
cmSystemTools::FileIsFullPath(source) &&
2016-07-09 11:21:54 +02:00
cmSystemTools::IsSubDirectory(source, this->SourceDir)) {
2018-04-23 21:13:27 +02:00
source = cmSystemTools::RelativePath(this->SourceDir, source);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
2018-08-09 18:06:22 +02:00
e3.Element("SourceFile", source);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// OutputFile
2016-07-09 11:21:54 +02:00
if (!this->OptionOutput.empty()) {
2018-08-09 18:06:22 +02:00
e3.Element("OutputFile", this->OptionOutput);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// OutputType
2018-01-26 17:06:56 +01:00
const char* outputType = nullptr;
2016-07-09 11:21:54 +02:00
if (!this->OptionTargetType.empty()) {
if (this->OptionTargetType == "EXECUTABLE") {
2009-10-04 10:30:41 +03:00
outputType = "executable";
2016-07-09 11:21:54 +02:00
} else if (this->OptionTargetType == "SHARED_LIBRARY") {
2009-10-04 10:30:41 +03:00
outputType = "shared library";
2016-07-09 11:21:54 +02:00
} else if (this->OptionTargetType == "MODULE_LIBRARY") {
2009-10-04 10:30:41 +03:00
outputType = "module library";
2016-07-09 11:21:54 +02:00
} else if (this->OptionTargetType == "STATIC_LIBRARY") {
2009-10-04 10:30:41 +03:00
outputType = "static library";
}
2016-07-09 11:21:54 +02:00
} else if (!this->OptionSource.empty()) {
2009-10-04 10:30:41 +03:00
outputType = "object file";
2016-07-09 11:21:54 +02:00
}
if (outputType) {
2018-08-09 18:06:22 +02:00
e3.Element("OutputType", outputType);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
}
2018-08-09 18:06:22 +02:00
void cmCTestLaunch::WriteXMLCommand(cmXMLElement& e2)
2009-10-04 10:30:41 +03:00
{
2018-08-09 18:06:22 +02:00
e2.Comment("Details of command");
cmXMLElement e3(e2, "Command");
2016-07-09 11:21:54 +02:00
if (!this->CWD.empty()) {
2018-08-09 18:06:22 +02:00
e3.Element("WorkingDirectory", this->CWD);
2016-07-09 11:21:54 +02:00
}
2018-01-26 17:06:56 +01:00
for (std::string const& realArg : this->RealArgs) {
2018-08-09 18:06:22 +02:00
e3.Element("Argument", realArg);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
}
2018-08-09 18:06:22 +02:00
void cmCTestLaunch::WriteXMLResult(cmXMLElement& e2)
2009-10-04 10:30:41 +03:00
{
2018-08-09 18:06:22 +02:00
e2.Comment("Result of command");
cmXMLElement e3(e2, "Result");
2009-10-04 10:30:41 +03:00
// StdOut
2018-08-09 18:06:22 +02:00
this->DumpFileToXML(e3, "StdOut", this->LogOut);
2009-10-04 10:30:41 +03:00
// StdErr
2018-08-09 18:06:22 +02:00
this->DumpFileToXML(e3, "StdErr", this->LogErr);
2009-10-04 10:30:41 +03:00
// ExitCondition
2018-08-09 18:06:22 +02:00
cmXMLElement e4(e3, "ExitCondition");
2009-10-04 10:30:41 +03:00
cmsysProcess* cp = this->Process;
2016-07-09 11:21:54 +02:00
switch (cmsysProcess_GetState(cp)) {
2009-10-04 10:30:41 +03:00
case cmsysProcess_State_Starting:
2018-08-09 18:06:22 +02:00
e4.Content("No process has been executed");
2016-07-09 11:21:54 +02:00
break;
2009-10-04 10:30:41 +03:00
case cmsysProcess_State_Executing:
2018-08-09 18:06:22 +02:00
e4.Content("The process is still executing");
2016-07-09 11:21:54 +02:00
break;
2009-10-04 10:30:41 +03:00
case cmsysProcess_State_Disowned:
2018-08-09 18:06:22 +02:00
e4.Content("Disowned");
2016-07-09 11:21:54 +02:00
break;
2009-10-04 10:30:41 +03:00
case cmsysProcess_State_Killed:
2018-08-09 18:06:22 +02:00
e4.Content("Killed by parent");
2016-07-09 11:21:54 +02:00
break;
2009-10-04 10:30:41 +03:00
case cmsysProcess_State_Expired:
2018-08-09 18:06:22 +02:00
e4.Content("Killed when timeout expired");
2016-07-09 11:21:54 +02:00
break;
2009-10-04 10:30:41 +03:00
case cmsysProcess_State_Exited:
2018-08-09 18:06:22 +02:00
e4.Content(this->ExitCode);
2016-07-09 11:21:54 +02:00
break;
2009-10-04 10:30:41 +03:00
case cmsysProcess_State_Exception:
2018-08-09 18:06:22 +02:00
e4.Content("Terminated abnormally: ");
e4.Content(cmsysProcess_GetExceptionString(cp));
2016-07-09 11:21:54 +02:00
break;
2009-10-04 10:30:41 +03:00
case cmsysProcess_State_Error:
2018-08-09 18:06:22 +02:00
e4.Content("Error administrating child process: ");
e4.Content(cmsysProcess_GetErrorString(cp));
2016-07-09 11:21:54 +02:00
break;
2018-08-09 18:06:22 +02:00
}
2009-10-04 10:30:41 +03:00
}
2018-08-09 18:06:22 +02:00
void cmCTestLaunch::WriteXMLLabels(cmXMLElement& e2)
2009-10-04 10:30:41 +03:00
{
this->LoadLabels();
2016-07-09 11:21:54 +02:00
if (!this->Labels.empty()) {
2018-08-09 18:06:22 +02:00
e2.Comment("Interested parties");
cmXMLElement e3(e2, "Labels");
2018-01-26 17:06:56 +01:00
for (std::string const& label : this->Labels) {
2018-08-09 18:06:22 +02:00
e3.Element("Label", label);
2009-10-04 10:30:41 +03:00
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
}
2018-08-09 18:06:22 +02:00
void cmCTestLaunch::DumpFileToXML(cmXMLElement& e3, const char* tag,
std::string const& fname)
2009-10-04 10:30:41 +03:00
{
2014-08-03 19:52:23 +02:00
cmsys::ifstream fin(fname.c_str(), std::ios::in | std::ios::binary);
2009-10-04 10:30:41 +03:00
std::string line;
const char* sep = "";
2014-08-03 19:52:23 +02:00
2018-08-09 18:06:22 +02:00
cmXMLElement e4(e3, tag);
2016-07-09 11:21:54 +02:00
while (cmSystemTools::GetLineFromStream(fin, line)) {
if (MatchesFilterPrefix(line)) {
2014-08-03 19:52:23 +02:00
continue;
2016-07-09 11:21:54 +02:00
}
2018-01-26 17:06:56 +01:00
if (this->Match(line, this->RegexWarningSuppress)) {
2020-02-01 23:06:01 +01:00
line = cmStrCat("[CTest: warning suppressed] ", line);
2018-01-26 17:06:56 +01:00
} else if (this->Match(line, this->RegexWarning)) {
2020-02-01 23:06:01 +01:00
line = cmStrCat("[CTest: warning matched] ", line);
2018-01-26 17:06:56 +01:00
}
2018-08-09 18:06:22 +02:00
e4.Content(sep);
e4.Content(line);
2009-10-04 10:30:41 +03:00
sep = "\n";
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
}
bool cmCTestLaunch::CheckResults()
{
// Skip XML in passthru mode.
2016-07-09 11:21:54 +02:00
if (this->Passthru) {
2009-10-04 10:30:41 +03:00
return true;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// We always report failure for error conditions.
2016-07-09 11:21:54 +02:00
if (this->IsError()) {
2009-10-04 10:30:41 +03:00
return false;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
// Scrape the output logs to look for warnings.
2016-07-09 11:21:54 +02:00
if ((this->HaveErr && this->ScrapeLog(this->LogErr)) ||
(this->HaveOut && this->ScrapeLog(this->LogOut))) {
2009-10-04 10:30:41 +03:00
return false;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
return true;
}
void cmCTestLaunch::LoadScrapeRules()
{
2016-07-09 11:21:54 +02:00
if (this->ScrapeRulesLoaded) {
2009-10-04 10:30:41 +03:00
return;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
this->ScrapeRulesLoaded = true;
// Common compiler warning formats. These are much simpler than the
// full log-scraping expressions because we do not need to extract
// file and line information.
2019-11-11 23:01:05 +01:00
this->RegexWarning.emplace_back("(^|[ :])[Ww][Aa][Rr][Nn][Ii][Nn][Gg]");
this->RegexWarning.emplace_back("(^|[ :])[Rr][Ee][Mm][Aa][Rr][Kk]");
this->RegexWarning.emplace_back("(^|[ :])[Nn][Oo][Tt][Ee]");
2009-10-04 10:30:41 +03:00
// Load custom match rules given to us by CTest.
this->LoadScrapeRules("Warning", this->RegexWarning);
this->LoadScrapeRules("WarningSuppress", this->RegexWarningSuppress);
}
2016-07-09 11:21:54 +02:00
void cmCTestLaunch::LoadScrapeRules(
const char* purpose, std::vector<cmsys::RegularExpression>& regexps)
2009-10-04 10:30:41 +03:00
{
2020-02-01 23:06:01 +01:00
std::string fname = cmStrCat(this->LogDir, "Custom", purpose, ".txt");
2014-08-03 19:52:23 +02:00
cmsys::ifstream fin(fname.c_str(), std::ios::in | std::ios::binary);
2009-10-04 10:30:41 +03:00
std::string line;
cmsys::RegularExpression rex;
2016-07-09 11:21:54 +02:00
while (cmSystemTools::GetLineFromStream(fin, line)) {
2018-04-23 21:13:27 +02:00
if (rex.compile(line)) {
2009-10-04 10:30:41 +03:00
regexps.push_back(rex);
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
}
bool cmCTestLaunch::ScrapeLog(std::string const& fname)
{
this->LoadScrapeRules();
// Look for log file lines matching warning expressions but not
// suppression expressions.
2014-08-03 19:52:23 +02:00
cmsys::ifstream fin(fname.c_str(), std::ios::in | std::ios::binary);
2009-10-04 10:30:41 +03:00
std::string line;
2016-07-09 11:21:54 +02:00
while (cmSystemTools::GetLineFromStream(fin, line)) {
if (MatchesFilterPrefix(line)) {
2014-08-03 19:52:23 +02:00
continue;
2016-07-09 11:21:54 +02:00
}
2014-08-03 19:52:23 +02:00
2016-07-09 11:21:54 +02:00
if (this->Match(line, this->RegexWarning) &&
!this->Match(line, this->RegexWarningSuppress)) {
2009-10-04 10:30:41 +03:00
return true;
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
return false;
}
bool cmCTestLaunch::Match(std::string const& line,
std::vector<cmsys::RegularExpression>& regexps)
{
2018-01-26 17:06:56 +01:00
for (cmsys::RegularExpression& r : regexps) {
2018-10-28 12:09:07 +01:00
if (r.find(line)) {
2009-10-04 10:30:41 +03:00
return true;
}
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
return false;
}
2014-08-03 19:52:23 +02:00
bool cmCTestLaunch::MatchesFilterPrefix(std::string const& line) const
{
2016-10-30 18:24:19 +01:00
return !this->OptionFilterPrefix.empty() &&
2020-02-01 23:06:01 +01:00
cmHasPrefix(line, this->OptionFilterPrefix);
2014-08-03 19:52:23 +02:00
}
2009-10-04 10:30:41 +03:00
int cmCTestLaunch::Main(int argc, const char* const argv[])
{
2016-07-09 11:21:54 +02:00
if (argc == 2) {
2009-10-04 10:30:41 +03:00
std::cerr << "ctest --launch: this mode is for internal CTest use only"
<< std::endl;
return 1;
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
cmCTestLaunch self(argc, argv);
return self.Run();
}
void cmCTestLaunch::LoadConfig()
{
2019-11-11 23:01:05 +01:00
cmake cm(cmake::RoleScript, cmState::CTest);
2015-08-17 11:37:30 +02:00
cm.SetHomeDirectory("");
cm.SetHomeOutputDirectory("");
2016-03-13 13:35:51 +01:00
cm.GetCurrentSnapshot().SetDefaultDefinitions();
2015-08-17 11:37:30 +02:00
cmGlobalGenerator gg(&cm);
2018-01-26 17:06:56 +01:00
cmMakefile mf(&gg, cm.GetCurrentSnapshot());
2020-02-01 23:06:01 +01:00
std::string fname = cmStrCat(this->LogDir, "CTestLaunchConfig.cmake");
2019-11-11 23:01:05 +01:00
if (cmSystemTools::FileExists(fname) && mf.ReadListFile(fname)) {
2018-01-26 17:06:56 +01:00
this->SourceDir = mf.GetSafeDefinition("CTEST_SOURCE_DIRECTORY");
2009-10-04 10:30:41 +03:00
cmSystemTools::ConvertToUnixSlashes(this->SourceDir);
2016-07-09 11:21:54 +02:00
}
2009-10-04 10:30:41 +03:00
}