cmake/Source/CTest/cmCTestBuildCommand.cxx

179 lines
6.5 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. */
#include "cmCTestBuildCommand.h"
#include "cmCTest.h"
2009-10-04 10:30:41 +03:00
#include "cmCTestBuildHandler.h"
2016-07-09 11:21:54 +02:00
#include "cmCTestGenericHandler.h"
#include "cmGlobalGenerator.h"
2016-10-30 18:24:19 +01:00
#include "cmMakefile.h"
#include "cmSystemTools.h"
2016-07-09 11:21:54 +02:00
#include "cmake.h"
2016-10-30 18:24:19 +01:00
#include <sstream>
#include <string.h>
class cmExecutionStatus;
cmCTestBuildCommand::cmCTestBuildCommand()
{
2016-10-30 18:24:19 +01:00
this->GlobalGenerator = CM_NULLPTR;
2009-10-04 10:30:41 +03:00
this->Arguments[ctb_NUMBER_ERRORS] = "NUMBER_ERRORS";
2010-03-17 14:00:29 +02:00
this->Arguments[ctb_NUMBER_WARNINGS] = "NUMBER_WARNINGS";
this->Arguments[ctb_TARGET] = "TARGET";
this->Arguments[ctb_CONFIGURATION] = "CONFIGURATION";
this->Arguments[ctb_FLAGS] = "FLAGS";
this->Arguments[ctb_PROJECT_NAME] = "PROJECT_NAME";
2016-10-30 18:24:19 +01:00
this->Arguments[ctb_LAST] = CM_NULLPTR;
2009-10-04 10:30:41 +03:00
this->Last = ctb_LAST;
}
cmCTestBuildCommand::~cmCTestBuildCommand()
{
2016-07-09 11:21:54 +02:00
if (this->GlobalGenerator) {
delete this->GlobalGenerator;
2016-10-30 18:24:19 +01:00
this->GlobalGenerator = CM_NULLPTR;
2016-07-09 11:21:54 +02:00
}
}
cmCTestGenericHandler* cmCTestBuildCommand::InitializeHandler()
{
2016-07-09 11:21:54 +02:00
cmCTestGenericHandler* handler = this->CTest->GetInitializedHandler("build");
if (!handler) {
this->SetError("internal CTest error. Cannot instantiate build handler");
2016-10-30 18:24:19 +01:00
return CM_NULLPTR;
2016-07-09 11:21:54 +02:00
}
this->Handler = (cmCTestBuildHandler*)handler;
2010-03-17 14:00:29 +02:00
2016-07-09 11:21:54 +02:00
const char* ctestBuildCommand =
this->Makefile->GetDefinition("CTEST_BUILD_COMMAND");
if (ctestBuildCommand && *ctestBuildCommand) {
2015-08-17 11:37:30 +02:00
this->CTest->SetCTestConfiguration("MakeCommand", ctestBuildCommand,
2016-07-09 11:21:54 +02:00
this->Quiet);
} else {
const char* cmakeGeneratorName =
this->Makefile->GetDefinition("CTEST_CMAKE_GENERATOR");
const char* cmakeProjectName =
(this->Values[ctb_PROJECT_NAME] && *this->Values[ctb_PROJECT_NAME])
2010-03-17 14:00:29 +02:00
? this->Values[ctb_PROJECT_NAME]
: this->Makefile->GetDefinition("CTEST_PROJECT_NAME");
// Build configuration is determined by: CONFIGURATION argument,
// or CTEST_BUILD_CONFIGURATION script variable, or
// CTEST_CONFIGURATION_TYPE script variable, or ctest -C command
// line argument... in that order.
//
2016-07-09 11:21:54 +02:00
const char* ctestBuildConfiguration =
this->Makefile->GetDefinition("CTEST_BUILD_CONFIGURATION");
const char* cmakeBuildConfiguration =
(this->Values[ctb_CONFIGURATION] && *this->Values[ctb_CONFIGURATION])
2010-03-17 14:00:29 +02:00
? this->Values[ctb_CONFIGURATION]
: ((ctestBuildConfiguration && *ctestBuildConfiguration)
2016-07-09 11:21:54 +02:00
? ctestBuildConfiguration
: this->CTest->GetConfigType().c_str());
2010-03-17 14:00:29 +02:00
2016-07-09 11:21:54 +02:00
const char* cmakeBuildAdditionalFlags =
(this->Values[ctb_FLAGS] && *this->Values[ctb_FLAGS])
2010-03-17 14:00:29 +02:00
? this->Values[ctb_FLAGS]
: this->Makefile->GetDefinition("CTEST_BUILD_FLAGS");
2016-07-09 11:21:54 +02:00
const char* cmakeBuildTarget =
(this->Values[ctb_TARGET] && *this->Values[ctb_TARGET])
2010-03-17 14:00:29 +02:00
? this->Values[ctb_TARGET]
: this->Makefile->GetDefinition("CTEST_BUILD_TARGET");
2016-07-09 11:21:54 +02:00
if (cmakeGeneratorName && *cmakeGeneratorName && cmakeProjectName &&
*cmakeProjectName) {
if (!cmakeBuildConfiguration) {
cmakeBuildConfiguration = "Release";
2016-07-09 11:21:54 +02:00
}
if (this->GlobalGenerator) {
if (this->GlobalGenerator->GetName() != cmakeGeneratorName) {
delete this->GlobalGenerator;
2016-10-30 18:24:19 +01:00
this->GlobalGenerator = CM_NULLPTR;
}
2016-07-09 11:21:54 +02:00
}
if (!this->GlobalGenerator) {
this->GlobalGenerator =
this->Makefile->GetCMakeInstance()->CreateGlobalGenerator(
cmakeGeneratorName);
2016-07-09 11:21:54 +02:00
if (!this->GlobalGenerator) {
2014-08-03 19:52:23 +02:00
std::string e = "could not create generator named \"";
e += cmakeGeneratorName;
e += "\"";
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e);
cmSystemTools::SetFatalErrorOccured();
2016-10-30 18:24:19 +01:00
return CM_NULLPTR;
}
2016-07-09 11:21:54 +02:00
}
if (strlen(cmakeBuildConfiguration) == 0) {
2016-10-30 18:24:19 +01:00
const char* config = CM_NULLPTR;
#ifdef CMAKE_INTDIR
config = CMAKE_INTDIR;
#endif
2016-07-09 11:21:54 +02:00
if (!config) {
config = "Debug";
}
2016-07-09 11:21:54 +02:00
cmakeBuildConfiguration = config;
}
2010-03-17 14:00:29 +02:00
2013-11-03 12:27:13 +02:00
std::string dir = this->CTest->GetCTestConfiguration("BuildDirectory");
2016-07-09 11:21:54 +02:00
std::string buildCommand =
this->GlobalGenerator->GenerateCMakeBuildCommand(
cmakeBuildTarget ? cmakeBuildTarget : "", cmakeBuildConfiguration,
2015-08-17 11:37:30 +02:00
cmakeBuildAdditionalFlags ? cmakeBuildAdditionalFlags : "",
this->Makefile->IgnoreErrorsCMP0061());
cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
2016-07-09 11:21:54 +02:00
"SetMakeCommand:" << buildCommand << "\n",
this->Quiet);
2015-08-17 11:37:30 +02:00
this->CTest->SetCTestConfiguration("MakeCommand", buildCommand.c_str(),
2016-07-09 11:21:54 +02:00
this->Quiet);
} else {
2015-04-27 22:25:09 +02:00
std::ostringstream ostr;
2016-07-09 11:21:54 +02:00
/* clang-format off */
2010-03-17 14:00:29 +02:00
ostr << "has no project to build. If this is a "
"\"built with CMake\" project, verify that CTEST_CMAKE_GENERATOR "
"and CTEST_PROJECT_NAME are set."
"\n"
"CTEST_PROJECT_NAME is usually set in CTestConfig.cmake. Verify "
"that CTestConfig.cmake exists, or CTEST_PROJECT_NAME "
"is set in the script, or PROJECT_NAME is passed as an argument "
"to ctest_build."
"\n"
"Alternatively, set CTEST_BUILD_COMMAND to build the project "
"with a custom command line.";
2016-07-09 11:21:54 +02:00
/* clang-format on */
2015-04-27 22:25:09 +02:00
this->SetError(ostr.str());
2016-10-30 18:24:19 +01:00
return CM_NULLPTR;
}
2016-07-09 11:21:54 +02:00
}
2016-07-09 11:21:54 +02:00
if (const char* useLaunchers =
this->Makefile->GetDefinition("CTEST_USE_LAUNCHERS")) {
2015-08-17 11:37:30 +02:00
this->CTest->SetCTestConfiguration("UseLaunchers", useLaunchers,
2016-07-09 11:21:54 +02:00
this->Quiet);
}
2009-10-04 10:30:41 +03:00
2015-08-17 11:37:30 +02:00
handler->SetQuiet(this->Quiet);
return handler;
}
2009-10-04 10:30:41 +03:00
bool cmCTestBuildCommand::InitialPass(std::vector<std::string> const& args,
2016-07-09 11:21:54 +02:00
cmExecutionStatus& status)
2009-10-04 10:30:41 +03:00
{
2016-07-09 11:21:54 +02:00
bool ret = cmCTestHandlerCommand::InitialPass(args, status);
if (this->Values[ctb_NUMBER_ERRORS] && *this->Values[ctb_NUMBER_ERRORS]) {
2015-04-27 22:25:09 +02:00
std::ostringstream str;
2009-10-04 10:30:41 +03:00
str << this->Handler->GetTotalErrors();
2016-07-09 11:21:54 +02:00
this->Makefile->AddDefinition(this->Values[ctb_NUMBER_ERRORS],
str.str().c_str());
}
if (this->Values[ctb_NUMBER_WARNINGS] &&
*this->Values[ctb_NUMBER_WARNINGS]) {
2015-04-27 22:25:09 +02:00
std::ostringstream str;
2009-10-04 10:30:41 +03:00
str << this->Handler->GetTotalWarnings();
2016-07-09 11:21:54 +02:00
this->Makefile->AddDefinition(this->Values[ctb_NUMBER_WARNINGS],
str.str().c_str());
}
2009-10-04 10:30:41 +03:00
return ret;
}