cmake/Source/cmFunctionCommand.cxx

189 lines
6.1 KiB
C++
Raw Normal View History

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