.
[gnulib.git] / lib / argmatch.h
1 /* argmatch.h -- definitions and prototypes for argmatch.c
2    Copyright (C) 1990, 1998, 1999 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Written by David MacKenzie <djm@ai.mit.edu>
19    Modified by Akim Demaille <demaille@inf.enst.fr> */
20
21 #ifndef ARGMATCH_H_
22 # define ARGMATCH_H_ 1
23
24 # if HAVE_CONFIG_H
25 #  include <config.h>
26 # endif
27
28 # include <sys/types.h>
29
30 # ifndef PARAMS
31 #  if PROTOTYPES || (defined (__STDC__) && __STDC__)
32 #   define PARAMS(args) args
33 #  else
34 #   define PARAMS(args) ()
35 #  endif  /* GCC.  */
36 # endif  /* Not PARAMS.  */
37
38 /* Return the index of the element of ARGLIST (NULL terminated) that
39    matches with ARG.  If VALLIST is not NULL, then use it to resolve
40    false ambiguities (i.e., different matches of ARG but corresponding
41    to the same values in VALLIST).  */
42
43 int argmatch
44   PARAMS ((const char *arg, const char *const *arglist,
45            const char *vallist, size_t valsize));
46 int argcasematch
47   PARAMS ((const char *arg, const char *const *arglist,
48            const char *vallist, size_t valsize));
49
50 # define ARGMATCH(Arg, Arglist, Vallist) \
51   argmatch ((Arg), (Arglist), (const char *) (Vallist), sizeof (*(Vallist)))
52
53 # define ARGCASEMATCH(Arg, Arglist, Vallist) \
54   argcasematch ((Arg), (Arglist), (const char *) (Vallist), sizeof (*(Vallist)))
55
56
57
58 /* Report on stderr why argmatch failed.  Report correct values. */
59
60 void argmatch_invalid
61   PARAMS ((const char *kind, const char *value, int problem));
62
63 /* Left for compatibility with the old name invalid_arg */
64
65 # define invalid_arg(Kind, Value, Problem) \
66   argmatch_invalid ((Kind), (Value), (Problem))
67
68
69
70 /* Report on stderr the list of possible arguments.  */
71
72 void argmatch_valid
73   PARAMS ((const char *const *arglist,
74            const char *vallist, size_t valsize));
75
76 # define ARGMATCH_VALID(Arglist, Vallist) \
77   argmatch_valid (Arglist, (const char *) Vallist, sizeof (*Vallist))
78
79
80 /* Set *Result_ptr to the value in Vallist corresponding to the Arg
81    in Arglist.  If Arg doesn't match any string in Arglist, give a
82    diagnostic and (presumably) exit via the Die_stmt, leaving *Result_ptr
83    unmodified.  */
84
85 # define XARGMATCH(Result_ptr, Kind, Arg, Arglist, Vallist, Die_stmt)   \
86   do                                                                    \
87     {                                                                   \
88       int _i = ARGMATCH (Arg, Arglist, Vallist);                        \
89       if (_i >= 0)                                                      \
90         *(Result_ptr) = (Vallist) [_i];                                 \
91       else                                                              \
92         {                                                               \
93           argmatch_invalid ((Kind), (Arg), _i);                         \
94           ARGMATCH_VALID (Arglist, Vallist);                            \
95           Die_stmt;                                                     \
96         }                                                               \
97     }                                                                   \
98   while (0)
99
100
101 /* Convert a value into a corresponding argument. */
102
103 const char *argmatch_to_argument
104   PARAMS ((char const *value, const char *const *arglist,
105            const char *vallist, size_t valsize));
106
107 # define ARGMATCH_TO_ARGUMENT(Value, Arglist, Vallist)                  \
108   argmatch_to_argument ((char const *) &(Value), (Arglist),             \
109                         (const char *) (Vallist), sizeof (*(Vallist)))
110
111 #endif /* ARGMATCH_H_ */