getopt.c
上传用户:sddyfurun
上传日期:2007-01-04
资源大小:525k
文件大小:19k
源码类别:

代理服务器

开发平台:

Unix_Linux

  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.    Copyright (C) 1987, 88, 89, 90, 91, 1992 Free Software Foundation, Inc.
  6.    This program is free software; you can redistribute it and/or modify it
  7.    under the terms of the GNU Library General Public License as published
  8.    by the Free Software Foundation; either version 2, or (at your option)
  9.    any later version.
  10.    This program is distributed in the hope that it will be useful,
  11.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.    GNU General Public License for more details.
  14.    You should have received a copy of the GNU Library General Public
  15.    License along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17. /* AIX requires this to be the first thing in the file. */
  18. #include "pmachine.h"
  19. #ifdef __GNUC__
  20. #ifndef alloca
  21. #define alloca __builtin_alloca
  22. #endif
  23. #else /* not __GNUC__ */
  24. #if defined(HAVE_ALLOCA_H) || (defined(sparc) && (defined(sun) || (!defined(USG) && !defined(SVR4) && !defined(__svr4__))))
  25. #include <alloca.h>
  26. #else
  27. #ifdef _AIX
  28.  #pragma alloca
  29. #else
  30. char *alloca ();
  31. #endif
  32. #endif /* alloca.h */
  33. #endif /* not __GNUC__ */
  34. #include <stdio.h>
  35. /* This needs to come after some library #include
  36.    to get __GNU_LIBRARY__ defined.  */
  37. #ifdef __GNU_LIBRARY__
  38. #undef alloca
  39. #include <stdlib.h>
  40. #include <string.h>
  41. #else /* Not GNU C library.  */
  42. #define __alloca alloca
  43. #endif /* GNU C library.  */
  44. #ifndef __STDC__
  45. #define const
  46. #endif
  47. /* If GETOPT_COMPAT is defined, `+' as well as `--' can introduce a
  48.    long-named option.  Because this is not POSIX.2 compliant, it is
  49.    being phased out. */
  50. #undef GETOPT_COMPAT
  51. /* This version of `getopt' appears to the caller like standard Unix `getopt'
  52.    but it behaves differently for the user, since it allows the user
  53.    to intersperse the options with the other arguments.
  54.    As `getopt' works, it permutes the elements of ARGV so that,
  55.    when it is done, all the options precede everything else.  Thus
  56.    all application programs are extended to handle flexible argument order.
  57.    Setting the environment variable POSIXLY_CORRECT disables permutation.
  58.    Then the behavior is completely standard.
  59.    GNU application programs can use a third alternative mode in which
  60.    they can distinguish the relative order of options and other arguments.  */
  61. #include "getopt.h"
  62. /* For communication from `getopt' to the caller.
  63.    When `getopt' finds an option that takes an argument,
  64.    the argument value is returned here.
  65.    Also, when `ordering' is RETURN_IN_ORDER,
  66.    each non-option ARGV-element is returned here.  */
  67. char *optarg = 0;
  68. /* Index in ARGV of the next element to be scanned.
  69.    This is used for communication to and from the caller
  70.    and for communication between successive calls to `getopt'.
  71.    On entry to `getopt', zero means this is the first call; initialize.
  72.    When `getopt' returns EOF, this is the index of the first of the
  73.    non-option elements that the caller should itself scan.
  74.    Otherwise, `optind' communicates from one call to the next
  75.    how much of ARGV has been scanned so far.  */
  76. int optind = 0;
  77. /* The next char to be scanned in the option-element
  78.    in which the last option character we returned was found.
  79.    This allows us to pick up the scan where we left off.
  80.    If this is zero, or a null string, it means resume the scan
  81.    by advancing to the next ARGV-element.  */
  82. static char *nextchar;
  83. /* Callers store zero here to inhibit the error message
  84.    for unrecognized options.  */
  85. int opterr = 1;
  86. /* Describe how to deal with options that follow non-option ARGV-elements.
  87.    If the caller did not specify anything,
  88.    the default is REQUIRE_ORDER if the environment variable
  89.    POSIXLY_CORRECT is defined, PERMUTE otherwise.
  90.    REQUIRE_ORDER means don't recognize them as options;
  91.    stop option processing when the first non-option is seen.
  92.    This is what Unix does.
  93.    This mode of operation is selected by either setting the environment
  94.    variable POSIXLY_CORRECT, or using `+' as the first character
  95.    of the list of option characters.
  96.    PERMUTE is the default.  We permute the contents of ARGV as we scan,
  97.    so that eventually all the non-options are at the end.  This allows options
  98.    to be given in any order, even with programs that were not written to
  99.    expect this.
  100.    RETURN_IN_ORDER is an option available to programs that were written
  101.    to expect options and other ARGV-elements in any order and that care about
  102.    the ordering of the two.  We describe each non-option ARGV-element
  103.    as if it were the argument of an option with character code 1.
  104.    Using `-' as the first character of the list of option characters
  105.    selects this mode of operation.
  106.    The special argument `--' forces an end of option-scanning regardless
  107.    of the value of `ordering'.  In the case of RETURN_IN_ORDER, only
  108.    `--' can cause `getopt' to return EOF with `optind' != ARGC.  */
  109. static enum
  110. {
  111.   REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
  112. } ordering;
  113. #ifdef __GNU_LIBRARY__
  114. #include <string.h>
  115. #define my_index strchr
  116. #define my_bcopy(src, dst, n) memcpy ((dst), (src), (n))
  117. #else
  118. /* Avoid depending on library functions or files
  119.    whose names are inconsistent.  */
  120. char *getenv ();
  121. static char *
  122. my_index (string, chr)
  123.      const char *string;
  124.      int chr;
  125. {
  126.   while (*string)
  127.     {
  128.       if (*string == chr)
  129. return (char *) string;
  130.       string++;
  131.     }
  132.   return 0;
  133. }
  134. static void
  135. my_bcopy (from, to, size)
  136.      char *from, *to;
  137.      int size;
  138. {
  139.   int i;
  140.   for (i = 0; i < size; i++)
  141.     to[i] = from[i];
  142. }
  143. #endif /* GNU C library.  */
  144. /* Handle permutation of arguments.  */
  145. /* Describe the part of ARGV that contains non-options that have
  146.    been skipped.  `first_nonopt' is the index in ARGV of the first of them;
  147.    `last_nonopt' is the index after the last of them.  */
  148. static int first_nonopt;
  149. static int last_nonopt;
  150. /* Exchange two adjacent subsequences of ARGV.
  151.    One subsequence is elements [first_nonopt,last_nonopt)
  152.    which contains all the non-options that have been skipped so far.
  153.    The other is elements [last_nonopt,optind), which contains all
  154.    the options processed since those non-options were skipped.
  155.    `first_nonopt' and `last_nonopt' are relocated so that they describe
  156.    the new indices of the non-options in ARGV after they are moved.  */
  157. static void
  158. exchange (argv)
  159.      char **argv;
  160. {
  161.   int nonopts_size = (last_nonopt - first_nonopt) * sizeof (char *);
  162. #ifdef ARCHIE_HOST
  163.   char **temp = (char **) malloc (nonopts_size);
  164. #else
  165.   char **temp = (char **) __alloca (nonopts_size);
  166. #endif
  167.   /* Interchange the two blocks of data in ARGV.  */
  168.   my_bcopy ((char *)&argv[first_nonopt], (char *)temp,
  169.     nonopts_size);
  170.   my_bcopy ((char *)&argv[last_nonopt], (char *)&argv[first_nonopt],
  171.     (optind - last_nonopt) * sizeof (char *));
  172.   my_bcopy ((char *)temp, (char *)&argv[first_nonopt + optind - last_nonopt],
  173.             nonopts_size);
  174.   /* Update records for the slots the non-options now occupy.  */
  175.   first_nonopt += (optind - last_nonopt);
  176.   last_nonopt = optind;
  177. }
  178. /* Scan elements of ARGV (whose length is ARGC) for option characters
  179.    given in OPTSTRING.
  180.    If an element of ARGV starts with '-', and is not exactly "-" or "--",
  181.    then it is an option element.  The characters of this element
  182.    (aside from the initial '-') are option characters.  If `getopt'
  183.    is called repeatedly, it returns successively each of the option characters
  184.    from each of the option elements.
  185.    If `getopt' finds another option character, it returns that character,
  186.    updating `optind' and `nextchar' so that the next call to `getopt' can
  187.    resume the scan with the following option character or ARGV-element.
  188.    If there are no more option characters, `getopt' returns `EOF'.
  189.    Then `optind' is the index in ARGV of the first ARGV-element
  190.    that is not an option.  (The ARGV-elements have been permuted
  191.    so that those that are not options now come last.)
  192.    OPTSTRING is a string containing the legitimate option characters.
  193.    If an option character is seen that is not listed in OPTSTRING,
  194.    return '?' after printing an error message.  If you set `opterr' to
  195.    zero, the error message is suppressed but we still return '?'.
  196.    If a char in OPTSTRING is followed by a colon, that means it wants an arg,
  197.    so the following text in the same ARGV-element, or the text of the following
  198.    ARGV-element, is returned in `optarg'.  Two colons mean an option that
  199.    wants an optional arg; if there is text in the current ARGV-element,
  200.    it is returned in `optarg', otherwise `optarg' is set to zero.
  201.    If OPTSTRING starts with `-' or `+', it requests different methods of
  202.    handling the non-option ARGV-elements.
  203.    See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
  204.    Long-named options begin with `--' instead of `-'.
  205.    Their names may be abbreviated as long as the abbreviation is unique
  206.    or is an exact match for some defined option.  If they have an
  207.    argument, it follows the option name in the same ARGV-element, separated
  208.    from the option name by a `=', or else the in next ARGV-element.
  209.    When `getopt' finds a long-named option, it returns 0 if that option's
  210.    `flag' field is nonzero, the value of the option's `val' field
  211.    if the `flag' field is zero.
  212.    The elements of ARGV aren't really const, because we permute them.
  213.    But we pretend they're const in the prototype to be compatible
  214.    with other systems.
  215.    LONGOPTS is a vector of `struct option' terminated by an
  216.    element containing a name which is zero.
  217.    LONGIND returns the index in LONGOPT of the long-named option found.
  218.    It is only valid when a long-named option has been found by the most
  219.    recent call.
  220.    If LONG_ONLY is nonzero, '-' as well as '--' can introduce
  221.    long-named options.  */
  222. int
  223. _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
  224.      int argc;
  225.      char *const *argv;
  226.      const char *optstring;
  227.      const struct option *longopts;
  228.      int *longind;
  229.      int long_only;
  230. {
  231.   int option_index;
  232.   optarg = 0;
  233.   /* Initialize the internal data when the first call is made.
  234.      Start processing options with ARGV-element 1 (since ARGV-element 0
  235.      is the program name); the sequence of previously skipped
  236.      non-option ARGV-elements is empty.  */
  237.   if (optind == 0)
  238.     {
  239.       first_nonopt = last_nonopt = optind = 1;
  240.       nextchar = NULL;
  241.       /* Determine how to handle the ordering of options and nonoptions.  */
  242.       if (optstring[0] == '-')
  243. {
  244.   ordering = RETURN_IN_ORDER;
  245.   ++optstring;
  246. }
  247.       else if (optstring[0] == '+')
  248. {
  249.   ordering = REQUIRE_ORDER;
  250.   ++optstring;
  251. }
  252.       else if (getenv ("POSIXLY_CORRECT") != NULL)
  253. ordering = REQUIRE_ORDER;
  254.       else
  255. ordering = PERMUTE;
  256.     }
  257.   if (nextchar == NULL || *nextchar == '')
  258.     {
  259.       if (ordering == PERMUTE)
  260. {
  261.   /* If we have just processed some options following some non-options,
  262.      exchange them so that the options come first.  */
  263.   if (first_nonopt != last_nonopt && last_nonopt != optind)
  264.     exchange ((char **) argv);
  265.   else if (last_nonopt != optind)
  266.     first_nonopt = optind;
  267.   /* Now skip any additional non-options
  268.      and extend the range of non-options previously skipped.  */
  269.   while (optind < argc
  270.  && (argv[optind][0] != '-' || argv[optind][1] == '')
  271. #ifdef GETOPT_COMPAT
  272.  && (longopts == NULL
  273.      || argv[optind][0] != '+' || argv[optind][1] == '')
  274. #endif /* GETOPT_COMPAT */
  275.  )
  276.     optind++;
  277.   last_nonopt = optind;
  278. }
  279.       /* Special ARGV-element `--' means premature end of options.
  280.  Skip it like a null option,
  281.  then exchange with previous non-options as if it were an option,
  282.  then skip everything else like a non-option.  */
  283.       if (optind != argc && !strcmp (argv[optind], "--"))
  284. {
  285.   optind++;
  286.   if (first_nonopt != last_nonopt && last_nonopt != optind)
  287.     exchange ((char **) argv);
  288.   else if (first_nonopt == last_nonopt)
  289.     first_nonopt = optind;
  290.   last_nonopt = argc;
  291.   optind = argc;
  292. }
  293.       /* If we have done all the ARGV-elements, stop the scan
  294.  and back over any non-options that we skipped and permuted.  */
  295.       if (optind == argc)
  296. {
  297.   /* Set the next-arg-index to point at the non-options
  298.      that we previously skipped, so the caller will digest them.  */
  299.   if (first_nonopt != last_nonopt)
  300.     optind = first_nonopt;
  301.   return EOF;
  302. }
  303.       /* If we have come to a non-option and did not permute it,
  304.  either stop the scan or describe it to the caller and pass it by.  */
  305.       if ((argv[optind][0] != '-' || argv[optind][1] == '')
  306. #ifdef GETOPT_COMPAT
  307.   && (longopts == NULL
  308.       || argv[optind][0] != '+' || argv[optind][1] == '')
  309. #endif /* GETOPT_COMPAT */
  310.   )
  311. {
  312.   if (ordering == REQUIRE_ORDER)
  313.     return EOF;
  314.   optarg = argv[optind++];
  315.   return 1;
  316. }
  317.       /* We have found another option-ARGV-element.
  318.  Start decoding its characters.  */
  319.       nextchar = (argv[optind] + 1
  320.   + (longopts != NULL && argv[optind][1] == '-'));
  321.     }
  322.   if (longopts != NULL
  323.       && ((argv[optind][0] == '-'
  324.    && (argv[optind][1] == '-' || long_only))
  325. #ifdef GETOPT_COMPAT
  326.   || argv[optind][0] == '+'
  327. #endif /* GETOPT_COMPAT */
  328.   ))
  329.     {
  330.       const struct option *p;
  331.       char *s = nextchar;
  332.       int exact = 0;
  333.       int ambig = 0;
  334.       const struct option *pfound = NULL;
  335.       int indfound;
  336.       while (*s && *s != '=')
  337. s++;
  338.       /* Test all options for either exact match or abbreviated matches.  */
  339.       for (p = longopts, option_index = 0; p->name;
  340.    p++, option_index++)
  341. if (!strncmp (p->name, nextchar, s - nextchar))
  342.   {
  343.     if (s - nextchar == strlen (p->name))
  344.       {
  345. /* Exact match found.  */
  346. pfound = p;
  347. indfound = option_index;
  348. exact = 1;
  349. break;
  350.       }
  351.     else if (pfound == NULL)
  352.       {
  353. /* First nonexact match found.  */
  354. pfound = p;
  355. indfound = option_index;
  356.       }
  357.     else
  358.       /* Second nonexact match found.  */
  359.       ambig = 1;
  360.   }
  361.       if (ambig && !exact)
  362. {
  363.   if (opterr)
  364.     fprintf (stderr, "%s: option `%s' is ambiguousn",
  365.      argv[0], argv[optind]);
  366.   nextchar += strlen (nextchar);
  367.   optind++;
  368.   return '?';
  369. }
  370.       if (pfound != NULL)
  371. {
  372.   option_index = indfound;
  373.   optind++;
  374.   if (*s)
  375.     {
  376.       /* Don't test has_arg with >, because some C compilers don't
  377.  allow it to be used on enums. */
  378.       if (pfound->has_arg)
  379. optarg = s + 1;
  380.       else
  381. {
  382.   if (opterr)
  383.     {
  384.       if (argv[optind - 1][1] == '-')
  385. /* --option */
  386. fprintf (stderr,
  387.  "%s: option `--%s' doesn't allow an argumentn",
  388.  argv[0], pfound->name);
  389.       else
  390. /* +option or -option */
  391. fprintf (stderr,
  392.      "%s: option `%c%s' doesn't allow an argumentn",
  393.      argv[0], argv[optind - 1][0], pfound->name);
  394.     }
  395.   nextchar += strlen (nextchar);
  396.   return '?';
  397. }
  398.     }
  399.   else if (pfound->has_arg == 1)
  400.     {
  401.       if (optind < argc)
  402. optarg = argv[optind++];
  403.       else
  404. {
  405.   if (opterr)
  406.     fprintf (stderr, "%s: option `%s' requires an argumentn",
  407.      argv[0], argv[optind - 1]);
  408.   nextchar += strlen (nextchar);
  409.   return '?';
  410. }
  411.     }
  412.   nextchar += strlen (nextchar);
  413.   if (longind != NULL)
  414.     *longind = option_index;
  415.   if (pfound->flag)
  416.     {
  417.       *(pfound->flag) = pfound->val;
  418.       return 0;
  419.     }
  420.   return pfound->val;
  421. }
  422.       /* Can't find it as a long option.  If this is not getopt_long_only,
  423.  or the option starts with '--' or is not a valid short
  424.  option, then it's an error.
  425.  Otherwise interpret it as a short option. */
  426.       if (!long_only || argv[optind][1] == '-'
  427. #ifdef GETOPT_COMPAT
  428.   || argv[optind][0] == '+'
  429. #endif /* GETOPT_COMPAT */
  430.   || my_index (optstring, *nextchar) == NULL)
  431. {
  432.   if (opterr)
  433.     {
  434.       if (argv[optind][1] == '-')
  435. /* --option */
  436. fprintf (stderr, "%s: unrecognized option `--%s'n",
  437.  argv[0], nextchar);
  438.       else
  439. /* +option or -option */
  440. fprintf (stderr, "%s: unrecognized option `%c%s'n",
  441.  argv[0], argv[optind][0], nextchar);
  442.     }
  443.   nextchar = (char *) "";
  444.   optind++;
  445.   return '?';
  446. }
  447.     }
  448.   /* Look at and handle the next option-character.  */
  449.   {
  450.     char c = *nextchar++;
  451.     char *temp = my_index (optstring, c);
  452.     /* Increment `optind' when we start to process its last character.  */
  453.     if (*nextchar == '')
  454.       ++optind;
  455.     if (temp == NULL || c == ':')
  456.       {
  457. if (opterr)
  458.   {
  459.     if (c < 040 || c >= 0177)
  460.       fprintf (stderr, "%s: unrecognized option, character code 0%on",
  461.        argv[0], c);
  462.     else
  463.       fprintf (stderr, "%s: unrecognized option `-%c'n", argv[0], c);
  464.   }
  465. return '?';
  466.       }
  467.     if (temp[1] == ':')
  468.       {
  469. if (temp[2] == ':')
  470.   {
  471.     /* This is an option that accepts an argument optionally.  */
  472.     if (*nextchar != '')
  473.       {
  474. optarg = nextchar;
  475. optind++;
  476.       }
  477.     else
  478.       optarg = 0;
  479.     nextchar = NULL;
  480.   }
  481. else
  482.   {
  483.     /* This is an option that requires an argument.  */
  484.     if (*nextchar != '')
  485.       {
  486. optarg = nextchar;
  487. /* If we end this ARGV-element by taking the rest as an arg,
  488.    we must advance to the next element now.  */
  489. optind++;
  490.       }
  491.     else if (optind == argc)
  492.       {
  493. if (opterr)
  494.   fprintf (stderr, "%s: option `-%c' requires an argumentn",
  495.    argv[0], c);
  496. c = '?';
  497.       }
  498.     else
  499.       /* We already incremented `optind' once;
  500.  increment it again when taking next ARGV-elt as argument.  */
  501.       optarg = argv[optind++];
  502.     nextchar = NULL;
  503.   }
  504.       }
  505.     return c;
  506.   }
  507. }
  508. int
  509. getopt (argc, argv, optstring)
  510.      int argc;
  511.      char *const *argv;
  512.      const char *optstring;
  513. {
  514.   return _getopt_internal (argc, argv, optstring,
  515.    (const struct option *) 0,
  516.    (int *) 0,
  517.    0);
  518. }
  519. #ifdef TEST
  520. /* Compile with -DTEST to make an executable for use in testing
  521.    the above definition of `getopt'.  */
  522. int
  523. main (argc, argv)
  524.      int argc;
  525.      char **argv;
  526. {
  527.   int c;
  528.   int digit_optind = 0;
  529.   while (1)
  530.     {
  531.       int this_option_optind = optind ? optind : 1;
  532.       c = getopt (argc, argv, "abc:d:0123456789");
  533.       if (c == EOF)
  534. break;
  535.       switch (c)
  536. {
  537. case '0':
  538. case '1':
  539. case '2':
  540. case '3':
  541. case '4':
  542. case '5':
  543. case '6':
  544. case '7':
  545. case '8':
  546. case '9':
  547.   if (digit_optind != 0 && digit_optind != this_option_optind)
  548.     printf ("digits occur in two different argv-elements.n");
  549.   digit_optind = this_option_optind;
  550.   printf ("option %cn", c);
  551.   break;
  552. case 'a':
  553.   printf ("option an");
  554.   break;
  555. case 'b':
  556.   printf ("option bn");
  557.   break;
  558. case 'c':
  559.   printf ("option c with value `%s'n", optarg);
  560.   break;
  561. case '?':
  562.   break;
  563. default:
  564.   printf ("?? getopt returned character code 0%o ??n", c);
  565. }
  566.     }
  567.   if (optind < argc)
  568.     {
  569.       printf ("non-option ARGV-elements: ");
  570.       while (optind < argc)
  571. printf ("%s ", argv[optind++]);
  572.       printf ("n");
  573.     }
  574.   exit (0);
  575. }
  576. #endif /* TEST */