gzip: new GZIP_BIG_MEM option
[oweals/busybox.git] / util-linux / getopt.c
index 8b5e46c7b57e0ee4533ef701be8ef0f69194d6ac..c45edf8ca0b39b67e5c280d5e06472566d008300 100644 (file)
@@ -3,7 +3,7 @@
  * getopt.c - Enhanced implementation of BSD getopt(1)
  *   Copyright (c) 1997, 1998, 1999, 2000  Frodo Looijaard <frodol@dds.nl>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 
 /*
  *   Added NLS support (partly written by Arkadiusz Mickiewicz
  *     <misiek@misiek.eu.org>)
  * Ported to Busybox - Alfred M. Szmidt <ams@trillian.itslinux.org>
- *  Removed --version/-V and --help/-h in
+ *  Removed --version/-V and --help/-h
  *  Removed parse_error(), using bb_error_msg() from Busybox instead
  *  Replaced our_malloc with xmalloc and our_realloc with xrealloc
  *
  */
 
-#include <getopt.h>
+//usage:#define getopt_trivial_usage
+//usage:       "[OPTIONS]"
+//usage:#define getopt_full_usage "\n\n"
+//usage:       IF_LONG_OPTS(
+//usage:       "       -a,--alternative                Allow long options starting with single -"
+//usage:     "\n       -l,--longoptions=longopts       Long options to be recognized"
+//usage:     "\n       -n,--name=progname              The name under which errors are reported"
+//usage:     "\n       -o,--options=optstring          Short options to be recognized"
+//usage:     "\n       -q,--quiet                      Disable error reporting by getopt(3)"
+//usage:     "\n       -Q,--quiet-output               No normal output"
+//usage:     "\n       -s,--shell=shell                Set shell quoting conventions"
+//usage:     "\n       -T,--test                       Test for getopt(1) version"
+//usage:     "\n       -u,--unquoted                   Don't quote the output"
+//usage:       )
+//usage:       IF_NOT_LONG_OPTS(
+//usage:       "       -a              Allow long options starting with single -"
+//usage:     "\n       -l longopts     Long options to be recognized"
+//usage:     "\n       -n progname     The name under which errors are reported"
+//usage:     "\n       -o optstring    Short options to be recognized"
+//usage:     "\n       -q              Disable error reporting by getopt(3)"
+//usage:     "\n       -Q              No normal output"
+//usage:     "\n       -s shell        Set shell quoting conventions"
+//usage:     "\n       -T              Test for getopt(1) version"
+//usage:     "\n       -u              Don't quote the output"
+//usage:       )
+//usage:
+//usage:#define getopt_example_usage
+//usage:       "$ cat getopt.test\n"
+//usage:       "#!/bin/sh\n"
+//usage:       "GETOPT=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \\\n"
+//usage:       "       -n 'example.busybox' -- \"$@\"`\n"
+//usage:       "if [ $? != 0 ]; then exit 1; fi\n"
+//usage:       "eval set -- \"$GETOPT\"\n"
+//usage:       "while true; do\n"
+//usage:       " case $1 in\n"
+//usage:       "   -a|--a-long) echo \"Option a\"; shift;;\n"
+//usage:       "   -b|--b-long) echo \"Option b, argument '$2'\"; shift 2;;\n"
+//usage:       "   -c|--c-long)\n"
+//usage:       "     case \"$2\" in\n"
+//usage:       "       \"\") echo \"Option c, no argument\"; shift 2;;\n"
+//usage:       "       *)  echo \"Option c, argument '$2'\"; shift 2;;\n"
+//usage:       "     esac;;\n"
+//usage:       "   --) shift; break;;\n"
+//usage:       "   *) echo \"Internal error!\"; exit 1;;\n"
+//usage:       " esac\n"
+//usage:       "done\n"
+
+#if ENABLE_FEATURE_GETOPT_LONG
+# include <getopt.h>
+#endif
 #include "libbb.h"
 
 /* NON_OPT is the code that is returned when a non-option is found in '+'
    mode */
 enum {
        NON_OPT = 1,
-#if ENABLE_GETOPT_LONG
+#if ENABLE_FEATURE_GETOPT_LONG
 /* LONG_OPT is the code that is returned when a long option is found. */
        LONG_OPT = 2
 #endif
@@ -53,7 +102,7 @@ enum {
        OPT_s   = 0x10, // -s
        OPT_T   = 0x20, // -T
        OPT_u   = 0x40, // -u
-#if ENABLE_GETOPT_LONG
+#if ENABLE_FEATURE_GETOPT_LONG
        OPT_a   = 0x80, // -a
        OPT_l   = 0x100, // -l
 #endif
@@ -141,7 +190,7 @@ static const char *normalize(const char *arg)
  * optstr must contain the short options, and longopts the long options.
  * Other settings are found in global variables.
  */
-#if !ENABLE_GETOPT_LONG
+#if !ENABLE_FEATURE_GETOPT_LONG
 #define generate_output(argv,argc,optstr,longopts) \
        generate_output(argv,argc,optstr)
 #endif
@@ -149,7 +198,7 @@ static int generate_output(char **argv, int argc, const char *optstr, const stru
 {
        int exit_code = 0; /* We assume everything will be OK */
        int opt;
-#if ENABLE_GETOPT_LONG
+#if ENABLE_FEATURE_GETOPT_LONG
        int longindex;
 #endif
        const char *charptr;
@@ -157,9 +206,18 @@ static int generate_output(char **argv, int argc, const char *optstr, const stru
        if (quiet_errors) /* No error reporting from getopt(3) */
                opterr = 0;
 
+       /* We used it already in main() in getopt32(),
+        * we *must* reset getopt(3): */
+#ifdef __GLIBC__
+       optind = 0;
+#else /* BSD style */
+       optind = 1;
+       /* optreset = 1; */
+#endif
+
        while (1) {
                opt =
-#if ENABLE_GETOPT_LONG
+#if ENABLE_FEATURE_GETOPT_LONG
                        alternative ?
                        getopt_long_only(argc, argv, optstr, longopts, &longindex) :
                        getopt_long(argc, argv, optstr, longopts, &longindex);
@@ -171,7 +229,7 @@ static int generate_output(char **argv, int argc, const char *optstr, const stru
                if (opt == '?' || opt == ':' )
                        exit_code = 1;
                else if (!quiet_output) {
-#if ENABLE_GETOPT_LONG
+#if ENABLE_FEATURE_GETOPT_LONG
                        if (opt == LONG_OPT) {
                                printf(" --%s", longopts[longindex].name);
                                if (longopts[longindex].has_arg)
@@ -200,7 +258,7 @@ static int generate_output(char **argv, int argc, const char *optstr, const stru
        return exit_code;
 }
 
-#if ENABLE_GETOPT_LONG
+#if ENABLE_FEATURE_GETOPT_LONG
 /*
  * Register several long options. options is a string of long options,
  * separated by commas or whitespace.
@@ -264,7 +322,7 @@ static void set_shell(const char *new_shell)
  *   4) Returned for -T
  */
 
-#if ENABLE_GETOPT_LONG
+#if ENABLE_FEATURE_GETOPT_LONG
 static const char getopt_longopts[] ALIGN1 =
        "options\0"      Required_argument "o"
        "longoptions\0"  Required_argument "l"
@@ -286,7 +344,7 @@ int getopt_main(int argc, char **argv)
        unsigned opt;
        const char *compatible;
        char *s_arg;
-#if ENABLE_GETOPT_LONG
+#if ENABLE_FEATURE_GETOPT_LONG
        struct option *long_options = NULL;
        llist_t *l_arg = NULL;
 #endif
@@ -312,7 +370,7 @@ int getopt_main(int argc, char **argv)
                return generate_output(argv+1, argc-1, s, long_options);
        }
 
-#if !ENABLE_GETOPT_LONG
+#if !ENABLE_FEATURE_GETOPT_LONG
        opt = getopt32(argv, "+o:n:qQs:Tu", &optstr, &name, &s_arg);
 #else
        applet_long_options = getopt_longopts;