2 NOTE: getopt is now part of the C library, so if you don't know what
3 "Keep this file name-space clean" means, talk to roland@gnu.ai.mit.edu
6 Finch is the legal property of its developers, whose names are too numerous
7 to list here. Please refer to the COPYRIGHT file distributed with this
10 This program is free software; you can redistribute it and/or modify it
11 under the terms of the GNU General Public License as published by the
12 Free Software Foundation; either version 2, or (at your option) any
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
24 /* NOTE!!! AIX requires this to be the first thing in the file.
25 Do not put ANYTHING before it! */
26 #if !defined (__GNUC__) && defined (_AIX)
34 /* Alver says we need this for IRIX. */
40 #define alloca __builtin_alloca
41 #else /* not __GNUC__ */
42 #if defined (HAVE_ALLOCA_H) || (defined(sparc) && (defined(sun) || (!defined(USG) && !defined(SVR4) && !defined(__svr4__))))
49 #endif /* not __GNUC__ */
51 #if !__STDC__ && !defined(const) && IN_GCC
55 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>. */
62 /* Comment out all this code if we are using the GNU C Library, and are not
63 actually compiling the library itself. This code is part of the GNU C
64 Library, but also included in many other GNU distributions. Compiling
65 and linking in this code is a waste when using the GNU C library
66 (especially if it is a shared library). Rather than having every GNU
67 program understand `configure --with-gnu-libc' and omit the object files,
68 it is simpler to just do this in the source for each such file. */
70 #if defined (_LIBC) || !defined (__GNU_LIBRARY__)
73 /* This needs to come after some library #include
74 to get __GNU_LIBRARY__ defined. */
75 #ifdef __GNU_LIBRARY__
77 /* Don't include stdlib.h for non-GNU C libraries because some of them
78 contain conflicting prototypes for getopt. */
80 #else /* Not GNU C library. */
81 #define __alloca alloca
82 #endif /* GNU C library. */
84 /* If GETOPT_COMPAT is defined, `+' as well as `--' can introduce a
85 long-named option. Because this is not POSIX.2 compliant, it is
87 /* #define GETOPT_COMPAT */
89 /* This version of `getopt' appears to the caller like standard Unix `getopt'
90 but it behaves differently for the user, since it allows the user
91 to intersperse the options with the other arguments.
93 As `getopt' works, it permutes the elements of ARGV so that,
94 when it is done, all the options precede everything else. Thus
95 all application programs are extended to handle flexible argument order.
97 Setting the environment variable POSIXLY_CORRECT disables permutation.
98 Then the behavior is completely standard.
100 GNU application programs can use a third alternative mode in which
101 they can distinguish the relative order of options and other arguments. */
105 /* For communication from `getopt' to the caller.
106 When `getopt' finds an option that takes an argument,
107 the argument value is returned here.
108 Also, when `ordering' is RETURN_IN_ORDER,
109 each non-option ARGV-element is returned here. */
113 /* Index in ARGV of the next element to be scanned.
114 This is used for communication to and from the caller
115 and for communication between successive calls to `getopt'.
117 On entry to `getopt', zero means this is the first call; initialize.
119 When `getopt' returns EOF, this is the index of the first of the
120 non-option elements that the caller should itself scan.
122 Otherwise, `optind' communicates from one call to the next
123 how much of ARGV has been scanned so far. */
125 /* XXX 1003.2 says this must be 1 before any call. */
128 /* The next char to be scanned in the option-element
129 in which the last option character we returned was found.
130 This allows us to pick up the scan where we left off.
132 If this is zero, or a null string, it means resume the scan
133 by advancing to the next ARGV-element. */
135 static char *nextchar
;
137 /* Callers store zero here to inhibit the error message
138 for unrecognized options. */
142 /* Set to an option character which was unrecognized.
143 This must be initialized on some systems to avoid linking in the
144 system's own getopt implementation. */
148 /* Describe how to deal with options that follow non-option ARGV-elements.
150 If the caller did not specify anything,
151 the default is REQUIRE_ORDER if the environment variable
152 POSIXLY_CORRECT is defined, PERMUTE otherwise.
154 REQUIRE_ORDER means don't recognize them as options;
155 stop option processing when the first non-option is seen.
156 This is what Unix does.
157 This mode of operation is selected by either setting the environment
158 variable POSIXLY_CORRECT, or using `+' as the first character
159 of the list of option characters.
161 PERMUTE is the default. We permute the contents of ARGV as we scan,
162 so that eventually all the non-options are at the end. This allows options
163 to be given in any order, even with programs that were not written to
166 RETURN_IN_ORDER is an option available to programs that were written
167 to expect options and other ARGV-elements in any order and that care about
168 the ordering of the two. We describe each non-option ARGV-element
169 as if it were the argument of an option with character code 1.
170 Using `-' as the first character of the list of option characters
171 selects this mode of operation.
173 The special argument `--' forces an end of option-scanning regardless
174 of the value of `ordering'. In the case of RETURN_IN_ORDER, only
175 `--' can cause `getopt' to return EOF with `optind' != ARGC. */
179 REQUIRE_ORDER
, PERMUTE
, RETURN_IN_ORDER
182 #ifdef __GNU_LIBRARY__
183 /* We want to avoid inclusion of string.h with non-GNU libraries
184 because there are many ways it can cause trouble.
185 On some systems, it contains special magic macros that don't work
188 #define my_index strchr
189 #define my_bcopy(src, dst, n) memcpy ((dst), (src), (n))
192 /* Avoid depending on library functions or files
193 whose names are inconsistent. */
212 my_bcopy (from
, to
, size
)
218 for (i
= 0; i
< size
; i
++)
221 #endif /* GNU C library. */
223 /* Handle permutation of arguments. */
225 /* Describe the part of ARGV that contains non-options that have
226 been skipped. `first_nonopt' is the index in ARGV of the first of them;
227 `last_nonopt' is the index after the last of them. */
229 static int first_nonopt
;
230 static int last_nonopt
;
232 /* Exchange two adjacent subsequences of ARGV.
233 One subsequence is elements [first_nonopt,last_nonopt)
234 which contains all the non-options that have been skipped so far.
235 The other is elements [last_nonopt,optind), which contains all
236 the options processed since those non-options were skipped.
238 `first_nonopt' and `last_nonopt' are relocated so that they describe
239 the new indices of the non-options in ARGV after they are moved. */
245 int nonopts_size
= (last_nonopt
- first_nonopt
) * sizeof (char *);
246 char **temp
= (char **) __alloca (nonopts_size
);
248 /* Interchange the two blocks of data in ARGV. */
250 my_bcopy ((char *) &argv
[first_nonopt
], (char *) temp
, nonopts_size
);
251 my_bcopy ((char *) &argv
[last_nonopt
], (char *) &argv
[first_nonopt
],
252 (optind
- last_nonopt
) * sizeof (char *));
253 my_bcopy ((char *) temp
,
254 (char *) &argv
[first_nonopt
+ optind
- last_nonopt
],
257 /* Update records for the slots the non-options now occupy. */
259 first_nonopt
+= (optind
- last_nonopt
);
260 last_nonopt
= optind
;
263 /* Scan elements of ARGV (whose length is ARGC) for option characters
266 If an element of ARGV starts with '-', and is not exactly "-" or "--",
267 then it is an option element. The characters of this element
268 (aside from the initial '-') are option characters. If `getopt'
269 is called repeatedly, it returns successively each of the option characters
270 from each of the option elements.
272 If `getopt' finds another option character, it returns that character,
273 updating `optind' and `nextchar' so that the next call to `getopt' can
274 resume the scan with the following option character or ARGV-element.
276 If there are no more option characters, `getopt' returns `EOF'.
277 Then `optind' is the index in ARGV of the first ARGV-element
278 that is not an option. (The ARGV-elements have been permuted
279 so that those that are not options now come last.)
281 OPTSTRING is a string containing the legitimate option characters.
282 If an option character is seen that is not listed in OPTSTRING,
283 return '?' after printing an error message. If you set `opterr' to
284 zero, the error message is suppressed but we still return '?'.
286 If a char in OPTSTRING is followed by a colon, that means it wants an arg,
287 so the following text in the same ARGV-element, or the text of the following
288 ARGV-element, is returned in `optarg'. Two colons mean an option that
289 wants an optional arg; if there is text in the current ARGV-element,
290 it is returned in `optarg', otherwise `optarg' is set to zero.
292 If OPTSTRING starts with `-' or `+', it requests different methods of
293 handling the non-option ARGV-elements.
294 See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
296 Long-named options begin with `--' instead of `-'.
297 Their names may be abbreviated as long as the abbreviation is unique
298 or is an exact match for some defined option. If they have an
299 argument, it follows the option name in the same ARGV-element, separated
300 from the option name by a `=', or else the in next ARGV-element.
301 When `getopt' finds a long-named option, it returns 0 if that option's
302 `flag' field is nonzero, the value of the option's `val' field
303 if the `flag' field is zero.
305 The elements of ARGV aren't really const, because we permute them.
306 But we pretend they're const in the prototype to be compatible
309 LONGOPTS is a vector of `struct option' terminated by an
310 element containing a name which is zero.
312 LONGIND returns the index in LONGOPT of the long-named option found.
313 It is only valid when a long-named option has been found by the most
316 If LONG_ONLY is nonzero, '-' as well as '--' can introduce
317 long-named options. */
320 _getopt_internal (argc
, argv
, optstring
, longopts
, longind
, long_only
)
323 const char *optstring
;
324 const struct option
*longopts
;
332 /* Initialize the internal data when the first call is made.
333 Start processing options with ARGV-element 1 (since ARGV-element 0
334 is the program name); the sequence of previously skipped
335 non-option ARGV-elements is empty. */
339 first_nonopt
= last_nonopt
= optind
= 1;
343 /* Determine how to handle the ordering of options and nonoptions. */
345 if (optstring
[0] == '-')
347 ordering
= RETURN_IN_ORDER
;
350 else if (optstring
[0] == '+')
352 ordering
= REQUIRE_ORDER
;
355 else if (getenv ("POSIXLY_CORRECT") != NULL
)
356 ordering
= REQUIRE_ORDER
;
361 if (nextchar
== NULL
|| *nextchar
== '\0')
363 if (ordering
== PERMUTE
)
365 /* If we have just processed some options following some non-options,
366 exchange them so that the options come first. */
368 if (first_nonopt
!= last_nonopt
&& last_nonopt
!= optind
)
369 exchange ((char **) argv
);
370 else if (last_nonopt
!= optind
)
371 first_nonopt
= optind
;
373 /* Now skip any additional non-options
374 and extend the range of non-options previously skipped. */
377 && (argv
[optind
][0] != '-' || argv
[optind
][1] == '\0')
380 || argv
[optind
][0] != '+' || argv
[optind
][1] == '\0')
381 #endif /* GETOPT_COMPAT */
384 last_nonopt
= optind
;
387 /* Special ARGV-element `--' means premature end of options.
388 Skip it like a null option,
389 then exchange with previous non-options as if it were an option,
390 then skip everything else like a non-option. */
392 if (optind
!= argc
&& !strcmp (argv
[optind
], "--"))
396 if (first_nonopt
!= last_nonopt
&& last_nonopt
!= optind
)
397 exchange ((char **) argv
);
398 else if (first_nonopt
== last_nonopt
)
399 first_nonopt
= optind
;
405 /* If we have done all the ARGV-elements, stop the scan
406 and back over any non-options that we skipped and permuted. */
410 /* Set the next-arg-index to point at the non-options
411 that we previously skipped, so the caller will digest them. */
412 if (first_nonopt
!= last_nonopt
)
413 optind
= first_nonopt
;
417 /* If we have come to a non-option and did not permute it,
418 either stop the scan or describe it to the caller and pass it by. */
420 if ((argv
[optind
][0] != '-' || argv
[optind
][1] == '\0')
423 || argv
[optind
][0] != '+' || argv
[optind
][1] == '\0')
424 #endif /* GETOPT_COMPAT */
427 if (ordering
== REQUIRE_ORDER
)
429 optarg
= argv
[optind
++];
433 /* We have found another option-ARGV-element.
434 Start decoding its characters. */
436 nextchar
= (argv
[optind
] + 1
437 + (longopts
!= NULL
&& argv
[optind
][1] == '-'));
441 && ((argv
[optind
][0] == '-'
442 && (argv
[optind
][1] == '-' || long_only
))
444 || argv
[optind
][0] == '+'
445 #endif /* GETOPT_COMPAT */
448 const struct option
*p
;
452 const struct option
*pfound
= NULL
;
455 while (*s
&& *s
!= '=')
458 /* Test all options for either exact match or abbreviated matches. */
459 for (p
= longopts
, option_index
= 0; p
->name
;
461 if (!strncmp (p
->name
, nextchar
, s
- nextchar
))
463 if (s
- nextchar
== strlen (p
->name
))
465 /* Exact match found. */
467 indfound
= option_index
;
471 else if (pfound
== NULL
)
473 /* First nonexact match found. */
475 indfound
= option_index
;
478 /* Second nonexact match found. */
485 fprintf (stderr
, "%s: option `%s' is ambiguous\n",
486 argv
[0], argv
[optind
]);
487 nextchar
+= strlen (nextchar
);
494 option_index
= indfound
;
498 /* Don't test has_arg with >, because some C compilers don't
499 allow it to be used on enums. */
506 if (argv
[optind
- 1][1] == '-')
509 "%s: option `--%s' doesn't allow an argument\n",
510 argv
[0], pfound
->name
);
512 /* +option or -option */
514 "%s: option `%c%s' doesn't allow an argument\n",
515 argv
[0], argv
[optind
- 1][0], pfound
->name
);
517 nextchar
+= strlen (nextchar
);
521 else if (pfound
->has_arg
== 1)
524 optarg
= argv
[optind
++];
528 fprintf (stderr
, "%s: option `%s' requires an argument\n",
529 argv
[0], argv
[optind
- 1]);
530 nextchar
+= strlen (nextchar
);
531 return optstring
[0] == ':' ? ':' : '?';
534 nextchar
+= strlen (nextchar
);
536 *longind
= option_index
;
539 *(pfound
->flag
) = pfound
->val
;
544 /* Can't find it as a long option. If this is not getopt_long_only,
545 or the option starts with '--' or is not a valid short
546 option, then it's an error.
547 Otherwise interpret it as a short option. */
548 if (!long_only
|| argv
[optind
][1] == '-'
550 || argv
[optind
][0] == '+'
551 #endif /* GETOPT_COMPAT */
552 || my_index (optstring
, *nextchar
) == NULL
)
556 if (argv
[optind
][1] == '-')
558 fprintf (stderr
, "%s: unrecognized option `--%s'\n",
561 /* +option or -option */
562 fprintf (stderr
, "%s: unrecognized option `%c%s'\n",
563 argv
[0], argv
[optind
][0], nextchar
);
565 nextchar
= (char *) "";
571 /* Look at and handle the next option-character. */
574 char c
= *nextchar
++;
575 char *temp
= my_index (optstring
, c
);
577 /* Increment `optind' when we start to process its last character. */
578 if (*nextchar
== '\0')
581 if (temp
== NULL
|| c
== ':')
586 if (c
< 040 || c
>= 0177)
587 fprintf (stderr
, "%s: unrecognized option, character code 0%o\n",
590 fprintf (stderr
, "%s: unrecognized option `-%c'\n", argv
[0], c
);
592 /* 1003.2 specifies the format of this message. */
593 fprintf (stderr
, "%s: illegal option -- %c\n", argv
[0], c
);
603 /* This is an option that accepts an argument optionally. */
604 if (*nextchar
!= '\0')
615 /* This is an option that requires an argument. */
616 if (*nextchar
!= '\0')
619 /* If we end this ARGV-element by taking the rest as an arg,
620 we must advance to the next element now. */
623 else if (optind
== argc
)
628 fprintf (stderr
, "%s: option `-%c' requires an argument\n",
631 /* 1003.2 specifies the format of this message. */
632 fprintf (stderr
, "%s: option requires an argument -- %c\n",
637 if (optstring
[0] == ':')
643 /* We already incremented `optind' once;
644 increment it again when taking next ARGV-elt as argument. */
645 optarg
= argv
[optind
++];
654 getopt (argc
, argv
, optstring
)
657 const char *optstring
;
659 return _getopt_internal (argc
, argv
, optstring
,
660 (const struct option
*) 0,
665 #endif /* _LIBC or not __GNU_LIBRARY__. */
669 /* Compile with -DTEST to make an executable for use in testing
670 the above definition of `getopt'. */
678 int digit_optind
= 0;
682 int this_option_optind
= optind
? optind
: 1;
684 c
= getopt (argc
, argv
, "abc:d:0123456789");
700 if (digit_optind
!= 0 && digit_optind
!= this_option_optind
)
701 printf ("digits occur in two different argv-elements.\n");
702 digit_optind
= this_option_optind
;
703 printf ("option %c\n", c
);
707 printf ("option a\n");
711 printf ("option b\n");
715 printf ("option c with value `%s'\n", optarg
);
722 printf ("?? getopt returned character code 0%o ??\n", c
);
728 printf ("non-option ARGV-elements: ");
729 while (optind
< argc
)
730 printf ("%s ", argv
[optind
++]);