cmake/Source/cmIfCommand.cxx

235 lines
6.7 KiB
C++
Raw Normal View History

2009-10-04 10:30:41 +03:00
/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2009-10-04 10:30:41 +03:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
2009-10-04 10:30:41 +03:00
This software is distributed WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License for more information.
============================================================================*/
#include "cmIfCommand.h"
#include "cmStringCommand.h"
2015-04-27 22:25:09 +02:00
#include "cmConditionEvaluator.h"
#include <stdlib.h> // required for atof
#include <list>
#include <cmsys/RegularExpression.hxx>
2009-11-06 22:07:41 +02:00
static std::string cmIfCommandError(
2015-08-17 11:37:30 +02:00
std::vector<cmExpandedCommandArgument> const& args)
2009-11-06 22:07:41 +02:00
{
std::string err = "given arguments:\n ";
2015-04-27 22:25:09 +02:00
for(std::vector<cmExpandedCommandArgument>::const_iterator i = args.begin();
2009-11-06 22:07:41 +02:00
i != args.end(); ++i)
{
err += " ";
2015-08-17 11:37:30 +02:00
err += cmLocalGenerator::EscapeForCMake(i->GetValue());
2009-11-06 22:07:41 +02:00
}
err += "\n";
return err;
}
//=========================================================================
bool cmIfFunctionBlocker::
2009-10-04 10:30:41 +03:00
IsFunctionBlocked(const cmListFileFunction& lff,
cmMakefile &mf,
cmExecutionStatus &inStatus)
{
// we start by recording all the functions
if (!cmSystemTools::Strucmp(lff.Name.c_str(),"if"))
{
this->ScopeDepth++;
}
2015-08-17 11:37:30 +02:00
else if (!cmSystemTools::Strucmp(lff.Name.c_str(),"endif"))
{
this->ScopeDepth--;
// if this is the endif for this if statement, then start executing
2009-10-04 10:30:41 +03:00
if (!this->ScopeDepth)
{
// Remove the function blocker for this scope or bail.
cmsys::auto_ptr<cmFunctionBlocker>
fb(mf.RemoveFunctionBlocker(this, lff));
if(!fb.get()) { return false; }
// execute the functions for the true parts of the if statement
cmExecutionStatus status;
int scopeDepth = 0;
for(unsigned int c = 0; c < this->Functions.size(); ++c)
{
// keep track of scope depth
if (!cmSystemTools::Strucmp(this->Functions[c].Name.c_str(),"if"))
{
scopeDepth++;
}
if (!cmSystemTools::Strucmp(this->Functions[c].Name.c_str(),"endif"))
{
scopeDepth--;
}
// watch for our state change
if (scopeDepth == 0 &&
!cmSystemTools::Strucmp(this->Functions[c].Name.c_str(),"else"))
{
this->IsBlocking = this->HasRun;
this->HasRun = true;
2012-06-27 20:52:58 +03:00
// if trace is enabled, print a (trivially) evaluated "else"
// statement
if(!this->IsBlocking && mf.GetCMakeInstance()->GetTrace())
{
mf.PrintCommandTrace(this->Functions[c]);
}
}
else if (scopeDepth == 0 && !cmSystemTools::Strucmp
(this->Functions[c].Name.c_str(),"elseif"))
{
if (this->HasRun)
{
this->IsBlocking = true;
}
else
{
// Place this call on the call stack.
cmMakefileCall stack_manager(&mf, this->Functions[c], status);
static_cast<void>(stack_manager);
2012-06-27 20:52:58 +03:00
// if trace is enabled, print the evaluated "elseif" statement
if(mf.GetCMakeInstance()->GetTrace())
{
mf.PrintCommandTrace(this->Functions[c]);
}
std::string errorString;
2009-10-04 10:30:41 +03:00
2015-04-27 22:25:09 +02:00
std::vector<cmExpandedCommandArgument> expandedArguments;
2009-10-04 10:30:41 +03:00
mf.ExpandArguments(this->Functions[c].Arguments,
expandedArguments);
2009-10-04 10:30:41 +03:00
cmake::MessageType messType;
2015-04-27 22:25:09 +02:00
cmConditionEvaluator conditionEvaluator(mf);
bool isTrue = conditionEvaluator.IsTrue(
expandedArguments, errorString, messType);
if (!errorString.empty())
{
2015-08-17 11:37:30 +02:00
std::string err = cmIfCommandError(expandedArguments);
err += errorString;
2009-10-04 10:30:41 +03:00
mf.IssueMessage(messType, err);
if (messType == cmake::FATAL_ERROR)
{
cmSystemTools::SetFatalErrorOccured();
return true;
}
}
2009-10-04 10:30:41 +03:00
if (isTrue)
{
this->IsBlocking = false;
this->HasRun = true;
}
}
}
2009-10-04 10:30:41 +03:00
// should we execute?
else if (!this->IsBlocking)
{
status.Clear();
mf.ExecuteCommand(this->Functions[c],status);
if (status.GetReturnInvoked())
{
inStatus.SetReturnInvoked(true);
return true;
}
if (status.GetBreakInvoked())
{
inStatus.SetBreakInvoked(true);
return true;
}
2015-04-27 22:25:09 +02:00
if (status.GetContinueInvoked())
{
inStatus.SetContinueInvoked(true);
return true;
}
}
}
return true;
}
}
2009-10-04 10:30:41 +03:00
// record the command
this->Functions.push_back(lff);
2009-10-04 10:30:41 +03:00
// always return true
return true;
}
//=========================================================================
bool cmIfFunctionBlocker::ShouldRemove(const cmListFileFunction& lff,
cmMakefile&)
{
if (!cmSystemTools::Strucmp(lff.Name.c_str(),"endif"))
{
// if the endif has arguments, then make sure
// they match the arguments of the matching if
2015-04-27 22:25:09 +02:00
if (lff.Arguments.empty() ||
lff.Arguments == this->Args)
{
return true;
}
}
return false;
}
//=========================================================================
bool cmIfCommand
2009-10-04 10:30:41 +03:00
::InvokeInitialPass(const std::vector<cmListFileArgument>& args,
cmExecutionStatus &)
{
std::string errorString;
2009-10-04 10:30:41 +03:00
2015-04-27 22:25:09 +02:00
std::vector<cmExpandedCommandArgument> expandedArguments;
this->Makefile->ExpandArguments(args, expandedArguments);
2009-10-04 10:30:41 +03:00
cmake::MessageType status;
2015-04-27 22:25:09 +02:00
cmConditionEvaluator conditionEvaluator(*(this->Makefile));
bool isTrue = conditionEvaluator.IsTrue(
expandedArguments, errorString, status);
if (!errorString.empty())
{
2015-08-17 11:37:30 +02:00
std::string err = cmIfCommandError(expandedArguments);
err += errorString;
2009-10-04 10:30:41 +03:00
if (status == cmake::FATAL_ERROR)
{
2015-04-27 22:25:09 +02:00
this->SetError(err);
2009-10-04 10:30:41 +03:00
cmSystemTools::SetFatalErrorOccured();
return false;
}
else
{
this->Makefile->IssueMessage(status, err);
}
}
2009-10-04 10:30:41 +03:00
cmIfFunctionBlocker *f = new cmIfFunctionBlocker();
// if is isn't true block the commands
f->ScopeDepth = 1;
f->IsBlocking = !isTrue;
if (isTrue)
{
f->HasRun = true;
}
f->Args = args;
this->Makefile->AddFunctionBlocker(f);
2009-10-04 10:30:41 +03:00
return true;
}