2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2005-01-21 17:38:04 +03:00
|
|
|
#include "cmWhileCommand.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2014-09-11 21:50:51 +04:00
|
|
|
#include "cmConditionEvaluator.h"
|
2005-01-21 17:38:04 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmWhileFunctionBlocker::cmWhileFunctionBlocker(cmMakefile* mf)
|
|
|
|
: Makefile(mf)
|
|
|
|
, Depth(0)
|
2015-06-22 18:31:04 +03:00
|
|
|
{
|
|
|
|
this->Makefile->PushLoopBlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
cmWhileFunctionBlocker::~cmWhileFunctionBlocker()
|
|
|
|
{
|
|
|
|
this->Makefile->PopLoopBlock();
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmWhileFunctionBlocker::IsFunctionBlocked(const cmListFileFunction& lff,
|
|
|
|
cmMakefile& mf,
|
|
|
|
cmExecutionStatus& inStatus)
|
2005-01-21 17:38:04 +03:00
|
|
|
{
|
|
|
|
// at end of for each execute recorded commands
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::Strucmp(lff.Name.c_str(), "while")) {
|
2006-05-18 21:50:01 +04:00
|
|
|
// record the number of while commands past this one
|
|
|
|
this->Depth++;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (!cmSystemTools::Strucmp(lff.Name.c_str(), "endwhile")) {
|
2006-05-18 21:50:01 +04:00
|
|
|
// if this is the endwhile for this while loop then execute
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->Depth) {
|
2009-01-20 22:36:18 +03:00
|
|
|
// Remove the function blocker for this scope or bail.
|
2016-06-28 17:17:52 +03:00
|
|
|
CM_AUTO_PTR<cmFunctionBlocker> fb(mf.RemoveFunctionBlocker(this, lff));
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!fb.get()) {
|
|
|
|
return false;
|
|
|
|
}
|
2009-01-20 22:36:18 +03:00
|
|
|
|
2008-06-28 19:16:36 +04:00
|
|
|
std::string errorString;
|
2012-01-19 00:55:52 +04:00
|
|
|
|
2014-09-04 22:21:28 +04:00
|
|
|
std::vector<cmExpandedCommandArgument> expandedArguments;
|
2006-03-15 19:02:08 +03:00
|
|
|
mf.ExpandArguments(this->Args, expandedArguments);
|
2009-06-12 18:07:05 +04:00
|
|
|
cmake::MessageType messageType;
|
2014-09-11 21:50:51 +04:00
|
|
|
|
2015-10-20 20:13:52 +03:00
|
|
|
cmListFileContext execContext = this->GetStartingContext();
|
|
|
|
|
|
|
|
cmCommandContext commandContext;
|
|
|
|
commandContext.Line = execContext.Line;
|
|
|
|
commandContext.Name = execContext.Name;
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmConditionEvaluator conditionEvaluator(mf, this->GetStartingContext(),
|
|
|
|
mf.GetBacktrace(commandContext));
|
2014-09-11 21:50:51 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool isTrue =
|
|
|
|
conditionEvaluator.IsTrue(expandedArguments, errorString, messageType);
|
2006-05-18 21:50:01 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
while (isTrue) {
|
|
|
|
if (!errorString.empty()) {
|
2009-06-12 18:07:05 +04:00
|
|
|
std::string err = "had incorrect arguments: ";
|
|
|
|
unsigned int i;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (i = 0; i < this->Args.size(); ++i) {
|
|
|
|
err += (this->Args[i].Delim ? "\"" : "");
|
2009-06-12 18:07:05 +04:00
|
|
|
err += this->Args[i].Value;
|
2016-05-16 17:34:04 +03:00
|
|
|
err += (this->Args[i].Delim ? "\"" : "");
|
2009-06-12 18:07:05 +04:00
|
|
|
err += " ";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-06-12 18:07:05 +04:00
|
|
|
err += "(";
|
|
|
|
err += errorString;
|
|
|
|
err += ").";
|
|
|
|
mf.IssueMessage(messageType, err);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (messageType == cmake::FATAL_ERROR) {
|
2009-06-12 18:07:05 +04:00
|
|
|
cmSystemTools::SetFatalErrorOccured();
|
|
|
|
return true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-06-12 18:07:05 +04:00
|
|
|
|
2006-05-18 21:50:01 +04:00
|
|
|
// Invoke all the functions that were collected in the block.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (unsigned int c = 0; c < this->Functions.size(); ++c) {
|
2008-01-23 18:28:26 +03:00
|
|
|
cmExecutionStatus status;
|
2016-05-16 17:34:04 +03:00
|
|
|
mf.ExecuteCommand(this->Functions[c], status);
|
|
|
|
if (status.GetReturnInvoked()) {
|
2008-01-23 18:28:26 +03:00
|
|
|
inStatus.SetReturnInvoked(true);
|
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (status.GetBreakInvoked()) {
|
2008-01-23 18:28:26 +03:00
|
|
|
return true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (status.GetContinueInvoked()) {
|
2014-11-29 19:56:18 +03:00
|
|
|
break;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (cmSystemTools::GetFatalErrorOccured()) {
|
2009-05-13 19:08:29 +04:00
|
|
|
return true;
|
2006-05-18 21:50:01 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-05-18 21:50:01 +04:00
|
|
|
expandedArguments.clear();
|
|
|
|
mf.ExpandArguments(this->Args, expandedArguments);
|
2016-05-16 17:34:04 +03:00
|
|
|
isTrue = conditionEvaluator.IsTrue(expandedArguments, errorString,
|
|
|
|
messageType);
|
2006-05-18 21:50:01 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
return true;
|
2005-01-21 17:38:04 +03:00
|
|
|
}
|
2016-09-16 23:45:24 +03:00
|
|
|
// decrement for each nested while that ends
|
|
|
|
this->Depth--;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-01-21 17:38:04 +03:00
|
|
|
|
|
|
|
// record the command
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Functions.push_back(lff);
|
2012-01-19 00:55:52 +04:00
|
|
|
|
2005-01-21 17:38:04 +03:00
|
|
|
// always return true
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmWhileFunctionBlocker::ShouldRemove(const cmListFileFunction& lff,
|
|
|
|
cmMakefile&)
|
2005-01-21 17:38:04 +03:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::Strucmp(lff.Name.c_str(), "endwhile")) {
|
2008-02-29 20:18:11 +03:00
|
|
|
// if the endwhile has arguments, then make sure
|
|
|
|
// they match the arguments of the matching while
|
2016-05-16 17:34:04 +03:00
|
|
|
if (lff.Arguments.empty() || lff.Arguments == this->Args) {
|
2005-01-21 17:38:04 +03:00
|
|
|
return true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-01-21 17:38:04 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmWhileCommand::InvokeInitialPass(
|
|
|
|
const std::vector<cmListFileArgument>& args, cmExecutionStatus&)
|
2005-01-21 17:38:04 +03:00
|
|
|
{
|
2016-09-16 00:59:29 +03:00
|
|
|
if (args.empty()) {
|
2005-01-21 17:38:04 +03:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-01-19 00:55:52 +04:00
|
|
|
|
2005-01-21 17:38:04 +03:00
|
|
|
// create a function blocker
|
2016-05-16 17:34:04 +03:00
|
|
|
cmWhileFunctionBlocker* f = new cmWhileFunctionBlocker(this->Makefile);
|
2006-03-15 19:02:08 +03:00
|
|
|
f->Args = args;
|
|
|
|
this->Makefile->AddFunctionBlocker(f);
|
2012-01-19 00:55:52 +04:00
|
|
|
|
2005-01-21 17:38:04 +03:00
|
|
|
return true;
|
|
|
|
}
|