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"
|
2004-09-07 17:17:15 +04:00
|
|
|
#include "cmake.h"
|
2009-02-06 00:31:37 +03:00
|
|
|
#include "cmXMLSafe.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
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
//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,
|
|
|
|
"Configure project" << std::endl, this->Quiet);
|
2006-03-10 23:03:09 +03:00
|
|
|
std::string cCommand
|
|
|
|
= this->CTest->GetCTestConfiguration("ConfigureCommand");
|
2015-01-15 02:31:49 +03:00
|
|
|
if (cCommand.empty())
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2006-03-09 19:17:10 +03:00
|
|
|
"Cannot find ConfigureCommand key in the DartConfiguration.tcl"
|
|
|
|
<< std::endl);
|
2005-01-27 23:54:47 +03:00
|
|
|
return -1;
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
|
|
|
|
2006-03-09 19:17:10 +03:00
|
|
|
std::string buildDirectory
|
2006-03-10 23:03:09 +03:00
|
|
|
= this->CTest->GetCTestConfiguration("BuildDirectory");
|
2015-01-15 02:31:49 +03:00
|
|
|
if (buildDirectory.empty())
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2006-03-09 19:17:10 +03:00
|
|
|
"Cannot find BuildDirectory key in the DartConfiguration.tcl"
|
|
|
|
<< std::endl);
|
2005-01-27 23:54:47 +03:00
|
|
|
return -1;
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
double elapsed_time_start = cmSystemTools::GetTime();
|
|
|
|
std::string output;
|
|
|
|
int retVal = 0;
|
|
|
|
int res = 0;
|
2006-03-10 23:03:09 +03:00
|
|
|
if ( !this->CTest->GetShowOnly() )
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
2006-03-09 19:17:10 +03:00
|
|
|
cmGeneratedFileStream os;
|
2009-01-12 18:37:55 +03:00
|
|
|
if(!this->StartResultingXML(cmCTest::PartConfigure, "Configure", os))
|
2004-09-07 17:17:15 +04:00
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE, "Cannot open configure file"
|
2006-03-09 19:17:10 +03:00
|
|
|
<< std::endl);
|
2004-09-07 17:17:15 +04:00
|
|
|
return 1;
|
|
|
|
}
|
2006-03-10 23:03:09 +03:00
|
|
|
std::string start_time = this->CTest->CurrentTime();
|
2008-01-30 19:17:36 +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,
|
|
|
|
"Configure with command: " << cCommand << std::endl, this->Quiet);
|
2014-08-04 23:16:40 +04:00
|
|
|
res = this->CTest->RunMakeCommand(cCommand.c_str(), output,
|
2004-09-07 17:17:15 +04:00
|
|
|
&retVal, buildDirectory.c_str(),
|
2005-06-01 01:32:40 +04:00
|
|
|
0, ofs);
|
2004-09-07 17:17:15 +04:00
|
|
|
|
|
|
|
if ( ofs )
|
|
|
|
{
|
|
|
|
ofs.close();
|
|
|
|
}
|
2006-03-09 19:17:10 +03:00
|
|
|
|
2004-09-07 17:17:15 +04:00
|
|
|
if ( os )
|
|
|
|
{
|
2009-01-12 17:11:29 +03:00
|
|
|
this->CTest->StartXML(os, this->AppendXML);
|
2004-09-07 17:17:15 +04:00
|
|
|
os << "<Configure>\n"
|
2006-03-09 19:17:10 +03:00
|
|
|
<< "\t<StartDateTime>" << start_time << "</StartDateTime>"
|
2008-01-30 19:17:36 +03:00
|
|
|
<< std::endl
|
|
|
|
<< "\t<StartConfigureTime>" << start_time_time
|
|
|
|
<< "</StartConfigureTime>\n";
|
2014-03-11 16:35:32 +04:00
|
|
|
os << "<ConfigureCommand>" << cCommand << "</ConfigureCommand>"
|
2006-03-09 19:17:10 +03:00
|
|
|
<< std::endl;
|
2015-02-17 20:38:52 +03:00
|
|
|
cmCTestOptionalLog(this->CTest, DEBUG, "End" << std::endl, this->Quiet);
|
2009-02-06 00:31:37 +03:00
|
|
|
os << "<Log>" << cmXMLSafe(output) << "</Log>" << std::endl;
|
2006-03-10 23:03:09 +03:00
|
|
|
std::string end_time = this->CTest->CurrentTime();
|
2004-09-07 17:17:15 +04:00
|
|
|
os << "\t<ConfigureStatus>" << retVal << "</ConfigureStatus>\n"
|
|
|
|
<< "\t<EndDateTime>" << end_time << "</EndDateTime>\n"
|
2012-08-13 21:42:58 +04:00
|
|
|
<< "\t<EndConfigureTime>" <<
|
2008-01-30 19:17:36 +03:00
|
|
|
static_cast<unsigned int>(cmSystemTools::GetTime())
|
|
|
|
<< "</EndConfigureTime>\n"
|
2006-03-09 19:17:10 +03:00
|
|
|
<< "<ElapsedMinutes>"
|
2004-09-07 17:17:15 +04:00
|
|
|
<< static_cast<int>(
|
|
|
|
(cmSystemTools::GetTime() - elapsed_time_start)/6)/10.0
|
|
|
|
<< "</ElapsedMinutes>"
|
|
|
|
<< "</Configure>" << std::endl;
|
2006-03-10 23:03:09 +03:00
|
|
|
this->CTest->EndXML(os);
|
2006-03-09 19:17:10 +03:00
|
|
|
}
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-02-17 20:38:52 +03:00
|
|
|
cmCTestOptionalLog(this->CTest, DEBUG,
|
|
|
|
"Configure with command: " << cCommand << std::endl, this->Quiet);
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
|
|
|
if (! res || retVal )
|
|
|
|
{
|
2006-03-10 23:03:09 +03:00
|
|
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
2008-12-30 17:13:02 +03:00
|
|
|
"Error(s) when configuring the project" << std::endl);
|
2005-01-27 23:54:47 +03:00
|
|
|
return -1;
|
2004-09-07 17:17:15 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|