4 * Portions Copyright (C) 2004, 2005, 2007, 2008 Internet Systems Consortium, Inc. ("ISC")
5 * Portions Copyright (C) 1999-2001 Internet Software Consortium.
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
21 * Copyright (c) 1987, 1993, 1994
22 * The Regents of the University of California. All rights reserved.
24 * Redistribution and use in source and binary forms, with or without
25 * modification, are permitted provided that the following conditions
27 * 1. Redistributions of source code must retain the above copyright
28 * notice, this list of conditions and the following disclaimer.
29 * 2. Redistributions in binary form must reproduce the above copyright
30 * notice, this list of conditions and the following disclaimer in the
31 * documentation and/or other materials provided with the distribution.
32 * 3. All advertising materials mentioning features or use of this software
33 * must display the following acknowledgement:
34 * This product includes software developed by the University of
35 * California, Berkeley and its contributors.
36 * 4. Neither the name of the University nor the names of its contributors
37 * may be used to endorse or promote products derived from this software
38 * without specific prior written permission.
40 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 /* Id: commandline.c,v 1.22 2008/09/25 04:02:39 tbox Exp */
56 * This file was adapted from the NetBSD project's source tree, RCS ID:
57 * NetBSD: getopt.c,v 1.15 1999/09/20 04:39:37 lukem Exp
59 * The primary change has been to rename items to the ISC namespace
60 * and format in the ISC coding style.
64 * \author Principal Authors: Computer Systems Research Group at UC Berkeley
65 * \author Principal ISC caretaker: DCL
72 #include <isc/commandline.h>
74 #include <isc/string.h>
77 /*% Index into parent argv vector. */
78 LIBISC_EXTERNAL_DATA
int isc_commandline_index
= 1;
79 /*% Character checked for validity. */
80 LIBISC_EXTERNAL_DATA
int isc_commandline_option
;
81 /*% Argument associated with option. */
82 LIBISC_EXTERNAL_DATA
char *isc_commandline_argument
;
83 /*% For printing error messages. */
84 LIBISC_EXTERNAL_DATA
char *isc_commandline_progname
;
85 /*% Print error messages. */
86 LIBISC_EXTERNAL_DATA isc_boolean_t isc_commandline_errprint
= ISC_TRUE
;
87 /*% Reset processing. */
88 LIBISC_EXTERNAL_DATA isc_boolean_t isc_commandline_reset
= ISC_TRUE
;
90 static char endopt
= '\0';
94 #define ENDOPT &endopt
98 * Parse argc/argv argument vector.
101 isc_commandline_parse(int argc
, char * const *argv
, const char *options
) {
102 static char *place
= ENDOPT
;
103 char *option
; /* Index into *options of option. */
105 REQUIRE(argc
>= 0 && argv
!= NULL
&& options
!= NULL
);
108 * Update scanning pointer, either because a reset was requested or
109 * the previous argv was finished.
111 if (isc_commandline_reset
|| *place
== '\0') {
112 if (isc_commandline_reset
) {
113 isc_commandline_index
= 1;
114 isc_commandline_reset
= ISC_FALSE
;
117 if (isc_commandline_progname
== NULL
)
118 isc_commandline_progname
= argv
[0];
120 if (isc_commandline_index
>= argc
||
121 *(place
= argv
[isc_commandline_index
]) != '-') {
123 * Index out of range or points to non-option.
129 if (place
[1] != '\0' && *++place
== '-' && place
[1] == '\0') {
131 * Found '--' to signal end of options. Advance
132 * index to next argv, the first non-option.
134 isc_commandline_index
++;
140 isc_commandline_option
= *place
++;
141 option
= strchr(options
, isc_commandline_option
);
144 * Ensure valid option has been passed as specified by options string.
145 * '-:' is never a valid command line option because it could not
146 * distinguish ':' from the argument specifier in the options string.
148 if (isc_commandline_option
== ':' || option
== NULL
) {
150 isc_commandline_index
++;
152 if (isc_commandline_errprint
&& *options
!= ':')
153 fprintf(stderr
, "%s: %s -- %c\n",
154 isc_commandline_progname
,
155 isc_msgcat_get(isc_msgcat
,
156 ISC_MSGSET_COMMANDLINE
,
159 isc_commandline_option
);
164 if (*++option
!= ':') {
166 * Option does not take an argument.
168 isc_commandline_argument
= NULL
;
171 * Skip to next argv if at the end of the current argv.
174 ++isc_commandline_index
;
178 * Option needs an argument.
182 * Option is in this argv, -D1 style.
184 isc_commandline_argument
= place
;
186 else if (argc
> ++isc_commandline_index
)
188 * Option is next argv, -D 1 style.
190 isc_commandline_argument
= argv
[isc_commandline_index
];
194 * Argument needed, but no more argv.
199 * Silent failure with "missing argument" return
200 * when ':' starts options string, per historical spec.
205 if (isc_commandline_errprint
)
206 fprintf(stderr
, "%s: %s -- %c\n",
207 isc_commandline_progname
,
208 isc_msgcat_get(isc_msgcat
,
209 ISC_MSGSET_COMMANDLINE
,
213 isc_commandline_option
);
221 * Point to argv that follows argument.
223 isc_commandline_index
++;
226 return (isc_commandline_option
);