Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make(1): extract EvalNotEmpty from CondParser_C...



details:   https://anonhg.NetBSD.org/src/rev/5037198db9b7
branches:  trunk
changeset: 938592:5037198db9b7
user:      rillig <rillig%NetBSD.org@localhost>
date:      Fri Sep 11 16:22:15 2020 +0000

description:
make(1): extract EvalNotEmpty from CondParser_Comparison

diffstat:

 usr.bin/make/cond.c |  55 ++++++++++++++++++++++++++--------------------------
 1 files changed, 28 insertions(+), 27 deletions(-)

diffs (89 lines):

diff -r 09367a1084a2 -r 5037198db9b7 usr.bin/make/cond.c
--- a/usr.bin/make/cond.c       Fri Sep 11 15:33:28 2020 +0000
+++ b/usr.bin/make/cond.c       Fri Sep 11 16:22:15 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cond.c,v 1.130 2020/09/11 13:58:45 rillig Exp $        */
+/*     $NetBSD: cond.c,v 1.131 2020/09/11 16:22:15 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -70,14 +70,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: cond.c,v 1.130 2020/09/11 13:58:45 rillig Exp $";
+static char rcsid[] = "$NetBSD: cond.c,v 1.131 2020/09/11 16:22:15 rillig Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)cond.c     8.2 (Berkeley) 1/2/94";
 #else
-__RCSID("$NetBSD: cond.c,v 1.130 2020/09/11 13:58:45 rillig Exp $");
+__RCSID("$NetBSD: cond.c,v 1.131 2020/09/11 16:22:15 rillig Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -523,6 +523,30 @@
     { NULL,    0, FALSE, NULL }
 };
 
+/* Evaluate a "comparison without operator", such as in ".if ${VAR}" or
+ * ".if 0". */
+static Token
+EvalNotEmpty(CondParser *par, const char *lhs, Boolean lhsQuoted)
+{
+    double left;
+
+    /* For .ifxxx "..." check for non-empty string. */
+    if (lhsQuoted)
+       return lhs[0] != '\0';
+
+    /* For .ifxxx <number> compare against zero */
+    if (TryParseNumber(lhs, &left))
+       return left != 0.0;
+
+    /* For .if ${...} check for non-empty string (defProc is ifdef). */
+    if (par->if_info->form[0] == '\0')
+       return lhs[0] != 0;
+
+    /* Otherwise action default test ... */
+    return par->if_info->defProc(strlen(lhs), lhs) != par->if_info->doNot;
+}
+
+/* Evaluate a comparison, such as "${VAR} == 12345". */
 static Token
 EvalComparison(const char *lhs, Boolean lhsQuoted, const char *op,
               const char *rhs, Boolean rhsQuoted)
@@ -639,30 +663,7 @@
        }
        break;
     default:
-       if (!doEval) {
-           t = TOK_FALSE;
-           goto done;
-       }
-       /* For .ifxxx "..." check for non-empty string. */
-       if (lhsQuoted) {
-           t = lhs[0] != '\0';
-           goto done;
-       }
-       /* For .ifxxx <number> compare against zero */
-       {
-           double left;
-           if (TryParseNumber(lhs, &left)) {
-               t = left != 0.0;
-               goto done;
-           }
-       }
-       /* For .if ${...} check for non-empty string (defProc is ifdef). */
-       if (par->if_info->form[0] == '\0') {
-           t = lhs[0] != 0;
-           goto done;
-       }
-       /* Otherwise action default test ... */
-       t = par->if_info->defProc(strlen(lhs), lhs) != par->if_info->doNot;
+        t = doEval ? EvalNotEmpty(par, lhs, lhsQuoted) : TOK_FALSE;
        goto done;
     }
 



Home | Main Index | Thread Index | Old Index