cmake/Source/cmForEachCommand.cxx

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