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: extract ParseModifier_Match into separate...



details:   https://anonhg.NetBSD.org/src/rev/4647c1b3d651
branches:  trunk
changeset: 959727:4647c1b3d651
user:      rillig <rillig%NetBSD.org@localhost>
date:      Tue Feb 23 00:25:06 2021 +0000

description:
make: extract ParseModifier_Match into separate function

No functional change.

diffstat:

 usr.bin/make/var.c |  33 ++++++++++++++++++++++++---------
 1 files changed, 24 insertions(+), 9 deletions(-)

diffs (74 lines):

diff -r 815e2aa7d20e -r 4647c1b3d651 usr.bin/make/var.c
--- a/usr.bin/make/var.c        Tue Feb 23 00:15:22 2021 +0000
+++ b/usr.bin/make/var.c        Tue Feb 23 00:25:06 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: var.c,v 1.844 2021/02/23 00:15:22 rillig Exp $ */
+/*     $NetBSD: var.c,v 1.845 2021/02/23 00:25:06 rillig Exp $ */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -140,7 +140,7 @@
 #include "metachar.h"
 
 /*     "@(#)var.c      8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: var.c,v 1.844 2021/02/23 00:15:22 rillig Exp $");
+MAKE_RCSID("$NetBSD: var.c,v 1.845 2021/02/23 00:25:06 rillig Exp $");
 
 typedef enum VarFlags {
        VFL_NONE        = 0,
@@ -2696,26 +2696,28 @@
        return AMR_OK;
 }
 
-/* :Mpattern or :Npattern */
-static ApplyModifierResult
-ApplyModifier_Match(const char **pp, ApplyModifiersState *st)
+/* Parse a ':M' or ':N' modifier. */
+static void
+ParseModifier_Match(const char **pp, const ApplyModifiersState *st,
+                   char **out_pattern)
 {
+       const char *mod = *pp;
        Expr *expr = st->expr;
-       const char *mod = *pp;
        Boolean copy = FALSE;   /* pattern should be, or has been, copied */
        Boolean needSubst = FALSE;
        const char *endpat;
        char *pattern;
-       ModifyWordProc modifyWord;
 
        /*
         * In the loop below, ignore ':' unless we are at (or back to) the
         * original brace level.
         * XXX: This will likely not work right if $() and ${} are intermixed.
         */
-       /* XXX: This code is similar to the one in Var_Parse.
+       /*
+        * XXX: This code is similar to the one in Var_Parse.
         * See if the code can be merged.
-        * See also ApplyModifier_Defined. */
+        * See also ApplyModifier_Defined.
+        */
        int nest = 0;
        const char *p;
        for (p = mod + 1; *p != '\0' && !(*p == ':' && nest == 0); p++) {
@@ -2769,6 +2771,19 @@
        DEBUG3(VAR, "Pattern[%s] for [%s] is [%s]\n",
            expr->var->name.str, expr->value.str, pattern);
 
+       *out_pattern = pattern;
+}
+
+/* :Mpattern or :Npattern */
+static ApplyModifierResult
+ApplyModifier_Match(const char **pp, ApplyModifiersState *st)
+{
+       const char *mod = *pp;
+       char *pattern;
+       ModifyWordProc modifyWord;
+
+       ParseModifier_Match(pp, st, &pattern);
+
        modifyWord = mod[0] == 'M' ? ModifyWord_Match : ModifyWord_NoMatch;
        ModifyWords(st, modifyWord, pattern, st->oneBigWord);
        free(pattern);



Home | Main Index | Thread Index | Old Index