getopt.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:31k
源码类别:

Windows CE

开发平台:

C/C++

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