CMake/Source/cmWhileCommand.cxx

138 lines
4.2 KiB
C++
Raw Normal View History

Simplify CMake per-source license notices Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
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"
#include "cmConditionEvaluator.h"
2005-01-21 17:38:04 +03:00
cmWhileFunctionBlocker::cmWhileFunctionBlocker(cmMakefile* mf)
: Makefile(mf)
, Depth(0)
{
this->Makefile->PushLoopBlock();
}
cmWhileFunctionBlocker::~cmWhileFunctionBlocker()
{
this->Makefile->PopLoopBlock();
}
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
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++;
} 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
if (!this->Depth) {
// Remove the function blocker for this scope or bail.
CM_AUTO_PTR<cmFunctionBlocker> fb(mf.RemoveFunctionBlocker(this, lff));
if (!fb.get()) {
return false;
}
std::string errorString;
2012-01-19 00:55:52 +04:00
std::vector<cmExpandedCommandArgument> expandedArguments;
2006-03-15 19:02:08 +03:00
mf.ExpandArguments(this->Args, expandedArguments);
cmake::MessageType messageType;
cmListFileContext execContext = this->GetStartingContext();
cmCommandContext commandContext;
commandContext.Line = execContext.Line;
commandContext.Name = execContext.Name;
cmConditionEvaluator conditionEvaluator(mf, this->GetStartingContext(),
mf.GetBacktrace(commandContext));
bool isTrue =
conditionEvaluator.IsTrue(expandedArguments, errorString, messageType);
2006-05-18 21:50:01 +04:00
while (isTrue) {
if (!errorString.empty()) {
std::string err = "had incorrect arguments: ";
unsigned int i;
for (i = 0; i < this->Args.size(); ++i) {
err += (this->Args[i].Delim ? "\"" : "");
err += this->Args[i].Value;
err += (this->Args[i].Delim ? "\"" : "");
err += " ";
}
err += "(";
err += errorString;
err += ").";
mf.IssueMessage(messageType, err);
if (messageType == cmake::FATAL_ERROR) {
cmSystemTools::SetFatalErrorOccured();
return true;
}
}
2006-05-18 21:50:01 +04:00
// Invoke all the functions that were collected in the block.
for (unsigned int c = 0; c < this->Functions.size(); ++c) {
cmExecutionStatus status;
mf.ExecuteCommand(this->Functions[c], status);
if (status.GetReturnInvoked()) {
inStatus.SetReturnInvoked(true);
return true;
}
if (status.GetBreakInvoked()) {
return true;
}
if (status.GetContinueInvoked()) {
break;
}
if (cmSystemTools::GetFatalErrorOccured()) {
return true;
2006-05-18 21:50:01 +04:00
}
}
2006-05-18 21:50:01 +04:00
expandedArguments.clear();
mf.ExpandArguments(this->Args, expandedArguments);
isTrue = conditionEvaluator.IsTrue(expandedArguments, errorString,
messageType);
2006-05-18 21:50:01 +04: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--;
}
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;
}
bool cmWhileFunctionBlocker::ShouldRemove(const cmListFileFunction& lff,
cmMakefile&)
2005-01-21 17:38:04 +03:00
{
if (!cmSystemTools::Strucmp(lff.Name.c_str(), "endwhile")) {
// if the endwhile has arguments, then make sure
// they match the arguments of the matching while
if (lff.Arguments.empty() || lff.Arguments == this->Args) {
2005-01-21 17:38:04 +03:00
return true;
}
}
2005-01-21 17:38:04 +03:00
return false;
}
bool cmWhileCommand::InvokeInitialPass(
const std::vector<cmListFileArgument>& args, cmExecutionStatus&)
2005-01-21 17:38:04 +03:00
{
if (args.empty()) {
2005-01-21 17:38:04 +03:00
this->SetError("called with incorrect number of arguments");
return false;
}
2012-01-19 00:55:52 +04:00
2005-01-21 17:38:04 +03:00
// create a function blocker
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;
}