Add return value support and add documentation

This commit is contained in:
Andy Cedilnik 2002-08-08 15:29:19 -04:00
parent f3a656e391
commit a898cfb17a
2 changed files with 49 additions and 17 deletions

View File

@ -28,8 +28,10 @@ bool cmExecProgramCommand::InitialPass(std::vector<std::string> const& args)
std::string arguments; std::string arguments;
bool doingargs = false; bool doingargs = false;
int count = 0; int count = 0;
std::string variable; std::string output_variable;
bool havevariable = false; bool haveoutput_variable = false;
std::string return_variable;
bool havereturn_variable = false;
std::string e_command; std::string e_command;
for(size_t i=0; i < args.size(); ++i) for(size_t i=0; i < args.size(); ++i)
{ {
@ -37,29 +39,49 @@ bool cmExecProgramCommand::InitialPass(std::vector<std::string> const& args)
{ {
count++; count++;
doingargs = false; doingargs = false;
havevariable = true; havereturn_variable = false;
haveoutput_variable = true;
} }
else if ( havevariable ) else if ( haveoutput_variable )
{ {
if ( variable.size() > 0 ) if ( output_variable.size() > 0 )
{ {
this->SetError("called with incorrect number of arguments"); this->SetError("called with incorrect number of arguments");
return false; return false;
} }
variable = args[i]; output_variable = args[i];
count ++; count ++;
} }
else if(args[i] == "RETURN_VALUE")
{
count++;
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];
count ++;
}
else if(args[i] == "ARGS")
{
count++;
havereturn_variable = false;
haveoutput_variable = false;
doingargs = true;
}
else if(doingargs) else if(doingargs)
{ {
arguments += args[i]; arguments += args[i];
arguments += " "; arguments += " ";
count++; count++;
} }
else if(args[i] == "ARGS")
{
count++;
doingargs = true;
}
} }
std::string command; std::string command;
@ -73,24 +95,32 @@ bool cmExecProgramCommand::InitialPass(std::vector<std::string> const& args)
{ {
command = args[0]; command = args[0];
} }
int retVal = 0;
std::string output; std::string output;
if(args.size() - count == 2) if(args.size() - count == 2)
{ {
cmSystemTools::MakeDirectory(args[1].c_str()); cmSystemTools::MakeDirectory(args[1].c_str());
cmSystemTools::RunCommand(command.c_str(), output, cmSystemTools::RunCommand(command.c_str(), output, retVal,
cmSystemTools::ConvertToOutputPath(args[1].c_str()).c_str()); cmSystemTools::ConvertToOutputPath(args[1].c_str()).c_str());
} }
else else
{ {
cmSystemTools::RunCommand(command.c_str(), output); cmSystemTools::RunCommand(command.c_str(), output, retVal);
} }
if ( variable.size() > 0 ) if ( output_variable.size() > 0 )
{ {
std::string::size_type first = output.find_first_not_of(" \n\t\r"); 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"); std::string::size_type last = output.find_last_not_of(" \n\t\r");
std::string coutput = std::string(output, first, last); std::string coutput = std::string(output, first, last);
m_Makefile->AddDefinition(variable.c_str(), coutput.c_str()); 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);
} }
return true; return true;

View File

@ -64,11 +64,13 @@ public:
virtual const char* GetFullDocumentation() virtual const char* GetFullDocumentation()
{ {
return return
"EXEC_PROGRAM(Executable [Directory to run in] [ARGS arguments to executable] [OUTPUT_VARIABLE var])" "EXEC_PROGRAM(Executable [Directory to run in] [ARGS arguments to executable] [OUTPUT_VARIABLE var] [RETURN_VALUE var])"
"The executable is run in the optionally specified Directory. The executable " "The executable is run in the optionally specified Directory. The executable "
"can include arguments if it is double quoted, but it is better to use the " "can include arguments if it is double quoted, but it is better to use the "
"optional ARGS argument to specify arguments to the program. This is because " "optional ARGS argument to specify arguments to the program. This is because "
"cmake will then be able to escape spaces in the Executable path."; "cmake will then be able to escape spaces in the Executable path. An optiona "
"argument OUPUT_VARIABLE specifies a variable to which the output will be set. "
"To capture the return value of the execution, use RETURN_VALUE variable.";
} }
cmTypeMacro(cmExecProgramCommand, cmCommand); cmTypeMacro(cmExecProgramCommand, cmCommand);