[3444] | 1 | /* argmatch.c -- find a match for a string in an array
|
---|
| 2 |
|
---|
| 3 | Copyright (C) 1990, 1998, 1999, 2001, 2002, 2003 Free Software
|
---|
| 4 | Foundation, Inc.
|
---|
| 5 |
|
---|
| 6 | This program is free software; you can redistribute it and/or modify
|
---|
| 7 | it under the terms of the GNU General Public License as published by
|
---|
| 8 | the Free Software Foundation; either version 2, or (at your option)
|
---|
| 9 | any later version.
|
---|
| 10 |
|
---|
| 11 | This program is distributed in the hope that it will be useful,
|
---|
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 14 | GNU General Public License for more details.
|
---|
| 15 |
|
---|
| 16 | You should have received a copy of the GNU General Public License
|
---|
| 17 | along with this program; if not, write to the Free Software Foundation,
|
---|
| 18 | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
---|
| 19 |
|
---|
| 20 | /* Written by David MacKenzie <djm@ai.mit.edu>
|
---|
| 21 | Modified by Akim Demaille <demaille@inf.enst.fr> */
|
---|
| 22 |
|
---|
| 23 | #if HAVE_CONFIG_H
|
---|
| 24 | # include <config.h>
|
---|
| 25 | #endif
|
---|
| 26 |
|
---|
| 27 | /* Specification. */
|
---|
| 28 | #include "argmatch.h"
|
---|
| 29 |
|
---|
| 30 | #include <stdio.h>
|
---|
| 31 | #include <stdlib.h>
|
---|
| 32 | #include <string.h>
|
---|
| 33 |
|
---|
| 34 | #include "gettext.h"
|
---|
| 35 | #define _(msgid) gettext (msgid)
|
---|
| 36 |
|
---|
| 37 | #include "error.h"
|
---|
| 38 | #include "quotearg.h"
|
---|
| 39 | #include "quote.h"
|
---|
| 40 | #include "unlocked-io.h"
|
---|
| 41 |
|
---|
| 42 | /* When reporting an invalid argument, show nonprinting characters
|
---|
| 43 | by using the quoting style ARGMATCH_QUOTING_STYLE. Do not use
|
---|
| 44 | literal_quoting_style. */
|
---|
| 45 | #ifndef ARGMATCH_QUOTING_STYLE
|
---|
| 46 | # define ARGMATCH_QUOTING_STYLE locale_quoting_style
|
---|
| 47 | #endif
|
---|
| 48 |
|
---|
| 49 | #ifndef EXIT_FAILURE
|
---|
| 50 | # define EXIT_FAILURE 1
|
---|
| 51 | #endif
|
---|
| 52 |
|
---|
| 53 | /* Non failing version of argmatch call this function after failing. */
|
---|
| 54 | #ifndef ARGMATCH_DIE
|
---|
| 55 | # define ARGMATCH_DIE exit (EXIT_FAILURE)
|
---|
| 56 | #endif
|
---|
| 57 |
|
---|
| 58 | #ifdef ARGMATCH_DIE_DECL
|
---|
| 59 | ARGMATCH_DIE_DECL;
|
---|
| 60 | #endif
|
---|
| 61 |
|
---|
| 62 | static void
|
---|
| 63 | __argmatch_die (void)
|
---|
| 64 | {
|
---|
| 65 | ARGMATCH_DIE;
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | /* Used by XARGMATCH and XARGCASEMATCH. See description in argmatch.h.
|
---|
| 69 | Default to __argmatch_die, but allow caller to change this at run-time. */
|
---|
| 70 | argmatch_exit_fn argmatch_die = __argmatch_die;
|
---|
| 71 |
|
---|
| 72 | |
---|
| 73 |
|
---|
| 74 | /* If ARG is an unambiguous match for an element of the
|
---|
| 75 | null-terminated array ARGLIST, return the index in ARGLIST
|
---|
| 76 | of the matched element, else -1 if it does not match any element
|
---|
| 77 | or -2 if it is ambiguous (is a prefix of more than one element).
|
---|
| 78 |
|
---|
| 79 | If VALLIST is none null, use it to resolve ambiguities limited to
|
---|
| 80 | synonyms, i.e., for
|
---|
| 81 | "yes", "yop" -> 0
|
---|
| 82 | "no", "nope" -> 1
|
---|
| 83 | "y" is a valid argument, for `0', and "n" for `1'. */
|
---|
| 84 |
|
---|
| 85 | int
|
---|
| 86 | argmatch (const char *arg, const char *const *arglist,
|
---|
| 87 | const char *vallist, size_t valsize)
|
---|
| 88 | {
|
---|
| 89 | int i; /* Temporary index in ARGLIST. */
|
---|
| 90 | size_t arglen; /* Length of ARG. */
|
---|
| 91 | int matchind = -1; /* Index of first nonexact match. */
|
---|
| 92 | int ambiguous = 0; /* If nonzero, multiple nonexact match(es). */
|
---|
| 93 |
|
---|
| 94 | arglen = strlen (arg);
|
---|
| 95 |
|
---|
| 96 | /* Test all elements for either exact match or abbreviated matches. */
|
---|
| 97 | for (i = 0; arglist[i]; i++)
|
---|
| 98 | {
|
---|
| 99 | if (!strncmp (arglist[i], arg, arglen))
|
---|
| 100 | {
|
---|
| 101 | if (strlen (arglist[i]) == arglen)
|
---|
| 102 | /* Exact match found. */
|
---|
| 103 | return i;
|
---|
| 104 | else if (matchind == -1)
|
---|
| 105 | /* First nonexact match found. */
|
---|
| 106 | matchind = i;
|
---|
| 107 | else
|
---|
| 108 | {
|
---|
| 109 | /* Second nonexact match found. */
|
---|
| 110 | if (vallist == NULL
|
---|
| 111 | || memcmp (vallist + valsize * matchind,
|
---|
| 112 | vallist + valsize * i, valsize))
|
---|
| 113 | {
|
---|
| 114 | /* There is a real ambiguity, or we could not
|
---|
| 115 | disambiguate. */
|
---|
| 116 | ambiguous = 1;
|
---|
| 117 | }
|
---|
| 118 | }
|
---|
| 119 | }
|
---|
| 120 | }
|
---|
| 121 | if (ambiguous)
|
---|
| 122 | return -2;
|
---|
| 123 | else
|
---|
| 124 | return matchind;
|
---|
| 125 | }
|
---|
| 126 |
|
---|
| 127 | /* Error reporting for argmatch.
|
---|
| 128 | CONTEXT is a description of the type of entity that was being matched.
|
---|
| 129 | VALUE is the invalid value that was given.
|
---|
| 130 | PROBLEM is the return value from argmatch. */
|
---|
| 131 |
|
---|
| 132 | void
|
---|
| 133 | argmatch_invalid (const char *context, const char *value, int problem)
|
---|
| 134 | {
|
---|
| 135 | char const *format = (problem == -1
|
---|
| 136 | ? _("invalid argument %s for %s")
|
---|
| 137 | : _("ambiguous argument %s for %s"));
|
---|
| 138 |
|
---|
| 139 | error (0, 0, format, quotearg_n_style (0, ARGMATCH_QUOTING_STYLE, value),
|
---|
| 140 | quote_n (1, context));
|
---|
| 141 | }
|
---|
| 142 |
|
---|
| 143 | /* List the valid arguments for argmatch.
|
---|
| 144 | ARGLIST is the same as in argmatch.
|
---|
| 145 | VALLIST is a pointer to an array of values.
|
---|
| 146 | VALSIZE is the size of the elements of VALLIST */
|
---|
| 147 | void
|
---|
| 148 | argmatch_valid (const char *const *arglist,
|
---|
| 149 | const char *vallist, size_t valsize)
|
---|
| 150 | {
|
---|
| 151 | int i;
|
---|
| 152 | const char *last_val = NULL;
|
---|
| 153 |
|
---|
| 154 | /* We try to put synonyms on the same line. The assumption is that
|
---|
| 155 | synonyms follow each other */
|
---|
| 156 | fprintf (stderr, _("Valid arguments are:"));
|
---|
| 157 | for (i = 0; arglist[i]; i++)
|
---|
| 158 | if ((i == 0)
|
---|
| 159 | || memcmp (last_val, vallist + valsize * i, valsize))
|
---|
| 160 | {
|
---|
| 161 | fprintf (stderr, "\n - `%s'", arglist[i]);
|
---|
| 162 | last_val = vallist + valsize * i;
|
---|
| 163 | }
|
---|
| 164 | else
|
---|
| 165 | {
|
---|
| 166 | fprintf (stderr, ", `%s'", arglist[i]);
|
---|
| 167 | }
|
---|
| 168 | putc ('\n', stderr);
|
---|
| 169 | }
|
---|
| 170 |
|
---|
| 171 | /* Never failing versions of the previous functions.
|
---|
| 172 |
|
---|
| 173 | CONTEXT is the context for which argmatch is called (e.g.,
|
---|
| 174 | "--version-control", or "$VERSION_CONTROL" etc.). Upon failure,
|
---|
| 175 | calls the (supposed never to return) function EXIT_FN. */
|
---|
| 176 |
|
---|
| 177 | int
|
---|
| 178 | __xargmatch_internal (const char *context,
|
---|
| 179 | const char *arg, const char *const *arglist,
|
---|
| 180 | const char *vallist, size_t valsize,
|
---|
| 181 | argmatch_exit_fn exit_fn)
|
---|
| 182 | {
|
---|
| 183 | int res = argmatch (arg, arglist, vallist, valsize);
|
---|
| 184 | if (res >= 0)
|
---|
| 185 | /* Success. */
|
---|
| 186 | return res;
|
---|
| 187 |
|
---|
| 188 | /* We failed. Explain why. */
|
---|
| 189 | argmatch_invalid (context, arg, res);
|
---|
| 190 | argmatch_valid (arglist, vallist, valsize);
|
---|
| 191 | (*exit_fn) ();
|
---|
| 192 |
|
---|
| 193 | return -1; /* To please the compilers. */
|
---|
| 194 | }
|
---|
| 195 |
|
---|
| 196 | /* Look for VALUE in VALLIST, an array of objects of size VALSIZE and
|
---|
| 197 | return the first corresponding argument in ARGLIST */
|
---|
| 198 | const char *
|
---|
| 199 | argmatch_to_argument (const char *value,
|
---|
| 200 | const char *const *arglist,
|
---|
| 201 | const char *vallist, size_t valsize)
|
---|
| 202 | {
|
---|
| 203 | int i;
|
---|
| 204 |
|
---|
| 205 | for (i = 0; arglist[i]; i++)
|
---|
| 206 | if (!memcmp (value, vallist + valsize * i, valsize))
|
---|
| 207 | return arglist[i];
|
---|
| 208 | return NULL;
|
---|
| 209 | }
|
---|
| 210 |
|
---|
| 211 | #ifdef TEST
|
---|
| 212 | /*
|
---|
| 213 | * Based on "getversion.c" by David MacKenzie <djm@gnu.ai.mit.edu>
|
---|
| 214 | */
|
---|
| 215 | char *program_name;
|
---|
| 216 | extern const char *getenv ();
|
---|
| 217 |
|
---|
| 218 | /* When to make backup files. */
|
---|
| 219 | enum backup_type
|
---|
| 220 | {
|
---|
| 221 | /* Never make backups. */
|
---|
| 222 | none,
|
---|
| 223 |
|
---|
| 224 | /* Make simple backups of every file. */
|
---|
| 225 | simple,
|
---|
| 226 |
|
---|
| 227 | /* Make numbered backups of files that already have numbered backups,
|
---|
| 228 | and simple backups of the others. */
|
---|
| 229 | numbered_existing,
|
---|
| 230 |
|
---|
| 231 | /* Make numbered backups of every file. */
|
---|
| 232 | numbered
|
---|
| 233 | };
|
---|
| 234 |
|
---|
| 235 | /* Two tables describing arguments (keys) and their corresponding
|
---|
| 236 | values */
|
---|
| 237 | static const char *const backup_args[] =
|
---|
| 238 | {
|
---|
| 239 | "no", "none", "off",
|
---|
| 240 | "simple", "never",
|
---|
| 241 | "existing", "nil",
|
---|
| 242 | "numbered", "t",
|
---|
| 243 | 0
|
---|
| 244 | };
|
---|
| 245 |
|
---|
| 246 | static const enum backup_type backup_vals[] =
|
---|
| 247 | {
|
---|
| 248 | none, none, none,
|
---|
| 249 | simple, simple,
|
---|
| 250 | numbered_existing, numbered_existing,
|
---|
| 251 | numbered, numbered
|
---|
| 252 | };
|
---|
| 253 |
|
---|
| 254 | int
|
---|
| 255 | main (int argc, const char *const *argv)
|
---|
| 256 | {
|
---|
| 257 | const char *cp;
|
---|
| 258 | enum backup_type backup_type = none;
|
---|
| 259 |
|
---|
| 260 | program_name = (char *) argv[0];
|
---|
| 261 |
|
---|
| 262 | if (argc > 2)
|
---|
| 263 | {
|
---|
| 264 | fprintf (stderr, "Usage: %s [VERSION_CONTROL]\n", program_name);
|
---|
| 265 | exit (1);
|
---|
| 266 | }
|
---|
| 267 |
|
---|
| 268 | if ((cp = getenv ("VERSION_CONTROL")))
|
---|
| 269 | backup_type = XARGMATCH ("$VERSION_CONTROL", cp,
|
---|
| 270 | backup_args, backup_vals);
|
---|
| 271 |
|
---|
| 272 | if (argc == 2)
|
---|
| 273 | backup_type = XARGMATCH (program_name, argv[1],
|
---|
| 274 | backup_args, backup_vals);
|
---|
| 275 |
|
---|
| 276 | printf ("The version control is `%s'\n",
|
---|
| 277 | ARGMATCH_TO_ARGUMENT (backup_type, backup_args, backup_vals));
|
---|
| 278 |
|
---|
| 279 | return 0;
|
---|
| 280 | }
|
---|
| 281 | #endif
|
---|