1N/A/* Getopt for GNU.
1N/A NOTE: getopt is now part of the C library, so if you don't know what
1N/A "Keep this file name-space clean" means, talk to drepper@gnu.org
1N/A before changing it!
1N/A
1N/A Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98
1N/A Free Software Foundation, Inc.
1N/A
1N/A NOTE: The canonical source of this file is maintained with the GNU C Library.
1N/A Bugs can be reported to bug-glibc@gnu.org.
1N/A
1N/A This program is free software; you can redistribute it and/or modify it
1N/A under the terms of the GNU General Public License as published by the
1N/A Free Software Foundation; either version 2, or (at your option) any
1N/A later version.
1N/A
1N/A This program is distributed in the hope that it will be useful,
1N/A but WITHOUT ANY WARRANTY; without even the implied warranty of
1N/A MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1N/A GNU General Public License for more details.
1N/A
1N/A You should have received a copy of the GNU General Public License
1N/A along with this program; if not, write to the Free Software
1N/A Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
1N/A USA. */
1N/A
1N/A/* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
1N/A Ditto for AIX 3.2 and <stdlib.h>. */
1N/A#ifndef _NO_PROTO
1N/A# define _NO_PROTO
1N/A#endif
1N/A
1N/A#ifdef HAVE_CONFIG_H
1N/A# include <config.h>
1N/A#endif
1N/A
1N/A#if !defined __STDC__ || !__STDC__
1N/A/* This is a separate conditional since some stdc systems
1N/A reject `defined (const)'. */
1N/A# ifndef const
1N/A# define const
1N/A# endif
1N/A#endif
1N/A
1N/A#include <stdio.h>
1N/A
1N/A/* Comment out all this code if we are using the GNU C Library, and are not
1N/A actually compiling the library itself. This code is part of the GNU C
1N/A Library, but also included in many other GNU distributions. Compiling
1N/A and linking in this code is a waste when using the GNU C library
1N/A (especially if it is a shared library). Rather than having every GNU
1N/A program understand `configure --with-gnu-libc' and omit the object files,
1N/A it is simpler to just do this in the source for each such file. */
1N/A
1N/A#define GETOPT_INTERFACE_VERSION 2
1N/A#if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2
1N/A# include <gnu-versions.h>
1N/A# if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
1N/A# define ELIDE_CODE
1N/A# endif
1N/A#endif
1N/A
1N/A#ifndef ELIDE_CODE
1N/A
1N/A
1N/A/* This needs to come after some library #include
1N/A to get __GNU_LIBRARY__ defined. */
1N/A#ifdef __GNU_LIBRARY__
1N/A/* Don't include stdlib.h for non-GNU C libraries because some of them
1N/A contain conflicting prototypes for getopt. */
1N/A# include <stdlib.h>
1N/A# include <unistd.h>
1N/A#endif /* GNU C library. */
1N/A
1N/A#ifdef VMS
1N/A# include <unixlib.h>
1N/A# if HAVE_STRING_H - 0
1N/A# include <string.h>
1N/A# endif
1N/A#endif
1N/A
1N/A#ifndef _
1N/A/* This is for other GNU distributions with internationalized messages.
1N/A When compiling libc, the _ macro is predefined. */
1N/A# ifdef HAVE_LIBINTL_H
1N/A# include <libintl.h>
1N/A# define _(msgid) gettext (msgid)
1N/A# else
1N/A# define _(msgid) (msgid)
1N/A# endif
1N/A#endif
1N/A
1N/A/* This version of `getopt' appears to the caller like standard Unix `getopt'
1N/A but it behaves differently for the user, since it allows the user
1N/A to intersperse the options with the other arguments.
1N/A
1N/A As `getopt' works, it permutes the elements of ARGV so that,
1N/A when it is done, all the options precede everything else. Thus
1N/A all application programs are extended to handle flexible argument order.
1N/A
1N/A Setting the environment variable POSIXLY_CORRECT disables permutation.
1N/A Then the behavior is completely standard.
1N/A
1N/A GNU application programs can use a third alternative mode in which
1N/A they can distinguish the relative order of options and other arguments. */
1N/A
1N/A#include "getopt.h"
1N/A
1N/A/* For communication from `getopt' to the caller.
1N/A When `getopt' finds an option that takes an argument,
1N/A the argument value is returned here.
1N/A Also, when `ordering' is RETURN_IN_ORDER,
1N/A each non-option ARGV-element is returned here. */
1N/A
1N/Achar *optarg = NULL;
1N/A
1N/A/* Index in ARGV of the next element to be scanned.
1N/A This is used for communication to and from the caller
1N/A and for communication between successive calls to `getopt'.
1N/A
1N/A On entry to `getopt', zero means this is the first call; initialize.
1N/A
1N/A When `getopt' returns -1, this is the index of the first of the
1N/A non-option elements that the caller should itself scan.
1N/A
1N/A Otherwise, `optind' communicates from one call to the next
1N/A how much of ARGV has been scanned so far. */
1N/A
1N/A/* 1003.2 says this must be 1 before any call. */
1N/Aint optind = 1;
1N/A
1N/A/* Formerly, initialization of getopt depended on optind==0, which
1N/A causes problems with re-calling getopt as programs generally don't
1N/A know that. */
1N/A
1N/Aint __getopt_initialized = 0;
1N/A
1N/A/* The next char to be scanned in the option-element
1N/A in which the last option character we returned was found.
1N/A This allows us to pick up the scan where we left off.
1N/A
1N/A If this is zero, or a null string, it means resume the scan
1N/A by advancing to the next ARGV-element. */
1N/A
1N/Astatic char *nextchar;
1N/A
1N/A/* Callers store zero here to inhibit the error message
1N/A for unrecognized options. */
1N/A
1N/Aint opterr = 1;
1N/A
1N/A/* Set to an option character which was unrecognized.
1N/A This must be initialized on some systems to avoid linking in the
1N/A system's own getopt implementation. */
1N/A
1N/Aint optopt = '?';
1N/A
1N/A/* Describe how to deal with options that follow non-option ARGV-elements.
1N/A
1N/A If the caller did not specify anything,
1N/A the default is REQUIRE_ORDER if the environment variable
1N/A POSIXLY_CORRECT is defined, PERMUTE otherwise.
1N/A
1N/A REQUIRE_ORDER means don't recognize them as options;
1N/A stop option processing when the first non-option is seen.
1N/A This is what Unix does.
1N/A This mode of operation is selected by either setting the environment
1N/A variable POSIXLY_CORRECT, or using `+' as the first character
1N/A of the list of option characters.
1N/A
1N/A PERMUTE is the default. We permute the contents of ARGV as we scan,
1N/A so that eventually all the non-options are at the end. This allows options
1N/A to be given in any order, even with programs that were not written to
1N/A expect this.
1N/A
1N/A RETURN_IN_ORDER is an option available to programs that were written
1N/A to expect options and other ARGV-elements in any order and that care about
1N/A the ordering of the two. We describe each non-option ARGV-element
1N/A as if it were the argument of an option with character code 1.
1N/A Using `-' as the first character of the list of option characters
1N/A selects this mode of operation.
1N/A
1N/A The special argument `--' forces an end of option-scanning regardless
1N/A of the value of `ordering'. In the case of RETURN_IN_ORDER, only
1N/A `--' can cause `getopt' to return -1 with `optind' != ARGC. */
1N/A
1N/Astatic enum
1N/A{
1N/A REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
1N/A} ordering;
1N/A
1N/A/* Value of POSIXLY_CORRECT environment variable. */
1N/Astatic char *posixly_correct;
1N/A
1N/A#ifdef __GNU_LIBRARY__
1N/A/* We want to avoid inclusion of string.h with non-GNU libraries
1N/A because there are many ways it can cause trouble.
1N/A On some systems, it contains special magic macros that don't work
1N/A in GCC. */
1N/A# include <string.h>
1N/A# define my_index strchr
1N/A#else
1N/A
1N/A# if HAVE_STRING_H
1N/A# include <string.h>
1N/A# else
1N/A# include <strings.h>
1N/A# endif
1N/A
1N/A/* Avoid depending on library functions or files
1N/A whose names are inconsistent. */
1N/A
1N/A#ifndef getenv
1N/Aextern char *getenv ();
1N/A#endif
1N/A
1N/Astatic char *
1N/Amy_index (str, chr)
1N/A const char *str;
1N/A int chr;
1N/A{
1N/A while (*str)
1N/A {
1N/A if (*str == chr)
1N/A return (char *) str;
1N/A str++;
1N/A }
1N/A return 0;
1N/A}
1N/A
1N/A/* If using GCC, we can safely declare strlen this way.
1N/A If not using GCC, it is ok not to declare it. */
1N/A#ifdef __GNUC__
1N/A/* Note that Motorola Delta 68k R3V7 comes with GCC but not stddef.h.
1N/A That was relevant to code that was here before. */
1N/A# if (!defined __STDC__ || !__STDC__) && !defined strlen
1N/A/* gcc with -traditional declares the built-in strlen to return int,
1N/A and has done so at least since version 2.4.5. -- rms. */
1N/Aextern int strlen (const char *);
1N/A# endif /* not __STDC__ */
1N/A#endif /* __GNUC__ */
1N/A
1N/A#endif /* not __GNU_LIBRARY__ */
1N/A
1N/A/* Handle permutation of arguments. */
1N/A
1N/A/* Describe the part of ARGV that contains non-options that have
1N/A been skipped. `first_nonopt' is the index in ARGV of the first of them;
1N/A `last_nonopt' is the index after the last of them. */
1N/A
1N/Astatic int first_nonopt;
1N/Astatic int last_nonopt;
1N/A
1N/A#ifdef _LIBC
1N/A/* Bash 2.0 gives us an environment variable containing flags
1N/A indicating ARGV elements that should not be considered arguments. */
1N/A
1N/A/* Defined in getopt_init.c */
1N/Aextern char *__getopt_nonoption_flags;
1N/A
1N/Astatic int nonoption_flags_max_len;
1N/Astatic int nonoption_flags_len;
1N/A
1N/Astatic int original_argc;
1N/Astatic char *const *original_argv;
1N/A
1N/A/* Make sure the environment variable bash 2.0 puts in the environment
1N/A is valid for the getopt call we must make sure that the ARGV passed
1N/A to getopt is that one passed to the process. */
1N/Astatic void
1N/A__attribute__ ((unused))
1N/Astore_args_and_env (int argc, char *const *argv)
1N/A{
1N/A /* XXX This is no good solution. We should rather copy the args so
1N/A that we can compare them later. But we must not use malloc(3). */
1N/A original_argc = argc;
1N/A original_argv = argv;
1N/A}
1N/A# ifdef text_set_element
1N/Atext_set_element (__libc_subinit, store_args_and_env);
1N/A# endif /* text_set_element */
1N/A
1N/A# define SWAP_FLAGS(ch1, ch2) \
1N/A if (nonoption_flags_len > 0) \
1N/A { \
1N/A char __tmp = __getopt_nonoption_flags[ch1]; \
1N/A __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
1N/A __getopt_nonoption_flags[ch2] = __tmp; \
1N/A }
1N/A#else /* !_LIBC */
1N/A# define SWAP_FLAGS(ch1, ch2)
1N/A#endif /* _LIBC */
1N/A
1N/A/* Exchange two adjacent subsequences of ARGV.
1N/A One subsequence is elements [first_nonopt,last_nonopt)
1N/A which contains all the non-options that have been skipped so far.
1N/A The other is elements [last_nonopt,optind), which contains all
1N/A the options processed since those non-options were skipped.
1N/A
1N/A `first_nonopt' and `last_nonopt' are relocated so that they describe
1N/A the new indices of the non-options in ARGV after they are moved. */
1N/A
1N/A#if defined __STDC__ && __STDC__
1N/Astatic void exchange (char **);
1N/A#endif
1N/A
1N/Astatic void
1N/Aexchange (argv)
1N/A char **argv;
1N/A{
1N/A int bottom = first_nonopt;
1N/A int middle = last_nonopt;
1N/A int top = optind;
1N/A char *tem;
1N/A
1N/A /* Exchange the shorter segment with the far end of the longer segment.
1N/A That puts the shorter segment into the right place.
1N/A It leaves the longer segment in the right place overall,
1N/A but it consists of two parts that need to be swapped next. */
1N/A
1N/A#ifdef _LIBC
1N/A /* First make sure the handling of the `__getopt_nonoption_flags'
1N/A string can work normally. Our top argument must be in the range
1N/A of the string. */
1N/A if (nonoption_flags_len > 0 && top >= nonoption_flags_max_len)
1N/A {
1N/A /* We must extend the array. The user plays games with us and
1N/A presents new arguments. */
1N/A char *new_str = malloc (top + 1);
1N/A if (new_str == NULL)
1N/A nonoption_flags_len = nonoption_flags_max_len = 0;
1N/A else
1N/A {
1N/A memset (__mempcpy (new_str, __getopt_nonoption_flags,
1N/A nonoption_flags_max_len),
1N/A '\0', top + 1 - nonoption_flags_max_len);
1N/A nonoption_flags_max_len = top + 1;
1N/A __getopt_nonoption_flags = new_str;
1N/A }
1N/A }
1N/A#endif
1N/A
1N/A while (top > middle && middle > bottom)
1N/A {
1N/A if (top - middle > middle - bottom)
1N/A {
1N/A /* Bottom segment is the short one. */
1N/A int len = middle - bottom;
1N/A register int i;
1N/A
1N/A /* Swap it with the top part of the top segment. */
1N/A for (i = 0; i < len; i++)
1N/A {
1N/A tem = argv[bottom + i];
1N/A argv[bottom + i] = argv[top - (middle - bottom) + i];
1N/A argv[top - (middle - bottom) + i] = tem;
1N/A SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
1N/A }
1N/A /* Exclude the moved bottom segment from further swapping. */
1N/A top -= len;
1N/A }
1N/A else
1N/A {
1N/A /* Top segment is the short one. */
1N/A int len = top - middle;
1N/A register int i;
1N/A
1N/A /* Swap it with the bottom part of the bottom segment. */
1N/A for (i = 0; i < len; i++)
1N/A {
1N/A tem = argv[bottom + i];
1N/A argv[bottom + i] = argv[middle + i];
1N/A argv[middle + i] = tem;
1N/A SWAP_FLAGS (bottom + i, middle + i);
1N/A }
1N/A /* Exclude the moved top segment from further swapping. */
1N/A bottom += len;
1N/A }
1N/A }
1N/A
1N/A /* Update records for the slots the non-options now occupy. */
1N/A
1N/A first_nonopt += (optind - last_nonopt);
1N/A last_nonopt = optind;
1N/A}
1N/A
1N/A/* Initialize the internal data when the first call is made. */
1N/A
1N/A#if defined __STDC__ && __STDC__
1N/Astatic const char *_getopt_initialize (int, char *const *, const char *);
1N/A#endif
1N/Astatic const char *
1N/A_getopt_initialize (argc, argv, optstring)
1N/A int argc;
1N/A char *const *argv;
1N/A const char *optstring;
1N/A{
1N/A /* Start processing options with ARGV-element 1 (since ARGV-element 0
1N/A is the program name); the sequence of previously skipped
1N/A non-option ARGV-elements is empty. */
1N/A
1N/A first_nonopt = last_nonopt = optind;
1N/A
1N/A nextchar = NULL;
1N/A
1N/A posixly_correct = getenv ("POSIXLY_CORRECT");
1N/A
1N/A /* Determine how to handle the ordering of options and nonoptions. */
1N/A
1N/A if (optstring[0] == '-')
1N/A {
1N/A ordering = RETURN_IN_ORDER;
1N/A ++optstring;
1N/A }
1N/A else if (optstring[0] == '+')
1N/A {
1N/A ordering = REQUIRE_ORDER;
1N/A ++optstring;
1N/A }
1N/A else if (posixly_correct != NULL)
1N/A ordering = REQUIRE_ORDER;
1N/A else
1N/A ordering = PERMUTE;
1N/A
1N/A#ifdef _LIBC
1N/A if (posixly_correct == NULL
1N/A && argc == original_argc && argv == original_argv)
1N/A {
1N/A if (nonoption_flags_max_len == 0)
1N/A {
1N/A if (__getopt_nonoption_flags == NULL
1N/A || __getopt_nonoption_flags[0] == '\0')
1N/A nonoption_flags_max_len = -1;
1N/A else
1N/A {
1N/A const char *orig_str = __getopt_nonoption_flags;
1N/A int len = nonoption_flags_max_len = strlen (orig_str);
1N/A if (nonoption_flags_max_len < argc)
1N/A nonoption_flags_max_len = argc;
1N/A __getopt_nonoption_flags =
1N/A (char *) malloc (nonoption_flags_max_len);
1N/A if (__getopt_nonoption_flags == NULL)
1N/A nonoption_flags_max_len = -1;
1N/A else
1N/A memset (__mempcpy (__getopt_nonoption_flags, orig_str, len),
1N/A '\0', nonoption_flags_max_len - len);
1N/A }
1N/A }
1N/A nonoption_flags_len = nonoption_flags_max_len;
1N/A }
1N/A else
1N/A nonoption_flags_len = 0;
1N/A#endif
1N/A
1N/A return optstring;
1N/A}
1N/A
1N/A/* Scan elements of ARGV (whose length is ARGC) for option characters
1N/A given in OPTSTRING.
1N/A
1N/A If an element of ARGV starts with '-', and is not exactly "-" or "--",
1N/A then it is an option element. The characters of this element
1N/A (aside from the initial '-') are option characters. If `getopt'
1N/A is called repeatedly, it returns successively each of the option characters
1N/A from each of the option elements.
1N/A
1N/A If `getopt' finds another option character, it returns that character,
1N/A updating `optind' and `nextchar' so that the next call to `getopt' can
1N/A resume the scan with the following option character or ARGV-element.
1N/A
1N/A If there are no more option characters, `getopt' returns -1.
1N/A Then `optind' is the index in ARGV of the first ARGV-element
1N/A that is not an option. (The ARGV-elements have been permuted
1N/A so that those that are not options now come last.)
1N/A
1N/A OPTSTRING is a string containing the legitimate option characters.
1N/A If an option character is seen that is not listed in OPTSTRING,
1N/A return '?' after printing an error message. If you set `opterr' to
1N/A zero, the error message is suppressed but we still return '?'.
1N/A
1N/A If a char in OPTSTRING is followed by a colon, that means it wants an arg,
1N/A so the following text in the same ARGV-element, or the text of the following
1N/A ARGV-element, is returned in `optarg'. Two colons mean an option that
1N/A wants an optional arg; if there is text in the current ARGV-element,
1N/A it is returned in `optarg', otherwise `optarg' is set to zero.
1N/A
1N/A If OPTSTRING starts with `-' or `+', it requests different methods of
1N/A handling the non-option ARGV-elements.
1N/A See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
1N/A
1N/A Long-named options begin with `--' instead of `-'.
1N/A Their names may be abbreviated as long as the abbreviation is unique
1N/A or is an exact match for some defined option. If they have an
1N/A argument, it follows the option name in the same ARGV-element, separated
1N/A from the option name by a `=', or else the in next ARGV-element.
1N/A When `getopt' finds a long-named option, it returns 0 if that option's
1N/A `flag' field is nonzero, the value of the option's `val' field
1N/A if the `flag' field is zero.
1N/A
1N/A The elements of ARGV aren't really const, because we permute them.
1N/A But we pretend they're const in the prototype to be compatible
1N/A with other systems.
1N/A
1N/A LONGOPTS is a vector of `struct option' terminated by an
1N/A element containing a name which is zero.
1N/A
1N/A LONGIND returns the index in LONGOPT of the long-named option found.
1N/A It is only valid when a long-named option has been found by the most
1N/A recent call.
1N/A
1N/A If LONG_ONLY is nonzero, '-' as well as '--' can introduce
1N/A long-named options. */
1N/A
1N/Aint
1N/A_getopt_internal (argc, argv, optstring, longopts, longind, long_only)
1N/A int argc;
1N/A char *const *argv;
1N/A const char *optstring;
1N/A const struct option *longopts;
1N/A int *longind;
1N/A int long_only;
1N/A{
1N/A optarg = NULL;
1N/A
1N/A if (optind == 0 || !__getopt_initialized)
1N/A {
1N/A if (optind == 0)
1N/A optind = 1; /* Don't scan ARGV[0], the program name. */
1N/A optstring = _getopt_initialize (argc, argv, optstring);
1N/A __getopt_initialized = 1;
1N/A }
1N/A
1N/A /* Test whether ARGV[optind] points to a non-option argument.
1N/A Either it does not have option syntax, or there is an environment flag
1N/A from the shell indicating it is not an option. The later information
1N/A is only used when the used in the GNU libc. */
1N/A#ifdef _LIBC
1N/A# define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0' \
1N/A || (optind < nonoption_flags_len \
1N/A && __getopt_nonoption_flags[optind] == '1'))
1N/A#else
1N/A# define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0')
1N/A#endif
1N/A
1N/A if (nextchar == NULL || *nextchar == '\0')
1N/A {
1N/A /* Advance to the next ARGV-element. */
1N/A
1N/A /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
1N/A moved back by the user (who may also have changed the arguments). */
1N/A if (last_nonopt > optind)
1N/A last_nonopt = optind;
1N/A if (first_nonopt > optind)
1N/A first_nonopt = optind;
1N/A
1N/A if (ordering == PERMUTE)
1N/A {
1N/A /* If we have just processed some options following some non-options,
1N/A exchange them so that the options come first. */
1N/A
1N/A if (first_nonopt != last_nonopt && last_nonopt != optind)
1N/A exchange ((char **) argv);
1N/A else if (last_nonopt != optind)
1N/A first_nonopt = optind;
1N/A
1N/A /* Skip any additional non-options
1N/A and extend the range of non-options previously skipped. */
1N/A
1N/A while (optind < argc && NONOPTION_P)
1N/A optind++;
1N/A last_nonopt = optind;
1N/A }
1N/A
1N/A /* The special ARGV-element `--' means premature end of options.
1N/A Skip it like a null option,
1N/A then exchange with previous non-options as if it were an option,
1N/A then skip everything else like a non-option. */
1N/A
1N/A if (optind != argc && !strcmp (argv[optind], "--"))
1N/A {
1N/A optind++;
1N/A
1N/A if (first_nonopt != last_nonopt && last_nonopt != optind)
1N/A exchange ((char **) argv);
1N/A else if (first_nonopt == last_nonopt)
1N/A first_nonopt = optind;
1N/A last_nonopt = argc;
1N/A
1N/A optind = argc;
1N/A }
1N/A
1N/A /* If we have done all the ARGV-elements, stop the scan
1N/A and back over any non-options that we skipped and permuted. */
1N/A
1N/A if (optind == argc)
1N/A {
1N/A /* Set the next-arg-index to point at the non-options
1N/A that we previously skipped, so the caller will digest them. */
1N/A if (first_nonopt != last_nonopt)
1N/A optind = first_nonopt;
1N/A return -1;
1N/A }
1N/A
1N/A /* If we have come to a non-option and did not permute it,
1N/A either stop the scan or describe it to the caller and pass it by. */
1N/A
1N/A if (NONOPTION_P)
1N/A {
1N/A if (ordering == REQUIRE_ORDER)
1N/A return -1;
1N/A optarg = argv[optind++];
1N/A return 1;
1N/A }
1N/A
1N/A /* We have found another option-ARGV-element.
1N/A Skip the initial punctuation. */
1N/A
1N/A nextchar = (argv[optind] + 1
1N/A + (longopts != NULL && argv[optind][1] == '-'));
1N/A }
1N/A
1N/A /* Decode the current option-ARGV-element. */
1N/A
1N/A /* Check whether the ARGV-element is a long option.
1N/A
1N/A If long_only and the ARGV-element has the form "-f", where f is
1N/A a valid short option, don't consider it an abbreviated form of
1N/A a long option that starts with f. Otherwise there would be no
1N/A way to give the -f short option.
1N/A
1N/A On the other hand, if there's a long option "fubar" and
1N/A the ARGV-element is "-fu", do consider that an abbreviation of
1N/A the long option, just like "--fu", and not "-f" with arg "u".
1N/A
1N/A This distinction seems to be the most useful approach. */
1N/A
1N/A if (longopts != NULL
1N/A && (argv[optind][1] == '-'
1N/A || (long_only && (argv[optind][2] || !my_index (optstring, argv[optind][1])))))
1N/A {
1N/A char *nameend;
1N/A const struct option *p;
1N/A const struct option *pfound = NULL;
1N/A int exact = 0;
1N/A int ambig = 0;
1N/A int indfound = -1;
1N/A int option_index;
1N/A
1N/A for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
1N/A /* Do nothing. */ ;
1N/A
1N/A /* Test all long options for either exact match
1N/A or abbreviated matches. */
1N/A for (p = longopts, option_index = 0; p->name; p++, option_index++)
1N/A if (!strncmp (p->name, nextchar, nameend - nextchar))
1N/A {
1N/A if ((unsigned int) (nameend - nextchar)
1N/A == (unsigned int) strlen (p->name))
1N/A {
1N/A /* Exact match found. */
1N/A pfound = p;
1N/A indfound = option_index;
1N/A exact = 1;
1N/A break;
1N/A }
1N/A else if (pfound == NULL)
1N/A {
1N/A /* First nonexact match found. */
1N/A pfound = p;
1N/A indfound = option_index;
1N/A }
1N/A else
1N/A /* Second or later nonexact match found. */
1N/A ambig = 1;
1N/A }
1N/A
1N/A if (ambig && !exact)
1N/A {
1N/A if (opterr)
1N/A fprintf (stderr, _("%s: option `%s' is ambiguous\n"),
1N/A argv[0], argv[optind]);
1N/A nextchar += strlen (nextchar);
1N/A optind++;
1N/A optopt = 0;
1N/A return '?';
1N/A }
1N/A
1N/A if (pfound != NULL)
1N/A {
1N/A option_index = indfound;
1N/A optind++;
1N/A if (*nameend)
1N/A {
1N/A /* Don't test has_arg with >, because some C compilers don't
1N/A allow it to be used on enums. */
1N/A if (pfound->has_arg)
1N/A optarg = nameend + 1;
1N/A else
1N/A {
1N/A if (opterr)
1N/A {
1N/A if (argv[optind - 1][1] == '-')
1N/A /* --option */
1N/A fprintf (stderr,
1N/A _("%s: option `--%s' doesn't allow an argument\n"),
1N/A argv[0], pfound->name);
1N/A else
1N/A /* +option or -option */
1N/A fprintf (stderr,
1N/A _("%s: option `%c%s' doesn't allow an argument\n"),
1N/A argv[0], argv[optind - 1][0], pfound->name);
1N/A }
1N/A nextchar += strlen (nextchar);
1N/A
1N/A optopt = pfound->val;
1N/A return '?';
1N/A }
1N/A }
1N/A else if (pfound->has_arg == 1)
1N/A {
1N/A if (optind < argc)
1N/A optarg = argv[optind++];
1N/A else
1N/A {
1N/A if (opterr)
1N/A fprintf (stderr,
1N/A _("%s: option `%s' requires an argument\n"),
1N/A argv[0], argv[optind - 1]);
1N/A nextchar += strlen (nextchar);
1N/A optopt = pfound->val;
1N/A return optstring[0] == ':' ? ':' : '?';
1N/A }
1N/A }
1N/A nextchar += strlen (nextchar);
1N/A if (longind != NULL)
1N/A *longind = option_index;
1N/A if (pfound->flag)
1N/A {
1N/A *(pfound->flag) = pfound->val;
1N/A return 0;
1N/A }
1N/A return pfound->val;
1N/A }
1N/A
1N/A /* Can't find it as a long option. If this is not getopt_long_only,
1N/A or the option starts with '--' or is not a valid short
1N/A option, then it's an error.
1N/A Otherwise interpret it as a short option. */
1N/A if (!long_only || argv[optind][1] == '-'
1N/A || my_index (optstring, *nextchar) == NULL)
1N/A {
1N/A if (opterr)
1N/A {
1N/A if (argv[optind][1] == '-')
1N/A /* --option */
1N/A fprintf (stderr, _("%s: unrecognized option `--%s'\n"),
1N/A argv[0], nextchar);
1N/A else
1N/A /* +option or -option */
1N/A fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),
1N/A argv[0], argv[optind][0], nextchar);
1N/A }
1N/A nextchar = (char *) "";
1N/A optind++;
1N/A optopt = 0;
1N/A return '?';
1N/A }
1N/A }
1N/A
1N/A /* Look at and handle the next short option-character. */
1N/A
1N/A {
1N/A char c = *nextchar++;
1N/A char *temp = my_index (optstring, c);
1N/A
1N/A /* Increment `optind' when we start to process its last character. */
1N/A if (*nextchar == '\0')
1N/A ++optind;
1N/A
1N/A if (temp == NULL || c == ':')
1N/A {
1N/A if (opterr)
1N/A {
1N/A if (posixly_correct)
1N/A /* 1003.2 specifies the format of this message. */
1N/A fprintf (stderr, _("%s: illegal option -- %c\n"),
1N/A argv[0], c);
1N/A else
1N/A fprintf (stderr, _("%s: invalid option -- %c\n"),
1N/A argv[0], c);
1N/A }
1N/A optopt = c;
1N/A return '?';
1N/A }
1N/A /* Convenience. Treat POSIX -W foo same as long option --foo */
1N/A if (temp[0] == 'W' && temp[1] == ';')
1N/A {
1N/A char *nameend;
1N/A const struct option *p;
1N/A const struct option *pfound = NULL;
1N/A int exact = 0;
1N/A int ambig = 0;
1N/A int indfound = 0;
1N/A int option_index;
1N/A
1N/A /* This is an option that requires an argument. */
1N/A if (*nextchar != '\0')
1N/A {
1N/A optarg = nextchar;
1N/A /* If we end this ARGV-element by taking the rest as an arg,
1N/A we must advance to the next element now. */
1N/A optind++;
1N/A }
1N/A else if (optind == argc)
1N/A {
1N/A if (opterr)
1N/A {
1N/A /* 1003.2 specifies the format of this message. */
1N/A fprintf (stderr, _("%s: option requires an argument -- %c\n"),
1N/A argv[0], c);
1N/A }
1N/A optopt = c;
1N/A if (optstring[0] == ':')
1N/A c = ':';
1N/A else
1N/A c = '?';
1N/A return c;
1N/A }
1N/A else
1N/A /* We already incremented `optind' once;
1N/A increment it again when taking next ARGV-elt as argument. */
1N/A optarg = argv[optind++];
1N/A
1N/A /* optarg is now the argument, see if it's in the
1N/A table of longopts. */
1N/A
1N/A for (nextchar = nameend = optarg; *nameend && *nameend != '='; nameend++)
1N/A /* Do nothing. */ ;
1N/A
1N/A /* Test all long options for either exact match
1N/A or abbreviated matches. */
1N/A for (p = longopts, option_index = 0; p->name; p++, option_index++)
1N/A if (!strncmp (p->name, nextchar, nameend - nextchar))
1N/A {
1N/A if ((unsigned int) (nameend - nextchar) == strlen (p->name))
1N/A {
1N/A /* Exact match found. */
1N/A pfound = p;
1N/A indfound = option_index;
1N/A exact = 1;
1N/A break;
1N/A }
1N/A else if (pfound == NULL)
1N/A {
1N/A /* First nonexact match found. */
1N/A pfound = p;
1N/A indfound = option_index;
1N/A }
1N/A else
1N/A /* Second or later nonexact match found. */
1N/A ambig = 1;
1N/A }
1N/A if (ambig && !exact)
1N/A {
1N/A if (opterr)
1N/A fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"),
1N/A argv[0], argv[optind]);
1N/A nextchar += strlen (nextchar);
1N/A optind++;
1N/A return '?';
1N/A }
1N/A if (pfound != NULL)
1N/A {
1N/A option_index = indfound;
1N/A if (*nameend)
1N/A {
1N/A /* Don't test has_arg with >, because some C compilers don't
1N/A allow it to be used on enums. */
1N/A if (pfound->has_arg)
1N/A optarg = nameend + 1;
1N/A else
1N/A {
1N/A if (opterr)
1N/A fprintf (stderr, _("\
1N/A%s: option `-W %s' doesn't allow an argument\n"),
1N/A argv[0], pfound->name);
1N/A
1N/A nextchar += strlen (nextchar);
1N/A return '?';
1N/A }
1N/A }
1N/A else if (pfound->has_arg == 1)
1N/A {
1N/A if (optind < argc)
1N/A optarg = argv[optind++];
1N/A else
1N/A {
1N/A if (opterr)
1N/A fprintf (stderr,
1N/A _("%s: option `%s' requires an argument\n"),
1N/A argv[0], argv[optind - 1]);
1N/A nextchar += strlen (nextchar);
1N/A return optstring[0] == ':' ? ':' : '?';
1N/A }
1N/A }
1N/A nextchar += strlen (nextchar);
1N/A if (longind != NULL)
1N/A *longind = option_index;
1N/A if (pfound->flag)
1N/A {
1N/A *(pfound->flag) = pfound->val;
1N/A return 0;
1N/A }
1N/A return pfound->val;
1N/A }
1N/A nextchar = NULL;
1N/A return 'W'; /* Let the application handle it. */
1N/A }
1N/A if (temp[1] == ':')
1N/A {
1N/A if (temp[2] == ':')
1N/A {
1N/A /* This is an option that accepts an argument optionally. */
1N/A if (*nextchar != '\0')
1N/A {
1N/A optarg = nextchar;
1N/A optind++;
1N/A }
1N/A else
1N/A optarg = NULL;
1N/A nextchar = NULL;
1N/A }
1N/A else
1N/A {
1N/A /* This is an option that requires an argument. */
1N/A if (*nextchar != '\0')
1N/A {
1N/A optarg = nextchar;
1N/A /* If we end this ARGV-element by taking the rest as an arg,
1N/A we must advance to the next element now. */
1N/A optind++;
1N/A }
1N/A else if (optind == argc)
1N/A {
1N/A if (opterr)
1N/A {
1N/A /* 1003.2 specifies the format of this message. */
1N/A fprintf (stderr,
1N/A _("%s: option requires an argument -- %c\n"),
1N/A argv[0], c);
1N/A }
1N/A optopt = c;
1N/A if (optstring[0] == ':')
1N/A c = ':';
1N/A else
1N/A c = '?';
1N/A }
1N/A else
1N/A /* We already incremented `optind' once;
1N/A increment it again when taking next ARGV-elt as argument. */
1N/A optarg = argv[optind++];
1N/A nextchar = NULL;
1N/A }
1N/A }
1N/A return c;
1N/A }
1N/A}
1N/A
1N/Aint
1N/Agetopt (argc, argv, optstring)
1N/A int argc;
1N/A char *const *argv;
1N/A const char *optstring;
1N/A{
1N/A return _getopt_internal (argc, argv, optstring,
1N/A (const struct option *) 0,
1N/A (int *) 0,
1N/A 0);
1N/A}
1N/A
1N/A#endif /* Not ELIDE_CODE. */
1N/A
1N/A#ifdef TEST
1N/A
1N/A/* Compile with -DTEST to make an executable for use in testing
1N/A the above definition of `getopt'. */
1N/A
1N/Aint
1N/Amain (argc, argv)
1N/A int argc;
1N/A char **argv;
1N/A{
1N/A int c;
1N/A int digit_optind = 0;
1N/A
1N/A while (1)
1N/A {
1N/A int this_option_optind = optind ? optind : 1;
1N/A
1N/A c = getopt (argc, argv, "abc:d:0123456789");
1N/A if (c == -1)
1N/A break;
1N/A
1N/A switch (c)
1N/A {
1N/A case '0':
1N/A case '1':
1N/A case '2':
1N/A case '3':
1N/A case '4':
1N/A case '5':
1N/A case '6':
1N/A case '7':
1N/A case '8':
1N/A case '9':
1N/A if (digit_optind != 0 && digit_optind != this_option_optind)
1N/A printf ("digits occur in two different argv-elements.\n");
1N/A digit_optind = this_option_optind;
1N/A printf ("option %c\n", c);
1N/A break;
1N/A
1N/A case 'a':
1N/A printf ("option a\n");
1N/A break;
1N/A
1N/A case 'b':
1N/A printf ("option b\n");
1N/A break;
1N/A
1N/A case 'c':
1N/A printf ("option c with value `%s'\n", optarg);
1N/A break;
1N/A
1N/A case '?':
1N/A break;
1N/A
1N/A default:
1N/A printf ("?? getopt returned character code 0%o ??\n", c);
1N/A }
1N/A }
1N/A
1N/A if (optind < argc)
1N/A {
1N/A printf ("non-option ARGV-elements: ");
1N/A while (optind < argc)
1N/A printf ("%s ", argv[optind++]);
1N/A printf ("\n");
1N/A }
1N/A
1N/A exit (0);
1N/A}
1N/A
1N/A#endif /* TEST */