2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-07-25 16:52:51 -04:00
|
|
|
#include "cmForEachCommand.h"
|
|
|
|
|
2017-09-21 23:06:05 +02:00
|
|
|
#include <memory> // IWYU pragma: keep
|
2016-10-25 20:35:04 +02:00
|
|
|
#include <sstream>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2016-10-19 21:59:14 +02:00
|
|
|
|
2017-10-09 16:26:31 +02:00
|
|
|
#include "cmAlgorithms.h"
|
2016-10-25 20:35:04 +02:00
|
|
|
#include "cmExecutionStatus.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include "cmake.h"
|
2009-03-17 15:10:15 -04:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
cmForEachFunctionBlocker::cmForEachFunctionBlocker(cmMakefile* mf)
|
|
|
|
: Makefile(mf)
|
|
|
|
, Depth(0)
|
2015-06-22 11:31:04 -04:00
|
|
|
{
|
|
|
|
this->Makefile->PushLoopBlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
cmForEachFunctionBlocker::~cmForEachFunctionBlocker()
|
|
|
|
{
|
|
|
|
this->Makefile->PopLoopBlock();
|
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
bool cmForEachFunctionBlocker::IsFunctionBlocked(const cmListFileFunction& lff,
|
|
|
|
cmMakefile& mf,
|
|
|
|
cmExecutionStatus& inStatus)
|
2001-07-25 16:52:51 -04:00
|
|
|
{
|
2018-05-01 16:17:31 +02:00
|
|
|
if (lff.Name.Lower == "foreach") {
|
2006-05-18 13:50:01 -04:00
|
|
|
// record the number of nested foreach commands
|
|
|
|
this->Depth++;
|
2018-05-01 16:17:31 +02:00
|
|
|
} else if (lff.Name.Lower == "endforeach") {
|
2006-05-18 13:50:01 -04:00
|
|
|
// if this is the endofreach for this statement
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!this->Depth) {
|
2009-01-20 14:36:18 -05:00
|
|
|
// Remove the function blocker for this scope or bail.
|
2017-09-21 23:06:05 +02:00
|
|
|
std::unique_ptr<cmFunctionBlocker> fb(
|
|
|
|
mf.RemoveFunctionBlocker(this, lff));
|
2018-11-19 18:10:40 +01:00
|
|
|
if (!fb) {
|
2016-05-16 10:34:04 -04:00
|
|
|
return false;
|
|
|
|
}
|
2009-01-20 14:36:18 -05:00
|
|
|
|
2006-05-18 13:50:01 -04:00
|
|
|
// at end of for each execute recorded commands
|
2005-06-22 13:32:11 -04:00
|
|
|
// store the old value
|
2005-06-22 14:16:18 -04:00
|
|
|
std::string oldDef;
|
2016-05-16 10:34:04 -04:00
|
|
|
if (mf.GetDefinition(this->Args[0])) {
|
2014-03-11 00:04:11 +01:00
|
|
|
oldDef = mf.GetDefinition(this->Args[0]);
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2006-03-15 11:02:08 -05:00
|
|
|
std::vector<std::string>::const_iterator j = this->Args.begin();
|
2002-12-11 18:13:33 -05:00
|
|
|
++j;
|
2006-04-04 13:04:28 -04:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
for (; j != this->Args.end(); ++j) {
|
2005-06-22 13:32:11 -04:00
|
|
|
// set the variable to the loop value
|
2016-05-16 10:34:04 -04:00
|
|
|
mf.AddDefinition(this->Args[0], j->c_str());
|
2002-12-11 18:13:33 -05:00
|
|
|
// Invoke all the functions that were collected in the block.
|
2008-01-23 10:28:26 -05:00
|
|
|
cmExecutionStatus status;
|
2017-09-11 13:40:26 +03:00
|
|
|
for (cmListFileFunction const& func : this->Functions) {
|
2008-01-23 10:28:26 -05:00
|
|
|
status.Clear();
|
2017-09-11 13:40:26 +03:00
|
|
|
mf.ExecuteCommand(func, status);
|
2016-05-16 10:34:04 -04:00
|
|
|
if (status.GetReturnInvoked()) {
|
2016-12-26 10:30:31 +01:00
|
|
|
inStatus.SetReturnInvoked();
|
2008-01-23 10:28:26 -05:00
|
|
|
// restore the variable to its prior value
|
2016-05-16 10:34:04 -04:00
|
|
|
mf.AddDefinition(this->Args[0], oldDef.c_str());
|
2008-01-23 10:28:26 -05:00
|
|
|
return true;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (status.GetBreakInvoked()) {
|
2008-01-23 10:28:26 -05:00
|
|
|
// restore the variable to its prior value
|
2016-05-16 10:34:04 -04:00
|
|
|
mf.AddDefinition(this->Args[0], oldDef.c_str());
|
2008-01-23 10:28:26 -05:00
|
|
|
return true;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (status.GetContinueInvoked()) {
|
2014-11-29 17:56:18 +01:00
|
|
|
break;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (cmSystemTools::GetFatalErrorOccured()) {
|
2009-05-13 11:08:29 -04:00
|
|
|
return true;
|
2001-07-25 16:52:51 -04:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2014-11-18 16:34:30 +01:00
|
|
|
|
2005-06-22 13:32:11 -04:00
|
|
|
// restore the variable to its prior value
|
2016-05-16 10:34:04 -04:00
|
|
|
mf.AddDefinition(this->Args[0], oldDef.c_str());
|
2004-05-12 14:32:25 -04:00
|
|
|
return true;
|
2001-07-25 16:52:51 -04:00
|
|
|
}
|
2016-09-16 22:45:24 +02:00
|
|
|
// close out a nested foreach
|
|
|
|
this->Depth--;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2001-07-25 16:52:51 -04:00
|
|
|
// record the command
|
2006-03-15 11:02:08 -05:00
|
|
|
this->Functions.push_back(lff);
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2001-07-25 16:52:51 -04:00
|
|
|
// always return true
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
bool cmForEachFunctionBlocker::ShouldRemove(const cmListFileFunction& lff,
|
|
|
|
cmMakefile& mf)
|
2001-07-25 16:52:51 -04:00
|
|
|
{
|
2018-05-01 16:17:31 +02:00
|
|
|
if (lff.Name.Lower == "endforeach") {
|
2002-12-11 18:13:33 -05:00
|
|
|
std::vector<std::string> expandedArguments;
|
2006-03-15 11:02:08 -05:00
|
|
|
mf.ExpandArguments(lff.Arguments, expandedArguments);
|
2008-02-29 12:18:11 -05:00
|
|
|
// if the endforeach has arguments then make sure
|
|
|
|
// they match the begin foreach arguments
|
|
|
|
if ((expandedArguments.empty() ||
|
2016-05-16 10:34:04 -04:00
|
|
|
(expandedArguments[0] == this->Args[0]))) {
|
2002-12-11 18:13:33 -05:00
|
|
|
return true;
|
2001-07-25 16:52:51 -04:00
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2001-07-25 16:52:51 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
bool cmForEachCommand::InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus&)
|
2001-07-25 16:52:51 -04:00
|
|
|
{
|
2016-09-15 23:59:29 +02:00
|
|
|
if (args.empty()) {
|
2001-07-25 16:52:51 -04:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (args.size() > 1 && args[1] == "IN") {
|
2009-03-17 15:10:15 -04:00
|
|
|
return this->HandleInMode(args);
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2001-07-25 16:52:51 -04:00
|
|
|
// create a function blocker
|
2017-10-09 16:26:31 +02:00
|
|
|
auto f = cm::make_unique<cmForEachFunctionBlocker>(this->Makefile);
|
2016-05-16 10:34:04 -04:00
|
|
|
if (args.size() > 1) {
|
|
|
|
if (args[1] == "RANGE") {
|
2004-04-29 15:12:40 -04:00
|
|
|
int start = 0;
|
|
|
|
int stop = 0;
|
|
|
|
int step = 0;
|
2016-05-16 10:34:04 -04:00
|
|
|
if (args.size() == 3) {
|
2004-04-29 15:12:40 -04:00
|
|
|
stop = atoi(args[2].c_str());
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (args.size() == 4) {
|
2004-04-29 15:12:40 -04:00
|
|
|
start = atoi(args[2].c_str());
|
|
|
|
stop = atoi(args[3].c_str());
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (args.size() == 5) {
|
2004-04-29 15:12:40 -04:00
|
|
|
start = atoi(args[2].c_str());
|
|
|
|
stop = atoi(args[3].c_str());
|
|
|
|
step = atoi(args[4].c_str());
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if (step == 0) {
|
|
|
|
if (start > stop) {
|
2004-04-29 15:12:40 -04:00
|
|
|
step = -1;
|
2016-05-16 10:34:04 -04:00
|
|
|
} else {
|
2004-04-29 15:12:40 -04:00
|
|
|
step = 1;
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
|
|
|
if ((start > stop && step > 0) || (start < stop && step < 0) ||
|
|
|
|
step == 0) {
|
2015-01-05 20:31:31 +01:00
|
|
|
std::ostringstream str;
|
2004-04-29 15:12:40 -04:00
|
|
|
str << "called with incorrect range specification: start ";
|
|
|
|
str << start << ", stop " << stop << ", step " << step;
|
2014-03-11 00:04:11 +01:00
|
|
|
this->SetError(str.str());
|
2004-04-29 15:12:40 -04:00
|
|
|
return false;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2004-04-29 15:12:40 -04:00
|
|
|
std::vector<std::string> range;
|
|
|
|
char buffer[100];
|
|
|
|
range.push_back(args[0]);
|
|
|
|
int cc;
|
2016-05-16 10:34:04 -04:00
|
|
|
for (cc = start;; cc += step) {
|
|
|
|
if ((step > 0 && cc > stop) || (step < 0 && cc < stop)) {
|
2004-04-29 15:12:40 -04:00
|
|
|
break;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2004-04-29 15:12:40 -04:00
|
|
|
sprintf(buffer, "%d", cc);
|
|
|
|
range.push_back(buffer);
|
2016-05-16 10:34:04 -04:00
|
|
|
if (cc == stop) {
|
2004-04-29 15:12:40 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
f->Args = range;
|
|
|
|
} else {
|
2006-03-15 11:02:08 -05:00
|
|
|
f->Args = args;
|
2004-04-29 15:12:40 -04:00
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
} else {
|
2006-03-15 11:02:08 -05:00
|
|
|
f->Args = args;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2017-10-09 16:26:31 +02:00
|
|
|
this->Makefile->AddFunctionBlocker(f.release());
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2001-07-25 16:52:51 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-03-17 15:10:15 -04:00
|
|
|
bool cmForEachCommand::HandleInMode(std::vector<std::string> const& args)
|
|
|
|
{
|
2017-09-21 23:06:05 +02:00
|
|
|
std::unique_ptr<cmForEachFunctionBlocker> f(
|
2016-05-16 10:34:04 -04:00
|
|
|
new cmForEachFunctionBlocker(this->Makefile));
|
2009-03-17 15:10:15 -04:00
|
|
|
f->Args.push_back(args[0]);
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
enum Doing
|
|
|
|
{
|
|
|
|
DoingNone,
|
|
|
|
DoingLists,
|
|
|
|
DoingItems
|
|
|
|
};
|
2009-03-17 15:10:15 -04:00
|
|
|
Doing doing = DoingNone;
|
2016-05-16 10:34:04 -04:00
|
|
|
for (unsigned int i = 2; i < args.size(); ++i) {
|
|
|
|
if (doing == DoingItems) {
|
2009-03-17 15:10:15 -04:00
|
|
|
f->Args.push_back(args[i]);
|
2016-05-16 10:34:04 -04:00
|
|
|
} else if (args[i] == "LISTS") {
|
2009-03-17 15:10:15 -04:00
|
|
|
doing = DoingLists;
|
2016-05-16 10:34:04 -04:00
|
|
|
} else if (args[i] == "ITEMS") {
|
2009-03-17 15:10:15 -04:00
|
|
|
doing = DoingItems;
|
2016-05-16 10:34:04 -04:00
|
|
|
} else if (doing == DoingLists) {
|
2014-03-11 00:04:11 +01:00
|
|
|
const char* value = this->Makefile->GetDefinition(args[i]);
|
2016-05-16 10:34:04 -04:00
|
|
|
if (value && *value) {
|
2009-03-17 15:10:15 -04:00
|
|
|
cmSystemTools::ExpandListArgument(value, f->Args, true);
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
} else {
|
2015-01-05 20:31:31 +01:00
|
|
|
std::ostringstream e;
|
2016-05-16 10:34:04 -04:00
|
|
|
e << "Unknown argument:\n"
|
|
|
|
<< " " << args[i] << "\n";
|
2009-03-17 15:10:15 -04:00
|
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR, e.str());
|
|
|
|
return true;
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2009-03-17 15:10:15 -04:00
|
|
|
|
2017-09-21 23:06:05 +02:00
|
|
|
this->Makefile->AddFunctionBlocker(f.release()); // TODO: pass unique_ptr
|
2014-11-18 16:34:30 +01:00
|
|
|
|
2009-03-17 15:10:15 -04:00
|
|
|
return true;
|
|
|
|
}
|