Skip to content
Snippets Groups Projects
Verified Commit ede36d31 authored by Daniel Pfeifer's avatar Daniel Pfeifer
Browse files

cmCTestConfigureCommand: Remove handler usage

parent f0e57a00
No related branches found
No related tags found
No related merge requests found
......@@ -28,23 +28,10 @@
#include "cmXMLWriter.h"
#include "cmake.h"
class cmCTestConfigureHandler : public cmCTestGenericHandler
{
public:
cmCTestConfigureHandler(cmCTest* ctest)
: cmCTestGenericHandler(ctest)
{
}
int ProcessHandler() override;
};
std::unique_ptr<cmCTestGenericHandler>
cmCTestConfigureCommand::InitializeHandler(HandlerArguments& arguments,
cmExecutionStatus& status) const
bool cmCTestConfigureCommand::ExecuteConfigure(ConfigureArguments const& args,
cmExecutionStatus& status) const
{
cmMakefile& mf = status.GetMakefile();
auto const& args = static_cast<ConfigureArguments&>(arguments);
std::string const& buildDirectory = !args.Build.empty()
? args.Build
......@@ -53,7 +40,7 @@ cmCTestConfigureCommand::InitializeHandler(HandlerArguments& arguments,
status.SetError("called with no build directory specified. "
"Either use the BUILD argument or set the "
"CTEST_BINARY_DIRECTORY variable.");
return nullptr;
return false;
}
std::string configureCommand = mf.GetDefinition("CTEST_CONFIGURE_COMMAND");
......@@ -64,7 +51,7 @@ cmCTestConfigureCommand::InitializeHandler(HandlerArguments& arguments,
"called with no configure command specified. "
"If this is a \"built with CMake\" project, set "
"CTEST_CMAKE_GENERATOR. If not, set CTEST_CONFIGURE_COMMAND.");
return nullptr;
return false;
}
std::string const& sourceDirectory = !args.Source.empty()
......@@ -75,7 +62,7 @@ cmCTestConfigureCommand::InitializeHandler(HandlerArguments& arguments,
status.SetError("called with invalid source directory. "
"CTEST_SOURCE_DIRECTORY must be set to a directory "
"that contains CMakeLists.txt.");
return nullptr;
return false;
}
bool const multiConfig = [&] {
......@@ -137,55 +124,33 @@ cmCTestConfigureCommand::InitializeHandler(HandlerArguments& arguments,
configureCommand += "\"";
}
this->CTest->SetCTestConfiguration("ConfigureCommand", configureCommand,
args.Quiet);
if (cmValue labelsForSubprojects =
mf.GetDefinition("CTEST_LABELS_FOR_SUBPROJECTS")) {
this->CTest->SetCTestConfiguration("LabelsForSubprojects",
*labelsForSubprojects, args.Quiet);
}
auto handler = cm::make_unique<cmCTestConfigureHandler>(this->CTest);
handler->SetQuiet(args.Quiet);
return std::unique_ptr<cmCTestGenericHandler>(std::move(handler));
}
int cmCTestConfigureHandler::ProcessHandler()
{
cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT,
"Configure project" << std::endl, this->Quiet);
std::string configureCommand =
this->CTest->GetCTestConfiguration("ConfigureCommand");
if (configureCommand.empty()) {
cmCTestLog(this->CTest, ERROR_MESSAGE,
"Cannot find ConfigureCommand key in the DartConfiguration.tcl"
<< std::endl);
return -1;
}
std::string buildDirectory =
this->CTest->GetCTestConfiguration("BuildDirectory");
if (buildDirectory.empty()) {
cmCTestLog(this->CTest, ERROR_MESSAGE,
"Cannot find BuildDirectory key in the DartConfiguration.tcl"
<< std::endl);
return -1;
}
cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT, "Configure project\n",
args.Quiet);
if (this->CTest->GetShowOnly()) {
cmCTestOptionalLog(this->CTest, DEBUG,
"Configure with command: " << configureCommand << '\n',
this->Quiet);
return 0;
args.Quiet);
if (!args.ReturnValue.empty()) {
mf.AddDefinition(args.ReturnValue, "0");
}
return true;
}
if (!cmSystemTools::MakeDirectory(buildDirectory)) {
status.SetError(cmStrCat("cannot create directory ", buildDirectory));
return false;
}
cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
"Configure with command: " << configureCommand << '\n',
this->Quiet);
args.Quiet);
int const submitIndex =
args.SubmitIndex.empty() ? 0 : std::atoi(args.SubmitIndex.c_str());
cmGeneratedFileStream logFile;
this->StartLogFile("Configure", logFile);
this->CTest->StartLogFile("Configure", submitIndex, logFile);
auto const startTime = std::chrono::system_clock::now();
auto const startDateTime = this->CTest->CurrentTime();
......@@ -201,22 +166,36 @@ int cmCTestConfigureHandler::ProcessHandler()
auto const elapsedMinutes =
std::chrono::duration_cast<std::chrono::minutes>(endTime - startTime);
cmCTestOptionalLog(this->CTest, DEBUG, "End" << std::endl, this->Quiet);
cmCTestOptionalLog(this->CTest, DEBUG, "End\n", args.Quiet);
if (!res || retVal) {
cmCTestLog(this->CTest, ERROR_MESSAGE,
"Error(s) when configuring the project" << std::endl);
"Error(s) when configuring the project\n");
}
if (!args.ReturnValue.empty()) {
mf.AddDefinition(args.ReturnValue, std::to_string(retVal));
}
if (cmValue value = mf.GetDefinition("CTEST_CHANGE_ID")) {
this->CTest->SetCTestConfiguration("ChangeId", *value, args.Quiet);
}
if (cmValue value = mf.GetDefinition("CTEST_LABELS_FOR_SUBPROJECTS")) {
this->CTest->SetCTestConfiguration("LabelsForSubprojects", *value,
args.Quiet);
}
cmGeneratedFileStream xmlFile;
if (!this->StartResultingXML(cmCTest::PartConfigure, "Configure", xmlFile)) {
if (!this->CTest->StartResultingXML(cmCTest::PartConfigure, "Configure",
submitIndex, xmlFile)) {
cmCTestLog(this->CTest, ERROR_MESSAGE,
"Cannot open configure file" << std::endl);
return 1;
return false;
}
cmXMLWriter xml(xmlFile);
this->CTest->StartXML(xml, this->CMake, this->AppendXML);
this->CTest->StartXML(xml, mf.GetCMakeInstance(), args.Append);
this->CTest->GenerateSubprojectsOutput(xml);
xml.StartElement("Configure");
xml.Element("StartDateTime", startDateTime);
......@@ -230,7 +209,7 @@ int cmCTestConfigureHandler::ProcessHandler()
xml.EndElement(); // Configure
this->CTest->EndXML(xml);
return (!res || retVal) ? -1 : 0;
return res;
}
bool cmCTestConfigureCommand::InitialPass(std::vector<std::string> const& args,
......@@ -242,6 +221,6 @@ bool cmCTestConfigureCommand::InitialPass(std::vector<std::string> const& args,
.Bind("OPTIONS"_s, &ConfigureArguments::Options);
return this->Invoke(parser, args, status, [&](ConfigureArguments& a) {
return this->ExecuteHandlerCommand(a, status);
return this->ExecuteConfigure(a, status);
});
}
......@@ -4,7 +4,6 @@
#include "cmConfigure.h" // IWYU pragma: keep
#include <memory>
#include <string>
#include <vector>
......@@ -27,8 +26,8 @@ protected:
private:
std::string GetName() const override { return "ctest_configure"; }
std::unique_ptr<cmCTestGenericHandler> InitializeHandler(
HandlerArguments& arguments, cmExecutionStatus& status) const override;
bool ExecuteConfigure(ConfigureArguments const& args,
cmExecutionStatus& status) const;
bool InitialPass(std::vector<std::string> const& args,
cmExecutionStatus& status) const override;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment