1992-11-01 04:42:48 +08:00
|
|
|
|
/* argmatch.c -- find a match for a string in an array
|
2000-07-09 15:22:43 +08:00
|
|
|
|
Copyright (C) 1990, 1998, 1999, 2000 Free Software Foundation, Inc.
|
1992-11-01 04:42:48 +08:00
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
1999-01-01 00:18:13 +08:00
|
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
|
|
|
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1992-11-01 04:42:48 +08:00
|
|
|
|
|
1999-01-01 00:18:13 +08:00
|
|
|
|
/* Written by David MacKenzie <djm@ai.mit.edu>
|
|
|
|
|
Modified by Akim Demaille <demaille@inf.enst.fr> */
|
1992-11-01 04:42:48 +08:00
|
|
|
|
|
1999-01-01 00:18:13 +08:00
|
|
|
|
#include "argmatch.h"
|
1995-05-13 20:55:49 +08:00
|
|
|
|
|
1992-11-01 04:42:48 +08:00
|
|
|
|
#include <stdio.h>
|
1999-01-01 00:18:13 +08:00
|
|
|
|
#ifdef STDC_HEADERS
|
1996-09-29 02:09:13 +08:00
|
|
|
|
# include <string.h>
|
1999-01-01 00:18:13 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if HAVE_LOCALE_H
|
|
|
|
|
# include <locale.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if ENABLE_NLS
|
|
|
|
|
# include <libintl.h>
|
|
|
|
|
# define _(Text) gettext (Text)
|
1997-05-27 17:39:25 +08:00
|
|
|
|
#else
|
1999-01-01 00:18:13 +08:00
|
|
|
|
# define _(Text) Text
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-01-25 22:08:04 +08:00
|
|
|
|
#include "error.h"
|
1999-01-01 00:18:13 +08:00
|
|
|
|
#include "quotearg.h"
|
|
|
|
|
|
1999-01-25 22:08:04 +08:00
|
|
|
|
/* When reporting an invalid argument, show nonprinting characters
|
|
|
|
|
by using the quoting style ARGMATCH_QUOTING_STYLE. Do not use
|
|
|
|
|
literal_quoting_style. */
|
1999-01-01 00:18:13 +08:00
|
|
|
|
#ifndef ARGMATCH_QUOTING_STYLE
|
1999-08-10 19:00:12 +08:00
|
|
|
|
# define ARGMATCH_QUOTING_STYLE locale_quoting_style
|
1999-01-01 00:18:13 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
1999-01-16 23:17:48 +08:00
|
|
|
|
/* The following test is to work around the gross typo in
|
|
|
|
|
systems like Sony NEWS-OS Release 4.0C, whereby EXIT_FAILURE
|
|
|
|
|
is defined to 0, not 1. */
|
|
|
|
|
#if !EXIT_FAILURE
|
|
|
|
|
# undef EXIT_FAILURE
|
|
|
|
|
# define EXIT_FAILURE 1
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-01-16 23:06:41 +08:00
|
|
|
|
/* Non failing version of argmatch call this function after failing. */
|
|
|
|
|
#ifndef ARGMATCH_DIE
|
1999-01-16 23:17:48 +08:00
|
|
|
|
# define ARGMATCH_DIE exit (EXIT_FAILURE)
|
1999-01-16 23:06:41 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
1999-01-17 01:18:01 +08:00
|
|
|
|
#ifdef ARGMATCH_DIE_DECL
|
|
|
|
|
ARGMATCH_DIE_DECL;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-01-16 23:06:41 +08:00
|
|
|
|
static void
|
|
|
|
|
__argmatch_die (void)
|
|
|
|
|
{
|
|
|
|
|
ARGMATCH_DIE;
|
|
|
|
|
}
|
|
|
|
|
|
1999-01-25 22:08:04 +08:00
|
|
|
|
/* Used by XARGMATCH and XARGCASEMATCH. See description in argmatch.h.
|
|
|
|
|
Default to __argmatch_die, but allow caller to change this at run-time. */
|
1999-01-16 23:21:52 +08:00
|
|
|
|
argmatch_exit_fn argmatch_die = __argmatch_die;
|
1999-01-25 22:08:04 +08:00
|
|
|
|
|
1999-01-16 23:06:41 +08:00
|
|
|
|
|
1992-11-01 04:42:48 +08:00
|
|
|
|
/* If ARG is an unambiguous match for an element of the
|
1999-01-01 00:18:13 +08:00
|
|
|
|
null-terminated array ARGLIST, return the index in ARGLIST
|
1992-11-01 04:42:48 +08:00
|
|
|
|
of the matched element, else -1 if it does not match any element
|
1999-01-01 00:18:13 +08:00
|
|
|
|
or -2 if it is ambiguous (is a prefix of more than one element).
|
|
|
|
|
If SENSITIVE, comparison is case sensitive.
|
1992-11-01 04:42:48 +08:00
|
|
|
|
|
1999-01-01 00:18:13 +08:00
|
|
|
|
If VALLIST is none null, use it to resolve ambiguities limited to
|
|
|
|
|
synonyms, i.e., for
|
|
|
|
|
"yes", "yop" -> 0
|
|
|
|
|
"no", "nope" -> 1
|
|
|
|
|
"y" is a valid argument, for `0', and "n" for `1'. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
__argmatch_internal (const char *arg, const char *const *arglist,
|
1999-01-01 00:19:31 +08:00
|
|
|
|
const char *vallist, size_t valsize,
|
1999-01-01 02:07:23 +08:00
|
|
|
|
int case_sensitive)
|
1992-11-01 04:42:48 +08:00
|
|
|
|
{
|
1999-01-01 00:18:13 +08:00
|
|
|
|
int i; /* Temporary index in ARGLIST. */
|
1995-05-13 20:55:49 +08:00
|
|
|
|
size_t arglen; /* Length of ARG. */
|
1992-11-01 04:42:48 +08:00
|
|
|
|
int matchind = -1; /* Index of first nonexact match. */
|
|
|
|
|
int ambiguous = 0; /* If nonzero, multiple nonexact match(es). */
|
1995-05-13 20:55:49 +08:00
|
|
|
|
|
1992-11-01 04:42:48 +08:00
|
|
|
|
arglen = strlen (arg);
|
1995-05-13 20:55:49 +08:00
|
|
|
|
|
1992-11-01 04:42:48 +08:00
|
|
|
|
/* Test all elements for either exact match or abbreviated matches. */
|
1999-01-01 00:18:13 +08:00
|
|
|
|
for (i = 0; arglist[i]; i++)
|
1992-11-01 04:42:48 +08:00
|
|
|
|
{
|
1999-01-01 02:07:23 +08:00
|
|
|
|
if (case_sensitive
|
|
|
|
|
? !strncmp (arglist[i], arg, arglen)
|
|
|
|
|
: !strncasecmp (arglist[i], arg, arglen))
|
1992-11-01 04:42:48 +08:00
|
|
|
|
{
|
1999-01-01 00:18:13 +08:00
|
|
|
|
if (strlen (arglist[i]) == arglen)
|
1992-11-01 04:42:48 +08:00
|
|
|
|
/* Exact match found. */
|
|
|
|
|
return i;
|
|
|
|
|
else if (matchind == -1)
|
|
|
|
|
/* First nonexact match found. */
|
|
|
|
|
matchind = i;
|
|
|
|
|
else
|
1999-01-01 02:07:23 +08:00
|
|
|
|
{
|
|
|
|
|
/* Second nonexact match found. */
|
|
|
|
|
if (vallist == NULL
|
|
|
|
|
|| memcmp (vallist + valsize * matchind,
|
|
|
|
|
vallist + valsize * i, valsize))
|
|
|
|
|
{
|
|
|
|
|
/* There is a real ambiguity, or we could not
|
|
|
|
|
disambiguate. */
|
|
|
|
|
ambiguous = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
1992-11-01 04:42:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (ambiguous)
|
|
|
|
|
return -2;
|
|
|
|
|
else
|
|
|
|
|
return matchind;
|
|
|
|
|
}
|
|
|
|
|
|
1999-01-01 00:18:13 +08:00
|
|
|
|
/* argmatch - case sensitive version */
|
|
|
|
|
int
|
|
|
|
|
argmatch (const char *arg, const char *const *arglist,
|
|
|
|
|
const char *vallist, size_t valsize)
|
|
|
|
|
{
|
|
|
|
|
return __argmatch_internal (arg, arglist, vallist, valsize, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* argcasematch - case insensitive version */
|
|
|
|
|
int
|
|
|
|
|
argcasematch (const char *arg, const char *const *arglist,
|
|
|
|
|
const char *vallist, size_t valsize)
|
|
|
|
|
{
|
|
|
|
|
return __argmatch_internal (arg, arglist, vallist, valsize, 0);
|
|
|
|
|
}
|
|
|
|
|
|
1992-11-01 04:42:48 +08:00
|
|
|
|
/* Error reporting for argmatch.
|
1999-01-16 23:06:41 +08:00
|
|
|
|
CONTEXT is a description of the type of entity that was being matched.
|
1992-11-01 04:42:48 +08:00
|
|
|
|
VALUE is the invalid value that was given.
|
|
|
|
|
PROBLEM is the return value from argmatch. */
|
|
|
|
|
|
|
|
|
|
void
|
1999-01-16 23:06:41 +08:00
|
|
|
|
argmatch_invalid (const char *context, const char *value, int problem)
|
1992-11-01 04:42:48 +08:00
|
|
|
|
{
|
1999-08-10 19:00:12 +08:00
|
|
|
|
char const *format = (problem == -1
|
|
|
|
|
? _("invalid argument %s for `%s'")
|
|
|
|
|
: _("ambiguous argument %s for `%s'"));
|
1999-01-01 00:18:13 +08:00
|
|
|
|
|
1999-08-10 19:00:12 +08:00
|
|
|
|
error (0, 0, format, quotearg_style (ARGMATCH_QUOTING_STYLE, value), context);
|
1992-11-01 04:42:48 +08:00
|
|
|
|
}
|
1999-01-01 00:18:13 +08:00
|
|
|
|
|
|
|
|
|
/* List the valid arguments for argmatch.
|
|
|
|
|
ARGLIST is the same as in argmatch.
|
|
|
|
|
VALLIST is a pointer to an array of values.
|
|
|
|
|
VALSIZE is the size of the elements of VALLIST */
|
|
|
|
|
void
|
|
|
|
|
argmatch_valid (const char *const *arglist,
|
|
|
|
|
const char *vallist, size_t valsize)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
1999-01-01 02:07:23 +08:00
|
|
|
|
const char *last_val = NULL;
|
1999-01-01 00:18:13 +08:00
|
|
|
|
|
|
|
|
|
/* We try to put synonyms on the same line. The assumption is that
|
|
|
|
|
synonyms follow each other */
|
|
|
|
|
fprintf (stderr, _("Valid arguments are:"));
|
1999-01-01 02:07:23 +08:00
|
|
|
|
for (i = 0; arglist[i]; i++)
|
1999-01-01 00:18:13 +08:00
|
|
|
|
if ((i == 0)
|
|
|
|
|
|| memcmp (last_val, vallist + valsize * i, valsize))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "\n - `%s'", arglist[i]);
|
|
|
|
|
last_val = vallist + valsize * i;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, ", `%s'", arglist[i]);
|
|
|
|
|
}
|
|
|
|
|
putc ('\n', stderr);
|
|
|
|
|
}
|
|
|
|
|
|
1999-01-16 23:06:41 +08:00
|
|
|
|
/* Never failing versions of the previous functions.
|
|
|
|
|
|
|
|
|
|
CONTEXT is the context for which argmatch is called (e.g.,
|
|
|
|
|
"--version-control", or "$VERSION_CONTROL" etc.). Upon failure,
|
|
|
|
|
calls the (supposed never to return) function EXIT_FN. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
__xargmatch_internal (const char *context,
|
|
|
|
|
const char *arg, const char *const *arglist,
|
|
|
|
|
const char *vallist, size_t valsize,
|
|
|
|
|
int case_sensitive,
|
|
|
|
|
argmatch_exit_fn exit_fn)
|
|
|
|
|
{
|
|
|
|
|
int res = __argmatch_internal (arg, arglist,
|
|
|
|
|
vallist, valsize,
|
|
|
|
|
case_sensitive);
|
|
|
|
|
if (res >= 0)
|
|
|
|
|
/* Success. */
|
|
|
|
|
return res;
|
|
|
|
|
|
|
|
|
|
/* We failed. Explain why. */
|
|
|
|
|
argmatch_invalid (context, arg, res);
|
|
|
|
|
argmatch_valid (arglist, vallist, valsize);
|
|
|
|
|
(*exit_fn) ();
|
|
|
|
|
|
|
|
|
|
return -1; /* To please the compilers. */
|
|
|
|
|
}
|
|
|
|
|
|
1999-01-01 00:18:13 +08:00
|
|
|
|
/* Look for VALUE in VALLIST, an array of objects of size VALSIZE and
|
|
|
|
|
return the first corresponding argument in ARGLIST */
|
|
|
|
|
const char *
|
1999-01-03 02:32:50 +08:00
|
|
|
|
argmatch_to_argument (const char *value,
|
1999-01-01 00:18:13 +08:00
|
|
|
|
const char *const *arglist,
|
|
|
|
|
const char *vallist, size_t valsize)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
1999-01-01 00:19:31 +08:00
|
|
|
|
|
1999-01-01 02:07:23 +08:00
|
|
|
|
for (i = 0; arglist[i]; i++)
|
1999-01-01 00:18:13 +08:00
|
|
|
|
if (!memcmp (value, vallist + valsize * i, valsize))
|
1999-01-01 02:07:23 +08:00
|
|
|
|
return arglist[i];
|
1999-01-01 00:18:13 +08:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef TEST
|
|
|
|
|
/*
|
|
|
|
|
* Based on "getversion.c" by David MacKenzie <djm@gnu.ai.mit.edu>
|
|
|
|
|
*/
|
1999-01-16 23:06:41 +08:00
|
|
|
|
char *program_name;
|
1999-01-01 02:07:23 +08:00
|
|
|
|
extern const char *getenv ();
|
1999-01-01 00:18:13 +08:00
|
|
|
|
|
|
|
|
|
/* When to make backup files. */
|
|
|
|
|
enum backup_type
|
|
|
|
|
{
|
|
|
|
|
/* Never make backups. */
|
|
|
|
|
none,
|
|
|
|
|
|
|
|
|
|
/* Make simple backups of every file. */
|
|
|
|
|
simple,
|
|
|
|
|
|
|
|
|
|
/* Make numbered backups of files that already have numbered backups,
|
|
|
|
|
and simple backups of the others. */
|
|
|
|
|
numbered_existing,
|
|
|
|
|
|
|
|
|
|
/* Make numbered backups of every file. */
|
|
|
|
|
numbered
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Two tables describing arguments (keys) and their corresponding
|
|
|
|
|
values */
|
|
|
|
|
static const char *const backup_args[] =
|
|
|
|
|
{
|
1999-01-01 00:19:31 +08:00
|
|
|
|
"no", "none", "off",
|
|
|
|
|
"simple", "never",
|
|
|
|
|
"existing", "nil",
|
|
|
|
|
"numbered", "t",
|
1999-01-01 00:18:13 +08:00
|
|
|
|
0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const enum backup_type backup_vals[] =
|
|
|
|
|
{
|
1999-01-01 00:19:31 +08:00
|
|
|
|
none, none, none,
|
|
|
|
|
simple, simple,
|
|
|
|
|
numbered_existing, numbered_existing,
|
1999-01-01 00:18:13 +08:00
|
|
|
|
numbered, numbered
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int
|
1999-01-01 02:07:23 +08:00
|
|
|
|
main (int argc, const char *const *argv)
|
1999-01-01 00:18:13 +08:00
|
|
|
|
{
|
1999-01-01 02:07:23 +08:00
|
|
|
|
const char *cp;
|
1999-01-01 00:18:13 +08:00
|
|
|
|
enum backup_type backup_type = none;
|
|
|
|
|
|
1999-01-01 02:07:23 +08:00
|
|
|
|
program_name = (char *) argv[0];
|
1999-01-01 00:18:13 +08:00
|
|
|
|
|
|
|
|
|
if (argc > 2)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Usage: %s [VERSION_CONTROL]\n", program_name);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((cp = getenv ("VERSION_CONTROL")))
|
1999-01-01 00:19:31 +08:00
|
|
|
|
backup_type = XARGCASEMATCH ("$VERSION_CONTROL", cp,
|
1999-01-01 00:18:13 +08:00
|
|
|
|
backup_args, backup_vals);
|
|
|
|
|
|
|
|
|
|
if (argc == 2)
|
1999-01-01 02:07:23 +08:00
|
|
|
|
backup_type = XARGCASEMATCH (program_name, argv[1],
|
1999-01-01 00:18:13 +08:00
|
|
|
|
backup_args, backup_vals);
|
|
|
|
|
|
1999-01-01 00:19:31 +08:00
|
|
|
|
printf ("The version control is `%s'\n",
|
1999-01-01 00:18:13 +08:00
|
|
|
|
ARGMATCH_TO_ARGUMENT (backup_type, backup_args, backup_vals));
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
#endif
|