2005-02-01 10:50:37 +00:00
|
|
|
/*-
|
2002-04-13 10:57:56 +00:00
|
|
|
* Copyright (c) 1988, 1989, 1990, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1995-01-23 21:03:17 +00:00
|
|
|
* Copyright (c) 1988, 1989 by Adam de Boor
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1989 by Berkeley Softworks
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Adam de Boor.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
2000-07-09 02:54:54 +00:00
|
|
|
*
|
|
|
|
* @(#)cond.c 8.2 (Berkeley) 1/2/94
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
|
|
|
|
2000-07-09 02:54:54 +00:00
|
|
|
#include <sys/cdefs.h>
|
2002-04-13 10:17:18 +00:00
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/*
|
|
|
|
* Functions to handle conditionals in a makefile.
|
1994-05-27 12:33:43 +00:00
|
|
|
*
|
|
|
|
* Interface:
|
2005-04-01 12:31:15 +00:00
|
|
|
* Cond_Eval Evaluate the conditional in the passed line.
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
|
|
|
|
2005-02-01 10:50:37 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2005-02-02 07:36:18 +00:00
|
|
|
#include "buf.h"
|
2005-02-01 10:50:37 +00:00
|
|
|
#include "cond.h"
|
|
|
|
#include "dir.h"
|
|
|
|
#include "globals.h"
|
|
|
|
#include "GNode.h"
|
|
|
|
#include "make.h"
|
|
|
|
#include "parse.h"
|
|
|
|
#include "str.h"
|
|
|
|
#include "targ.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "var.h"
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The parsing of conditional expressions is based on this grammar:
|
|
|
|
* E -> F || E
|
|
|
|
* E -> F
|
|
|
|
* F -> T && F
|
|
|
|
* F -> T
|
|
|
|
* T -> defined(variable)
|
|
|
|
* T -> make(target)
|
|
|
|
* T -> exists(file)
|
|
|
|
* T -> empty(varspec)
|
|
|
|
* T -> target(name)
|
|
|
|
* T -> symbol
|
|
|
|
* T -> $(varspec) op value
|
|
|
|
* T -> $(varspec) == "string"
|
|
|
|
* T -> $(varspec) != "string"
|
|
|
|
* T -> ( E )
|
|
|
|
* T -> ! T
|
|
|
|
* op -> == | != | > | < | >= | <=
|
|
|
|
*
|
|
|
|
* 'symbol' is some other symbol to which the default function (condDefProc)
|
|
|
|
* is applied.
|
|
|
|
*
|
|
|
|
* Tokens are scanned from the 'condExpr' string. The scanner (CondToken)
|
|
|
|
* will return And for '&' and '&&', Or for '|' and '||', Not for '!',
|
|
|
|
* LParen for '(', RParen for ')' and will evaluate the other terminal
|
|
|
|
* symbols, using either the default function or the function given in the
|
|
|
|
* terminal, and return the result as either True or False.
|
|
|
|
*
|
|
|
|
* All Non-Terminal functions (CondE, CondF and CondT) return Err on error.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
2005-04-01 12:31:15 +00:00
|
|
|
And,
|
|
|
|
Or,
|
|
|
|
Not,
|
|
|
|
True,
|
|
|
|
False,
|
|
|
|
LParen,
|
|
|
|
RParen,
|
|
|
|
EndOfFile,
|
|
|
|
None,
|
|
|
|
Err
|
1994-05-27 12:33:43 +00:00
|
|
|
} Token;
|
|
|
|
|
2005-02-04 08:02:41 +00:00
|
|
|
typedef Boolean CondProc(int, char *);
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*-
|
|
|
|
* Structures to handle elegantly the different forms of #if's. The
|
|
|
|
* last two fields are stored in condInvert and condDefProc, respectively.
|
|
|
|
*/
|
2002-03-22 01:33:25 +00:00
|
|
|
static void CondPushBack(Token);
|
2005-02-03 11:51:25 +00:00
|
|
|
static int CondGetArg(char **, char **, const char *, Boolean);
|
2005-02-04 08:02:41 +00:00
|
|
|
static CondProc CondDoDefined;
|
|
|
|
static CondProc CondDoMake;
|
|
|
|
static CondProc CondDoExists;
|
|
|
|
static CondProc CondDoTarget;
|
|
|
|
static char *CondCvtArg(char *, double *);
|
2002-03-22 01:33:25 +00:00
|
|
|
static Token CondToken(Boolean);
|
|
|
|
static Token CondT(Boolean);
|
|
|
|
static Token CondF(Boolean);
|
|
|
|
static Token CondE(Boolean);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
static const struct If {
|
2005-04-01 12:31:15 +00:00
|
|
|
Boolean doNot; /* TRUE if default function should be negated */
|
|
|
|
CondProc *defProc; /* Default function to apply */
|
2005-04-11 07:20:10 +00:00
|
|
|
Boolean isElse; /* actually el<XXX> */
|
1994-05-27 12:33:43 +00:00
|
|
|
} ifs[] = {
|
2005-04-11 07:20:10 +00:00
|
|
|
[COND_IF] = { FALSE, CondDoDefined, FALSE },
|
|
|
|
[COND_IFDEF] = { FALSE, CondDoDefined, FALSE },
|
|
|
|
[COND_IFNDEF] = { TRUE, CondDoDefined, FALSE },
|
|
|
|
[COND_IFMAKE] = { FALSE, CondDoMake, FALSE },
|
|
|
|
[COND_IFNMAKE] = { TRUE, CondDoMake, FALSE },
|
|
|
|
[COND_ELIF] = { FALSE, CondDoDefined, TRUE },
|
|
|
|
[COND_ELIFDEF] = { FALSE, CondDoDefined, TRUE },
|
|
|
|
[COND_ELIFNDEF] = { TRUE, CondDoDefined, TRUE },
|
|
|
|
[COND_ELIFMAKE] = { FALSE, CondDoMake, TRUE },
|
|
|
|
[COND_ELIFNMAKE] = { TRUE, CondDoMake, TRUE },
|
1994-05-27 12:33:43 +00:00
|
|
|
};
|
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
static Boolean condInvert; /* Invert the default function */
|
|
|
|
static CondProc *condDefProc; /* default function to apply */
|
|
|
|
static char *condExpr; /* The expression to parse */
|
|
|
|
static Token condPushBack = None; /* Single push-back token in parsing */
|
|
|
|
|
|
|
|
#define MAXIF 30 /* greatest depth of #if'ing */
|
|
|
|
|
|
|
|
static Boolean condStack[MAXIF]; /* Stack of conditionals's values */
|
|
|
|
static int condLineno[MAXIF]; /* Line numbers of the opening .if */
|
|
|
|
static int condTop = MAXIF; /* Top-most conditional */
|
|
|
|
static int skipIfLevel = 0; /* Depth of skipped conditionals */
|
|
|
|
static int skipIfLineno[MAXIF]; /* Line numbers of skipped .ifs */
|
2005-04-11 07:20:10 +00:00
|
|
|
Boolean skipLine = FALSE; /* Whether the parse module is skipping
|
1994-05-27 12:33:43 +00:00
|
|
|
* lines */
|
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
|
|
|
* CondPushBack
|
1994-05-27 12:33:43 +00:00
|
|
|
* Push back the most recent token read. We only need one level of
|
|
|
|
* this, so the thing is just stored in 'condPushback'.
|
|
|
|
*
|
|
|
|
* Side Effects:
|
|
|
|
* condPushback is overwritten.
|
|
|
|
*/
|
|
|
|
static void
|
2004-11-30 17:46:29 +00:00
|
|
|
CondPushBack(Token t)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2004-12-01 10:29:20 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
condPushBack = t;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2004-11-30 17:46:29 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
|
|
|
* CondGetArg
|
2002-10-09 03:42:10 +00:00
|
|
|
* Find the argument of a built-in function. parens is set to TRUE
|
|
|
|
* if the arguments are bounded by parens.
|
1994-05-27 12:33:43 +00:00
|
|
|
*
|
|
|
|
* Results:
|
|
|
|
* The length of the argument and the address of the argument.
|
|
|
|
*
|
|
|
|
* Side Effects:
|
|
|
|
* The pointer is set to point to the closing parenthesis of the
|
|
|
|
* function call.
|
|
|
|
*/
|
|
|
|
static int
|
2005-02-03 11:51:25 +00:00
|
|
|
CondGetArg(char **linePtr, char **argPtr, const char *func, Boolean parens)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-01 12:31:15 +00:00
|
|
|
char *cp;
|
|
|
|
size_t argLen;
|
|
|
|
Buffer *buf;
|
|
|
|
|
|
|
|
cp = *linePtr;
|
|
|
|
if (parens) {
|
|
|
|
while (*cp != '(' && *cp != '\0') {
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
if (*cp == '(') {
|
|
|
|
cp++;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
|
|
|
|
if (*cp == '\0') {
|
|
|
|
/*
|
|
|
|
* No arguments whatsoever. Because 'make' and 'defined'
|
|
|
|
* aren't really "reserved words", we don't print a message.
|
|
|
|
* I think this is better than hitting the user with a warning
|
|
|
|
* message every time s/he uses the word 'make' or 'defined'
|
|
|
|
* at the beginning of a symbol...
|
|
|
|
*/
|
|
|
|
*argPtr = cp;
|
|
|
|
return (0);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
while (*cp == ' ' || *cp == '\t') {
|
|
|
|
cp++;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
2005-04-01 12:31:15 +00:00
|
|
|
* Create a buffer for the argument and start it out at 16 characters
|
|
|
|
* long. Why 16? Why not?
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
2005-04-01 12:31:15 +00:00
|
|
|
buf = Buf_Init(16);
|
|
|
|
|
|
|
|
while ((strchr(" \t)&|", *cp) == NULL) && (*cp != '\0')) {
|
|
|
|
if (*cp == '$') {
|
|
|
|
/*
|
|
|
|
* Parse the variable spec and install it as part of
|
|
|
|
* the argument if it's valid. We tell Var_Parse to
|
|
|
|
* complain on an undefined variable, so we don't do
|
|
|
|
* it too. Nor do we return an error, though perhaps
|
|
|
|
* we should...
|
|
|
|
*/
|
|
|
|
char *cp2;
|
|
|
|
size_t len = 0;
|
|
|
|
Boolean doFree;
|
|
|
|
|
|
|
|
cp2 = Var_Parse(cp, VAR_CMD, TRUE, &len, &doFree);
|
|
|
|
|
|
|
|
Buf_Append(buf, cp2);
|
|
|
|
if (doFree) {
|
|
|
|
free(cp2);
|
|
|
|
}
|
|
|
|
cp += len;
|
|
|
|
} else {
|
|
|
|
Buf_AddByte(buf, (Byte)*cp);
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Buf_AddByte(buf, (Byte)'\0');
|
|
|
|
*argPtr = (char *)Buf_GetAll(buf, &argLen);
|
|
|
|
Buf_Destroy(buf, FALSE);
|
|
|
|
|
|
|
|
while (*cp == ' ' || *cp == '\t') {
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
if (parens && *cp != ')') {
|
|
|
|
Parse_Error(PARSE_WARNING,
|
|
|
|
"Missing closing parenthesis for %s()", func);
|
|
|
|
return (0);
|
|
|
|
} else if (parens) {
|
|
|
|
/*
|
|
|
|
* Advance pointer past close parenthesis.
|
|
|
|
*/
|
|
|
|
cp++;
|
|
|
|
}
|
1995-05-30 06:41:30 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
*linePtr = cp;
|
|
|
|
return (argLen);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2004-11-30 17:46:29 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
|
|
|
* CondDoDefined
|
1994-05-27 12:33:43 +00:00
|
|
|
* Handle the 'defined' function for conditionals.
|
|
|
|
*
|
|
|
|
* Results:
|
|
|
|
* TRUE if the given variable is defined.
|
|
|
|
*/
|
|
|
|
static Boolean
|
2004-11-30 17:46:29 +00:00
|
|
|
CondDoDefined(int argLen, char *arg)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-01 12:31:15 +00:00
|
|
|
char savec = arg[argLen];
|
|
|
|
Boolean result;
|
|
|
|
|
|
|
|
arg[argLen] = '\0';
|
2005-05-24 15:58:35 +00:00
|
|
|
if (Var_Value(arg, VAR_CMD) != NULL) {
|
2005-04-01 12:31:15 +00:00
|
|
|
result = TRUE;
|
|
|
|
} else {
|
|
|
|
result = FALSE;
|
|
|
|
}
|
|
|
|
arg[argLen] = savec;
|
|
|
|
return (result);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2004-11-30 17:46:29 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
|
|
|
* CondDoMake
|
1994-05-27 12:33:43 +00:00
|
|
|
* Handle the 'make' function for conditionals.
|
|
|
|
*
|
|
|
|
* Results:
|
|
|
|
* TRUE if the given target is being made.
|
|
|
|
*/
|
|
|
|
static Boolean
|
2004-11-30 17:46:29 +00:00
|
|
|
CondDoMake(int argLen, char *arg)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-01 12:31:15 +00:00
|
|
|
char savec = arg[argLen];
|
|
|
|
Boolean result;
|
|
|
|
const LstNode *ln;
|
|
|
|
|
|
|
|
arg[argLen] = '\0';
|
|
|
|
result = FALSE;
|
|
|
|
LST_FOREACH(ln, &create) {
|
|
|
|
if (Str_Match(Lst_Datum(ln), arg)) {
|
|
|
|
result = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
2005-03-18 15:25:23 +00:00
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
arg[argLen] = savec;
|
|
|
|
return (result);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2004-11-30 17:46:29 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
|
|
|
* CondDoExists
|
1994-05-27 12:33:43 +00:00
|
|
|
* See if the given file exists.
|
|
|
|
*
|
|
|
|
* Results:
|
|
|
|
* TRUE if the file exists and FALSE if it does not.
|
|
|
|
*/
|
|
|
|
static Boolean
|
2004-11-30 17:46:29 +00:00
|
|
|
CondDoExists(int argLen, char *arg)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-01 12:31:15 +00:00
|
|
|
char savec = arg[argLen];
|
|
|
|
Boolean result;
|
|
|
|
char *path;
|
|
|
|
|
|
|
|
arg[argLen] = '\0';
|
|
|
|
path = Path_FindFile(arg, &dirSearchPath);
|
|
|
|
if (path != NULL) {
|
|
|
|
result = TRUE;
|
|
|
|
free(path);
|
|
|
|
} else {
|
|
|
|
result = FALSE;
|
|
|
|
}
|
|
|
|
arg[argLen] = savec;
|
|
|
|
return (result);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2004-11-30 17:46:29 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
|
|
|
* CondDoTarget
|
1994-05-27 12:33:43 +00:00
|
|
|
* See if the given node exists and is an actual target.
|
|
|
|
*
|
|
|
|
* Results:
|
|
|
|
* TRUE if the node exists as a target and FALSE if it does not.
|
|
|
|
*/
|
|
|
|
static Boolean
|
2004-11-30 17:46:29 +00:00
|
|
|
CondDoTarget(int argLen, char *arg)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-01 12:31:15 +00:00
|
|
|
char savec = arg[argLen];
|
|
|
|
Boolean result;
|
|
|
|
GNode *gn;
|
|
|
|
|
|
|
|
arg[argLen] = '\0';
|
|
|
|
gn = Targ_FindNode(arg, TARG_NOCREATE);
|
|
|
|
if ((gn != NULL) && !OP_NOP(gn->type)) {
|
|
|
|
result = TRUE;
|
|
|
|
} else {
|
|
|
|
result = FALSE;
|
|
|
|
}
|
|
|
|
arg[argLen] = savec;
|
|
|
|
return (result);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
|
|
|
* CondCvtArg
|
1994-05-27 12:33:43 +00:00
|
|
|
* Convert the given number into a double. If the number begins
|
|
|
|
* with 0x, it is interpreted as a hexadecimal integer
|
|
|
|
* and converted to a double from there. All other strings just have
|
|
|
|
* strtod called on them.
|
|
|
|
*
|
|
|
|
* Results:
|
|
|
|
* Sets 'value' to double value of string.
|
1999-05-25 13:45:08 +00:00
|
|
|
* Returns address of the first character after the last valid
|
|
|
|
* character of the converted number.
|
1994-05-27 12:33:43 +00:00
|
|
|
*
|
|
|
|
* Side Effects:
|
|
|
|
* Can change 'value' even if string is not a valid number.
|
|
|
|
*/
|
1999-05-25 13:45:08 +00:00
|
|
|
static char *
|
2002-10-09 03:42:10 +00:00
|
|
|
CondCvtArg(char *str, double *value)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-01 12:31:15 +00:00
|
|
|
|
|
|
|
if ((*str == '0') && (str[1] == 'x')) {
|
|
|
|
long i;
|
|
|
|
|
|
|
|
for (str += 2, i = 0; ; str++) {
|
|
|
|
int x;
|
|
|
|
|
|
|
|
if (isdigit((unsigned char)*str))
|
|
|
|
x = *str - '0';
|
|
|
|
else if (isxdigit((unsigned char)*str))
|
|
|
|
x = 10 + *str -
|
|
|
|
isupper((unsigned char)*str) ? 'A' : 'a';
|
|
|
|
else {
|
|
|
|
*value = (double)i;
|
|
|
|
return (str);
|
|
|
|
}
|
|
|
|
i = (i << 4) + x;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
char *eptr;
|
|
|
|
|
|
|
|
*value = strtod(str, &eptr);
|
|
|
|
return (eptr);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
2004-11-30 17:46:29 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
|
|
|
* CondToken
|
1994-05-27 12:33:43 +00:00
|
|
|
* Return the next token from the input.
|
|
|
|
*
|
|
|
|
* Results:
|
|
|
|
* A Token for the next lexical token in the stream.
|
|
|
|
*
|
|
|
|
* Side Effects:
|
|
|
|
* condPushback will be set back to None if it is used.
|
|
|
|
*/
|
|
|
|
static Token
|
2002-10-09 03:42:10 +00:00
|
|
|
CondToken(Boolean doEval)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-01 12:31:15 +00:00
|
|
|
Token t;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
if (condPushBack != None) {
|
|
|
|
t = condPushBack;
|
|
|
|
condPushBack = None;
|
|
|
|
return (t);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (*condExpr == ' ' || *condExpr == '\t') {
|
|
|
|
condExpr++;
|
|
|
|
}
|
|
|
|
switch (*condExpr) {
|
|
|
|
case '(':
|
|
|
|
t = LParen;
|
|
|
|
condExpr++;
|
|
|
|
break;
|
|
|
|
case ')':
|
|
|
|
t = RParen;
|
|
|
|
condExpr++;
|
|
|
|
break;
|
|
|
|
case '|':
|
|
|
|
if (condExpr[1] == '|') {
|
2005-04-01 12:31:15 +00:00
|
|
|
condExpr++;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-05-12 15:35:33 +00:00
|
|
|
condExpr++;
|
|
|
|
t = Or;
|
|
|
|
break;
|
|
|
|
case '&':
|
|
|
|
if (condExpr[1] == '&') {
|
2005-04-01 12:31:15 +00:00
|
|
|
condExpr++;
|
2005-05-12 15:35:33 +00:00
|
|
|
}
|
|
|
|
condExpr++;
|
|
|
|
t = And;
|
|
|
|
break;
|
|
|
|
case '!':
|
|
|
|
t = Not;
|
|
|
|
condExpr++;
|
|
|
|
break;
|
|
|
|
case '\n':
|
|
|
|
case '\0':
|
|
|
|
t = EndOfFile;
|
|
|
|
break;
|
|
|
|
case '$': {
|
2005-05-12 15:41:02 +00:00
|
|
|
char *lhs;
|
|
|
|
const char *op;
|
|
|
|
char *rhs;
|
|
|
|
char zero[] = "0";
|
|
|
|
size_t varSpecLen = 0;
|
|
|
|
Boolean doFree;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
/*
|
|
|
|
* Parse the variable spec and skip over it, saving its
|
|
|
|
* value in lhs.
|
|
|
|
*/
|
|
|
|
t = Err;
|
|
|
|
lhs = Var_Parse(condExpr, VAR_CMD, doEval,
|
|
|
|
&varSpecLen, &doFree);
|
|
|
|
if (lhs == var_Error) {
|
2005-04-01 12:31:15 +00:00
|
|
|
/*
|
2005-05-12 15:35:33 +00:00
|
|
|
* Even if !doEval, we still report syntax
|
|
|
|
* errors, which is what getting var_Error
|
|
|
|
* back with !doEval means.
|
2005-04-01 12:31:15 +00:00
|
|
|
*/
|
2005-05-12 15:35:33 +00:00
|
|
|
return (Err);
|
|
|
|
}
|
|
|
|
condExpr += varSpecLen;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
if (!isspace((unsigned char)*condExpr) &&
|
|
|
|
strchr("!=><", *condExpr) == NULL) {
|
|
|
|
Buffer *buf;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
buf = Buf_Init(0);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
Buf_Append(buf, lhs);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
if (doFree)
|
|
|
|
free(lhs);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
for (;*condExpr &&
|
|
|
|
!isspace((unsigned char)*condExpr);
|
|
|
|
condExpr++)
|
|
|
|
Buf_AddByte(buf, (Byte)*condExpr);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
Buf_AddByte(buf, (Byte)'\0');
|
|
|
|
lhs = (char *)Buf_GetAll(buf, &varSpecLen);
|
|
|
|
Buf_Destroy(buf, FALSE);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
doFree = TRUE;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
/*
|
|
|
|
* Skip whitespace to get to the operator
|
|
|
|
*/
|
|
|
|
while (isspace((unsigned char)*condExpr))
|
|
|
|
condExpr++;
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
/*
|
|
|
|
* Make sure the operator is a valid one. If it isn't a
|
|
|
|
* known relational operator, pretend we got a
|
|
|
|
* != 0 comparison.
|
|
|
|
*/
|
|
|
|
op = condExpr;
|
|
|
|
switch (*condExpr) {
|
|
|
|
case '!':
|
|
|
|
case '=':
|
|
|
|
case '<':
|
|
|
|
case '>':
|
|
|
|
if (condExpr[1] == '=') {
|
|
|
|
condExpr += 2;
|
|
|
|
} else {
|
|
|
|
condExpr += 1;
|
|
|
|
}
|
2005-05-12 15:38:11 +00:00
|
|
|
while (isspace((unsigned char)*condExpr)) {
|
|
|
|
condExpr++;
|
|
|
|
}
|
|
|
|
if (*condExpr == '\0') {
|
|
|
|
Parse_Error(PARSE_WARNING,
|
|
|
|
"Missing right-hand-side of operator");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
rhs = condExpr;
|
2005-05-12 15:35:33 +00:00
|
|
|
break;
|
2005-05-12 15:38:11 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
default:
|
|
|
|
op = "!=";
|
2005-05-12 15:41:02 +00:00
|
|
|
rhs = zero;
|
2005-05-12 15:38:11 +00:00
|
|
|
break;
|
2005-05-12 15:35:33 +00:00
|
|
|
}
|
|
|
|
if (*rhs == '"') {
|
2005-04-01 12:31:15 +00:00
|
|
|
/*
|
2005-05-12 15:35:33 +00:00
|
|
|
* Doing a string comparison. Only allow == and
|
|
|
|
* != for * operators.
|
2005-04-01 12:31:15 +00:00
|
|
|
*/
|
2005-05-12 15:35:33 +00:00
|
|
|
char *string;
|
|
|
|
char *cp, *cp2;
|
|
|
|
int qt;
|
|
|
|
Buffer *buf;
|
|
|
|
|
|
|
|
do_string_compare:
|
|
|
|
if (((*op != '!') && (*op != '=')) ||
|
|
|
|
(op[1] != '=')) {
|
2005-04-01 12:31:15 +00:00
|
|
|
Parse_Error(PARSE_WARNING,
|
2005-05-12 15:35:33 +00:00
|
|
|
"String comparison operator should "
|
|
|
|
"be either == or !=");
|
2005-04-01 12:31:15 +00:00
|
|
|
goto error;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
buf = Buf_Init(0);
|
|
|
|
qt = *rhs == '"' ? 1 : 0;
|
|
|
|
|
|
|
|
for (cp = &rhs[qt];
|
|
|
|
((qt && (*cp != '"')) ||
|
|
|
|
(!qt && strchr(" \t)", *cp) == NULL)) &&
|
|
|
|
(*cp != '\0'); cp++) {
|
|
|
|
if ((*cp == '\\') && (cp[1] != '\0')) {
|
|
|
|
/*
|
|
|
|
* Backslash escapes things --
|
|
|
|
* skip over next character, * if it exists.
|
|
|
|
*/
|
|
|
|
cp++;
|
|
|
|
Buf_AddByte(buf, (Byte)*cp);
|
|
|
|
|
|
|
|
} else if (*cp == '$') {
|
|
|
|
size_t len = 0;
|
|
|
|
Boolean freeIt;
|
|
|
|
|
|
|
|
cp2 = Var_Parse(cp, VAR_CMD,
|
|
|
|
doEval, &len, &freeIt);
|
|
|
|
if (cp2 != var_Error) {
|
|
|
|
Buf_Append(buf, cp2);
|
|
|
|
if (freeIt) {
|
|
|
|
free(cp2);
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
2005-05-12 15:35:33 +00:00
|
|
|
cp += len - 1;
|
2005-04-01 12:31:15 +00:00
|
|
|
} else {
|
2005-05-12 15:35:33 +00:00
|
|
|
Buf_AddByte(buf,
|
|
|
|
(Byte)*cp);
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
2005-05-12 15:35:33 +00:00
|
|
|
} else {
|
|
|
|
Buf_AddByte(buf, (Byte)*cp);
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
2005-05-12 15:35:33 +00:00
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
string = Buf_Peel(buf);
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
DEBUGF(COND, ("lhs = \"%s\", rhs = \"%s\", "
|
|
|
|
"op = %.2s\n", lhs, string, op));
|
|
|
|
/*
|
|
|
|
* Null-terminate rhs and perform the
|
|
|
|
* comparison. t is set to the result.
|
|
|
|
*/
|
|
|
|
if (*op == '=') {
|
|
|
|
t = strcmp(lhs, string) ? False : True;
|
|
|
|
} else {
|
|
|
|
t = strcmp(lhs, string) ? True : False;
|
|
|
|
}
|
|
|
|
free(string);
|
|
|
|
if (rhs == condExpr) {
|
2005-05-25 16:06:14 +00:00
|
|
|
if (*cp == '\0' || (!qt && *cp == ')'))
|
2005-05-12 15:35:33 +00:00
|
|
|
condExpr = cp;
|
|
|
|
else
|
|
|
|
condExpr = cp + 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* rhs is either a float or an integer.
|
|
|
|
* Convert both the lhs and the rhs to a
|
|
|
|
* double and compare the two.
|
|
|
|
*/
|
|
|
|
double left, right;
|
|
|
|
char *string;
|
|
|
|
|
|
|
|
if (*CondCvtArg(lhs, &left) != '\0')
|
|
|
|
goto do_string_compare;
|
|
|
|
if (*rhs == '$') {
|
|
|
|
size_t len = 0;
|
|
|
|
Boolean freeIt;
|
|
|
|
|
|
|
|
string = Var_Parse(rhs, VAR_CMD, doEval,
|
|
|
|
&len, &freeIt);
|
|
|
|
if (string == var_Error) {
|
|
|
|
right = 0.0;
|
2005-04-01 12:31:15 +00:00
|
|
|
} else {
|
2005-05-12 15:35:33 +00:00
|
|
|
if (*CondCvtArg(string,
|
|
|
|
&right) != '\0') {
|
|
|
|
if (freeIt)
|
|
|
|
free(string);
|
|
|
|
goto do_string_compare;
|
|
|
|
}
|
|
|
|
if (freeIt)
|
|
|
|
free(string);
|
|
|
|
if (rhs == condExpr)
|
|
|
|
condExpr += len;
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
} else {
|
2005-05-12 15:35:33 +00:00
|
|
|
char *c = CondCvtArg(rhs, &right);
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
if (c == rhs)
|
2005-04-01 12:31:15 +00:00
|
|
|
goto do_string_compare;
|
2005-05-12 15:35:33 +00:00
|
|
|
if (rhs == condExpr) {
|
|
|
|
/*
|
|
|
|
* Skip over the right-hand side
|
|
|
|
*/
|
|
|
|
condExpr = c;
|
|
|
|
}
|
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
DEBUGF(COND, ("left = %f, right = %f, "
|
|
|
|
"op = %.2s\n", left, right, op));
|
|
|
|
switch (op[0]) {
|
|
|
|
case '!':
|
|
|
|
if (op[1] != '=') {
|
|
|
|
Parse_Error(PARSE_WARNING,
|
|
|
|
"Unknown operator");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
t = (left != right ? True : False);
|
|
|
|
break;
|
|
|
|
case '=':
|
|
|
|
if (op[1] != '=') {
|
|
|
|
Parse_Error(PARSE_WARNING,
|
|
|
|
"Unknown operator");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
t = (left == right ? True : False);
|
|
|
|
break;
|
|
|
|
case '<':
|
|
|
|
if (op[1] == '=') {
|
|
|
|
t = (left <= right?True:False);
|
2005-04-01 12:31:15 +00:00
|
|
|
} else {
|
2005-05-12 15:35:33 +00:00
|
|
|
t = (left < right?True:False);
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
2005-05-12 15:35:33 +00:00
|
|
|
break;
|
|
|
|
case '>':
|
|
|
|
if (op[1] == '=') {
|
|
|
|
t = (left >= right?True:False);
|
|
|
|
} else {
|
|
|
|
t = (left > right?True:False);
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
2005-05-12 15:35:33 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-05-12 15:35:33 +00:00
|
|
|
}
|
|
|
|
error:
|
|
|
|
if (doFree)
|
|
|
|
free(lhs);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default: {
|
|
|
|
CondProc *evalProc;
|
|
|
|
Boolean invert = FALSE;
|
|
|
|
char *arg;
|
|
|
|
int arglen;
|
|
|
|
|
|
|
|
if (strncmp(condExpr, "defined", 7) == 0) {
|
|
|
|
/*
|
|
|
|
* Use CondDoDefined to evaluate the argument
|
|
|
|
* and CondGetArg to extract the argument from
|
|
|
|
* the 'function call'.
|
|
|
|
*/
|
|
|
|
evalProc = CondDoDefined;
|
|
|
|
condExpr += 7;
|
|
|
|
arglen = CondGetArg(&condExpr, &arg,
|
|
|
|
"defined", TRUE);
|
|
|
|
if (arglen == 0) {
|
|
|
|
condExpr -= 7;
|
|
|
|
goto use_default;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
} else if (strncmp(condExpr, "make", 4) == 0) {
|
|
|
|
/*
|
|
|
|
* Use CondDoMake to evaluate the argument and
|
|
|
|
* CondGetArg to extract the argument from the
|
|
|
|
* 'function call'.
|
|
|
|
*/
|
|
|
|
evalProc = CondDoMake;
|
|
|
|
condExpr += 4;
|
|
|
|
arglen = CondGetArg(&condExpr, &arg,
|
|
|
|
"make", TRUE);
|
|
|
|
if (arglen == 0) {
|
|
|
|
condExpr -= 4;
|
|
|
|
goto use_default;
|
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
} else if (strncmp(condExpr, "exists", 6) == 0) {
|
|
|
|
/*
|
|
|
|
* Use CondDoExists to evaluate the argument and
|
|
|
|
* CondGetArg to extract the argument from the
|
|
|
|
* 'function call'.
|
|
|
|
*/
|
|
|
|
evalProc = CondDoExists;
|
|
|
|
condExpr += 6;
|
|
|
|
arglen = CondGetArg(&condExpr, &arg,
|
|
|
|
"exists", TRUE);
|
|
|
|
if (arglen == 0) {
|
|
|
|
condExpr -= 6;
|
|
|
|
goto use_default;
|
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
} else if (strncmp(condExpr, "empty", 5) == 0) {
|
|
|
|
/*
|
|
|
|
* Use Var_Parse to parse the spec in parens and
|
|
|
|
* return True if the resulting string is empty.
|
|
|
|
*/
|
|
|
|
size_t length;
|
|
|
|
Boolean doFree;
|
|
|
|
char *val;
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
condExpr += 5;
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
for (arglen = 0;
|
|
|
|
condExpr[arglen] != '(' &&
|
|
|
|
condExpr[arglen] != '\0'; arglen += 1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (condExpr[arglen] != '\0') {
|
|
|
|
length = 0;
|
|
|
|
val = Var_Parse(&condExpr[arglen - 1],
|
|
|
|
VAR_CMD, FALSE, &length, &doFree);
|
|
|
|
if (val == var_Error) {
|
|
|
|
t = Err;
|
|
|
|
} else {
|
2005-04-01 12:31:15 +00:00
|
|
|
/*
|
2005-05-12 15:35:33 +00:00
|
|
|
* A variable is empty when it
|
|
|
|
* just contains spaces...
|
|
|
|
* 4/15/92, christos
|
2005-04-01 12:31:15 +00:00
|
|
|
*/
|
2005-05-12 15:35:33 +00:00
|
|
|
char *p;
|
|
|
|
|
|
|
|
for (p = val;
|
|
|
|
*p &&
|
|
|
|
isspace((unsigned char)*p);
|
|
|
|
p++)
|
|
|
|
continue;
|
|
|
|
t = (*p == '\0') ? True : False;
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
2005-05-12 15:35:33 +00:00
|
|
|
if (doFree) {
|
|
|
|
free(val);
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
|
|
|
/*
|
2005-05-12 15:35:33 +00:00
|
|
|
* Advance condExpr to beyond the
|
|
|
|
* closing ). Note that we subtract
|
|
|
|
* one from arglen + length b/c length
|
|
|
|
* is calculated from
|
|
|
|
* condExpr[arglen - 1].
|
2005-04-01 12:31:15 +00:00
|
|
|
*/
|
2005-05-12 15:35:33 +00:00
|
|
|
condExpr += arglen + length - 1;
|
|
|
|
} else {
|
|
|
|
condExpr -= 5;
|
|
|
|
goto use_default;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-05-12 15:35:33 +00:00
|
|
|
break;
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-05-12 15:35:33 +00:00
|
|
|
} else if (strncmp(condExpr, "target", 6) == 0) {
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
2005-05-12 15:35:33 +00:00
|
|
|
* Use CondDoTarget to evaluate the argument and
|
|
|
|
* CondGetArg to extract the argument from the
|
|
|
|
* 'function call'.
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
2005-05-12 15:35:33 +00:00
|
|
|
evalProc = CondDoTarget;
|
|
|
|
condExpr += 6;
|
|
|
|
arglen = CondGetArg(&condExpr, &arg,
|
|
|
|
"target", TRUE);
|
|
|
|
if (arglen == 0) {
|
|
|
|
condExpr -= 6;
|
|
|
|
goto use_default;
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
2005-05-12 15:35:33 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* The symbol is itself the argument to the
|
|
|
|
* default function. We advance condExpr to
|
|
|
|
* the end of the symbol by hand (the next
|
|
|
|
* whitespace, closing paren or binary operator)
|
|
|
|
* and set to invert the evaluation
|
|
|
|
* function if condInvert is TRUE.
|
|
|
|
*/
|
|
|
|
use_default:
|
|
|
|
invert = condInvert;
|
|
|
|
evalProc = condDefProc;
|
|
|
|
arglen = CondGetArg(&condExpr, &arg, "", FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Evaluate the argument using the set function. If
|
|
|
|
* invert is TRUE, we invert the sense of the function.
|
|
|
|
*/
|
|
|
|
t = (!doEval || (* evalProc) (arglen, arg) ?
|
|
|
|
(invert ? False : True) :
|
|
|
|
(invert ? True : False));
|
|
|
|
free(arg);
|
|
|
|
break;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
return (t);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2004-11-30 17:46:29 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
|
|
|
* CondT
|
1994-05-27 12:33:43 +00:00
|
|
|
* Parse a single term in the expression. This consists of a terminal
|
|
|
|
* symbol or Not and a terminal symbol (not including the binary
|
|
|
|
* operators):
|
|
|
|
* T -> defined(variable) | make(target) | exists(file) | symbol
|
|
|
|
* T -> ! T | ( E )
|
|
|
|
*
|
|
|
|
* Results:
|
|
|
|
* True, False or Err.
|
|
|
|
*
|
|
|
|
* Side Effects:
|
|
|
|
* Tokens are consumed.
|
|
|
|
*/
|
|
|
|
static Token
|
2002-10-09 03:42:10 +00:00
|
|
|
CondT(Boolean doEval)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-01 12:31:15 +00:00
|
|
|
Token t;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
t = CondToken(doEval);
|
|
|
|
if (t == EndOfFile) {
|
|
|
|
/*
|
|
|
|
* If we reached the end of the expression, the expression
|
|
|
|
* is malformed...
|
|
|
|
*/
|
1994-05-27 12:33:43 +00:00
|
|
|
t = Err;
|
2005-04-01 12:31:15 +00:00
|
|
|
} else if (t == LParen) {
|
|
|
|
/*
|
|
|
|
* T -> ( E )
|
|
|
|
*/
|
|
|
|
t = CondE(doEval);
|
|
|
|
if (t != Err) {
|
|
|
|
if (CondToken(doEval) != RParen) {
|
|
|
|
t = Err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (t == Not) {
|
|
|
|
t = CondT(doEval);
|
|
|
|
if (t == True) {
|
|
|
|
t = False;
|
|
|
|
} else if (t == False) {
|
|
|
|
t = True;
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
return (t);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2004-11-30 17:46:29 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
1994-05-27 12:33:43 +00:00
|
|
|
* CondF --
|
|
|
|
* Parse a conjunctive factor (nice name, wot?)
|
|
|
|
* F -> T && F | T
|
|
|
|
*
|
|
|
|
* Results:
|
|
|
|
* True, False or Err
|
|
|
|
*
|
|
|
|
* Side Effects:
|
|
|
|
* Tokens are consumed.
|
|
|
|
*/
|
|
|
|
static Token
|
2002-10-09 03:42:10 +00:00
|
|
|
CondF(Boolean doEval)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-01 12:31:15 +00:00
|
|
|
Token l, o;
|
|
|
|
|
|
|
|
l = CondT(doEval);
|
|
|
|
if (l != Err) {
|
|
|
|
o = CondToken(doEval);
|
|
|
|
|
|
|
|
if (o == And) {
|
|
|
|
/*
|
|
|
|
* F -> T && F
|
|
|
|
*
|
|
|
|
* If T is False, the whole thing will be False, but
|
|
|
|
* we have to parse the r.h.s. anyway (to throw it
|
|
|
|
* away). If T is True, the result is the r.h.s.,
|
|
|
|
* be it an Err or no.
|
|
|
|
*/
|
|
|
|
if (l == True) {
|
|
|
|
l = CondF(doEval);
|
|
|
|
} else {
|
|
|
|
CondF(FALSE);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* F -> T
|
|
|
|
*/
|
|
|
|
CondPushBack(o);
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
return (l);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2004-11-30 17:46:29 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
1994-05-27 12:33:43 +00:00
|
|
|
* CondE --
|
|
|
|
* Main expression production.
|
|
|
|
* E -> F || E | F
|
|
|
|
*
|
|
|
|
* Results:
|
|
|
|
* True, False or Err.
|
|
|
|
*
|
|
|
|
* Side Effects:
|
|
|
|
* Tokens are, of course, consumed.
|
|
|
|
*/
|
|
|
|
static Token
|
2002-10-09 03:42:10 +00:00
|
|
|
CondE(Boolean doEval)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-01 12:31:15 +00:00
|
|
|
Token l, o;
|
|
|
|
|
|
|
|
l = CondF(doEval);
|
|
|
|
if (l != Err) {
|
|
|
|
o = CondToken(doEval);
|
|
|
|
|
|
|
|
if (o == Or) {
|
|
|
|
/*
|
|
|
|
* E -> F || E
|
|
|
|
*
|
|
|
|
* A similar thing occurs for ||, except that here we
|
|
|
|
* make sure the l.h.s. is False before we bother to
|
|
|
|
* evaluate the r.h.s. Once again, if l is False, the
|
|
|
|
* result is the r.h.s. and once again if l is True,
|
|
|
|
* we parse the r.h.s. to throw it away.
|
|
|
|
*/
|
|
|
|
if (l == False) {
|
|
|
|
l = CondE(doEval);
|
|
|
|
} else {
|
|
|
|
CondE(FALSE);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* E -> F
|
|
|
|
*/
|
|
|
|
CondPushBack(o);
|
|
|
|
}
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
return (l);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2004-11-30 17:46:29 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
2005-04-11 07:20:10 +00:00
|
|
|
* Cond_If
|
|
|
|
* Handle .if<X> and .elif<X> directives.
|
|
|
|
* This function is called even when we're skipping.
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
2005-04-11 07:20:10 +00:00
|
|
|
void
|
|
|
|
Cond_If(char *line, int code, int lineno)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-11 07:20:10 +00:00
|
|
|
const struct If *ifp;
|
|
|
|
Boolean value;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
ifp = &ifs[code];
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
if (ifp->isElse) {
|
|
|
|
if (condTop == MAXIF) {
|
|
|
|
Parse_Error(PARSE_FATAL, "if-less elif");
|
|
|
|
return;
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
2005-04-11 07:20:10 +00:00
|
|
|
if (skipIfLevel != 0) {
|
2005-04-01 12:31:15 +00:00
|
|
|
/*
|
2005-04-11 07:20:10 +00:00
|
|
|
* If skipping this conditional, just ignore
|
|
|
|
* the whole thing. If we don't, the user
|
|
|
|
* might be employing a variable that's
|
|
|
|
* undefined, for which there's an enclosing
|
|
|
|
* ifdef that we're skipping...
|
2005-04-01 12:31:15 +00:00
|
|
|
*/
|
2005-04-11 07:20:10 +00:00
|
|
|
skipIfLineno[skipIfLevel - 1] = lineno;
|
|
|
|
return;
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
1995-05-30 06:41:30 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
} else if (skipLine) {
|
2005-04-01 12:31:15 +00:00
|
|
|
/*
|
2005-04-11 07:20:10 +00:00
|
|
|
* Don't even try to evaluate a conditional that's
|
|
|
|
* not an else if we're skipping things...
|
2005-04-01 12:31:15 +00:00
|
|
|
*/
|
2005-04-11 07:20:10 +00:00
|
|
|
skipIfLineno[skipIfLevel] = lineno;
|
|
|
|
skipIfLevel += 1;
|
|
|
|
return;
|
|
|
|
}
|
1995-05-30 06:41:30 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
/*
|
|
|
|
* Initialize file-global variables for parsing
|
|
|
|
*/
|
|
|
|
condDefProc = ifp->defProc;
|
|
|
|
condInvert = ifp->doNot;
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
while (*line == ' ' || *line == '\t') {
|
|
|
|
line++;
|
|
|
|
}
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
condExpr = line;
|
|
|
|
condPushBack = None;
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
switch (CondE(TRUE)) {
|
|
|
|
case True:
|
|
|
|
if (CondToken(TRUE) != EndOfFile)
|
2005-04-01 12:31:15 +00:00
|
|
|
goto err;
|
2005-04-11 07:20:10 +00:00
|
|
|
value = TRUE;
|
|
|
|
break;
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
case False:
|
|
|
|
if (CondToken(TRUE) != EndOfFile)
|
|
|
|
goto err;
|
|
|
|
value = FALSE;
|
|
|
|
break;
|
2005-04-01 12:31:15 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
case Err:
|
|
|
|
err: Parse_Error(PARSE_FATAL, "Malformed conditional (%s)", line);
|
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
abort();
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2005-04-11 07:20:10 +00:00
|
|
|
|
|
|
|
if (!ifp->isElse) {
|
|
|
|
/* push this value */
|
2005-04-01 12:31:15 +00:00
|
|
|
condTop -= 1;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
} else if (skipIfLevel != 0 || condStack[condTop]) {
|
2005-04-01 12:31:15 +00:00
|
|
|
/*
|
|
|
|
* If this is an else-type conditional, it should only take
|
|
|
|
* effect if its corresponding if was evaluated and FALSE.
|
|
|
|
* If its if was TRUE or skipped, we return COND_SKIP (and
|
|
|
|
* start skipping in case we weren't already), leaving the
|
|
|
|
* stack unmolested so later elif's don't screw up...
|
|
|
|
*/
|
|
|
|
skipLine = TRUE;
|
2005-04-11 07:20:10 +00:00
|
|
|
return;
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (condTop < 0) {
|
|
|
|
/*
|
|
|
|
* This is the one case where we can definitely proclaim a fatal
|
|
|
|
* error. If we don't, we're hosed.
|
|
|
|
*/
|
2005-04-11 07:20:10 +00:00
|
|
|
Parse_Error(PARSE_FATAL, "Too many nested if's. %d max.",MAXIF);
|
|
|
|
return;
|
2005-04-01 12:31:15 +00:00
|
|
|
}
|
2005-04-11 07:20:10 +00:00
|
|
|
|
|
|
|
/* push */
|
|
|
|
condStack[condTop] = value;
|
|
|
|
condLineno[condTop] = lineno;
|
|
|
|
skipLine = !value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cond_Else
|
|
|
|
* Handle .else statement.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Cond_Else(char *line __unused, int code __unused, int lineno __unused)
|
|
|
|
{
|
|
|
|
|
|
|
|
while (isspace((u_char)*line))
|
|
|
|
line++;
|
|
|
|
|
2005-04-29 14:37:44 +00:00
|
|
|
if (*line != '\0' && (warn_flags & WARN_DIRSYNTAX)) {
|
2005-04-28 15:37:25 +00:00
|
|
|
Parse_Error(PARSE_WARNING, "junk after .else ignored '%s'",
|
|
|
|
line);
|
2005-04-11 07:20:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (condTop == MAXIF) {
|
|
|
|
Parse_Error(PARSE_FATAL, "if-less else");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (skipIfLevel != 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (skipIfLevel != 0 || condStack[condTop]) {
|
|
|
|
/*
|
|
|
|
* An else should only take effect if its corresponding if was
|
|
|
|
* evaluated and FALSE.
|
|
|
|
* If its if was TRUE or skipped, we return COND_SKIP (and
|
|
|
|
* start skipping in case we weren't already), leaving the
|
|
|
|
* stack unmolested so later elif's don't screw up...
|
|
|
|
* XXX How does this work with two .else's?
|
|
|
|
*/
|
|
|
|
skipLine = TRUE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* inverse value */
|
|
|
|
condStack[condTop] = !condStack[condTop];
|
|
|
|
skipLine = !condStack[condTop];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cond_Endif
|
|
|
|
* Handle .endif statement.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Cond_Endif(char *line __unused, int code __unused, int lineno __unused)
|
|
|
|
{
|
|
|
|
|
|
|
|
while (isspace((u_char)*line))
|
|
|
|
line++;
|
|
|
|
|
2005-04-29 14:37:44 +00:00
|
|
|
if (*line != '\0' && (warn_flags & WARN_DIRSYNTAX)) {
|
2005-04-28 15:37:25 +00:00
|
|
|
Parse_Error(PARSE_WARNING, "junk after .endif ignored '%s'",
|
|
|
|
line);
|
2005-04-11 07:20:10 +00:00
|
|
|
}
|
2005-04-28 15:37:25 +00:00
|
|
|
|
2005-04-11 07:20:10 +00:00
|
|
|
/*
|
|
|
|
* End of a conditional section. If skipIfLevel is non-zero,
|
|
|
|
* that conditional was skipped, so lines following it should
|
|
|
|
* also be skipped. Hence, we return COND_SKIP. Otherwise,
|
|
|
|
* the conditional was read so succeeding lines should be
|
|
|
|
* parsed (think about it...) so we return COND_PARSE, unless
|
|
|
|
* this endif isn't paired with a decent if.
|
|
|
|
*/
|
|
|
|
if (skipIfLevel != 0) {
|
|
|
|
skipIfLevel -= 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (condTop == MAXIF) {
|
|
|
|
Parse_Error(PARSE_FATAL, "if-less endif");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pop */
|
|
|
|
skipLine = FALSE;
|
|
|
|
condTop += 1;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2004-11-30 17:46:29 +00:00
|
|
|
|
2005-04-01 12:31:15 +00:00
|
|
|
/**
|
|
|
|
* Cond_End
|
1994-05-27 12:33:43 +00:00
|
|
|
* Make sure everything's clean at the end of a makefile.
|
|
|
|
*
|
|
|
|
* Side Effects:
|
|
|
|
* Parse_Error will be called if open conditionals are around.
|
|
|
|
*/
|
|
|
|
void
|
2002-10-09 03:42:10 +00:00
|
|
|
Cond_End(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2005-04-01 12:31:15 +00:00
|
|
|
int level;
|
|
|
|
|
|
|
|
if (condTop != MAXIF) {
|
|
|
|
Parse_Error(PARSE_FATAL, "%d open conditional%s:",
|
|
|
|
MAXIF - condTop + skipIfLevel,
|
|
|
|
MAXIF - condTop + skipIfLevel== 1 ? "" : "s");
|
|
|
|
|
|
|
|
for (level = skipIfLevel; level > 0; level--)
|
|
|
|
Parse_Error(PARSE_FATAL, "\t%*sat line %d (skipped)",
|
|
|
|
MAXIF - condTop + level + 1, "",
|
|
|
|
skipIfLineno[level - 1]);
|
|
|
|
for (level = condTop; level < MAXIF; level++)
|
|
|
|
Parse_Error(PARSE_FATAL, "\t%*sat line %d "
|
|
|
|
"(evaluated to %s)", MAXIF - level + skipIfLevel,
|
|
|
|
"", condLineno[level],
|
|
|
|
condStack[level] ? "true" : "false");
|
|
|
|
}
|
|
|
|
condTop = MAXIF;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|