2001-04-20 01:39:03 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-20 01:39:03 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-04-20 01:39:03 +04:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-04-20 01:39:03 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmIfCommand.h"
|
2003-05-24 18:07:58 +04:00
|
|
|
#include <stdlib.h> // required for atof
|
2004-06-11 23:07:17 +04:00
|
|
|
#include <list>
|
2003-06-23 22:10:12 +04:00
|
|
|
#include <cmsys/RegularExpression.hxx>
|
|
|
|
|
2001-04-20 01:39:03 +04:00
|
|
|
bool cmIfFunctionBlocker::
|
2002-12-12 02:13:33 +03:00
|
|
|
IsFunctionBlocked(const cmListFileFunction& lff, cmMakefile &mf)
|
2001-04-20 01:39:03 +04:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
const char* name = lff.m_Name.c_str();
|
|
|
|
const std::vector<cmListFileArgument>& args = lff.m_Arguments;
|
2002-09-23 17:41:01 +04:00
|
|
|
// always let if statements through
|
|
|
|
if (!strcmp(name,"IF"))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// watch for our ELSE or ENDIF
|
2001-05-02 00:27:51 +04:00
|
|
|
if (!strcmp(name,"ELSE") || !strcmp(name,"ENDIF"))
|
2001-04-20 01:39:03 +04:00
|
|
|
{
|
2001-08-07 01:01:26 +04:00
|
|
|
if (args == m_Args)
|
2001-05-01 19:16:20 +04:00
|
|
|
{
|
2002-08-09 20:00:49 +04:00
|
|
|
// if it was an else statement then we should change state
|
|
|
|
// and block this Else Command
|
|
|
|
if (!strcmp(name,"ELSE"))
|
|
|
|
{
|
|
|
|
m_IsBlocking = !m_IsBlocking;
|
|
|
|
return true;
|
|
|
|
}
|
2002-09-10 18:16:50 +04:00
|
|
|
// otherwise it must be an ENDIF statement, in that case remove the
|
|
|
|
// function blocker
|
2002-12-12 02:13:33 +03:00
|
|
|
mf.RemoveFunctionBlocker(lff);
|
2002-09-10 18:16:50 +04:00
|
|
|
return true;
|
2001-05-01 19:16:20 +04:00
|
|
|
}
|
2001-12-18 22:55:11 +03:00
|
|
|
else if(args.empty())
|
|
|
|
{
|
|
|
|
std::string err = "Empty arguments for ";
|
|
|
|
err += name;
|
|
|
|
err += ". Did you mean ";
|
|
|
|
err += name;
|
|
|
|
err += "( ";
|
2002-12-12 02:13:33 +03:00
|
|
|
for(std::vector<cmListFileArgument>::const_iterator a = m_Args.begin();
|
2001-12-18 22:55:11 +03:00
|
|
|
a != m_Args.end();++a)
|
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
err += (a->Quoted?"\"":"");
|
|
|
|
err += a->Value;
|
|
|
|
err += (a->Quoted?"\"":"");
|
2001-12-18 22:55:11 +03:00
|
|
|
err += " ";
|
|
|
|
}
|
|
|
|
err += ")?";
|
|
|
|
cmSystemTools::Error(err.c_str());
|
|
|
|
}
|
2001-04-20 01:39:03 +04:00
|
|
|
}
|
2002-07-10 19:38:38 +04:00
|
|
|
return m_IsBlocking;
|
2001-04-20 01:39:03 +04:00
|
|
|
}
|
|
|
|
|
2002-12-12 02:13:33 +03:00
|
|
|
bool cmIfFunctionBlocker::ShouldRemove(const cmListFileFunction& lff,
|
|
|
|
cmMakefile&)
|
2001-04-20 01:39:03 +04:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
if (lff.m_Name == "ENDIF")
|
2002-07-10 19:38:38 +04:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
if (lff.m_Arguments == m_Args)
|
2002-07-10 19:38:38 +04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2001-04-20 01:39:03 +04:00
|
|
|
}
|
|
|
|
|
2001-05-04 16:46:05 +04:00
|
|
|
void cmIfFunctionBlocker::
|
2001-07-26 00:53:13 +04:00
|
|
|
ScopeEnded(cmMakefile &mf)
|
2001-05-04 16:46:05 +04:00
|
|
|
{
|
2001-11-26 19:31:50 +03:00
|
|
|
std::string errmsg = "The end of a CMakeLists file was reached with an IF statement that was not closed properly.\nWithin the directory: ";
|
|
|
|
errmsg += mf.GetCurrentDirectory();
|
|
|
|
errmsg += "\nThe arguments are: ";
|
2002-12-12 02:13:33 +03:00
|
|
|
for(std::vector<cmListFileArgument>::const_iterator j = m_Args.begin();
|
2001-11-26 19:31:50 +03:00
|
|
|
j != m_Args.end(); ++j)
|
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
errmsg += (j->Quoted?"\"":"");
|
|
|
|
errmsg += j->Value;
|
|
|
|
errmsg += (j->Quoted?"\"":"");
|
2001-11-26 19:31:50 +03:00
|
|
|
errmsg += " ";
|
|
|
|
}
|
2002-12-13 17:52:05 +03:00
|
|
|
cmSystemTools::Message(errmsg.c_str(), "Warning");
|
2001-05-04 16:46:05 +04:00
|
|
|
}
|
|
|
|
|
2002-12-12 02:13:33 +03:00
|
|
|
bool cmIfCommand::InvokeInitialPass(const std::vector<cmListFileArgument>& args)
|
2001-04-20 01:39:03 +04:00
|
|
|
{
|
2004-08-03 16:13:54 +04:00
|
|
|
char* errorString = 0;
|
2002-12-12 02:13:33 +03:00
|
|
|
|
|
|
|
std::vector<std::string> expandedArguments;
|
|
|
|
m_Makefile->ExpandArguments(args, expandedArguments);
|
2004-08-03 16:13:54 +04:00
|
|
|
bool isTrue = cmIfCommand::IsTrue(expandedArguments,&errorString,m_Makefile);
|
2002-07-01 16:49:36 +04:00
|
|
|
|
2004-08-03 16:13:54 +04:00
|
|
|
if (errorString)
|
2001-04-20 01:39:03 +04:00
|
|
|
{
|
2004-08-03 16:13:54 +04:00
|
|
|
std::string err = "had incorrect arguments: ";
|
2002-11-15 20:54:04 +03:00
|
|
|
unsigned int i;
|
|
|
|
for(i =0; i < args.size(); ++i)
|
2002-11-08 23:46:08 +03:00
|
|
|
{
|
2002-12-12 02:13:33 +03:00
|
|
|
err += (args[i].Quoted?"\"":"");
|
|
|
|
err += args[i].Value;
|
|
|
|
err += (args[i].Quoted?"\"":"");
|
2002-11-08 23:46:08 +03:00
|
|
|
err += " ";
|
|
|
|
}
|
2004-08-03 16:13:54 +04:00
|
|
|
err += "(";
|
|
|
|
err += errorString;
|
|
|
|
err += ").";
|
2002-11-08 23:46:08 +03:00
|
|
|
this->SetError(err.c_str());
|
2004-08-04 16:50:37 +04:00
|
|
|
delete [] errorString;
|
2001-04-20 01:39:03 +04:00
|
|
|
return false;
|
|
|
|
}
|
2002-07-01 16:49:36 +04:00
|
|
|
|
2002-07-10 19:38:38 +04:00
|
|
|
cmIfFunctionBlocker *f = new cmIfFunctionBlocker();
|
|
|
|
// if is isn't true block the commands
|
|
|
|
f->m_IsBlocking = !isTrue;
|
2002-12-12 02:13:33 +03:00
|
|
|
f->m_Args = args;
|
2002-07-10 19:38:38 +04:00
|
|
|
m_Makefile->AddFunctionBlocker(f);
|
2002-07-01 16:49:36 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2001-08-07 01:01:26 +04:00
|
|
|
|
2004-05-01 18:08:14 +04:00
|
|
|
// order of operations,
|
|
|
|
// EXISTS COMMAND DEFINED
|
2004-06-14 20:02:12 +04:00
|
|
|
// MATCHES LESS GREATER EQUAL STRLESS STRGREATER STREQUAL
|
2004-05-01 18:08:14 +04:00
|
|
|
// AND OR
|
|
|
|
//
|
|
|
|
// There is an issue on whether the arguments should be values of references,
|
|
|
|
// for example IF (FOO AND BAR) should that compare the strings FOO and BAR
|
|
|
|
// or should it really do IF (${FOO} AND ${BAR}) Currently EXISTS COMMAND and
|
|
|
|
// DEFINED all take values. EQUAL, LESS and GREATER can take numeric values or
|
|
|
|
// variable names. STRLESS and STRGREATER take variable names but if the
|
|
|
|
// variable name is not found it will use the name directly. AND OR take
|
|
|
|
// variables or the values 0 or 1.
|
|
|
|
|
|
|
|
|
2002-12-12 02:13:33 +03:00
|
|
|
bool cmIfCommand::IsTrue(const std::vector<std::string> &args,
|
2004-08-03 16:13:54 +04:00
|
|
|
char **errorString, const cmMakefile *makefile)
|
2002-07-01 16:49:36 +04:00
|
|
|
{
|
2001-08-07 01:01:26 +04:00
|
|
|
// check for the different signatures
|
2001-05-01 19:16:20 +04:00
|
|
|
const char *def;
|
2001-08-07 01:01:26 +04:00
|
|
|
const char *def2;
|
2004-08-04 16:50:37 +04:00
|
|
|
const char* msg = "Unknown arguments specified";
|
|
|
|
*errorString = new char[strlen(msg) + 1];
|
|
|
|
strcpy(*errorString, msg);
|
2004-05-01 18:08:14 +04:00
|
|
|
|
2004-05-03 23:33:42 +04:00
|
|
|
// handle empty invocation
|
|
|
|
if (args.size() < 1)
|
|
|
|
{
|
2004-08-04 16:50:37 +04:00
|
|
|
delete [] *errorString;
|
2004-08-03 16:13:54 +04:00
|
|
|
*errorString = 0;
|
2004-05-03 23:33:42 +04:00
|
|
|
return false;
|
|
|
|
}
|
2004-05-06 17:47:25 +04:00
|
|
|
|
|
|
|
// this is a super ugly hack. Basically old versiosn of VTK and ITK have a
|
|
|
|
// bad test to check for more recent versions of CMake in the
|
|
|
|
// CMakeLists.txt file for libtiff. So when we reved CMake up to 2.0 the
|
|
|
|
// test started failing because the minor version went to zero this causes
|
|
|
|
// the test to pass
|
|
|
|
if (args.size() == 3 &&
|
2004-08-04 16:50:37 +04:00
|
|
|
(makefile->GetDefinition("VTKTIFF_SOURCE_DIR") ||
|
|
|
|
makefile->GetDefinition("ITKTIFF_SOURCE_DIR")) &&
|
|
|
|
args[0] == "CMAKE_MINOR_VERSION" &&
|
|
|
|
args[1] == "MATCHES")
|
2004-05-06 17:47:25 +04:00
|
|
|
{
|
2004-08-04 16:50:37 +04:00
|
|
|
delete [] *errorString;
|
2004-08-03 16:13:54 +04:00
|
|
|
*errorString = 0;
|
2004-05-06 17:47:25 +04:00
|
|
|
return true;
|
|
|
|
}
|
2004-08-04 16:50:37 +04:00
|
|
|
|
|
|
|
|
2004-05-01 18:08:14 +04:00
|
|
|
// store the reduced args in this vector
|
2004-06-11 23:07:17 +04:00
|
|
|
std::list<std::string> newArgs;
|
2004-05-04 17:16:06 +04:00
|
|
|
int reducible;
|
2004-05-01 18:08:14 +04:00
|
|
|
unsigned int i;
|
2004-08-04 16:50:37 +04:00
|
|
|
|
2004-05-01 18:08:14 +04:00
|
|
|
// copy to the list structure
|
|
|
|
for(i = 0; i < args.size(); ++i)
|
|
|
|
{
|
|
|
|
newArgs.push_back(args[i]);
|
2002-07-01 16:49:36 +04:00
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
std::list<std::string>::iterator argP1;
|
|
|
|
std::list<std::string>::iterator argP2;
|
2004-08-04 16:50:37 +04:00
|
|
|
|
2004-05-01 18:08:14 +04:00
|
|
|
// now loop through the arguments and see if we can reduce any of them
|
|
|
|
// we do this multiple times. Once for each level of precedence
|
|
|
|
do
|
2001-08-07 01:01:26 +04:00
|
|
|
{
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 0;
|
2004-06-11 23:07:17 +04:00
|
|
|
std::list<std::string>::iterator arg = newArgs.begin();
|
2004-05-01 18:08:14 +04:00
|
|
|
while (arg != newArgs.end())
|
2001-08-07 01:01:26 +04:00
|
|
|
{
|
2004-06-11 23:07:17 +04:00
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
2004-05-01 18:08:14 +04:00
|
|
|
// does a file exist
|
2004-06-11 23:07:17 +04:00
|
|
|
if (*arg == "EXISTS" && argP1 != newArgs.end())
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
2004-06-11 23:07:17 +04:00
|
|
|
if(cmSystemTools::FileExists((argP1)->c_str()))
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
|
|
|
*arg = "1";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*arg = "0";
|
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
newArgs.erase(argP1);
|
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 1;
|
|
|
|
}
|
|
|
|
// does a command exist
|
2004-06-11 23:07:17 +04:00
|
|
|
if (*arg == "COMMAND" && argP1 != newArgs.end())
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
2004-06-11 23:07:17 +04:00
|
|
|
if(makefile->CommandExists((argP1)->c_str()))
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
|
|
|
*arg = "1";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*arg = "0";
|
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
newArgs.erase(argP1);
|
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 1;
|
|
|
|
}
|
|
|
|
// is a variable defined
|
2004-06-11 23:07:17 +04:00
|
|
|
if (*arg == "DEFINED" && argP1 != newArgs.end())
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
2004-06-11 23:07:17 +04:00
|
|
|
def = makefile->GetDefinition((argP1)->c_str());
|
2004-05-01 18:08:14 +04:00
|
|
|
if(def)
|
|
|
|
{
|
|
|
|
*arg = "1";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*arg = "0";
|
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
newArgs.erase(argP1);
|
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 1;
|
|
|
|
}
|
|
|
|
++arg;
|
2001-08-07 01:01:26 +04:00
|
|
|
}
|
|
|
|
}
|
2004-05-01 18:08:14 +04:00
|
|
|
while (reducible);
|
2004-08-04 16:50:37 +04:00
|
|
|
|
|
|
|
|
2004-05-01 18:08:14 +04:00
|
|
|
// now loop through the arguments and see if we can reduce any of them
|
|
|
|
// we do this multiple times. Once for each level of precedence
|
|
|
|
do
|
2001-04-20 01:39:03 +04:00
|
|
|
{
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 0;
|
2004-06-11 23:07:17 +04:00
|
|
|
std::list<std::string>::iterator arg = newArgs.begin();
|
2004-08-04 16:50:37 +04:00
|
|
|
|
2004-05-01 18:08:14 +04:00
|
|
|
while (arg != newArgs.end())
|
2001-05-01 19:16:20 +04:00
|
|
|
{
|
2004-06-11 23:07:17 +04:00
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
|
|
|
if (argP1 != newArgs.end() && argP2 != newArgs.end() &&
|
2004-08-04 16:50:37 +04:00
|
|
|
*(argP1) == "MATCHES")
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
|
|
|
def = cmIfCommand::GetVariableOrString(arg->c_str(), makefile);
|
2004-08-03 16:13:54 +04:00
|
|
|
const char* rex = (argP2)->c_str();
|
|
|
|
cmsys::RegularExpression regEntry;
|
|
|
|
if ( !regEntry.compile(rex) )
|
|
|
|
{
|
|
|
|
cmOStringStream error;
|
|
|
|
error << "Regular expression \"" << rex << "\" cannot compile";
|
2004-08-04 16:50:37 +04:00
|
|
|
delete [] *errorString;
|
2004-08-03 16:13:54 +04:00
|
|
|
*errorString = new char[error.str().size() + 1];
|
|
|
|
strcpy(*errorString, error.str().c_str());
|
|
|
|
return false;
|
|
|
|
}
|
2004-05-01 18:08:14 +04:00
|
|
|
if (regEntry.find(def))
|
|
|
|
{
|
|
|
|
*arg = "1";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*arg = "0";
|
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
newArgs.erase(argP2);
|
|
|
|
newArgs.erase(argP1);
|
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 1;
|
|
|
|
}
|
2002-07-01 16:49:36 +04:00
|
|
|
|
2004-06-11 23:07:17 +04:00
|
|
|
if (argP1 != newArgs.end() && *arg == "MATCHES")
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
|
|
|
*arg = "0";
|
2004-06-11 23:07:17 +04:00
|
|
|
newArgs.erase(argP1);
|
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 1;
|
|
|
|
}
|
2001-08-07 01:01:26 +04:00
|
|
|
|
2004-06-11 23:07:17 +04:00
|
|
|
if (argP1 != newArgs.end() && argP2 != newArgs.end() &&
|
2004-08-04 16:50:37 +04:00
|
|
|
(*(argP1) == "LESS" || *(argP1) == "GREATER" ||
|
|
|
|
*(argP1) == "EQUAL"))
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
|
|
|
def = cmIfCommand::GetVariableOrString(arg->c_str(), makefile);
|
2004-06-11 23:07:17 +04:00
|
|
|
def2 = cmIfCommand::GetVariableOrString((argP2)->c_str(), makefile);
|
|
|
|
if (*(argP1) == "LESS")
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
|
|
|
if(atof(def) < atof(def2))
|
|
|
|
{
|
|
|
|
*arg = "1";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*arg = "0";
|
|
|
|
}
|
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
else if (*(argP1) == "GREATER")
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
|
|
|
if(atof(def) > atof(def2))
|
|
|
|
{
|
|
|
|
*arg = "1";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*arg = "0";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(atof(def) == atof(def2))
|
|
|
|
{
|
|
|
|
*arg = "1";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*arg = "0";
|
|
|
|
}
|
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
newArgs.erase(argP2);
|
|
|
|
newArgs.erase(argP1);
|
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 1;
|
|
|
|
}
|
2001-12-18 17:39:26 +03:00
|
|
|
|
2004-06-11 23:07:17 +04:00
|
|
|
if (argP1 != newArgs.end() && argP2 != newArgs.end() &&
|
2004-08-04 16:50:37 +04:00
|
|
|
(*(argP1) == "STRLESS" ||
|
|
|
|
*(argP1) == "STREQUAL" ||
|
|
|
|
*(argP1) == "STRGREATER"))
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
|
|
|
def = cmIfCommand::GetVariableOrString(arg->c_str(), makefile);
|
2004-06-11 23:07:17 +04:00
|
|
|
def2 = cmIfCommand::GetVariableOrString((argP2)->c_str(), makefile);
|
2004-06-14 20:02:12 +04:00
|
|
|
int val = strcmp(def,def2);
|
|
|
|
int result;
|
2004-06-11 23:07:17 +04:00
|
|
|
if (*(argP1) == "STRLESS")
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
2004-06-14 20:02:12 +04:00
|
|
|
result = (val < 0);
|
|
|
|
}
|
|
|
|
else if (*(argP1) == "STRGREATER")
|
|
|
|
{
|
|
|
|
result = (val > 0);
|
|
|
|
}
|
|
|
|
else // strequal
|
|
|
|
{
|
|
|
|
result = (val == 0);
|
|
|
|
}
|
|
|
|
if(result)
|
|
|
|
{
|
|
|
|
*arg = "1";
|
2004-05-01 18:08:14 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-06-14 20:02:12 +04:00
|
|
|
*arg = "0";
|
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
newArgs.erase(argP2);
|
|
|
|
newArgs.erase(argP1);
|
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 1;
|
|
|
|
}
|
2002-01-03 00:46:08 +03:00
|
|
|
|
2004-05-01 18:08:14 +04:00
|
|
|
++arg;
|
2002-11-08 23:46:08 +03:00
|
|
|
}
|
|
|
|
}
|
2004-05-01 18:08:14 +04:00
|
|
|
while (reducible);
|
2002-11-08 23:46:08 +03:00
|
|
|
|
2004-08-04 16:50:37 +04:00
|
|
|
|
2004-05-01 18:08:14 +04:00
|
|
|
// now loop through the arguments and see if we can reduce any of them
|
|
|
|
// we do this multiple times. Once for each level of precedence
|
|
|
|
do
|
2001-08-07 01:01:26 +04:00
|
|
|
{
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 0;
|
2004-06-11 23:07:17 +04:00
|
|
|
std::list<std::string>::iterator arg = newArgs.begin();
|
2004-05-01 18:08:14 +04:00
|
|
|
while (arg != newArgs.end())
|
2001-05-01 19:16:20 +04:00
|
|
|
{
|
2004-06-11 23:07:17 +04:00
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
|
|
|
if (argP1 != newArgs.end() && *arg == "NOT")
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
2004-06-11 23:07:17 +04:00
|
|
|
def = cmIfCommand::GetVariableOrNumber((argP1)->c_str(), makefile);
|
2004-05-01 18:08:14 +04:00
|
|
|
if(!cmSystemTools::IsOff(def))
|
|
|
|
{
|
|
|
|
*arg = "0";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*arg = "1";
|
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
newArgs.erase(argP1);
|
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 1;
|
|
|
|
}
|
|
|
|
++arg;
|
2001-05-01 19:16:20 +04:00
|
|
|
}
|
2001-04-20 01:39:03 +04:00
|
|
|
}
|
2004-05-01 18:08:14 +04:00
|
|
|
while (reducible);
|
2004-08-04 16:50:37 +04:00
|
|
|
|
2004-05-01 18:08:14 +04:00
|
|
|
// now loop through the arguments and see if we can reduce any of them
|
|
|
|
// we do this multiple times. Once for each level of precedence
|
|
|
|
do
|
2001-04-20 01:39:03 +04:00
|
|
|
{
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 0;
|
2004-06-11 23:07:17 +04:00
|
|
|
std::list<std::string>::iterator arg = newArgs.begin();
|
2004-05-01 18:08:14 +04:00
|
|
|
while (arg != newArgs.end())
|
2001-05-01 19:16:20 +04:00
|
|
|
{
|
2004-06-11 23:07:17 +04:00
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
|
|
|
if (argP1 != newArgs.end() && *(argP1) == "AND" &&
|
2004-08-04 16:50:37 +04:00
|
|
|
argP2 != newArgs.end())
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
|
|
|
def = cmIfCommand::GetVariableOrNumber(arg->c_str(), makefile);
|
2004-06-11 23:07:17 +04:00
|
|
|
def2 = cmIfCommand::GetVariableOrNumber((argP2)->c_str(), makefile);
|
2004-05-01 18:08:14 +04:00
|
|
|
if(cmSystemTools::IsOff(def) || cmSystemTools::IsOff(def2))
|
|
|
|
{
|
|
|
|
*arg = "0";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*arg = "1";
|
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
newArgs.erase(argP2);
|
|
|
|
newArgs.erase(argP1);
|
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 1;
|
|
|
|
}
|
2001-08-07 01:01:26 +04:00
|
|
|
|
2004-06-11 23:07:17 +04:00
|
|
|
if (argP1 != newArgs.end() && *(argP1) == "OR" &&
|
2004-08-04 16:50:37 +04:00
|
|
|
argP2 != newArgs.end())
|
2004-05-01 18:08:14 +04:00
|
|
|
{
|
|
|
|
def = cmIfCommand::GetVariableOrNumber(arg->c_str(), makefile);
|
2004-06-11 23:07:17 +04:00
|
|
|
def2 = cmIfCommand::GetVariableOrNumber((argP2)->c_str(), makefile);
|
2004-05-01 18:08:14 +04:00
|
|
|
if(cmSystemTools::IsOff(def) && cmSystemTools::IsOff(def2))
|
|
|
|
{
|
|
|
|
*arg = "0";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*arg = "1";
|
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
newArgs.erase(argP2);
|
|
|
|
newArgs.erase(argP1);
|
|
|
|
argP1 = arg;
|
|
|
|
argP1++;
|
|
|
|
argP2 = argP1;
|
|
|
|
argP2++;
|
2004-05-01 18:08:14 +04:00
|
|
|
reducible = 1;
|
|
|
|
}
|
2004-08-04 16:50:37 +04:00
|
|
|
|
2004-05-01 18:08:14 +04:00
|
|
|
++arg;
|
2002-05-23 18:32:28 +04:00
|
|
|
}
|
|
|
|
}
|
2004-05-01 18:08:14 +04:00
|
|
|
while (reducible);
|
2002-05-23 18:32:28 +04:00
|
|
|
|
2004-05-01 18:08:14 +04:00
|
|
|
// now at the end there should only be one argument left
|
|
|
|
if (newArgs.size() == 1)
|
2002-05-23 18:32:28 +04:00
|
|
|
{
|
2004-08-04 16:50:37 +04:00
|
|
|
delete [] *errorString;
|
2004-08-03 16:13:54 +04:00
|
|
|
*errorString = 0;
|
2004-06-11 23:07:17 +04:00
|
|
|
if (*newArgs.begin() == "0")
|
2004-04-28 17:51:06 +04:00
|
|
|
{
|
2004-05-01 18:08:14 +04:00
|
|
|
return false;
|
2004-04-28 17:51:06 +04:00
|
|
|
}
|
2004-06-11 23:07:17 +04:00
|
|
|
if (*newArgs.begin() == "1")
|
2002-05-23 18:32:28 +04:00
|
|
|
{
|
2004-05-01 18:08:14 +04:00
|
|
|
return true;
|
2002-05-23 18:32:28 +04:00
|
|
|
}
|
2004-05-01 18:08:14 +04:00
|
|
|
def = makefile->GetDefinition(args[0].c_str());
|
|
|
|
if(cmSystemTools::IsOff(def))
|
2002-05-23 18:32:28 +04:00
|
|
|
{
|
2004-05-01 18:08:14 +04:00
|
|
|
return false;
|
2002-05-23 18:32:28 +04:00
|
|
|
}
|
|
|
|
}
|
2004-05-01 18:08:14 +04:00
|
|
|
|
|
|
|
return true;
|
2001-04-20 01:39:03 +04:00
|
|
|
}
|
2002-10-03 01:22:56 +04:00
|
|
|
|
|
|
|
const char* cmIfCommand::GetVariableOrString(const char* str,
|
|
|
|
const cmMakefile* mf)
|
|
|
|
{
|
|
|
|
const char* def = mf->GetDefinition(str);
|
|
|
|
if(!def)
|
|
|
|
{
|
|
|
|
def = str;
|
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|
2004-05-01 18:08:14 +04:00
|
|
|
|
|
|
|
const char* cmIfCommand::GetVariableOrNumber(const char* str,
|
|
|
|
const cmMakefile* mf)
|
|
|
|
{
|
|
|
|
const char* def = mf->GetDefinition(str);
|
|
|
|
if(!def)
|
|
|
|
{
|
|
|
|
if (atoi(str))
|
|
|
|
{
|
|
|
|
def = str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return def;
|
|
|
|
}
|