X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/blobdiff_plain/61e3dbdf67c571ec4973ab19475ced6a438ab8df..d1c182e7ea23547f2da0f621248fae25b8080af9:/conf.c diff --git a/conf.c b/conf.c index 020df7a..9baa6de 100644 --- a/conf.c +++ b/conf.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: conf.c,v 1.2 1999/07/26 23:28:39 mdw Exp $ + * $Id: conf.c,v 1.8 2001/02/03 20:33:26 mdw Exp $ * * Configuration parsing * @@ -29,6 +29,25 @@ /*----- Revision history --------------------------------------------------* * * $Log: conf.c,v $ + * Revision 1.8 2001/02/03 20:33:26 mdw + * Fix flags to be unsigned. + * + * Revision 1.7 2000/08/01 17:58:10 mdw + * Fix subtleties with functions. + * + * Revision 1.6 2000/02/12 18:13:20 mdw + * Terminate tables of sources and targets. + * + * Revision 1.5 1999/10/22 22:46:44 mdw + * Improve documentation for conf_enum. + * + * Revision 1.4 1999/10/15 21:12:36 mdw + * Remove redundant debugging code. + * + * Revision 1.3 1999/08/19 18:32:48 mdw + * Improve lexical analysis. In particular, `chmod' patterns don't have to + * be quoted any more. + * * Revision 1.2 1999/07/26 23:28:39 mdw * Major reconstruction work for new design. * @@ -63,11 +82,29 @@ /*----- Source and target tables ------------------------------------------*/ -static source_ops *sources[] = { &xsource_ops, &fsource_ops, &ssource_ops }; -static target_ops *targets[] = { &xtarget_ops, &ftarget_ops, &starget_ops }; +static source_ops *sources[] = + { &xsource_ops, &fsource_ops, &ssource_ops, 0 }; +static target_ops *targets[] = + { &xtarget_ops, &ftarget_ops, &starget_ops, 0 }; + +static const char *notword = 0; +static const char *notdelim = 0; /*----- Main code ---------------------------------------------------------*/ +/* --- @undelim@ --- * + * + * Arguments: @const char *d, dd@ = pointer to characters to escape + * + * Returns: --- + * + * Use: Modifies the tokenizer. Characters in the first list will + * always be considered to begin a word. Characters in the + * second list will always be allowed to continue a word. + */ + +void undelim(const char *d, const char *dd) { notword = d; notdelim = dd; } + /* --- @token@ --- * * * Arguments: @scanner *sc@ = pointer to scanner definition @@ -103,7 +140,7 @@ int token(scanner *sc) goto done; } - else if (isspace((unsigned char)ch)) + else if (isspace(ch)) ; else switch (ch) { @@ -122,10 +159,12 @@ int token(scanner *sc) /* --- Various self-delimiting characters --- */ case SELFDELIM: - dstr_putc(&sc->d, ch); - dstr_putz(&sc->d); - sc->t = ch; - goto done; + if (!notword || strchr(notword, ch) == 0) { + dstr_putc(&sc->d, ch); + dstr_putz(&sc->d); + sc->t = ch; + goto done; + } /* --- Bare words --- * * @@ -150,11 +189,11 @@ int token(scanner *sc) q = !q; break; case SELFDELIM: - if (q) + if (q || (notdelim && strchr(notdelim, ch))) goto insert; goto word; default: - if (!q && isspace((unsigned char)(ch))) + if (!q && isspace(ch)) goto word; insert: DPUTC(&sc->d, ch); @@ -172,7 +211,6 @@ int token(scanner *sc) } done: -/* printf("token `%s'\n", sc->d.buf); */ return (sc->t); } @@ -223,9 +261,15 @@ void error(scanner *sc, const char *msg, ...) * Returns: Index into list, zero-based, or @-1@. * * Use: Checks whether the current token is a string which matches - * one of the comma-separated items given. If not, an error is - * reported; otherwise the index of the matched item is - * returned. + * one of the comma-separated items given. The return value is + * the index (zero-based) of the matched string in the list. + * + * The flags control the behaviour if no exact match is found. + * If @ENUM_ABBREV@ is set, and the current token is a left + * substring of exactly one of the possibilities, then that one + * is chosen. If @ENUM_NONE@ is set, the value @-1@ is + * returned; otherwise an error is reported and the program is + * terminated. */ int conf_enum(scanner *sc, const char *list, unsigned f, const char *err) @@ -339,10 +383,9 @@ int conf_prefix(scanner *sc, const char *p) void conf_name(scanner *sc, char delim, dstr *d) { unsigned f = 0; - enum { - f_ok = 1, - f_bra = 2 - }; + +#define f_ok 1u +#define f_bra 2u /* --- Read an optional opening bracket --- */ @@ -380,6 +423,9 @@ void conf_name(scanner *sc, char delim, dstr *d) error(sc, "parse error, missing `]'"); } DPUTZ(d); + +#undef f_ok +#undef f_bra } /* --- @conf_parse@ --- *