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