home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixtools / util / c / getopt < prev    next >
Text File  |  1992-07-21  |  14KB  |  451 lines

  1. /* C.Getopt: Command argument parser */
  2.  
  3. /* Getopt for GNU.
  4.  * Copyright (C) 1987 Free Software Foundation, Inc.
  5.  * Subject to the standard Gnu conditions.
  6.  */
  7.  
  8. /* This version of `getopt' appears to the caller like standard Unix 'getopt'
  9.  * but it behaves differently for the user, since it allows the user
  10.  * to intersperse the options with the other arguments.
  11.  *
  12.  * As 'getopt' works, it permutes the elements of 'argv' so that,
  13.  * when it is done, all the options precede everything else.  Thus
  14.  * all application programs are extended to handle flexible argument order.
  15.  *
  16.  * Setting the environment variable POSIX_OPTION_ORDER disables permutation.
  17.  * Then the behavior is completely standard.
  18.  *
  19.  * GNU application programs can use a third alternative mode in which
  20.  * they can distinguish the relative order of options and other arguments.
  21.  */
  22.  
  23. /* Converted for ANSI C on the Archimedes, Paul Moore, 25/04/89 */
  24.  
  25. #include <stdio.h>
  26. #include <string.h>
  27. #include <stdlib.h>
  28.  
  29. #include "utils.h"
  30.  
  31. /* For communication from 'getopt' to the caller.
  32.    When 'getopt' finds an option that takes an argument,
  33.    the argument value is returned here.
  34.    Also, when 'ordering' is RETURN_IN_ORDER,
  35.    each non-option ARGV-element is returned here.
  36.  */
  37.  
  38. char *optarg = 0;
  39.  
  40. /* Index in ARGV of the next element to be scanned.
  41.    This is used for communication to and from the caller
  42.    and for communication between successive calls to 'getopt'.
  43.  
  44.    On entry to 'getopt', zero means this is the first call; initialize.
  45.  
  46.    When 'getopt' returns EOF, this is the index of the first of the
  47.    non-option elements that the caller should itself scan.
  48.  
  49.    Otherwise, 'optind' communicates from one call to the next
  50.    how much of ARGV has been scanned so far.
  51.  */
  52.  
  53. int optind = 0;
  54.  
  55. /* The next char to be scanned in the option-element
  56.    in which the last option character we returned was found.
  57.    This allows us to pick up the scan where we left off.
  58.  
  59.    If this is zero, or a null string, it means resume the scan
  60.    by advancing to the next ARGV-element.
  61.  */
  62.  
  63. static char *nextchar;
  64.  
  65. /* Callers store zero here to inhibit the error message
  66.    for unrecognized options.
  67.  */
  68.  
  69. int opterr = 1;
  70.  
  71. /* Describe how to deal with options that follow non-option ARGV-elements.
  72.  
  73.    REQUIRE_ORDER means don't recognize them as options. Stop option
  74.    processing when the first non-option is seen. This is what Unix does.
  75.    Using ':' as the first character of the list of option characters
  76.    requests this mode of operation.
  77.  
  78.    PERMUTE is the default.  We permute the contents of 'argv' as we scan,
  79.    so that eventually all the options are at the end.  This allows options
  80.    to be given in any order, even with programs that were not written to
  81.    expect this.
  82.  
  83.    RETURN_IN_ORDER is an option available to programs that were written
  84.    to expect options and other ARGV-elements in any order and that care about
  85.    the ordering of the two.  We describe each non-option ARGV-element
  86.    as if it were the argument of an option with character code zero.
  87.    Using '-' as the first character of the list of option characters
  88.    requests this mode of operation.
  89.  
  90.    The special argument '--' forces an end of option-scanning regardless
  91.    of the value of 'ordering'.  In the case of RETURN_IN_ORDER, only
  92.    '--' can cause 'getopt' to return EOF with 'optind' != ARGC.
  93.  */
  94.  
  95. static enum { REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER } ordering;
  96.  
  97. /* Handle permutation of arguments.  */
  98.  
  99. /* Describe the part of ARGV that contains non-options that have
  100.    been skipped.  'first_nonopt' is the index in ARGV of the first
  101.    of them; 'last_nonopt' is the index after the last of them.
  102.  */
  103.  
  104. static int first_nonopt;
  105. static int last_nonopt;
  106.  
  107. /* Exchange two adjacent subsequences of ARGV.
  108.    One subsequence is elements [first_nonopt,last_nonopt) which
  109.    contains all the non-options that have been skipped so far.
  110.    The other is elements [last_nonopt,optind), which contains all
  111.    the options processed since those non-options were skipped.
  112.  
  113.    'first_nonopt' and 'last_nonopt' are relocated so that they describe
  114.    the new indices of the non-options in ARGV after they are moved.
  115.  */
  116.  
  117. static void exchange (char *argv[])
  118. {
  119.     int nonopts_size = (last_nonopt - first_nonopt) * sizeof (char *);
  120.     char **temp = (char **) malloc (nonopts_size);
  121.  
  122.     if ( temp == NULL )
  123.     {
  124.         fprintf(stderr,"Fatal error - memory exhausted\n");
  125.         exit(1);
  126.     }
  127.  
  128.     /* Interchange the two blocks of data in argv.  */
  129.  
  130.     memcpy (temp, &argv[first_nonopt], nonopts_size);
  131.     memcpy (&argv[first_nonopt], &argv[last_nonopt],
  132.             (optind - last_nonopt) * sizeof (char *));
  133.     memcpy (&argv[first_nonopt + optind - last_nonopt], temp,
  134.             nonopts_size);
  135.  
  136.     /* Update records for the slots the non-options now occupy.  */
  137.  
  138.     first_nonopt += (optind - last_nonopt);
  139.     last_nonopt = optind;
  140.  
  141.     free(temp);
  142. }
  143.  
  144. /* Scan elements of ARGV (whose length is ARGC) for option characters
  145.    given in OPTSTRING.
  146.  
  147.    If an element of ARGV starts with '-', and is not exactly "-" or "--",
  148.    then it is an option element.  The characters of this element
  149.    (aside from the initial '-') are option characters.  If 'getopt'
  150.    is called repeatedly, it returns successively each of the option
  151.    characters from each of the option elements.
  152.  
  153.    If 'getopt' finds another option character, it returns that character,
  154.    updating 'optind' and 'nextchar' so that the next call to 'getopt' can
  155.    resume the scan with the following option character or ARGV-element.
  156.  
  157.    If there are no more option characters, 'getopt' returns 'EOF'.
  158.    Then 'optind' is the index in ARGV of the first ARGV-element
  159.    that is not an option.  (The ARGV-elements have been permuted
  160.    so that those that are not options now come last.)
  161.  
  162.    OPTSTRING is a string containing the legitimate option characters.
  163.    A colon in OPTSTRING means that the previous character is an option
  164.    that wants an argument.  The argument is taken from the rest of the
  165.    current ARGV-element, or from the following ARGV-element,
  166.    and returned in 'optarg'.
  167.  
  168.    If an option character is seen that is not listed in OPTSTRING,
  169.    return '?' after printing an error message.  If you set 'opterr' to
  170.    zero, the error message is suppressed but we still return '?'.
  171.  
  172.    If a char in OPTSTRING is followed by a colon, that means it wants
  173.    an arg, so the following text in the same ARGV-element, or the text
  174.    of the following ARGV-element, is returned in 'optarg.  Two colons
  175.    mean an option that wants an optional arg; if there is text in the
  176.    current ARGV-element, it is returned in 'optarg'.
  177.  
  178.    If OPTSTRING starts with '-' or ':', it requests a different method
  179.    of handling the non-option ARGV-elements.  See the comments about
  180.    RETURN_IN_ORDER and REQUIRE_ORDER, above.
  181.  */
  182.  
  183. int getopt (int argc, char *argv[], const char *optstring)
  184. {
  185.     /* Initialize the internal data when the first call is made.
  186.        Start processing options with ARGV-element 1 (since ARGV-element
  187.        0 is the program name); the sequence of previously skipped
  188.        non-option ARGV-elements is empty.
  189.      */
  190.  
  191.     if (optind == 0)
  192.     {
  193.         first_nonopt = last_nonopt = optind = 1;
  194.  
  195.         nextchar = 0;
  196.  
  197.         /* Determine how to handle the ordering of options and nonoptions.  */
  198.  
  199.         if (optstring[0] == '-')
  200.             ordering = RETURN_IN_ORDER;
  201.         else if (optstring[0] == ':')
  202.             ordering = REQUIRE_ORDER;
  203.         else
  204.             ordering = PERMUTE;
  205.     }
  206.  
  207.     if (optind < last_nonopt)
  208.         return EOF;
  209.  
  210.     if (nextchar == 0 || *nextchar == 0)
  211.     {
  212.         if (ordering == PERMUTE)
  213.         {
  214.             /* If we have just processed some options following
  215.                some non-options, exchange them so that the options
  216.                come first.
  217.              */
  218.  
  219.             if (first_nonopt != last_nonopt && last_nonopt != optind)
  220.                 exchange (argv);
  221.             else if (last_nonopt != optind)
  222.                 first_nonopt = optind;
  223.  
  224.             /* Now skip any additional non-options and
  225.                extend the range of non-options previously
  226.                skipped.
  227.              */
  228.  
  229.             whi