2001-05-04 19:34:59 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-05-04 19:34:59 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-05-04 19:34:59 +04:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-05-04 19:34:59 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
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
|
2002-03-06 02:41:24 +03:00
|
|
|
bool cmExecProgramCommand::InitialPass(std::vector<std::string> const& args)
|
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
|
|
|
|
{
|
2004-06-24 00:34: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);
|
2002-08-08 23:29:19 +04:00
|
|
|
m_Makefile->AddDefinition(output_variable.c_str(), coutput.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( return_variable.size() > 0 )
|
|
|
|
{
|
|
|
|
char buffer[100];
|
|
|
|
sprintf(buffer, "%d", retVal);
|
|
|
|
m_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
|
|
|
}
|
|
|
|
|