2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2004-09-07 17:17:15 +04:00
|
|
|
|
|
|
|
#include "cmCTestConfigureHandler.h"
|
|
|
|
|
|
|
|
#include "cmCTest.h"
|
2005-01-27 18:15:01 +03:00
|
|
|
#include "cmGeneratedFileStream.h"
|
2015-05-24 00:41:09 +03:00
|
|
|
#include "cmXMLWriter.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmake.h"
|
2004-09-07 17:17:15 +04:00
|
|
|
#include <cmsys/Process.h>
|
|
|
|
|
|
|
|
cmCTestConfigureHandler::cmCTestConfigureHandler()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-06-17 21:04:56 +04:00
|
|
|
void cmCTestConfigureHandler::Initialize()
|
|
|
|
{
|
2005-06-23 21:04:18 +04:00
|
|
|
this->Superclass::Initialize();
|
2005-06-17 21:04:56 +04:00
|
|
|
}
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
// clearly it would be nice if this were broken up into a few smaller
|
|
|
|
// functions and commented...
|
2005-01-27 23:54:47 +03:00
|
|
|
int cmCTestConfigureHandler::ProcessHandler()
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
2015-02-17 20:38:52 +03:00
|
|
|
cmCTestOptionalLog(this->CTest, HANDLER_OUTPUT,
|
2016-05-16 17:34:04 +03:00
|
|
|
"Configure project" << std::endl, this->Quiet);
|
|
|
|
std::string cCommand =
|
|
|
|
this->CTest->GetCTestConfiguration("ConfigureCommand");
|
|
|
|
if (cCommand.empty()) {
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2016-05-16 17:34:04 +03:00
|
|
|
"Cannot find ConfigureCommand key in the DartConfiguration.tcl"
|
|
|
|
<< std::endl);
|
2005-01-27 23:54:47 +03:00
|
|
|
return -1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string buildDirectory =
|
|
|
|
this->CTest->GetCTestConfiguration("BuildDirectory");
|
|
|
|
if (buildDirectory.empty()) {
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2016-05-16 17:34:04 +03:00
|
|
|
"Cannot find BuildDirectory key in the DartConfiguration.tcl"
|
|
|
|
<< std::endl);
|
2005-01-27 23:54:47 +03:00
|
|
|
return -1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-09-07 17:17:15 +04:00
|
|
|
|
|
|
|
double elapsed_time_start = cmSystemTools::GetTime();
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
|
|
|
int res = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->CTest->GetShowOnly()) {
|
2006-03-09 19:17:10 +03:00
|
|
|
cmGeneratedFileStream os;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->StartResultingXML(cmCTest::PartConfigure, "Configure", os)) {
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE, "Cannot open configure file"
|
2016-05-16 17:34:04 +03:00
|
|
|
<< std::endl);
|
2004-09-07 17:17:15 +04:00
|
|
|
return 1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
std::string start_time = this->CTest->CurrentTime();
|
2016-05-16 17:34:04 +03:00
|
|
|
unsigned int start_time_time =
|
|
|
|
static_cast<unsigned int>(cmSystemTools::GetTime());
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2005-01-27 18:15:01 +03:00
|
|
|
cmGeneratedFileStream ofs;
|
2005-06-23 21:04:18 +04:00
|
|
|
this->StartLogFile("Configure", ofs);
|
2015-02-17 20:38:52 +03:00
|
|
|
cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT,
|
2016-05-16 17:34:04 +03:00
|
|
|
"Configure with command: " << cCommand << std::endl,
|
|
|
|
this->Quiet);
|
|
|
|
res = this->CTest->RunMakeCommand(cCommand.c_str(), output, &retVal,
|
|
|
|
buildDirectory.c_str(), 0, ofs);
|
2004-09-07 17:17:15 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (ofs) {
|
2004-09-07 17:17:15 +04:00
|
|
|
ofs.close();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (os) {
|
2015-05-24 00:41:09 +03:00
|
|
|
cmXMLWriter xml(os);
|
|
|
|
this->CTest->StartXML(xml, this->AppendXML);
|
|
|
|
xml.StartElement("Configure");
|
|
|
|
xml.Element("StartDateTime", start_time);
|
|
|
|
xml.Element("StartConfigureTime", start_time_time);
|
|
|
|
xml.Element("ConfigureCommand", cCommand);
|
2015-02-17 20:38:52 +03:00
|
|
|
cmCTestOptionalLog(this->CTest, DEBUG, "End" << std::endl, this->Quiet);
|
2015-05-24 00:41:09 +03:00
|
|
|
xml.Element("Log", output);
|
|
|
|
xml.Element("ConfigureStatus", retVal);
|
|
|
|
xml.Element("EndDateTime", this->CTest->CurrentTime());
|
|
|
|
xml.Element("EndConfigureTime",
|
2016-05-16 17:34:04 +03:00
|
|
|
static_cast<unsigned int>(cmSystemTools::GetTime()));
|
|
|
|
xml.Element(
|
|
|
|
"ElapsedMinutes",
|
|
|
|
static_cast<int>((cmSystemTools::GetTime() - elapsed_time_start) / 6) /
|
|
|
|
10.0);
|
2015-05-24 00:41:09 +03:00
|
|
|
xml.EndElement(); // Configure
|
|
|
|
this->CTest->EndXML(xml);
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2015-02-17 20:38:52 +03:00
|
|
|
cmCTestOptionalLog(this->CTest, DEBUG,
|
2016-05-16 17:34:04 +03:00
|
|
|
"Configure with command: " << cCommand << std::endl,
|
|
|
|
this->Quiet);
|
|
|
|
}
|
|
|
|
if (!res || retVal) {
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2016-05-16 17:34:04 +03:00
|
|
|
"Error(s) when configuring the project" << std::endl);
|
2005-01-27 23:54:47 +03:00
|
|
|
return -1;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2004-09-07 17:17:15 +04:00
|
|
|
return 0;
|
|
|
|
}
|