]> git.saurik.com Git - bison.git/blob - lib/getopt.c
Import of GCC head 2002-10-11
[bison.git] / lib / getopt.c
1 /* Getopt for GNU.
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 drepper@gnu.org
4 before changing it!
5 Copyright (C) 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002
6 Free Software Foundation, Inc.
7 This file is part of the GNU C Library.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software Foundation,
21 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 \f
23 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
24 Ditto for AIX 3.2 and <stdlib.h>. */
25 #ifndef _NO_PROTO
26 # define _NO_PROTO
27 #endif
28
29 #ifdef HAVE_CONFIG_H
30 # include <config.h>
31 #endif
32
33 #include <stdio.h>
34
35 /* Comment out all this code if we are using the GNU C Library, and are not
36 actually compiling the library itself. This code is part of the GNU C
37 Library, but also included in many other GNU distributions. Compiling
38 and linking in this code is a waste when using the GNU C library
39 (especially if it is a shared library). Rather than having every GNU
40 program understand `configure --with-gnu-libc' and omit the object files,
41 it is simpler to just do this in the source for each such file. */
42
43 #define GETOPT_INTERFACE_VERSION 2
44 #if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2
45 # include <gnu-versions.h>
46 # if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
47 # define ELIDE_CODE
48 # endif
49 #endif
50
51 #ifndef ELIDE_CODE
52
53
54 #if HAVE_STDLIB_H || defined __GNU_LIBRARY__
55 # include <stdlib.h>
56 #endif
57 #if HAVE_UNISTD_H || defined __GNU_LIBRARY__
58 # include <unistd.h>
59 #endif
60
61 #ifdef VMS
62 # include <unixlib.h>
63 # if HAVE_STRING_H - 0
64 # include <string.h>
65 # endif
66 #endif
67
68 #ifndef _
69 /* This is for other GNU distributions with internationalized messages. */
70 # if (HAVE_LIBINTL_H && ENABLE_NLS) || defined _LIBC
71 # include <libintl.h>
72 # ifndef _
73 # define _(msgid) gettext (msgid)
74 # endif
75 # else
76 # define _(msgid) (msgid)
77 # endif
78 #endif
79
80 /* This version of `getopt' appears to the caller like standard Unix `getopt'
81 but it behaves differently for the user, since it allows the user
82 to intersperse the options with the other arguments.
83
84 As `getopt' works, it permutes the elements of ARGV so that,
85 when it is done, all the options precede everything else. Thus
86 all application programs are extended to handle flexible argument order.
87
88 Setting the environment variable POSIXLY_CORRECT disables permutation.
89 Then the behavior is completely standard.
90
91 GNU application programs can use a third alternative mode in which
92 they can distinguish the relative order of options and other arguments. */
93
94 #include "getopt.h"
95
96 /* For communication from `getopt' to the caller.
97 When `getopt' finds an option that takes an argument,
98 the argument value is returned here.
99 Also, when `ordering' is RETURN_IN_ORDER,
100 each non-option ARGV-element is returned here. */
101
102 char *optarg;
103
104 /* Index in ARGV of the next element to be scanned.
105 This is used for communication to and from the caller
106 and for communication between successive calls to `getopt'.
107
108 On entry to `getopt', zero means this is the first call; initialize.
109
110 When `getopt' returns -1, this is the index of the first of the
111 non-option elements that the caller should itself scan.
112
113 Otherwise, `optind' communicates from one call to the next
114 how much of ARGV has been scanned so far. */
115
116 /* 1003.2 says this must be 1 before any call. */
117 int optind = 1;
118
119 /* Formerly, initialization of getopt depended on optind==0, which
120 causes problems with re-calling getopt as programs generally don't
121 know that. */
122
123 int __getopt_initialized;
124
125 /* The next char to be scanned in the option-element
126 in which the last option character we returned was found.
127 This allows us to pick up the scan where we left off.
128
129 If this is zero, or a null string, it means resume the scan
130 by advancing to the next ARGV-element. */
131
132 static char *nextchar;
133
134 /* Callers store zero here to inhibit the error message
135 for unrecognized options. */
136
137 int opterr = 1;
138
139 /* Set to an option character which was unrecognized.
140 This must be initialized on some systems to avoid linking in the
141 system's own getopt implementation. */
142
143 int optopt = '?';
144
145 /* Describe how to deal with options that follow non-option ARGV-elements.
146
147 If the caller did not specify anything,
148 the default is REQUIRE_ORDER if the environment variable
149 POSIXLY_CORRECT is defined, PERMUTE otherwise.
150
151 REQUIRE_ORDER means don't recognize them as options;
152 stop option processing when the first non-option is seen.
153 This is what Unix does.
154 This mode of operation is selected by either setting the environment
155 variable POSIXLY_CORRECT, or using `+' as the first character
156 of the list of option characters.
157
158 PERMUTE is the default. We permute the contents of ARGV as we scan,
159 so that eventually all the non-options are at the end. This allows options
160 to be given in any order, even with programs that were not written to
161 expect this.
162
163 RETURN_IN_ORDER is an option available to programs that were written
164 to expect options and other ARGV-elements in any order and that care about
165 the ordering of the two. We describe each non-option ARGV-element
166 as if it were the argument of an option with character code 1.
167 Using `-' as the first character of the list of option characters
168 selects this mode of operation.
169
170 The special argument `--' forces an end of option-scanning regardless
171 of the value of `ordering'. In the case of RETURN_IN_ORDER, only
172 `--' can cause `getopt' to return -1 with `optind' != ARGC. */
173
174 static enum
175 {
176 REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
177 } ordering;
178
179 /* Value of POSIXLY_CORRECT environment variable. */
180 static char *posixly_correct;
181 \f
182 #if HAVE_STRING_H || defined __GNU_LIBRARY__
183 # include <string.h>
184 #else
185 # if HAVE_STRINGS_H
186 # include <strings.h>
187 # endif
188 #endif
189
190 #if !HAVE_STRCHR && !defined strchr && !defined __GNU_LIBRARY__
191 # define strchr my_strchr
192 static char *
193 strchr (str, chr)
194 const char *str;
195 int chr;
196 {
197 while (*str)
198 {
199 if (*str == chr)
200 return (char *) str;
201 str++;
202 }
203 return 0;
204 }
205 #endif
206
207 #if !HAVE_DECL_GETENV && !defined getenv && !defined __GNU_LIBRARY__
208 char *getenv ();
209 #endif
210 \f
211 /* Handle permutation of arguments. */
212
213 /* Describe the part of ARGV that contains non-options that have
214 been skipped. `first_nonopt' is the index in ARGV of the first of them;
215 `last_nonopt' is the index after the last of them. */
216
217 static int first_nonopt;
218 static int last_nonopt;
219
220 #ifdef _LIBC
221 /* Bash 2.0 gives us an environment variable containing flags
222 indicating ARGV elements that should not be considered arguments. */
223
224 #ifdef USE_NONOPTION_FLAGS
225 /* Defined in getopt_init.c */
226 extern char *__getopt_nonoption_flags;
227
228 static int nonoption_flags_max_len;
229 static int nonoption_flags_len;
230 #endif
231
232 static int original_argc;
233 static char *const *original_argv;
234
235 /* Make sure the environment variable bash 2.0 puts in the environment
236 is valid for the getopt call we must make sure that the ARGV passed
237 to getopt is that one passed to the process. */
238 static void
239 __attribute__ ((unused))
240 store_args_and_env (int argc, char *const *argv)
241 {
242 /* XXX This is no good solution. We should rather copy the args so
243 that we can compare them later. But we must not use malloc(3). */
244 original_argc = argc;
245 original_argv = argv;
246 }
247 # ifdef text_set_element
248 text_set_element (__libc_subinit, store_args_and_env);
249 # endif /* text_set_element */
250
251 # ifdef USE_NONOPTION_FLAGS
252 # define SWAP_FLAGS(ch1, ch2) \
253 if (nonoption_flags_len > 0) \
254 { \
255 char __tmp = __getopt_nonoption_flags[ch1]; \
256 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
257 __getopt_nonoption_flags[ch2] = __tmp; \
258 }
259 # else
260 # define SWAP_FLAGS(ch1, ch2)
261 # endif
262 #else /* !_LIBC */
263 # define SWAP_FLAGS(ch1, ch2)
264 #endif /* _LIBC */
265
266 /* Exchange two adjacent subsequences of ARGV.
267 One subsequence is elements [first_nonopt,last_nonopt)
268 which contains all the non-options that have been skipped so far.
269 The other is elements [last_nonopt,optind), which contains all
270 the options processed since those non-options were skipped.
271
272 `first_nonopt' and `last_nonopt' are relocated so that they describe
273 the new indices of the non-options in ARGV after they are moved. */
274
275 #if defined __STDC__ && __STDC__
276 static void exchange (char **);
277 #endif
278
279 static void
280 exchange (argv)
281 char **argv;
282 {
283 int bottom = first_nonopt;
284 int middle = last_nonopt;
285 int top = optind;
286 char *tem;
287
288 /* Exchange the shorter segment with the far end of the longer segment.
289 That puts the shorter segment into the right place.
290 It leaves the longer segment in the right place overall,
291 but it consists of two parts that need to be swapped next. */
292
293 #if defined _LIBC && defined USE_NONOPTION_FLAGS
294 /* First make sure the handling of the `__getopt_nonoption_flags'
295 string can work normally. Our top argument must be in the range
296 of the string. */
297 if (nonoption_flags_len > 0 && top >= nonoption_flags_max_len)
298 {
299 /* We must extend the array. The user plays games with us and
300 presents new arguments. */
301 char *new_str = malloc (top + 1);
302 if (new_str == NULL)
303 nonoption_flags_len = nonoption_flags_max_len = 0;
304 else
305 {
306 memset (__mempcpy (new_str, __getopt_nonoption_flags,
307 nonoption_flags_max_len),
308 '\0', top + 1 - nonoption_flags_max_len);
309 nonoption_flags_max_len = top + 1;
310 __getopt_nonoption_flags = new_str;
311 }
312 }
313 #endif
314
315 while (top > middle && middle > bottom)
316 {
317 if (top - middle > middle - bottom)
318 {
319 /* Bottom segment is the short one. */
320 int len = middle - bottom;
321 register int i;
322
323 /* Swap it with the top part of the top segment. */
324 for (i = 0; i < len; i++)
325 {
326 tem = argv[bottom + i];
327 argv[bottom + i] = argv[top - (middle - bottom) + i];
328 argv[top - (middle - bottom) + i] = tem;
329 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
330 }
331 /* Exclude the moved bottom segment from further swapping. */
332 top -= len;
333 }
334 else
335 {
336 /* Top segment is the short one. */
337 int len = top - middle;
338 register int i;
339
340 /* Swap it with the bottom part of the bottom segment. */
341 for (i = 0; i < len; i++)
342 {
343 tem = argv[bottom + i];
344 argv[bottom + i] = argv[middle + i];
345 argv[middle + i] = tem;
346 SWAP_FLAGS (bottom + i, middle + i);
347 }
348 /* Exclude the moved top segment from further swapping. */
349 bottom += len;
350 }
351 }
352
353 /* Update records for the slots the non-options now occupy. */
354
355 first_nonopt += (optind - last_nonopt);
356 last_nonopt = optind;
357 }
358
359 /* Initialize the internal data when the first call is made. */
360
361 #if defined __STDC__ && __STDC__
362 static const char *_getopt_initialize (int, char *const *, const char *);
363 #endif
364 static const char *
365 _getopt_initialize (argc, argv, optstring)
366 int argc;
367 char *const *argv;
368 const char *optstring;
369 {
370 /* Start processing options with ARGV-element 1 (since ARGV-element 0
371 is the program name); the sequence of previously skipped
372 non-option ARGV-elements is empty. */
373
374 first_nonopt = last_nonopt = optind;
375
376 nextchar = NULL;
377
378 posixly_correct = getenv ("POSIXLY_CORRECT");
379
380 /* Determine how to handle the ordering of options and nonoptions. */
381
382 if (optstring[0] == '-')
383 {
384 ordering = RETURN_IN_ORDER;
385 ++optstring;
386 }
387 else if (optstring[0] == '+')
388 {
389 ordering = REQUIRE_ORDER;
390 ++optstring;
391 }
392 else if (posixly_correct != NULL)
393 ordering = REQUIRE_ORDER;
394 else
395 ordering = PERMUTE;
396
397 #if defined _LIBC && defined USE_NONOPTION_FLAGS
398 if (posixly_correct == NULL
399 && argc == original_argc && argv == original_argv)
400 {
401 if (nonoption_flags_max_len == 0)
402 {
403 if (__getopt_nonoption_flags == NULL
404 || __getopt_nonoption_flags[0] == '\0')
405 nonoption_flags_max_len = -1;
406 else
407 {
408 const char *orig_str = __getopt_nonoption_flags;
409 int len = nonoption_flags_max_len = strlen (orig_str);
410 if (nonoption_flags_max_len < argc)
411 nonoption_flags_max_len = argc;
412 __getopt_nonoption_flags =
413 (char *) malloc (nonoption_flags_max_len);
414 if (__getopt_nonoption_flags == NULL)
415 nonoption_flags_max_len = -1;
416 else
417 memset (__mempcpy (__getopt_nonoption_flags, orig_str, len),
418 '\0', nonoption_flags_max_len - len);
419 }
420 }
421 nonoption_flags_len = nonoption_flags_max_len;
422 }
423 else
424 nonoption_flags_len = 0;
425 #endif
426
427 return optstring;
428 }
429 \f
430 /* Scan elements of ARGV (whose length is ARGC) for option characters
431 given in OPTSTRING.
432
433 If an element of ARGV starts with '-', and is not exactly "-" or "--",
434 then it is an option element. The characters of this element
435 (aside from the initial '-') are option characters. If `getopt'
436 is called repeatedly, it returns successively each of the option characters
437 from each of the option elements.
438
439 If `getopt' finds another option character, it returns that character,
440 updating `optind' and `nextchar' so that the next call to `getopt' can
441 resume the scan with the following option character or ARGV-element.
442
443 If there are no more option characters, `getopt' returns -1.
444 Then `optind' is the index in ARGV of the first ARGV-element
445 that is not an option. (The ARGV-elements have been permuted
446 so that those that are not options now come last.)
447
448 OPTSTRING is a string containing the legitimate option characters.
449 If an option character is seen that is not listed in OPTSTRING,
450 return '?' after printing an error message. If you set `opterr' to
451 zero, the error message is suppressed but we still return '?'.
452
453 If a char in OPTSTRING is followed by a colon, that means it wants an arg,
454 so the following text in the same ARGV-element, or the text of the following
455 ARGV-element, is returned in `optarg'. Two colons mean an option that
456 wants an optional arg; if there is text in the current ARGV-element,
457 it is returned in `optarg', otherwise `optarg' is set to zero.
458
459 If OPTSTRING starts with `-' or `+', it requests different methods of
460 handling the non-option ARGV-elements.
461 See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
462
463 Long-named options begin with `--' instead of `-'.
464 Their names may be abbreviated as long as the abbreviation is unique
465 or is an exact match for some defined option. If they have an
466 argument, it follows the option name in the same ARGV-element, separated
467 from the option name by a `=', or else the in next ARGV-element.
468 When `getopt' finds a long-named option, it returns 0 if that option's
469 `flag' field is nonzero, the value of the option's `val' field
470 if the `flag' field is zero.
471
472 The elements of ARGV aren't really const, because we permute them.
473 But we pretend they're const in the prototype to be compatible
474 with other systems.
475
476 LONGOPTS is a vector of `struct option' terminated by an
477 element containing a name which is zero.
478
479 LONGIND returns the index in LONGOPT of the long-named option found.
480 It is only valid when a long-named option has been found by the most
481 recent call.
482
483 If LONG_ONLY is nonzero, '-' as well as '--' can introduce
484 long-named options. */
485
486 int
487 _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
488 int argc;
489 char *const *argv;
490 const char *optstring;
491 const struct option *longopts;
492 int *longind;
493 int long_only;
494 {
495 int print_errors = opterr;
496 if (optstring[0] == ':')
497 print_errors = 0;
498
499 if (argc < 1)
500 return -1;
501
502 optarg = NULL;
503
504 if (optind == 0 || !__getopt_initialized)
505 {
506 if (optind == 0)
507 optind = 1; /* Don't scan ARGV[0], the program name. */
508 optstring = _getopt_initialize (argc, argv, optstring);
509 __getopt_initialized = 1;
510 }
511
512 /* Test whether ARGV[optind] points to a non-option argument.
513 Either it does not have option syntax, or there is an environment flag
514 from the shell indicating it is not an option. The later information
515 is only used when the used in the GNU libc. */
516 #if defined _LIBC && defined USE_NONOPTION_FLAGS
517 # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0' \
518 || (optind < nonoption_flags_len \
519 && __getopt_nonoption_flags[optind] == '1'))
520 #else
521 # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0')
522 #endif
523
524 if (nextchar == NULL || *nextchar == '\0')
525 {
526 /* Advance to the next ARGV-element. */
527
528 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
529 moved back by the user (who may also have changed the arguments). */
530 if (last_nonopt > optind)
531 last_nonopt = optind;
532 if (first_nonopt > optind)
533 first_nonopt = optind;
534
535 if (ordering == PERMUTE)
536 {
537 /* If we have just processed some options following some non-options,
538 exchange them so that the options come first. */
539
540 if (first_nonopt != last_nonopt && last_nonopt != optind)
541 exchange ((char **) argv);
542 else if (last_nonopt != optind)
543 first_nonopt = optind;
544
545 /* Skip any additional non-options
546 and extend the range of non-options previously skipped. */
547
548 while (optind < argc && NONOPTION_P)
549 optind++;
550 last_nonopt = optind;
551 }
552
553 /* The special ARGV-element `--' means premature end of options.
554 Skip it like a null option,
555 then exchange with previous non-options as if it were an option,
556 then skip everything else like a non-option. */
557
558 if (optind != argc && !strcmp (argv[optind], "--"))
559 {
560 optind++;
561
562 if (first_nonopt != last_nonopt && last_nonopt != optind)
563 exchange ((char **) argv);
564 else if (first_nonopt == last_nonopt)
565 first_nonopt = optind;
566 last_nonopt = argc;
567
568 optind = argc;
569 }
570
571 /* If we have done all the ARGV-elements, stop the scan
572 and back over any non-options that we skipped and permuted. */
573
574 if (optind == argc)
575 {
576 /* Set the next-arg-index to point at the non-options
577 that we previously skipped, so the caller will digest them. */
578 if (first_nonopt != last_nonopt)
579 optind = first_nonopt;
580 return -1;
581 }
582
583 /* If we have come to a non-option and did not permute it,
584 either stop the scan or describe it to the caller and pass it by. */
585
586 if (NONOPTION_P)
587 {
588 if (ordering == REQUIRE_ORDER)
589 return -1;
590 optarg = argv[optind++];
591 return 1;
592 }
593
594 /* We have found another option-ARGV-element.
595 Skip the initial punctuation. */
596
597 nextchar = (argv[optind] + 1
598 + (longopts != NULL && argv[optind][1] == '-'));
599 }
600
601 /* Decode the current option-ARGV-element. */
602
603 /* Check whether the ARGV-element is a long option.
604
605 If long_only and the ARGV-element has the form "-f", where f is
606 a valid short option, don't consider it an abbreviated form of
607 a long option that starts with f. Otherwise there would be no
608 way to give the -f short option.
609
610 On the other hand, if there's a long option "fubar" and
611 the ARGV-element is "-fu", do consider that an abbreviation of
612 the long option, just like "--fu", and not "-f" with arg "u".
613
614 This distinction seems to be the most useful approach. */
615
616 if (longopts != NULL
617 && (argv[optind][1] == '-'
618 || (long_only && (argv[optind][2] || !strchr (optstring, argv[optind][1])))))
619 {
620 char *nameend;
621 const struct option *p;
622 const struct option *pfound = NULL;
623 int exact = 0;
624 int ambig = 0;
625 int indfound = -1;
626 int option_index;
627
628 for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
629 /* Do nothing. */ ;
630
631 /* Test all long options for either exact match
632 or abbreviated matches. */
633 for (p = longopts, option_index = 0; p->name; p++, option_index++)
634 if (!strncmp (p->name, nextchar, nameend - nextchar))
635 {
636 if ((unsigned int) (nameend - nextchar)
637 == (unsigned int) strlen (p->name))
638 {
639 /* Exact match found. */
640 pfound = p;
641 indfound = option_index;
642 exact = 1;
643 break;
644 }
645 else if (pfound == NULL)
646 {
647 /* First nonexact match found. */
648 pfound = p;
649 indfound = option_index;
650 }
651 else if (long_only
652 || pfound->has_arg != p->has_arg
653 || pfound->flag != p->flag
654 || pfound->val != p->val)
655 /* Second or later nonexact match found. */
656 ambig = 1;
657 }
658
659 if (ambig && !exact)
660 {
661 if (print_errors)
662 fprintf (stderr, _("%s: option `%s' is ambiguous\n"),
663 argv[0], argv[optind]);
664 nextchar += strlen (nextchar);
665 optind++;
666 optopt = 0;
667 return '?';
668 }
669
670 if (pfound != NULL)
671 {
672 option_index = indfound;
673 optind++;
674 if (*nameend)
675 {
676 /* Don't test has_arg with >, because some C compilers don't
677 allow it to be used on enums. */
678 if (pfound->has_arg)
679 optarg = nameend + 1;
680 else
681 {
682 if (print_errors)
683 {
684 if (argv[optind - 1][1] == '-')
685 /* --option */
686 fprintf (stderr,
687 _("%s: option `--%s' doesn't allow an argument\n"),
688 argv[0], pfound->name);
689 else
690 /* +option or -option */
691 fprintf (stderr,
692 _("%s: option `%c%s' doesn't allow an argument\n"),
693 argv[0], argv[optind - 1][0], pfound->name);
694 }
695
696 nextchar += strlen (nextchar);
697
698 optopt = pfound->val;
699 return '?';
700 }
701 }
702 else if (pfound->has_arg == 1)
703 {
704 if (optind < argc)
705 optarg = argv[optind++];
706 else
707 {
708 if (print_errors)
709 fprintf (stderr,
710 _("%s: option `%s' requires an argument\n"),
711 argv[0], argv[optind - 1]);
712 nextchar += strlen (nextchar);
713 optopt = pfound->val;
714 return optstring[0] == ':' ? ':' : '?';
715 }
716 }
717 nextchar += strlen (nextchar);
718 if (longind != NULL)
719 *longind = option_index;
720 if (pfound->flag)
721 {
722 *(pfound->flag) = pfound->val;
723 return 0;
724 }
725 return pfound->val;
726 }
727
728 /* Can't find it as a long option. If this is not getopt_long_only,
729 or the option starts with '--' or is not a valid short
730 option, then it's an error.
731 Otherwise interpret it as a short option. */
732 if (!long_only || argv[optind][1] == '-'
733 || strchr (optstring, *nextchar) == NULL)
734 {
735 if (print_errors)
736 {
737 if (argv[optind][1] == '-')
738 /* --option */
739 fprintf (stderr, _("%s: unrecognized option `--%s'\n"),
740 argv[0], nextchar);
741 else
742 /* +option or -option */
743 fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),
744 argv[0], argv[optind][0], nextchar);
745 }
746 nextchar = (char *) "";
747 optind++;
748 optopt = 0;
749 return '?';
750 }
751 }
752
753 /* Look at and handle the next short option-character. */
754
755 {
756 char c = *nextchar++;
757 char *temp = strchr (optstring, c);
758
759 /* Increment `optind' when we start to process its last character. */
760 if (*nextchar == '\0')
761 ++optind;
762
763 if (temp == NULL || c == ':')
764 {
765 if (print_errors)
766 {
767 if (posixly_correct)
768 /* 1003.2 specifies the format of this message. */
769 fprintf (stderr, _("%s: illegal option -- %c\n"),
770 argv[0], c);
771 else
772 fprintf (stderr, _("%s: invalid option -- %c\n"),
773 argv[0], c);
774 }
775 optopt = c;
776 return '?';
777 }
778 /* Convenience. Treat POSIX -W foo same as long option --foo */
779 if (temp[0] == 'W' && temp[1] == ';')
780 {
781 char *nameend;
782 const struct option *p;
783 const struct option *pfound = NULL;
784 int exact = 0;
785 int ambig = 0;
786 int indfound = 0;
787 int option_index;
788
789 /* This is an option that requires an argument. */
790 if (*nextchar != '\0')
791 {
792 optarg = nextchar;
793 /* If we end this ARGV-element by taking the rest as an arg,
794 we must advance to the next element now. */
795 optind++;
796 }
797 else if (optind == argc)
798 {
799 if (print_errors)
800 {
801 /* 1003.2 specifies the format of this message. */
802 fprintf (stderr, _("%s: option requires an argument -- %c\n"),
803 argv[0], c);
804 }
805 optopt = c;
806 if (optstring[0] == ':')
807 c = ':';
808 else
809 c = '?';
810 return c;
811 }
812 else
813 /* We already incremented `optind' once;
814 increment it again when taking next ARGV-elt as argument. */
815 optarg = argv[optind++];
816
817 /* optarg is now the argument, see if it's in the
818 table of longopts. */
819
820 for (nextchar = nameend = optarg; *nameend && *nameend != '='; nameend++)
821 /* Do nothing. */ ;
822
823 /* Test all long options for either exact match
824 or abbreviated matches. */
825 for (p = longopts, option_index = 0; p->name; p++, option_index++)
826 if (!strncmp (p->name, nextchar, nameend - nextchar))
827 {
828 if ((unsigned int) (nameend - nextchar) == strlen (p->name))
829 {
830 /* Exact match found. */
831 pfound = p;
832 indfound = option_index;
833 exact = 1;
834 break;
835 }
836 else if (pfound == NULL)
837 {
838 /* First nonexact match found. */
839 pfound = p;
840 indfound = option_index;
841 }
842 else
843 /* Second or later nonexact match found. */
844 ambig = 1;
845 }
846 if (ambig && !exact)
847 {
848 if (print_errors)
849 fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"),
850 argv[0], argv[optind]);
851 nextchar += strlen (nextchar);
852 optind++;
853 return '?';
854 }
855 if (pfound != NULL)
856 {
857 option_index = indfound;
858 if (*nameend)
859 {
860 /* Don't test has_arg with >, because some C compilers don't
861 allow it to be used on enums. */
862 if (pfound->has_arg)
863 optarg = nameend + 1;
864 else
865 {
866 if (print_errors)
867 fprintf (stderr, _("\
868 %s: option `-W %s' doesn't allow an argument\n"),
869 argv[0], pfound->name);
870
871 nextchar += strlen (nextchar);
872 return '?';
873 }
874 }
875 else if (pfound->has_arg == 1)
876 {
877 if (optind < argc)
878 optarg = argv[optind++];
879 else
880 {
881 if (print_errors)
882 fprintf (stderr,
883 _("%s: option `%s' requires an argument\n"),
884 argv[0], argv[optind - 1]);
885 nextchar += strlen (nextchar);
886 return optstring[0] == ':' ? ':' : '?';
887 }
888 }
889 nextchar += strlen (nextchar);
890 if (longind != NULL)
891 *longind = option_index;
892 if (pfound->flag)
893 {
894 *(pfound->flag) = pfound->val;
895 return 0;
896 }
897 return pfound->val;
898 }
899 nextchar = NULL;
900 return 'W'; /* Let the application handle it. */
901 }
902 if (temp[1] == ':')
903 {
904 if (temp[2] == ':')
905 {
906 /* This is an option that accepts an argument optionally. */
907 if (*nextchar != '\0')
908 {
909 optarg = nextchar;
910 optind++;
911 }
912 else
913 optarg = NULL;
914 nextchar = NULL;
915 }
916 else
917 {
918 /* This is an option that requires an argument. */
919 if (*nextchar != '\0')
920 {
921 optarg = nextchar;
922 /* If we end this ARGV-element by taking the rest as an arg,
923 we must advance to the next element now. */
924 optind++;
925 }
926 else if (optind == argc)
927 {
928 if (print_errors)
929 {
930 /* 1003.2 specifies the format of this message. */
931 fprintf (stderr,
932 _("%s: option requires an argument -- %c\n"),
933 argv[0], c);
934 }
935 optopt = c;
936 if (optstring[0] == ':')
937 c = ':';
938 else
939 c = '?';
940 }
941 else
942 /* We already incremented `optind' once;
943 increment it again when taking next ARGV-elt as argument. */
944 optarg = argv[optind++];
945 nextchar = NULL;
946 }
947 }
948 return c;
949 }
950 }
951
952 int
953 getopt (argc, argv, optstring)
954 int argc;
955 char *const *argv;
956 const char *optstring;
957 {
958 return _getopt_internal (argc, argv, optstring,
959 (const struct option *) 0,
960 (int *) 0,
961 0);
962 }
963
964 #endif /* Not ELIDE_CODE. */
965 \f
966 #ifdef TEST
967
968 /* Compile with -DTEST to make an executable for use in testing
969 the above definition of `getopt'. */
970
971 int
972 main (argc, argv)
973 int argc;
974 char **argv;
975 {
976 int c;
977 int digit_optind = 0;
978
979 while (1)
980 {
981 int this_option_optind = optind ? optind : 1;
982
983 c = getopt (argc, argv, "abc:d:0123456789");
984 if (c == -1)
985 break;
986
987 switch (c)
988 {
989 case '0':
990 case '1':
991 case '2':
992 case '3':
993 case '4':
994 case '5':
995 case '6':
996 case '7':
997 case '8':
998 case '9':
999 if (digit_optind != 0 && digit_optind != this_option_optind)
1000 printf ("digits occur in two different argv-elements.\n");
1001 digit_optind = this_option_optind;
1002 printf ("option %c\n", c);
1003 break;
1004
1005 case 'a':
1006 printf ("option a\n");
1007 break;
1008
1009 case 'b':
1010 printf ("option b\n");
1011 break;
1012
1013 case 'c':
1014 printf ("option c with value `%s'\n", optarg);
1015 break;
1016
1017 case '?':
1018 break;
1019
1020 default:
1021 printf ("?? getopt returned character code 0%o ??\n", c);
1022 }
1023 }
1024
1025 if (optind < argc)
1026 {
1027 printf ("non-option ARGV-elements: ");
1028 while (optind < argc)
1029 printf ("%s ", argv[optind++]);
1030 printf ("\n");
1031 }
1032
1033 exit (0);
1034 }
1035
1036 #endif /* TEST */