cond.c revision 1.5 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
3 1.1 cgd * Copyright (c) 1988, 1989 by Adam de Boor
4 1.1 cgd * Copyright (c) 1989 by Berkeley Softworks
5 1.1 cgd * All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Adam de Boor.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.1 cgd * 3. All advertising materials mentioning features or use of this software
19 1.1 cgd * must display the following acknowledgement:
20 1.1 cgd * This product includes software developed by the University of
21 1.1 cgd * California, Berkeley and its contributors.
22 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
23 1.1 cgd * may be used to endorse or promote products derived from this software
24 1.1 cgd * without specific prior written permission.
25 1.1 cgd *
26 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 cgd * SUCH DAMAGE.
37 1.1 cgd */
38 1.1 cgd
39 1.1 cgd #ifndef lint
40 1.4 cgd /* from: static char sccsid[] = "@(#)cond.c 5.6 (Berkeley) 6/1/90"; */
41 1.5 jtc static char *rcsid = "$Id: cond.c,v 1.5 1994/06/06 22:45:23 jtc Exp $";
42 1.1 cgd #endif /* not lint */
43 1.1 cgd
44 1.1 cgd /*-
45 1.1 cgd * cond.c --
46 1.1 cgd * Functions to handle conditionals in a makefile.
47 1.1 cgd *
48 1.1 cgd * Interface:
49 1.1 cgd * Cond_Eval Evaluate the conditional in the passed line.
50 1.1 cgd *
51 1.1 cgd */
52 1.1 cgd
53 1.4 cgd #include <ctype.h>
54 1.4 cgd #include <math.h>
55 1.1 cgd #include "make.h"
56 1.4 cgd #include "hash.h"
57 1.4 cgd #include "dir.h"
58 1.4 cgd #include "buf.h"
59 1.1 cgd
60 1.1 cgd /*
61 1.1 cgd * The parsing of conditional expressions is based on this grammar:
62 1.1 cgd * E -> F || E
63 1.1 cgd * E -> F
64 1.1 cgd * F -> T && F
65 1.1 cgd * F -> T
66 1.1 cgd * T -> defined(variable)
67 1.1 cgd * T -> make(target)
68 1.1 cgd * T -> exists(file)
69 1.1 cgd * T -> empty(varspec)
70 1.1 cgd * T -> target(name)
71 1.1 cgd * T -> symbol
72 1.1 cgd * T -> $(varspec) op value
73 1.1 cgd * T -> $(varspec) == "string"
74 1.1 cgd * T -> $(varspec) != "string"
75 1.1 cgd * T -> ( E )
76 1.1 cgd * T -> ! T
77 1.1 cgd * op -> == | != | > | < | >= | <=
78 1.1 cgd *
79 1.1 cgd * 'symbol' is some other symbol to which the default function (condDefProc)
80 1.1 cgd * is applied.
81 1.1 cgd *
82 1.1 cgd * Tokens are scanned from the 'condExpr' string. The scanner (CondToken)
83 1.1 cgd * will return And for '&' and '&&', Or for '|' and '||', Not for '!',
84 1.1 cgd * LParen for '(', RParen for ')' and will evaluate the other terminal
85 1.1 cgd * symbols, using either the default function or the function given in the
86 1.1 cgd * terminal, and return the result as either True or False.
87 1.1 cgd *
88 1.1 cgd * All Non-Terminal functions (CondE, CondF and CondT) return Err on error.
89 1.1 cgd */
90 1.1 cgd typedef enum {
91 1.1 cgd And, Or, Not, True, False, LParen, RParen, EndOfFile, None, Err
92 1.1 cgd } Token;
93 1.1 cgd
94 1.1 cgd /*-
95 1.1 cgd * Structures to handle elegantly the different forms of #if's. The
96 1.1 cgd * last two fields are stored in condInvert and condDefProc, respectively.
97 1.1 cgd */
98 1.4 cgd static int CondGetArg __P((char **, char **, char *, Boolean));
99 1.4 cgd static Boolean CondDoDefined __P((int, char *));
100 1.5 jtc static int CondStrMatch __P((ClientData, ClientData));
101 1.4 cgd static Boolean CondDoMake __P((int, char *));
102 1.4 cgd static Boolean CondDoExists __P((int, char *));
103 1.4 cgd static Boolean CondDoTarget __P((int, char *));
104 1.4 cgd static Boolean CondCvtArg __P((char *, double *));
105 1.4 cgd static Token CondToken __P((Boolean));
106 1.4 cgd static Token CondT __P((Boolean));
107 1.4 cgd static Token CondF __P((Boolean));
108 1.4 cgd static Token CondE __P((Boolean));
109 1.1 cgd
110 1.1 cgd static struct If {
111 1.1 cgd char *form; /* Form of if */
112 1.1 cgd int formlen; /* Length of form */
113 1.1 cgd Boolean doNot; /* TRUE if default function should be negated */
114 1.1 cgd Boolean (*defProc)(); /* Default function to apply */
115 1.1 cgd } ifs[] = {
116 1.4 cgd { "ifdef", 5, FALSE, CondDoDefined },
117 1.4 cgd { "ifndef", 6, TRUE, CondDoDefined },
118 1.4 cgd { "ifmake", 6, FALSE, CondDoMake },
119 1.4 cgd { "ifnmake", 7, TRUE, CondDoMake },
120 1.4 cgd { "if", 2, FALSE, CondDoDefined },
121 1.4 cgd { (char *)0, 0, FALSE, (Boolean (*)())0 }
122 1.1 cgd };
123 1.1 cgd
124 1.1 cgd static Boolean condInvert; /* Invert the default function */
125 1.1 cgd static Boolean (*condDefProc)(); /* Default function to apply */
126 1.1 cgd static char *condExpr; /* The expression to parse */
127 1.1 cgd static Token condPushBack=None; /* Single push-back token used in
128 1.1 cgd * parsing */
129 1.1 cgd
130 1.1 cgd #define MAXIF 30 /* greatest depth of #if'ing */
131 1.1 cgd
132 1.1 cgd static Boolean condStack[MAXIF]; /* Stack of conditionals's values */
133 1.1 cgd static int condTop = MAXIF; /* Top-most conditional */
134 1.1 cgd static int skipIfLevel=0; /* Depth of skipped conditionals */
135 1.1 cgd static Boolean skipLine = FALSE; /* Whether the parse module is skipping
136 1.1 cgd * lines */
137 1.1 cgd
138 1.1 cgd /*-
139 1.1 cgd *-----------------------------------------------------------------------
140 1.1 cgd * CondPushBack --
141 1.1 cgd * Push back the most recent token read. We only need one level of
142 1.1 cgd * this, so the thing is just stored in 'condPushback'.
143 1.1 cgd *
144 1.1 cgd * Results:
145 1.1 cgd * None.
146 1.1 cgd *
147 1.1 cgd * Side Effects:
148 1.1 cgd * condPushback is overwritten.
149 1.1 cgd *
150 1.1 cgd *-----------------------------------------------------------------------
151 1.1 cgd */
152 1.1 cgd static void
153 1.1 cgd CondPushBack (t)
154 1.1 cgd Token t; /* Token to push back into the "stream" */
155 1.1 cgd {
156 1.1 cgd condPushBack = t;
157 1.1 cgd }
158 1.1 cgd
159 1.1 cgd /*-
161 1.1 cgd *-----------------------------------------------------------------------
162 1.1 cgd * CondGetArg --
163 1.1 cgd * Find the argument of a built-in function.
164 1.1 cgd *
165 1.1 cgd * Results:
166 1.1 cgd * The length of the argument and the address of the argument.
167 1.1 cgd *
168 1.1 cgd * Side Effects:
169 1.1 cgd * The pointer is set to point to the closing parenthesis of the
170 1.1 cgd * function call.
171 1.1 cgd *
172 1.1 cgd *-----------------------------------------------------------------------
173 1.1 cgd */
174 1.1 cgd static int
175 1.1 cgd CondGetArg (linePtr, argPtr, func, parens)
176 1.1 cgd char **linePtr;
177 1.1 cgd char **argPtr;
178 1.1 cgd char *func;
179 1.1 cgd Boolean parens; /* TRUE if arg should be bounded by parens */
180 1.1 cgd {
181 1.1 cgd register char *cp;
182 1.1 cgd int argLen;
183 1.1 cgd register Buffer buf;
184 1.1 cgd
185 1.1 cgd cp = *linePtr;
186 1.1 cgd if (parens) {
187 1.1 cgd while (*cp != '(' && *cp != '\0') {
188 1.1 cgd cp++;
189 1.1 cgd }
190 1.1 cgd if (*cp == '(') {
191 1.1 cgd cp++;
192 1.1 cgd }
193 1.1 cgd }
194 1.1 cgd
195 1.1 cgd if (*cp == '\0') {
196 1.1 cgd /*
197 1.1 cgd * No arguments whatsoever. Because 'make' and 'defined' aren't really
198 1.1 cgd * "reserved words", we don't print a message. I think this is better
199 1.1 cgd * than hitting the user with a warning message every time s/he uses
200 1.1 cgd * the word 'make' or 'defined' at the beginning of a symbol...
201 1.1 cgd */
202 1.1 cgd *argPtr = cp;
203 1.1 cgd return (0);
204 1.1 cgd }
205 1.1 cgd
206 1.1 cgd while (*cp == ' ' || *cp == '\t') {
207 1.1 cgd cp++;
208 1.1 cgd }
209 1.1 cgd
210 1.1 cgd /*
211 1.1 cgd * Create a buffer for the argument and start it out at 16 characters
212 1.1 cgd * long. Why 16? Why not?
213 1.1 cgd */
214 1.1 cgd buf = Buf_Init(16);
215 1.4 cgd
216 1.1 cgd while ((strchr(" \t)&|", *cp) == (char *)NULL) && (*cp != '\0')) {
217 1.1 cgd if (*cp == '$') {
218 1.1 cgd /*
219 1.1 cgd * Parse the variable spec and install it as part of the argument
220 1.1 cgd * if it's valid. We tell Var_Parse to complain on an undefined
221 1.1 cgd * variable, so we don't do it too. Nor do we return an error,
222 1.1 cgd * though perhaps we should...
223 1.1 cgd */
224 1.1 cgd char *cp2;
225 1.1 cgd int len;
226 1.1 cgd Boolean doFree;
227 1.1 cgd
228 1.1 cgd cp2 = Var_Parse(cp, VAR_CMD, TRUE, &len, &doFree);
229 1.1 cgd
230 1.1 cgd Buf_AddBytes(buf, strlen(cp2), (Byte *)cp2);
231 1.1 cgd if (doFree) {
232 1.1 cgd free(cp2);
233 1.1 cgd }
234 1.1 cgd cp += len;
235 1.1 cgd } else {
236 1.1 cgd Buf_AddByte(buf, (Byte)*cp);
237 1.1 cgd cp++;
238 1.1 cgd }
239 1.1 cgd }
240 1.1 cgd
241 1.1 cgd Buf_AddByte(buf, (Byte)'\0');
242 1.1 cgd *argPtr = (char *)Buf_GetAll(buf, &argLen);
243 1.1 cgd Buf_Destroy(buf, FALSE);
244 1.1 cgd
245 1.1 cgd while (*cp == ' ' || *cp == '\t') {
246 1.1 cgd cp++;
247 1.1 cgd }
248 1.1 cgd if (parens && *cp != ')') {
249 1.1 cgd Parse_Error (PARSE_WARNING, "Missing closing parenthesis for %s()",
250 1.1 cgd func);
251 1.1 cgd return (0);
252 1.1 cgd } else if (parens) {
253 1.1 cgd /*
254 1.1 cgd * Advance pointer past close parenthesis.
255 1.1 cgd */
256 1.1 cgd cp++;
257 1.1 cgd }
258 1.1 cgd
259 1.1 cgd *linePtr = cp;
260 1.1 cgd return (argLen);
261 1.1 cgd }
262 1.1 cgd
263 1.1 cgd /*-
265 1.1 cgd *-----------------------------------------------------------------------
266 1.1 cgd * CondDoDefined --
267 1.1 cgd * Handle the 'defined' function for conditionals.
268 1.1 cgd *
269 1.1 cgd * Results:
270 1.1 cgd * TRUE if the given variable is defined.
271 1.1 cgd *
272 1.1 cgd * Side Effects:
273 1.1 cgd * None.
274 1.1 cgd *
275 1.1 cgd *-----------------------------------------------------------------------
276 1.1 cgd */
277 1.1 cgd static Boolean
278 1.1 cgd CondDoDefined (argLen, arg)
279 1.1 cgd int argLen;
280 1.1 cgd char *arg;
281 1.5 jtc {
282 1.1 cgd char savec = arg[argLen];
283 1.1 cgd char *p1;
284 1.1 cgd Boolean result;
285 1.5 jtc
286 1.1 cgd arg[argLen] = '\0';
287 1.1 cgd if (Var_Value (arg, VAR_CMD, &p1) != (char *)NULL) {
288 1.1 cgd result = TRUE;
289 1.1 cgd } else {
290 1.5 jtc result = FALSE;
291 1.5 jtc }
292 1.1 cgd if (p1)
293 1.1 cgd free(p1);
294 1.1 cgd arg[argLen] = savec;
295 1.1 cgd return (result);
296 1.1 cgd }
297 1.1 cgd
298 1.1 cgd /*-
300 1.1 cgd *-----------------------------------------------------------------------
301 1.1 cgd * CondStrMatch --
302 1.1 cgd * Front-end for Str_Match so it returns 0 on match and non-zero
303 1.1 cgd * on mismatch. Callback function for CondDoMake via Lst_Find
304 1.1 cgd *
305 1.1 cgd * Results:
306 1.1 cgd * 0 if string matches pattern
307 1.1 cgd *
308 1.1 cgd * Side Effects:
309 1.1 cgd * None
310 1.1 cgd *
311 1.1 cgd *-----------------------------------------------------------------------
312 1.5 jtc */
313 1.5 jtc static int
314 1.1 cgd CondStrMatch(string, pattern)
315 1.5 jtc ClientData string;
316 1.1 cgd ClientData pattern;
317 1.1 cgd {
318 1.1 cgd return(!Str_Match((char *) string,(char *) pattern));
319 1.1 cgd }
320 1.1 cgd
321 1.1 cgd /*-
323 1.1 cgd *-----------------------------------------------------------------------
324 1.1 cgd * CondDoMake --
325 1.1 cgd * Handle the 'make' function for conditionals.
326 1.1 cgd *
327 1.1 cgd * Results:
328 1.1 cgd * TRUE if the given target is being made.
329 1.1 cgd *
330 1.1 cgd * Side Effects:
331 1.1 cgd * None.
332 1.1 cgd *
333 1.1 cgd *-----------------------------------------------------------------------
334 1.1 cgd */
335 1.1 cgd static Boolean
336 1.1 cgd CondDoMake (argLen, arg)
337 1.1 cgd int argLen;
338 1.1 cgd char *arg;
339 1.1 cgd {
340 1.1 cgd char savec = arg[argLen];
341 1.1 cgd Boolean result;
342 1.1 cgd
343 1.1 cgd arg[argLen] = '\0';
344 1.1 cgd if (Lst_Find (create, (ClientData)arg, CondStrMatch) == NILLNODE) {
345 1.1 cgd result = FALSE;
346 1.1 cgd } else {
347 1.1 cgd result = TRUE;
348 1.1 cgd }
349 1.1 cgd arg[argLen] = savec;
350 1.1 cgd return (result);
351 1.1 cgd }
352 1.1 cgd
353 1.1 cgd /*-
355 1.1 cgd *-----------------------------------------------------------------------
356 1.1 cgd * CondDoExists --
357 1.1 cgd * See if the given file exists.
358 1.1 cgd *
359 1.1 cgd * Results:
360 1.1 cgd * TRUE if the file exists and FALSE if it does not.
361 1.1 cgd *
362 1.1 cgd * Side Effects:
363 1.1 cgd * None.
364 1.1 cgd *
365 1.1 cgd *-----------------------------------------------------------------------
366 1.1 cgd */
367 1.1 cgd static Boolean
368 1.1 cgd CondDoExists (argLen, arg)
369 1.1 cgd int argLen;
370 1.1 cgd char *arg;
371 1.1 cgd {
372 1.1 cgd char savec = arg[argLen];
373 1.1 cgd Boolean result;
374 1.1 cgd char *path;
375 1.1 cgd
376 1.1 cgd arg[argLen] = '\0';
377 1.1 cgd path = Dir_FindFile(arg, dirSearchPath);
378 1.1 cgd if (path != (char *)NULL) {
379 1.1 cgd result = TRUE;
380 1.1 cgd free(path);
381 1.1 cgd } else {
382 1.1 cgd result = FALSE;
383 1.1 cgd }
384 1.1 cgd arg[argLen] = savec;
385 1.1 cgd return (result);
386 1.1 cgd }
387 1.1 cgd
388 1.1 cgd /*-
390 1.1 cgd *-----------------------------------------------------------------------
391 1.1 cgd * CondDoTarget --
392 1.1 cgd * See if the given node exists and is an actual target.
393 1.1 cgd *
394 1.1 cgd * Results:
395 1.1 cgd * TRUE if the node exists as a target and FALSE if it does not.
396 1.1 cgd *
397 1.1 cgd * Side Effects:
398 1.1 cgd * None.
399 1.1 cgd *
400 1.1 cgd *-----------------------------------------------------------------------
401 1.1 cgd */
402 1.1 cgd static Boolean
403 1.1 cgd CondDoTarget (argLen, arg)
404 1.1 cgd int argLen;
405 1.1 cgd char *arg;
406 1.1 cgd {
407 1.1 cgd char savec = arg[argLen];
408 1.1 cgd Boolean result;
409 1.1 cgd GNode *gn;
410 1.1 cgd
411 1.1 cgd arg[argLen] = '\0';
412 1.1 cgd gn = Targ_FindNode(arg, TARG_NOCREATE);
413 1.1 cgd if ((gn != NILGNODE) && !OP_NOP(gn->type)) {
414 1.1 cgd result = TRUE;
415 1.1 cgd } else {
416 1.1 cgd result = FALSE;
417 1.1 cgd }
418 1.1 cgd arg[argLen] = savec;
419 1.1 cgd return (result);
420 1.1 cgd }
421 1.4 cgd
422 1.1 cgd
423 1.4 cgd /*-
425 1.1 cgd *-----------------------------------------------------------------------
426 1.4 cgd * CondCvtArg --
427 1.4 cgd * Convert the given number into a double. If the number begins
428 1.1 cgd * with 0x, it is interpreted as a hexadecimal integer
429 1.1 cgd * and converted to a double from there. All other strings just have
430 1.4 cgd * strtod called on them.
431 1.1 cgd *
432 1.1 cgd * Results:
433 1.1 cgd * Sets 'value' to double value of string.
434 1.1 cgd * Returns true if the string was a valid number, false o.w.
435 1.4 cgd *
436 1.4 cgd * Side Effects:
437 1.1 cgd * Can change 'value' even if string is not a valid number.
438 1.4 cgd *
439 1.1 cgd *
440 1.4 cgd *-----------------------------------------------------------------------
441 1.4 cgd */
442 1.1 cgd static Boolean
443 1.4 cgd CondCvtArg(str, value)
444 1.4 cgd register char *str;
445 1.4 cgd double *value;
446 1.4 cgd {
447 1.4 cgd if ((*str == '0') && (str[1] == 'x')) {
448 1.4 cgd register long i;
449 1.4 cgd
450 1.4 cgd for (str += 2, i = 0; *str; str++) {
451 1.4 cgd int x;
452 1.1 cgd if (isdigit((unsigned char) *str))
453 1.4 cgd x = *str - '0';
454 1.4 cgd else if (isxdigit((unsigned char) *str))
455 1.4 cgd x = 10 + *str - isupper((unsigned char) *str) ? 'A' : 'a';
456 1.4 cgd else
457 1.4 cgd return FALSE;
458 1.4 cgd i = (i << 4) + x;
459 1.4 cgd }
460 1.1 cgd *value = (double) i;
461 1.1 cgd return TRUE;
462 1.1 cgd }
463 1.1 cgd else {
464 1.1 cgd char *eptr;
465 1.1 cgd *value = strtod(str, &eptr);
466 1.1 cgd return *eptr == '\0';
467 1.1 cgd }
468 1.1 cgd }
469 1.1 cgd
470 1.1 cgd /*-
472 1.1 cgd *-----------------------------------------------------------------------
473 1.1 cgd * CondToken --
474 1.1 cgd * Return the next token from the input.
475 1.1 cgd *
476 1.1 cgd * Results:
477 1.1 cgd * A Token for the next lexical token in the stream.
478 1.1 cgd *
479 1.1 cgd * Side Effects:
480 1.1 cgd * condPushback will be set back to None if it is used.
481 1.1 cgd *
482 1.1 cgd *-----------------------------------------------------------------------
483 1.1 cgd */
484 1.1 cgd static Token
485 1.1 cgd CondToken(doEval)
486 1.1 cgd Boolean doEval;
487 1.1 cgd {
488 1.1 cgd Token t;
489 1.1 cgd
490 1.1 cgd if (condPushBack == None) {
491 1.1 cgd while (*condExpr == ' ' || *condExpr == '\t') {
492 1.1 cgd condExpr++;
493 1.1 cgd }
494 1.1 cgd switch (*condExpr) {
495 1.1 cgd case '(':
496 1.1 cgd t = LParen;
497 1.1 cgd condExpr++;
498 1.1 cgd break;
499 1.1 cgd case ')':
500 1.1 cgd t = RParen;
501 1.1 cgd condExpr++;
502 1.1 cgd break;
503 1.1 cgd case '|':
504 1.1 cgd if (condExpr[1] == '|') {
505 1.1 cgd condExpr++;
506 1.1 cgd }
507 1.1 cgd condExpr++;
508 1.1 cgd t = Or;
509 1.1 cgd break;
510 1.1 cgd case '&':
511 1.1 cgd if (condExpr[1] == '&') {
512 1.1 cgd condExpr++;
513 1.1 cgd }
514 1.1 cgd condExpr++;
515 1.1 cgd t = And;
516 1.1 cgd break;
517 1.1 cgd case '!':
518 1.1 cgd t = Not;
519 1.1 cgd condExpr++;
520 1.1 cgd break;
521 1.1 cgd case '\n':
522 1.1 cgd case '\0':
523 1.1 cgd t = EndOfFile;
524 1.1 cgd break;
525 1.1 cgd case '$': {
526 1.1 cgd char *lhs;
527 1.1 cgd char *rhs;
528 1.1 cgd char *op;
529 1.1 cgd int varSpecLen;
530 1.1 cgd Boolean doFree;
531 1.1 cgd
532 1.1 cgd /*
533 1.1 cgd * Parse the variable spec and skip over it, saving its
534 1.1 cgd * value in lhs.
535 1.1 cgd */
536 1.1 cgd t = Err;
537 1.1 cgd lhs = Var_Parse(condExpr, VAR_CMD, doEval,&varSpecLen,&doFree);
538 1.1 cgd if (lhs == var_Error) {
539 1.5 jtc /*
540 1.5 jtc * Even if !doEval, we still report syntax errors, which
541 1.4 cgd * is what getting var_Error back with !doEval means.
542 1.4 cgd */
543 1.4 cgd return(Err);
544 1.4 cgd }
545 1.4 cgd condExpr += varSpecLen;
546 1.4 cgd
547 1.4 cgd if (!isspace((unsigned char) *condExpr) &&
548 1.4 cgd strchr("!=><", *condExpr) == NULL) {
549 1.4 cgd Buffer buf;
550 1.4 cgd char *cp;
551 1.4 cgd
552 1.5 jtc buf = Buf_Init(0);
553 1.5 jtc
554 1.4 cgd for (cp = lhs; *cp; cp++)
555 1.4 cgd Buf_AddByte(buf, (Byte)*cp);
556 1.4 cgd
557 1.4 cgd if (doFree)
558 1.4 cgd free(lhs);
559 1.4 cgd
560 1.4 cgd for (;*condExpr && !isspace((unsigned char) *condExpr);
561 1.4 cgd condExpr++)
562 1.4 cgd Buf_AddByte(buf, (Byte)*condExpr);
563 1.1 cgd
564 1.1 cgd Buf_AddByte(buf, (Byte)'\0');
565 1.1 cgd lhs = (char *)Buf_GetAll(buf, &varSpecLen);
566 1.5 jtc Buf_Destroy(buf, FALSE);
567 1.1 cgd
568 1.4 cgd doFree = TRUE;
569 1.1 cgd }
570 1.1 cgd
571 1.1 cgd /*
572 1.1 cgd * Skip whitespace to get to the operator
573 1.1 cgd */
574 1.1 cgd while (isspace((unsigned char) *condExpr))
575 1.1 cgd condExpr++;
576 1.1 cgd
577 1.1 cgd /*
578 1.1 cgd * Make sure the operator is a valid one. If it isn't a
579 1.1 cgd * known relational operator, pretend we got a
580 1.1 cgd * != 0 comparison.
581 1.1 cgd */
582 1.1 cgd op = condExpr;
583 1.1 cgd switch (*condExpr) {
584 1.1 cgd case '!':
585 1.1 cgd case '=':
586 1.1 cgd case '<':
587 1.1 cgd case '>':
588 1.1 cgd if (condExpr[1] == '=') {
589 1.1 cgd condExpr += 2;
590 1.1 cgd } else {
591 1.1 cgd condExpr += 1;
592 1.5 jtc }
593 1.1 cgd break;
594 1.1 cgd default:
595 1.1 cgd op = "!=";
596 1.1 cgd rhs = "0";
597 1.1 cgd
598 1.1 cgd goto do_compare;
599 1.1 cgd }
600 1.1 cgd while (isspace((unsigned char) *condExpr)) {
601 1.1 cgd condExpr++;
602 1.1 cgd }
603 1.1 cgd if (*condExpr == '\0') {
604 1.1 cgd Parse_Error(PARSE_WARNING,
605 1.1 cgd "Missing right-hand-side of operator");
606 1.1 cgd goto error;
607 1.1 cgd }
608 1.1 cgd rhs = condExpr;
609 1.4 cgd do_compare:
610 1.1 cgd if (*rhs == '"') {
611 1.1 cgd /*
612 1.4 cgd * Doing a string comparison. Only allow == and != for
613 1.1 cgd * operators.
614 1.1 cgd */
615 1.1 cgd char *string;
616 1.1 cgd char *cp, *cp2;
617 1.1 cgd int qt;
618 1.1 cgd Buffer buf;
619 1.1 cgd
620 1.4 cgd do_string_compare:
621 1.1 cgd if (((*op != '!') && (*op != '=')) || (op[1] != '=')) {
622 1.4 cgd Parse_Error(PARSE_WARNING,
623 1.4 cgd "String comparison operator should be either == or !=");
624 1.4 cgd goto error;
625 1.4 cgd }
626 1.1 cgd
627 1.1 cgd buf = Buf_Init(0);
628 1.1 cgd qt = *rhs == '"' ? 1 : 0;
629 1.1 cgd
630 1.1 cgd for (cp = &rhs[qt];
631 1.1 cgd ((qt && (*cp != '"')) ||
632 1.1 cgd (!qt && strchr(" \t)", *cp) == NULL)) &&
633 1.1 cgd (*cp != '\0'); cp++) {
634 1.1 cgd if ((*cp == '\\') && (cp[1] != '\0')) {
635 1.1 cgd /*
636 1.1 cgd * Backslash escapes things -- skip over next
637 1.1 cgd * character, if it exists.
638 1.1 cgd */
639 1.1 cgd cp++;
640 1.1 cgd Buf_AddByte(buf, (Byte)*cp);
641 1.1 cgd } else if (*cp == '$') {
642 1.1 cgd int len;
643 1.1 cgd Boolean freeIt;
644 1.1 cgd
645 1.1 cgd cp2 = Var_Parse(cp, VAR_CMD, doEval,&len, &freeIt);
646 1.1 cgd if (cp2 != var_Error) {
647 1.1 cgd Buf_AddBytes(buf, strlen(cp2), (Byte *)cp2);
648 1.1 cgd if (freeIt) {
649 1.1 cgd free(cp2);
650 1.1 cgd }
651 1.1 cgd cp += len - 1;
652 1.1 cgd } else {
653 1.1 cgd Buf_AddByte(buf, (Byte)*cp);
654 1.1 cgd }
655 1.1 cgd } else {
656 1.1 cgd Buf_AddByte(buf, (Byte)*cp);
657 1.1 cgd }
658 1.1 cgd }
659 1.1 cgd
660 1.1 cgd Buf_AddByte(buf, (Byte)0);
661 1.1 cgd
662 1.1 cgd string = (char *)Buf_GetAll(buf, (int *)0);
663 1.1 cgd Buf_Destroy(buf, FALSE);
664 1.1 cgd
665 1.1 cgd if (DEBUG(COND)) {
666 1.1 cgd printf("lhs = \"%s\", rhs = \"%s\", op = %.2s\n",
667 1.1 cgd lhs, string, op);
668 1.1 cgd }
669 1.1 cgd /*
670 1.1 cgd * Null-terminate rhs and perform the comparison.
671 1.1 cgd * t is set to the result.
672 1.4 cgd */
673 1.4 cgd if (*op == '=') {
674 1.4 cgd t = strcmp(lhs, string) ? False : True;
675 1.4 cgd } else {
676 1.1 cgd t = strcmp(lhs, string) ? True : False;
677 1.1 cgd }
678 1.1 cgd free(string);
679 1.1 cgd if (rhs == condExpr) {
680 1.1 cgd if (!qt && *cp == ')')
681 1.1 cgd condExpr = cp;
682 1.1 cgd else
683 1.1 cgd condExpr = cp + 1;
684 1.1 cgd }
685 1.4 cgd } else {
686 1.4 cgd /*
687 1.1 cgd * rhs is either a float or an integer. Convert both the
688 1.1 cgd * lhs and the rhs to a double and compare the two.
689 1.1 cgd */
690 1.1 cgd double left, right;
691 1.1 cgd char *string;
692 1.1 cgd
693 1.1 cgd if (!CondCvtArg(lhs, &left))
694 1.1 cgd goto do_string_compare;
695 1.4 cgd if (*rhs == '$') {
696 1.4 cgd int len;
697 1.4 cgd Boolean freeIt;
698 1.4 cgd
699 1.4 cgd string = Var_Parse(rhs, VAR_CMD, doEval,&len,&freeIt);
700 1.4 cgd if (string == var_Error) {
701 1.1 cgd right = 0.0;
702 1.4 cgd } else {
703 1.1 cgd if (!CondCvtArg(string, &right)) {
704 1.1 cgd if (freeIt)
705 1.1 cgd free(string);
706 1.4 cgd goto do_string_compare;
707 1.4 cgd }
708 1.1 cgd if (freeIt)
709 1.1 cgd free(string);
710 1.1 cgd if (rhs == condExpr)
711 1.1 cgd condExpr += len;
712 1.5 jtc }
713 1.5 jtc } else {
714 1.1 cgd if (!CondCvtArg(rhs, &right))
715 1.1 cgd goto do_string_compare;
716 1.1 cgd if (rhs == condExpr) {
717 1.1 cgd /*
718 1.1 cgd * Skip over the right-hand side
719 1.1 cgd */
720 1.1 cgd while(!isspace((unsigned char) *condExpr) &&
721 1.1 cgd (*condExpr != '\0')) {
722 1.1 cgd condExpr++;
723 1.1 cgd }
724 1.1 cgd }
725 1.1 cgd }
726 1.1 cgd
727 1.1 cgd if (DEBUG(COND)) {
728 1.1 cgd printf("left = %f, right = %f, op = %.2s\n", left,
729 1.1 cgd right, op);
730 1.1 cgd }
731 1.1 cgd switch(op[0]) {
732 1.1 cgd case '!':
733 1.1 cgd if (op[1] != '=') {
734 1.1 cgd Parse_Error(PARSE_WARNING,
735 1.1 cgd "Unknown operator");
736 1.1 cgd goto error;
737 1.1 cgd }
738 1.1 cgd t = (left != right ? True : False);
739 1.1 cgd break;
740 1.1 cgd case '=':
741 1.1 cgd if (op[1] != '=') {
742 1.1 cgd Parse_Error(PARSE_WARNING,
743 1.1 cgd "Unknown operator");
744 1.1 cgd goto error;
745 1.1 cgd }
746 1.1 cgd t = (left == right ? True : False);
747 1.1 cgd break;
748 1.1 cgd case '<':
749 1.1 cgd if (op[1] == '=') {
750 1.1 cgd t = (left <= right ? True : False);
751 1.1 cgd } else {
752 1.1 cgd t = (left < right ? True : False);
753 1.1 cgd }
754 1.1 cgd break;
755 1.1 cgd case '>':
756 1.1 cgd if (op[1] == '=') {
757 1.4 cgd t = (left >= right ? True : False);
758 1.1 cgd } else {
759 1.1 cgd t = (left > right ? True : False);
760 1.1 cgd }
761 1.1 cgd break;
762 1.1 cgd }
763 1.1 cgd }
764 1.1 cgd error:
765 1.1 cgd if (doFree)
766 1.1 cgd free(lhs);
767 1.1 cgd break;
768 1.1 cgd }
769 1.1 cgd default: {
770 1.1 cgd Boolean (*evalProc)();
771 1.1 cgd Boolean invert = FALSE;
772 1.1 cgd char *arg;
773 1.1 cgd int arglen;
774 1.1 cgd
775 1.1 cgd if (strncmp (condExpr, "defined", 7) == 0) {
776 1.1 cgd /*
777 1.1 cgd * Use CondDoDefined to evaluate the argument and
778 1.1 cgd * CondGetArg to extract the argument from the 'function
779 1.1 cgd * call'.
780 1.1 cgd */
781 1.1 cgd evalProc = CondDoDefined;
782 1.1 cgd condExpr += 7;
783 1.1 cgd arglen = CondGetArg (&condExpr, &arg, "defined", TRUE);
784 1.1 cgd if (arglen == 0) {
785 1.1 cgd condExpr -= 7;
786 1.1 cgd goto use_default;
787 1.1 cgd }
788 1.1 cgd } else if (strncmp (condExpr, "make", 4) == 0) {
789 1.1 cgd /*
790 1.1 cgd * Use CondDoMake to evaluate the argument and
791 1.1 cgd * CondGetArg to extract the argument from the 'function
792 1.1 cgd * call'.
793 1.1 cgd */
794 1.1 cgd evalProc = CondDoMake;
795 1.1 cgd condExpr += 4;
796 1.1 cgd arglen = CondGetArg (&condExpr, &arg, "make", TRUE);
797 1.1 cgd if (arglen == 0) {
798 1.1 cgd condExpr -= 4;
799 1.1 cgd goto use_default;
800 1.1 cgd }
801 1.1 cgd } else if (strncmp (condExpr, "exists", 6) == 0) {
802 1.1 cgd /*
803 1.1 cgd * Use CondDoExists to evaluate the argument and
804 1.1 cgd * CondGetArg to extract the argument from the
805 1.1 cgd * 'function call'.
806 1.1 cgd */
807 1.1 cgd evalProc = CondDoExists;
808 1.1 cgd condExpr += 6;
809 1.1 cgd arglen = CondGetArg(&condExpr, &arg, "exists", TRUE);
810 1.1 cgd if (arglen == 0) {
811 1.1 cgd condExpr -= 6;
812 1.1 cgd goto use_default;
813 1.1 cgd }
814 1.1 cgd } else if (strncmp(condExpr, "empty", 5) == 0) {
815 1.1 cgd /*
816 1.1 cgd * Use Var_Parse to parse the spec in parens and return
817 1.1 cgd * True if the resulting string is empty.
818 1.1 cgd */
819 1.1 cgd int length;
820 1.5 jtc Boolean doFree;
821 1.5 jtc char *val;
822 1.1 cgd
823 1.1 cgd condExpr += 5;
824 1.1 cgd
825 1.1 cgd for (arglen = 0;
826 1.1 cgd condExpr[arglen] != '(' && condExpr[arglen] != '\0';
827 1.1 cgd arglen += 1)
828 1.4 cgd continue;
829 1.4 cgd
830 1.4 cgd if (condExpr[arglen] != '\0') {
831 1.4 cgd val = Var_Parse(&condExpr[arglen - 1], VAR_CMD,
832 1.4 cgd doEval, &length, &doFree);
833 1.5 jtc if (val == var_Error) {
834 1.4 cgd t = Err;
835 1.4 cgd } else {
836 1.1 cgd /*
837 1.1 cgd * A variable is empty when it just contains
838 1.1 cgd * spaces... 4/15/92, christos
839 1.1 cgd */
840 1.1 cgd char *p;
841 1.1 cgd for (p = val; *p && isspace((unsigned char)*p); p++)
842 1.1 cgd continue;
843 1.1 cgd t = (*p == '\0') ? True : False;
844 1.1 cgd }
845 1.1 cgd if (doFree) {
846 1.1 cgd free(val);
847 1.1 cgd }
848 1.1 cgd /*
849 1.1 cgd * Advance condExpr to beyond the closing ). Note that
850 1.1 cgd * we subtract one from arglen + length b/c length
851 1.1 cgd * is calculated from condExpr[arglen - 1].
852 1.1 cgd */
853 1.1 cgd condExpr += arglen + length - 1;
854 1.1 cgd } else {
855 1.1 cgd condExpr -= 5;
856 1.1 cgd goto use_default;
857 1.1 cgd }
858 1.1 cgd break;
859 1.1 cgd } else if (strncmp (condExpr, "target", 6) == 0) {
860 1.1 cgd /*
861 1.1 cgd * Use CondDoTarget to evaluate the argument and
862 1.1 cgd * CondGetArg to extract the argument from the
863 1.1 cgd * 'function call'.
864 1.1 cgd */
865 1.1 cgd evalProc = CondDoTarget;
866 1.1 cgd condExpr += 6;
867 1.1 cgd arglen = CondGetArg(&condExpr, &arg, "target", TRUE);
868 1.1 cgd if (arglen == 0) {
869 1.1 cgd condExpr -= 6;
870 1.1 cgd goto use_default;
871 1.1 cgd }
872 1.1 cgd } else {
873 1.1 cgd /*
874 1.1 cgd * The symbol is itself the argument to the default
875 1.1 cgd * function. We advance condExpr to the end of the symbol
876 1.1 cgd * by hand (the next whitespace, closing paren or
877 1.1 cgd * binary operator) and set to invert the evaluation
878 1.1 cgd * function if condInvert is TRUE.
879 1.1 cgd */
880 1.1 cgd use_default:
881 1.1 cgd invert = condInvert;
882 1.1 cgd evalProc = condDefProc;
883 1.1 cgd arglen = CondGetArg(&condExpr, &arg, "", FALSE);
884 1.1 cgd }
885 1.1 cgd
886 1.1 cgd /*
887 1.1 cgd * Evaluate the argument using the set function. If invert
888 1.1 cgd * is TRUE, we invert the sense of the function.
889 1.1 cgd */
890 1.1 cgd t = (!doEval || (* evalProc) (arglen, arg) ?
891 1.1 cgd (invert ? False : True) :
892 1.1 cgd (invert ? True : False));
893 1.1 cgd free(arg);
894 1.1 cgd break;
895 1.1 cgd }
896 1.1 cgd }
897 1.1 cgd } else {
898 1.1 cgd t = condPushBack;
899 1.1 cgd condPushBack = None;
900 1.1 cgd }
901 1.1 cgd return (t);
902 1.1 cgd }
903 1.1 cgd
904 1.1 cgd /*-
906 1.1 cgd *-----------------------------------------------------------------------
907 1.1 cgd * CondT --
908 1.1 cgd * Parse a single term in the expression. This consists of a terminal
909 1.1 cgd * symbol or Not and a terminal symbol (not including the binary
910 1.1 cgd * operators):
911 1.1 cgd * T -> defined(variable) | make(target) | exists(file) | symbol
912 1.1 cgd * T -> ! T | ( E )
913 1.1 cgd *
914 1.1 cgd * Results:
915 1.1 cgd * True, False or Err.
916 1.1 cgd *
917 1.1 cgd * Side Effects:
918 1.1 cgd * Tokens are consumed.
919 1.1 cgd *
920 1.1 cgd *-----------------------------------------------------------------------
921 1.1 cgd */
922 1.1 cgd static Token
923 1.1 cgd CondT(doEval)
924 1.1 cgd Boolean doEval;
925 1.1 cgd {
926 1.1 cgd Token t;
927 1.1 cgd
928 1.1 cgd t = CondToken(doEval);
929 1.1 cgd
930 1.1 cgd if (t == EndOfFile) {
931 1.1 cgd /*
932 1.1 cgd * If we reached the end of the expression, the expression
933 1.1 cgd * is malformed...
934 1.1 cgd */
935 1.1 cgd t = Err;
936 1.1 cgd } else if (t == LParen) {
937 1.1 cgd /*
938 1.1 cgd * T -> ( E )
939 1.1 cgd */
940 1.1 cgd t = CondE(doEval);
941 1.1 cgd if (t != Err) {
942 1.1 cgd if (CondToken(doEval) != RParen) {
943 1.1 cgd t = Err;
944 1.1 cgd }
945 1.1 cgd }
946 1.1 cgd } else if (t == Not) {
947 1.1 cgd t = CondT(doEval);
948 1.1 cgd if (t == True) {
949 1.1 cgd t = False;
950 1.1 cgd } else if (t == False) {
951 1.1 cgd t = True;
952 1.1 cgd }
953 1.1 cgd }
954 1.1 cgd return (t);
955 1.1 cgd }
956 1.1 cgd
957 1.1 cgd /*-
959 1.1 cgd *-----------------------------------------------------------------------
960 1.1 cgd * CondF --
961 1.1 cgd * Parse a conjunctive factor (nice name, wot?)
962 1.1 cgd * F -> T && F | T
963 1.1 cgd *
964 1.1 cgd * Results:
965 1.1 cgd * True, False or Err
966 1.1 cgd *
967 1.1 cgd * Side Effects:
968 1.1 cgd * Tokens are consumed.
969 1.1 cgd *
970 1.1 cgd *-----------------------------------------------------------------------
971 1.1 cgd */
972 1.1 cgd static Token
973 1.1 cgd CondF(doEval)
974 1.1 cgd Boolean doEval;
975 1.1 cgd {
976 1.1 cgd Token l, o;
977 1.1 cgd
978 1.1 cgd l = CondT(doEval);
979 1.1 cgd if (l != Err) {
980 1.1 cgd o = CondToken(doEval);
981 1.1 cgd
982 1.1 cgd if (o == And) {
983 1.1 cgd /*
984 1.1 cgd * F -> T && F
985 1.1 cgd *
986 1.1 cgd * If T is False, the whole thing will be False, but we have to
987 1.1 cgd * parse the r.h.s. anyway (to throw it away).
988 1.1 cgd * If T is True, the result is the r.h.s., be it an Err or no.
989 1.1 cgd */
990 1.1 cgd if (l == True) {
991 1.1 cgd l = CondF(doEval);
992 1.1 cgd } else {
993 1.1 cgd (void) CondF(FALSE);
994 1.1 cgd }
995 1.1 cgd } else {
996 1.1 cgd /*
997 1.1 cgd * F -> T
998 1.1 cgd */
999 1.1 cgd CondPushBack (o);
1000 1.1 cgd }
1001 1.1 cgd }
1002 1.1 cgd return (l);
1003 1.1 cgd }
1004 1.1 cgd
1005 1.1 cgd /*-
1007 1.1 cgd *-----------------------------------------------------------------------
1008 1.1 cgd * CondE --
1009 1.1 cgd * Main expression production.
1010 1.1 cgd * E -> F || E | F
1011 1.1 cgd *
1012 1.1 cgd * Results:
1013 1.1 cgd * True, False or Err.
1014 1.1 cgd *
1015 1.1 cgd * Side Effects:
1016 1.1 cgd * Tokens are, of course, consumed.
1017 1.1 cgd *
1018 1.1 cgd *-----------------------------------------------------------------------
1019 1.1 cgd */
1020 1.1 cgd static Token
1021 1.1 cgd CondE(doEval)
1022 1.1 cgd Boolean doEval;
1023 1.1 cgd {
1024 1.1 cgd Token l, o;
1025 1.1 cgd
1026 1.1 cgd l = CondF(doEval);
1027 1.1 cgd if (l != Err) {
1028 1.1 cgd o = CondToken(doEval);
1029 1.1 cgd
1030 1.1 cgd if (o == Or) {
1031 1.1 cgd /*
1032 1.1 cgd * E -> F || E
1033 1.1 cgd *
1034 1.1 cgd * A similar thing occurs for ||, except that here we make sure
1035 1.1 cgd * the l.h.s. is False before we bother to evaluate the r.h.s.
1036 1.1 cgd * Once again, if l is False, the result is the r.h.s. and once
1037 1.1 cgd * again if l is True, we parse the r.h.s. to throw it away.
1038 1.1 cgd */
1039 1.1 cgd if (l == False) {
1040 1.1 cgd l = CondE(doEval);
1041 1.1 cgd } else {
1042 1.1 cgd (void) CondE(FALSE);
1043 1.1 cgd }
1044 1.1 cgd } else {
1045 1.1 cgd /*
1046 1.1 cgd * E -> F
1047 1.1 cgd */
1048 1.1 cgd CondPushBack (o);
1049 1.1 cgd }
1050 1.1 cgd }
1051 1.1 cgd return (l);
1052 1.1 cgd }
1053 1.1 cgd
1054 1.1 cgd /*-
1056 1.1 cgd *-----------------------------------------------------------------------
1057 1.1 cgd * Cond_Eval --
1058 1.1 cgd * Evaluate the conditional in the passed line. The line
1059 1.1 cgd * looks like this:
1060 1.1 cgd * #<cond-type> <expr>
1061 1.1 cgd * where <cond-type> is any of if, ifmake, ifnmake, ifdef,
1062 1.1 cgd * ifndef, elif, elifmake, elifnmake, elifdef, elifndef
1063 1.1 cgd * and <expr> consists of &&, ||, !, make(target), defined(variable)
1064 1.4 cgd * and parenthetical groupings thereof.
1065 1.1 cgd *
1066 1.1 cgd * Results:
1067 1.1 cgd * COND_PARSE if should parse lines after the conditional
1068 1.1 cgd * COND_SKIP if should skip lines after the conditional
1069 1.1 cgd * COND_INVALID if not a valid conditional.
1070 1.4 cgd *
1071 1.1 cgd * Side Effects:
1072 1.1 cgd * None.
1073 1.1 cgd *
1074 1.1 cgd *-----------------------------------------------------------------------
1075 1.1 cgd */
1076 1.1 cgd int
1077 1.1 cgd Cond_Eval (line)
1078 1.1 cgd char *line; /* Line to parse */
1079 1.1 cgd {
1080 1.1 cgd struct If *ifp;
1081 1.1 cgd Boolean isElse;
1082 1.1 cgd Boolean value = FALSE;
1083 1.1 cgd int level; /* Level at which to report errors. */
1084 1.1 cgd
1085 1.1 cgd level = PARSE_FATAL;
1086 1.1 cgd
1087 1.1 cgd for (line++; *line == ' ' || *line == '\t'; line++) {
1088 1.1 cgd continue;
1089 1.1 cgd }
1090 1.1 cgd
1091 1.1 cgd /*
1092 1.1 cgd * Find what type of if we're dealing with. The result is left
1093 1.1 cgd * in ifp and isElse is set TRUE if it's an elif line.
1094 1.1 cgd */
1095 1.1 cgd if (line[0] == 'e' && line[1] == 'l') {
1096 1.1 cgd line += 2;
1097 1.1 cgd isElse = TRUE;
1098 1.1 cgd } else if (strncmp (line, "endif", 5) == 0) {
1099 1.1 cgd /*
1100 1.1 cgd * End of a conditional section. If skipIfLevel is non-zero, that
1101 1.1 cgd * conditional was skipped, so lines following it should also be
1102 1.1 cgd * skipped. Hence, we return COND_SKIP. Otherwise, the conditional
1103 1.1 cgd * was read so succeeding lines should be parsed (think about it...)
1104 1.1 cgd * so we return COND_PARSE, unless this endif isn't paired with
1105 1.1 cgd * a decent if.
1106 1.1 cgd */
1107 1.1 cgd if (skipIfLevel != 0) {
1108 1.1 cgd skipIfLevel -= 1;
1109 1.1 cgd return (COND_SKIP);
1110 1.1 cgd } else {
1111 1.1 cgd if (condTop == MAXIF) {
1112 1.1 cgd Parse_Error (level, "if-less endif");
1113 1.1 cgd return (COND_INVALID);
1114 1.1 cgd } else {
1115 1.1 cgd skipLine = FALSE;
1116 1.1 cgd condTop += 1;
1117 1.1 cgd return (COND_PARSE);
1118 1.1 cgd }
1119 1.1 cgd }
1120 1.1 cgd } else {
1121 1.1 cgd isElse = FALSE;
1122 1.1 cgd }
1123 1.1 cgd
1124 1.1 cgd /*
1125 1.1 cgd * Figure out what sort of conditional it is -- what its default
1126 1.1 cgd * function is, etc. -- by looking in the table of valid "ifs"
1127 1.1 cgd */
1128 1.1 cgd for (ifp = ifs; ifp->form != (char *)0; ifp++) {
1129 1.1 cgd if (strncmp (ifp->form, line, ifp->formlen) == 0) {
1130 1.1 cgd break;
1131 1.1 cgd }
1132 1.1 cgd }
1133 1.1 cgd
1134 1.1 cgd if (ifp->form == (char *) 0) {
1135 1.1 cgd /*
1136 1.1 cgd * Nothing fit. If the first word on the line is actually
1137 1.1 cgd * "else", it's a valid conditional whose value is the inverse
1138 1.1 cgd * of the previous if we parsed.
1139 1.1 cgd */
1140 1.1 cgd if (isElse && (line[0] == 's') && (line[1] == 'e')) {
1141 1.1 cgd if (condTop == MAXIF) {
1142 1.1 cgd Parse_Error (level, "if-less else");
1143 1.1 cgd return (COND_INVALID);
1144 1.1 cgd } else if (skipIfLevel == 0) {
1145 1.1 cgd value = !condStack[condTop];
1146 1.1 cgd } else {
1147 1.1 cgd return (COND_SKIP);
1148 1.1 cgd }
1149 1.1 cgd } else {
1150 1.1 cgd /*
1151 1.1 cgd * Not a valid conditional type. No error...
1152 1.1 cgd */
1153 1.1 cgd return (COND_INVALID);
1154 1.1 cgd }
1155 1.1 cgd } else {
1156 1.1 cgd if (isElse) {
1157 1.1 cgd if (condTop == MAXIF) {
1158 1.1 cgd Parse_Error (level, "if-less elif");
1159 1.1 cgd return (COND_INVALID);
1160 1.1 cgd } else if (skipIfLevel != 0) {
1161 1.1 cgd /*
1162 1.1 cgd * If skipping this conditional, just ignore the whole thing.
1163 1.1 cgd * If we don't, the user might be employing a variable that's
1164 1.1 cgd * undefined, for which there's an enclosing ifdef that
1165 1.1 cgd * we're skipping...
1166 1.1 cgd */
1167 1.1 cgd return(COND_SKIP);
1168 1.1 cgd }
1169 1.1 cgd } else if (skipLine) {
1170 1.1 cgd /*
1171 1.1 cgd * Don't even try to evaluate a conditional that's not an else if
1172 1.1 cgd * we're skipping things...
1173 1.1 cgd */
1174 1.1 cgd skipIfLevel += 1;
1175 1.1 cgd return(COND_SKIP);
1176 1.1 cgd }
1177 1.1 cgd
1178 1.1 cgd /*
1179 1.1 cgd * Initialize file-global variables for parsing
1180 1.1 cgd */
1181 1.1 cgd condDefProc = ifp->defProc;
1182 1.1 cgd condInvert = ifp->doNot;
1183 1.1 cgd
1184 1.1 cgd line += ifp->formlen;
1185 1.1 cgd
1186 1.1 cgd while (*line == ' ' || *line == '\t') {
1187 1.1 cgd line++;
1188 1.1 cgd }
1189 1.1 cgd
1190 1.1 cgd condExpr = line;
1191 1.1 cgd condPushBack = None;
1192 1.1 cgd
1193 1.1 cgd switch (CondE(TRUE)) {
1194 1.1 cgd case True:
1195 1.1 cgd if (CondToken(TRUE) == EndOfFile) {
1196 1.1 cgd value = TRUE;
1197 1.1 cgd break;
1198 1.1 cgd }
1199 1.1 cgd goto err;
1200 1.4 cgd /*FALLTHRU*/
1201 1.4 cgd case False:
1202 1.1 cgd if (CondToken(TRUE) == EndOfFile) {
1203 1.1 cgd value = FALSE;
1204 1.1 cgd break;
1205 1.1 cgd }
1206 1.1 cgd /*FALLTHRU*/
1207 1.1 cgd case Err:
1208 1.1 cgd err:
1209 1.1 cgd Parse_Error (level, "Malformed conditional (%s)",
1210 1.1 cgd line);
1211 1.1 cgd return (COND_INVALID);
1212 1.1 cgd default:
1213 1.1 cgd break;
1214 1.1 cgd }
1215 1.1 cgd }
1216 1.1 cgd if (!isElse) {
1217 1.1 cgd condTop -= 1;
1218 1.1 cgd } else if ((skipIfLevel != 0) || condStack[condTop]) {
1219 1.1 cgd /*
1220 1.1 cgd * If this is an else-type conditional, it should only take effect
1221 1.1 cgd * if its corresponding if was evaluated and FALSE. If its if was
1222 1.1 cgd * TRUE or skipped, we return COND_SKIP (and start skipping in case
1223 1.1 cgd * we weren't already), leaving the stack unmolested so later elif's
1224 1.1 cgd * don't screw up...
1225 1.1 cgd */
1226 1.1 cgd skipLine = TRUE;
1227 1.1 cgd return (COND_SKIP);
1228 1.1 cgd }
1229 1.1 cgd
1230 1.1 cgd if (condTop < 0) {
1231 1.1 cgd /*
1232 1.1 cgd * This is the one case where we can definitely proclaim a fatal
1233 1.1 cgd * error. If we don't, we're hosed.
1234 1.1 cgd */
1235 1.1 cgd Parse_Error (PARSE_FATAL, "Too many nested if's. %d max.", MAXIF);
1236 1.1 cgd return (COND_INVALID);
1237 1.1 cgd } else {
1238 1.1 cgd condStack[condTop] = value;
1239 1.1 cgd skipLine = !value;
1240 1.1 cgd return (value ? COND_PARSE : COND_SKIP);
1241 1.1 cgd }
1242 1.1 cgd }
1243 1.1 cgd
1244 1.1 cgd /*-
1246 1.1 cgd *-----------------------------------------------------------------------
1247 1.1 cgd * Cond_End --
1248 1.1 cgd * Make sure everything's clean at the end of a makefile.
1249 1.1 cgd *
1250 1.1 cgd * Results:
1251 1.1 cgd * None.
1252 1.1 cgd *
1253 1.1 cgd * Side Effects:
1254 * Parse_Error will be called if open conditionals are around.
1255 *
1256 *-----------------------------------------------------------------------
1257 */
1258 void
1259 Cond_End()
1260 {
1261 if (condTop != MAXIF) {
1262 Parse_Error(PARSE_FATAL, "%d open conditional%s", MAXIF-condTop,
1263 MAXIF-condTop == 1 ? "" : "s");
1264 }
1265 condTop = MAXIF;
1266 }
1267