2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-04 19:34:59 +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.
|
2001-05-04 19:34:59 +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.
|
|
|
|
============================================================================*/
|
2001-05-08 02:11:16 +04:00
|
|
|
#include "cmExecProgramCommand.h"
|
2001-05-04 19:34:59 +04:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
2001-05-08 02:11:16 +04:00
|
|
|
// cmExecProgramCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmExecProgramCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
|
|
|
if(args.size() < 1 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2002-04-04 01:14:06 +04:00
|
|
|
std::string arguments;
|
|
|
|
bool doingargs = false;
|
|
|
|
int count = 0;
|
2002-08-08 23:29:19 +04:00
|
|
|
std::string output_variable;
|
|
|
|
bool haveoutput_variable = false;
|
|
|
|
std::string return_variable;
|
|
|
|
bool havereturn_variable = false;
|
2002-04-08 21:36:18 +04:00
|
|
|
for(size_t i=0; i < args.size(); ++i)
|
2002-04-04 01:14:06 +04:00
|
|
|
{
|
2002-08-08 23:13:20 +04:00
|
|
|
if(args[i] == "OUTPUT_VARIABLE")
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
doingargs = false;
|
2002-08-08 23:29:19 +04:00
|
|
|
havereturn_variable = false;
|
|
|
|
haveoutput_variable = true;
|
2002-08-08 23:13:20 +04:00
|
|
|
}
|
2002-08-08 23:29:19 +04:00
|
|
|
else if ( haveoutput_variable )
|
2002-08-08 23:13:20 +04:00
|
|
|
{
|
2002-08-08 23:29:19 +04:00
|
|
|
if ( output_variable.size() > 0 )
|
2002-08-08 23:13:20 +04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2002-08-08 23:29:19 +04:00
|
|
|
output_variable = args[i];
|
2002-10-24 00:57:21 +04:00
|
|
|
haveoutput_variable = false;
|
2002-08-08 23:13:20 +04:00
|
|
|
count ++;
|
|
|
|
}
|
2002-08-08 23:29:19 +04:00
|
|
|
else if(args[i] == "RETURN_VALUE")
|
2002-04-04 01:14:06 +04:00
|
|
|
{
|
|
|
|
count++;
|
2002-08-08 23:29:19 +04:00
|
|
|
doingargs = false;
|
|
|
|
haveoutput_variable = false;
|
|
|
|
havereturn_variable = true;
|
|
|
|
}
|
|
|
|
else if ( havereturn_variable )
|
|
|
|
{
|
|
|
|
if ( return_variable.size() > 0 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return_variable = args[i];
|
2002-10-24 00:57:21 +04:00
|
|
|
havereturn_variable = false;
|
2002-08-08 23:29:19 +04:00
|
|
|
count ++;
|
2002-04-04 01:14:06 +04:00
|
|
|
}
|
|
|
|
else if(args[i] == "ARGS")
|
|
|
|
{
|
|
|
|
count++;
|
2002-08-08 23:29:19 +04:00
|
|
|
havereturn_variable = false;
|
|
|
|
haveoutput_variable = false;
|
2002-04-04 01:14:06 +04:00
|
|
|
doingargs = true;
|
|
|
|
}
|
2002-08-08 23:29:19 +04:00
|
|
|
else if(doingargs)
|
|
|
|
{
|
|
|
|
arguments += args[i];
|
|
|
|
arguments += " ";
|
|
|
|
count++;
|
|
|
|
}
|
2002-04-04 01:14:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string command;
|
|
|
|
if(arguments.size())
|
|
|
|
{
|
2004-06-24 00:34:38 +04:00
|
|
|
command = cmSystemTools::ConvertToRunCommandPath(args[0].c_str());
|
2002-04-04 01:14:06 +04:00
|
|
|
command += " ";
|
|
|
|
command += arguments;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
command = args[0];
|
|
|
|
}
|
2002-10-24 00:57:21 +04:00
|
|
|
bool verbose = true;
|
|
|
|
if(output_variable.size() > 0)
|
|
|
|
{
|
|
|
|
verbose = false;
|
|
|
|
}
|
2002-08-08 23:29:19 +04:00
|
|
|
int retVal = 0;
|
2001-05-04 19:34:59 +04:00
|
|
|
std::string output;
|
2004-06-24 00:34:38 +04:00
|
|
|
bool result = true;
|
2002-04-04 01:14:06 +04:00
|
|
|
if(args.size() - count == 2)
|
2001-05-08 02:11:16 +04:00
|
|
|
{
|
|
|
|
cmSystemTools::MakeDirectory(args[1].c_str());
|
2004-06-24 00:34:38 +04:00
|
|
|
result = cmSystemTools::RunCommand(command.c_str(), output, retVal,
|
|
|
|
args[1].c_str(), verbose);
|
2001-05-08 02:11:16 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-05-10 23:08:38 +04:00
|
|
|
result = cmSystemTools::RunCommand(command.c_str(), output,
|
|
|
|
retVal, 0, verbose);
|
2001-05-08 02:11:16 +04:00
|
|
|
}
|
2004-06-24 16:57:54 +04:00
|
|
|
if(!result)
|
|
|
|
{
|
|
|
|
retVal = -1;
|
|
|
|
}
|
2002-08-08 23:13:20 +04:00
|
|
|
|
2002-08-08 23:29:19 +04:00
|
|
|
if ( output_variable.size() > 0 )
|
2002-08-08 23:13:20 +04:00
|
|
|
{
|
|
|
|
std::string::size_type first = output.find_first_not_of(" \n\t\r");
|
|
|
|
std::string::size_type last = output.find_last_not_of(" \n\t\r");
|
2002-11-08 23:46:08 +03:00
|
|
|
if(first == std::string::npos)
|
|
|
|
{
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if(last == std::string::npos)
|
|
|
|
{
|
|
|
|
last = output.size()-1;
|
|
|
|
}
|
|
|
|
|
2002-10-08 18:53:32 +04:00
|
|
|
std::string coutput = std::string(output, first, last-first+1);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition(output_variable.c_str(), coutput.c_str());
|
2002-08-08 23:29:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( return_variable.size() > 0 )
|
|
|
|
{
|
|
|
|
char buffer[100];
|
|
|
|
sprintf(buffer, "%d", retVal);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition(return_variable.c_str(), buffer);
|
2002-08-08 23:13:20 +04:00
|
|
|
}
|
|
|
|
|
2004-06-24 16:57:54 +04:00
|
|
|
return true;
|
2001-05-04 19:34:59 +04:00
|
|
|
}
|
|
|
|
|