2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2007-12-03 17:44:42 +00:00
|
|
|
#include "cmFunctionCommand.h"
|
|
|
|
|
2016-10-25 18:35:04 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include "cmAlgorithms.h"
|
|
|
|
#include "cmExecutionStatus.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmPolicies.h"
|
2016-10-19 19:59:14 +00:00
|
|
|
#include "cmState.h"
|
|
|
|
#include "cmSystemTools.h"
|
2007-12-03 17:44:42 +00:00
|
|
|
|
|
|
|
// define the class for function commands
|
|
|
|
class cmFunctionHelperCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmFunctionHelperCommand() {}
|
|
|
|
|
|
|
|
///! clean up any memory allocated by the function
|
2016-06-27 19:25:27 +00:00
|
|
|
~cmFunctionHelperCommand() CM_OVERRIDE {}
|
2007-12-03 17:44:42 +00:00
|
|
|
|
2012-01-02 23:54:08 +00:00
|
|
|
/**
|
2016-10-22 22:45:08 +00:00
|
|
|
* This determines if the command is defined in a cmake script.
|
2012-01-02 23:54:08 +00:00
|
|
|
*/
|
2016-10-22 22:45:08 +00:00
|
|
|
bool IsUserDefined() const CM_OVERRIDE { return true; }
|
2012-01-02 23:54:08 +00:00
|
|
|
|
2007-12-03 17:44:42 +00:00
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
2016-06-27 19:25:27 +00:00
|
|
|
cmCommand* Clone() CM_OVERRIDE
|
2007-12-03 17:44:42 +00:00
|
|
|
{
|
2016-05-16 14:34:04 +00:00
|
|
|
cmFunctionHelperCommand* newC = new cmFunctionHelperCommand;
|
2007-12-03 17:44:42 +00:00
|
|
|
// we must copy when we clone
|
|
|
|
newC->Args = this->Args;
|
|
|
|
newC->Functions = this->Functions;
|
2009-01-22 18:16:47 +00:00
|
|
|
newC->Policies = this->Policies;
|
2015-05-23 20:21:08 +00:00
|
|
|
newC->FilePath = this->FilePath;
|
2007-12-03 17:44:42 +00:00
|
|
|
return newC;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
2016-06-27 19:25:27 +00:00
|
|
|
bool IsScriptable() const CM_OVERRIDE { return true; }
|
2007-12-03 17:44:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2016-06-27 19:25:27 +00:00
|
|
|
bool InvokeInitialPass(const std::vector<cmListFileArgument>& args,
|
|
|
|
cmExecutionStatus&) CM_OVERRIDE;
|
2007-12-03 17:44:42 +00:00
|
|
|
|
2016-06-27 19:25:27 +00:00
|
|
|
bool InitialPass(std::vector<std::string> const&,
|
|
|
|
cmExecutionStatus&) CM_OVERRIDE
|
2016-05-16 14:34:04 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2007-12-03 17:44:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2016-06-27 19:25:27 +00:00
|
|
|
std::string GetName() const CM_OVERRIDE { return this->Args[0]; }
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2007-12-03 17:44:42 +00:00
|
|
|
std::vector<std::string> Args;
|
|
|
|
std::vector<cmListFileFunction> Functions;
|
2009-01-22 18:16:47 +00:00
|
|
|
cmPolicies::PolicyMap Policies;
|
2015-05-23 20:21:08 +00:00
|
|
|
std::string FilePath;
|
2007-12-03 17:44:42 +00:00
|
|
|
};
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
bool cmFunctionHelperCommand::InvokeInitialPass(
|
2016-09-06 19:25:26 +00:00
|
|
|
const std::vector<cmListFileArgument>& args, cmExecutionStatus& inStatus)
|
2007-12-03 17:44:42 +00:00
|
|
|
{
|
|
|
|
// Expand the argument list to the function.
|
|
|
|
std::vector<std::string> expandedArgs;
|
|
|
|
this->Makefile->ExpandArguments(args, expandedArgs);
|
|
|
|
|
|
|
|
// make sure the number of arguments passed is at least the number
|
|
|
|
// required by the signature
|
2016-05-16 14:34:04 +00:00
|
|
|
if (expandedArgs.size() < this->Args.size() - 1) {
|
2007-12-03 17:44:42 +00:00
|
|
|
std::string errorMsg =
|
|
|
|
"Function invoked with incorrect arguments for function named: ";
|
|
|
|
errorMsg += this->Args[0];
|
2014-03-10 23:04:11 +00:00
|
|
|
this->SetError(errorMsg);
|
2007-12-03 17:44:42 +00:00
|
|
|
return false;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2007-12-03 17:44:42 +00:00
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
cmMakefile::FunctionPushPop functionScope(this->Makefile, this->FilePath,
|
2015-05-31 16:19:58 +00:00
|
|
|
this->Policies);
|
2009-01-22 18:16:47 +00:00
|
|
|
|
2007-12-03 17:44:42 +00:00
|
|
|
// set the value of argc
|
2015-01-05 19:31:31 +00:00
|
|
|
std::ostringstream strStream;
|
2007-12-03 17:44:42 +00:00
|
|
|
strStream << expandedArgs.size();
|
2016-05-16 14:34:04 +00:00
|
|
|
this->Makefile->AddDefinition("ARGC", strStream.str().c_str());
|
2010-09-15 15:35:50 +00:00
|
|
|
this->Makefile->MarkVariableAsUsed("ARGC");
|
2007-12-03 17:44:42 +00:00
|
|
|
|
|
|
|
// set the values for ARGV0 ARGV1 ...
|
2016-05-16 14:34:04 +00:00
|
|
|
for (unsigned int t = 0; t < expandedArgs.size(); ++t) {
|
2015-01-05 19:31:31 +00:00
|
|
|
std::ostringstream tmpStream;
|
2007-12-04 15:43:33 +00:00
|
|
|
tmpStream << "ARGV" << t;
|
2016-05-16 14:34:04 +00:00
|
|
|
this->Makefile->AddDefinition(tmpStream.str(), expandedArgs[t].c_str());
|
2014-03-10 23:04:11 +00:00
|
|
|
this->Makefile->MarkVariableAsUsed(tmpStream.str());
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2007-12-03 17:44:42 +00:00
|
|
|
// define the formal arguments
|
2016-05-16 14:34:04 +00:00
|
|
|
for (unsigned int j = 1; j < this->Args.size(); ++j) {
|
|
|
|
this->Makefile->AddDefinition(this->Args[j], expandedArgs[j - 1].c_str());
|
|
|
|
}
|
2007-12-03 17:44:42 +00:00
|
|
|
|
|
|
|
// define ARGV and ARGN
|
2015-02-11 22:33:03 +00:00
|
|
|
std::string argvDef = cmJoin(expandedArgs, ";");
|
2016-05-16 14:34:04 +00:00
|
|
|
std::vector<std::string>::const_iterator eit =
|
|
|
|
expandedArgs.begin() + (this->Args.size() - 1);
|
2015-07-18 08:45:18 +00:00
|
|
|
std::string argnDef = cmJoin(cmMakeRange(eit, expandedArgs.end()), ";");
|
2007-12-03 17:44:42 +00:00
|
|
|
this->Makefile->AddDefinition("ARGV", argvDef.c_str());
|
2010-09-15 15:35:50 +00:00
|
|
|
this->Makefile->MarkVariableAsUsed("ARGV");
|
2007-12-03 17:44:42 +00:00
|
|
|
this->Makefile->AddDefinition("ARGN", argnDef.c_str());
|
2010-09-15 15:35:50 +00:00
|
|
|
this->Makefile->MarkVariableAsUsed("ARGN");
|
2007-12-03 17:44:42 +00:00
|
|
|
|
|
|
|
// Invoke all the functions that were collected in the block.
|
|
|
|
// for each function
|
2016-05-16 14:34:04 +00:00
|
|
|
for (unsigned int c = 0; c < this->Functions.size(); ++c) {
|
2008-01-23 15:28:26 +00:00
|
|
|
cmExecutionStatus status;
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!this->Makefile->ExecuteCommand(this->Functions[c], status) ||
|
2016-09-06 19:25:26 +00:00
|
|
|
status.GetNestedError()) {
|
2008-03-07 13:40:36 +00:00
|
|
|
// The error message should have already included the call stack
|
|
|
|
// so we do not need to report an error here.
|
2015-05-31 16:19:58 +00:00
|
|
|
functionScope.Quiet();
|
2016-09-06 19:25:26 +00:00
|
|
|
inStatus.SetNestedError(true);
|
2007-12-03 17:44:42 +00:00
|
|
|
return false;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
|
|
|
if (status.GetReturnInvoked()) {
|
2008-01-23 15:28:26 +00:00
|
|
|
return true;
|
2007-12-03 17:44:42 +00:00
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2007-12-03 17:44:42 +00:00
|
|
|
|
|
|
|
// pop scope on the makefile
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
bool cmFunctionFunctionBlocker::IsFunctionBlocked(
|
|
|
|
const cmListFileFunction& lff, cmMakefile& mf, cmExecutionStatus&)
|
2007-12-03 17:44:42 +00:00
|
|
|
{
|
|
|
|
// record commands until we hit the ENDFUNCTION
|
|
|
|
// at the ENDFUNCTION call we shift gears and start looking for invocations
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!cmSystemTools::Strucmp(lff.Name.c_str(), "function")) {
|
2007-12-03 17:44:42 +00:00
|
|
|
this->Depth++;
|
2016-05-16 14:34:04 +00:00
|
|
|
} else if (!cmSystemTools::Strucmp(lff.Name.c_str(), "endfunction")) {
|
2007-12-03 17:44:42 +00:00
|
|
|
// if this is the endfunction for this function then execute
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!this->Depth) {
|
2007-12-03 17:44:42 +00:00
|
|
|
// create a new command and add it to cmake
|
2016-05-16 14:34:04 +00:00
|
|
|
cmFunctionHelperCommand* f = new cmFunctionHelperCommand();
|
2007-12-03 17:44:42 +00:00
|
|
|
f->Args = this->Args;
|
|
|
|
f->Functions = this->Functions;
|
2015-05-23 20:21:08 +00:00
|
|
|
f->FilePath = this->GetStartingContext().FilePath;
|
2009-01-22 18:16:47 +00:00
|
|
|
mf.RecordPolicies(f->Policies);
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2007-12-03 17:44:42 +00:00
|
|
|
std::string newName = "_" + this->Args[0];
|
2015-04-11 10:52:14 +00:00
|
|
|
mf.GetState()->RenameCommand(this->Args[0], newName);
|
|
|
|
mf.GetState()->AddCommand(f);
|
2007-12-03 17:44:42 +00:00
|
|
|
|
|
|
|
// remove the function blocker now that the function is defined
|
2009-01-21 14:49:00 +00:00
|
|
|
mf.RemoveFunctionBlocker(this, lff);
|
2007-12-03 17:44:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
2016-09-16 20:45:24 +00:00
|
|
|
// decrement for each nested function that ends
|
|
|
|
this->Depth--;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2007-12-03 17:44:42 +00:00
|
|
|
|
|
|
|
// if it wasn't an endfunction and we are not executing then we must be
|
|
|
|
// recording
|
|
|
|
this->Functions.push_back(lff);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
bool cmFunctionFunctionBlocker::ShouldRemove(const cmListFileFunction& lff,
|
|
|
|
cmMakefile& mf)
|
2007-12-03 17:44:42 +00:00
|
|
|
{
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!cmSystemTools::Strucmp(lff.Name.c_str(), "endfunction")) {
|
2007-12-03 17:44:42 +00:00
|
|
|
std::vector<std::string> expandedArguments;
|
2015-05-23 18:32:05 +00:00
|
|
|
mf.ExpandArguments(lff.Arguments, expandedArguments,
|
|
|
|
this->GetStartingContext().FilePath.c_str());
|
2008-02-29 17:18:11 +00:00
|
|
|
// if the endfunction has arguments then make sure
|
2012-11-07 16:13:09 +00:00
|
|
|
// they match the ones in the opening function command
|
2008-02-29 17:18:11 +00:00
|
|
|
if ((expandedArguments.empty() ||
|
2016-05-16 14:34:04 +00:00
|
|
|
(expandedArguments[0] == this->Args[0]))) {
|
2007-12-03 17:44:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2007-12-03 17:44:42 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
bool cmFunctionCommand::InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus&)
|
2007-12-03 17:44:42 +00:00
|
|
|
{
|
2016-09-15 21:59:29 +00:00
|
|
|
if (args.empty()) {
|
2007-12-03 17:44:42 +00:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2007-12-03 17:44:42 +00:00
|
|
|
|
|
|
|
// create a function blocker
|
2016-05-16 14:34:04 +00:00
|
|
|
cmFunctionFunctionBlocker* f = new cmFunctionFunctionBlocker();
|
2014-11-22 10:00:45 +00:00
|
|
|
f->Args.insert(f->Args.end(), args.begin(), args.end());
|
2007-12-03 17:44:42 +00:00
|
|
|
this->Makefile->AddFunctionBlocker(f);
|
|
|
|
return true;
|
|
|
|
}
|