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