getopt.c
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:30k
源码类别:

Audio

开发平台:

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