2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-01-21 17:38:04 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-01-21 17:38:04 +03:00
|
|
|
|
2009-09-28 19:43:28 +04: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.
|
|
|
|
============================================================================*/
|
2005-01-21 17:38:04 +03:00
|
|
|
#include "cmWhileCommand.h"
|
2005-01-21 18:27:51 +03:00
|
|
|
#include "cmIfCommand.h"
|
2005-01-21 17:38:04 +03:00
|
|
|
|
|
|
|
bool cmWhileFunctionBlocker::
|
2008-01-23 18:28:26 +03:00
|
|
|
IsFunctionBlocked(const cmListFileFunction& lff, cmMakefile &mf,
|
|
|
|
cmExecutionStatus &inStatus)
|
2005-01-21 17:38:04 +03:00
|
|
|
{
|
|
|
|
// at end of for each execute recorded commands
|
2006-05-31 19:19:39 +04:00
|
|
|
if (!cmSystemTools::Strucmp(lff.Name.c_str(),"while"))
|
2005-01-21 17:38:04 +03:00
|
|
|
{
|
2006-05-18 21:50:01 +04:00
|
|
|
// record the number of while commands past this one
|
|
|
|
this->Depth++;
|
|
|
|
}
|
2006-05-31 19:19:39 +04: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
|
|
|
|
if (!this->Depth)
|
|
|
|
{
|
2009-01-20 22:36:18 +03:00
|
|
|
// Remove the function blocker for this scope or bail.
|
2009-01-21 17:49:00 +03:00
|
|
|
cmsys::auto_ptr<cmFunctionBlocker>
|
|
|
|
fb(mf.RemoveFunctionBlocker(this, lff));
|
2009-01-20 22:36:18 +03:00
|
|
|
if(!fb.get()) { return false; }
|
|
|
|
|
2008-06-28 19:16:36 +04:00
|
|
|
std::string errorString;
|
2005-01-21 17:38:04 +03:00
|
|
|
|
2006-05-18 21:50:01 +04:00
|
|
|
std::vector<std::string> 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;
|
2006-05-18 21:50:01 +04:00
|
|
|
bool isTrue =
|
2009-06-12 18:07:05 +04:00
|
|
|
cmIfCommand::IsTrue(expandedArguments,errorString,
|
|
|
|
&mf, messageType);
|
2006-05-18 21:50:01 +04:00
|
|
|
|
|
|
|
while (isTrue)
|
|
|
|
{
|
2009-06-12 18:07:05 +04:00
|
|
|
if (errorString.size())
|
|
|
|
{
|
|
|
|
std::string err = "had incorrect arguments: ";
|
|
|
|
unsigned int i;
|
|
|
|
for(i =0; i < this->Args.size(); ++i)
|
|
|
|
{
|
|
|
|
err += (this->Args[i].Quoted?"\"":"");
|
|
|
|
err += this->Args[i].Value;
|
|
|
|
err += (this->Args[i].Quoted?"\"":"");
|
|
|
|
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)
|
|
|
|
{
|
2008-01-23 18:28:26 +03:00
|
|
|
cmExecutionStatus status;
|
|
|
|
mf.ExecuteCommand(this->Functions[c],status);
|
|
|
|
if (status.GetReturnInvoked())
|
|
|
|
{
|
|
|
|
inStatus.SetReturnInvoked(true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (status.GetBreakInvoked())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2009-05-13 19:08:29 +04:00
|
|
|
if(cmSystemTools::GetFatalErrorOccured() )
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2006-05-18 21:50:01 +04:00
|
|
|
}
|
|
|
|
expandedArguments.clear();
|
|
|
|
mf.ExpandArguments(this->Args, expandedArguments);
|
|
|
|
isTrue =
|
2009-06-12 18:07:05 +04:00
|
|
|
cmIfCommand::IsTrue(expandedArguments,errorString,
|
|
|
|
&mf, messageType);
|
2006-05-18 21:50:01 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// 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);
|
2005-01-21 17:38:04 +03:00
|
|
|
|
|
|
|
// always return true
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmWhileFunctionBlocker::
|
2008-03-01 05:33:33 +03:00
|
|
|
ShouldRemove(const cmListFileFunction& lff, cmMakefile& )
|
2005-01-21 17:38:04 +03:00
|
|
|
{
|
2006-05-31 19:19:39 +04:00
|
|
|
if(!cmSystemTools::Strucmp(lff.Name.c_str(),"endwhile"))
|
2005-01-21 17:38:04 +03:00
|
|
|
{
|
2008-02-29 20:18:11 +03:00
|
|
|
// if the endwhile has arguments, then make sure
|
|
|
|
// they match the arguments of the matching while
|
|
|
|
if (lff.Arguments.size() == 0 ||
|
|
|
|
lff.Arguments == this->Args)
|
2005-01-21 17:38:04 +03:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmWhileCommand
|
|
|
|
::InvokeInitialPass(const std::vector<cmListFileArgument>& args,
|
|
|
|
cmExecutionStatus &)
|
2005-01-21 17:38:04 +03:00
|
|
|
{
|
|
|
|
if(args.size() < 1)
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a function blocker
|
|
|
|
cmWhileFunctionBlocker *f = new cmWhileFunctionBlocker();
|
2006-03-15 19:02:08 +03:00
|
|
|
f->Args = args;
|
|
|
|
this->Makefile->AddFunctionBlocker(f);
|
2005-01-21 17:38:04 +03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|