mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
specialize getopt for FLAC
This commit is contained in:
@@ -1,3 +1,17 @@
|
|||||||
|
/*
|
||||||
|
NOTE:
|
||||||
|
I cannot get the vanilla getopt code to work (i.e. compile only what
|
||||||
|
is needed and not duplicate symbols found in the standard library)
|
||||||
|
on all the platforms that FLAC supports. In particular the gating
|
||||||
|
of code with the ELIDE_CODE #define is not accurate enough on systems
|
||||||
|
that are POSIX but not glibc. If someone has a patch that works on
|
||||||
|
GNU/Linux, Darwin, AND Solaris please submit it on the project page:
|
||||||
|
http://sourceforge.net/projects/flac
|
||||||
|
|
||||||
|
In the meantime I have munged the global symbols and remove gates
|
||||||
|
around code, while at the same time trying to touch the original as
|
||||||
|
little as possible.
|
||||||
|
*/
|
||||||
/* Declarations for getopt.
|
/* Declarations for getopt.
|
||||||
Copyright (C) 1989,90,91,92,93,94,96,97,98 Free Software Foundation, Inc.
|
Copyright (C) 1989,90,91,92,93,94,96,97,98 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
@@ -17,70 +31,71 @@
|
|||||||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
Boston, MA 02111-1307, USA. */
|
Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#ifndef _GETOPT_H
|
#ifndef FLAC__SHARE__GETOPT_H
|
||||||
|
#define FLAC__SHARE__GETOPT_H
|
||||||
|
|
||||||
#ifndef __need_getopt
|
/*[JEC] was:#ifndef __need_getopt*/
|
||||||
# define _GETOPT_H 1
|
/*[JEC] was:# define _GETOPT_H 1*/
|
||||||
#endif
|
/*[JEC] was:#endif*/
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* For communication from `getopt' to the caller.
|
/* For communication from `FLAC__share__getopt' to the caller.
|
||||||
When `getopt' finds an option that takes an argument,
|
When `FLAC__share__getopt' finds an option that takes an argument,
|
||||||
the argument value is returned here.
|
the argument value is returned here.
|
||||||
Also, when `ordering' is RETURN_IN_ORDER,
|
Also, when `ordering' is RETURN_IN_ORDER,
|
||||||
each non-option ARGV-element is returned here. */
|
each non-option ARGV-element is returned here. */
|
||||||
|
|
||||||
extern char *optarg;
|
extern char *FLAC__share__optarg;
|
||||||
|
|
||||||
/* Index in ARGV of the next element to be scanned.
|
/* Index in ARGV of the next element to be scanned.
|
||||||
This is used for communication to and from the caller
|
This is used for communication to and from the caller
|
||||||
and for communication between successive calls to `getopt'.
|
and for communication between successive calls to `FLAC__share__getopt'.
|
||||||
|
|
||||||
On entry to `getopt', zero means this is the first call; initialize.
|
On entry to `FLAC__share__getopt', zero means this is the first call; initialize.
|
||||||
|
|
||||||
When `getopt' returns -1, this is the index of the first of the
|
When `FLAC__share__getopt' returns -1, this is the index of the first of the
|
||||||
non-option elements that the caller should itself scan.
|
non-option elements that the caller should itself scan.
|
||||||
|
|
||||||
Otherwise, `optind' communicates from one call to the next
|
Otherwise, `FLAC__share__optind' communicates from one call to the next
|
||||||
how much of ARGV has been scanned so far. */
|
how much of ARGV has been scanned so far. */
|
||||||
|
|
||||||
extern int optind;
|
extern int FLAC__share__optind;
|
||||||
|
|
||||||
/* Callers store zero here to inhibit the error message `getopt' prints
|
/* Callers store zero here to inhibit the error message `FLAC__share__getopt' prints
|
||||||
for unrecognized options. */
|
for unrecognized options. */
|
||||||
|
|
||||||
extern int opterr;
|
extern int FLAC__share__opterr;
|
||||||
|
|
||||||
/* Set to an option character which was unrecognized. */
|
/* Set to an option character which was unrecognized. */
|
||||||
|
|
||||||
extern int optopt;
|
extern int FLAC__share__optopt;
|
||||||
|
|
||||||
#ifndef __need_getopt
|
/*[JEC] was:#ifndef __need_getopt */
|
||||||
/* Describe the long-named options requested by the application.
|
/* Describe the long-named options requested by the application.
|
||||||
The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
|
The LONG_OPTIONS argument to FLAC__share__getopt_long or FLAC__share__getopt_long_only is a vector
|
||||||
of `struct option' terminated by an element containing a name which is
|
of `struct FLAC__share__option' terminated by an element containing a name which is
|
||||||
zero.
|
zero.
|
||||||
|
|
||||||
The field `has_arg' is:
|
The field `has_arg' is:
|
||||||
no_argument (or 0) if the option does not take an argument,
|
FLAC__share__no_argument (or 0) if the option does not take an argument,
|
||||||
required_argument (or 1) if the option requires an argument,
|
FLAC__share__required_argument (or 1) if the option requires an argument,
|
||||||
optional_argument (or 2) if the option takes an optional argument.
|
FLAC__share__optional_argument (or 2) if the option takes an optional argument.
|
||||||
|
|
||||||
If the field `flag' is not NULL, it points to a variable that is set
|
If the field `flag' is not NULL, it points to a variable that is set
|
||||||
to the value given in the field `val' when the option is found, but
|
to the value given in the field `val' when the option is found, but
|
||||||
left unchanged if the option is not found.
|
left unchanged if the option is not found.
|
||||||
|
|
||||||
To have a long-named option do something other than set an `int' to
|
To have a long-named option do something other than set an `int' to
|
||||||
a compiled-in constant, such as set a value from `optarg', set the
|
a compiled-in constant, such as set a value from `FLAC__share__optarg', set the
|
||||||
option's `flag' field to zero and its `val' field to a nonzero
|
option's `flag' field to zero and its `val' field to a nonzero
|
||||||
value (the equivalent single-letter option character, if there is
|
value (the equivalent single-letter option character, if there is
|
||||||
one). For long options that have a zero `flag' field, `getopt'
|
one). For long options that have a zero `flag' field, `FLAC__share__getopt'
|
||||||
returns the contents of the `val' field. */
|
returns the contents of the `val' field. */
|
||||||
|
|
||||||
struct option
|
struct FLAC__share__option
|
||||||
{
|
{
|
||||||
# if defined __STDC__ && __STDC__
|
# if defined __STDC__ && __STDC__
|
||||||
const char *name;
|
const char *name;
|
||||||
@@ -94,12 +109,12 @@ struct option
|
|||||||
int val;
|
int val;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Names for the values of the `has_arg' field of `struct option'. */
|
/* Names for the values of the `has_arg' field of `struct FLAC__share__option'. */
|
||||||
|
|
||||||
# define no_argument 0
|
# define FLAC__share__no_argument 0
|
||||||
# define required_argument 1
|
# define FLAC__share__required_argument 1
|
||||||
# define optional_argument 2
|
# define FLAC__share__optional_argument 2
|
||||||
#endif /* need getopt */
|
/*[JEC] was:#endif*/ /* need getopt */
|
||||||
|
|
||||||
|
|
||||||
/* Get definitions and prototypes for functions to process the
|
/* Get definitions and prototypes for functions to process the
|
||||||
@@ -108,62 +123,62 @@ struct option
|
|||||||
|
|
||||||
Return the option character from OPTS just read. Return -1 when
|
Return the option character from OPTS just read. Return -1 when
|
||||||
there are no more options. For unrecognized options, or options
|
there are no more options. For unrecognized options, or options
|
||||||
missing arguments, `optopt' is set to the option letter, and '?' is
|
missing arguments, `FLAC__share__optopt' is set to the option letter, and '?' is
|
||||||
returned.
|
returned.
|
||||||
|
|
||||||
The OPTS string is a list of characters which are recognized option
|
The OPTS string is a list of characters which are recognized option
|
||||||
letters, optionally followed by colons, specifying that that letter
|
letters, optionally followed by colons, specifying that that letter
|
||||||
takes an argument, to be placed in `optarg'.
|
takes an argument, to be placed in `FLAC__share__optarg'.
|
||||||
|
|
||||||
If a letter in OPTS is followed by two colons, its argument is
|
If a letter in OPTS is followed by two colons, its argument is
|
||||||
optional. This behavior is specific to the GNU `getopt'.
|
optional. This behavior is specific to the GNU `FLAC__share__getopt'.
|
||||||
|
|
||||||
The argument `--' causes premature termination of argument
|
The argument `--' causes premature termination of argument
|
||||||
scanning, explicitly telling `getopt' that there are no more
|
scanning, explicitly telling `FLAC__share__getopt' that there are no more
|
||||||
options.
|
options.
|
||||||
|
|
||||||
If OPTS begins with `--', then non-option arguments are treated as
|
If OPTS begins with `--', then non-option arguments are treated as
|
||||||
arguments to the option '\0'. This behavior is specific to the GNU
|
arguments to the option '\0'. This behavior is specific to the GNU
|
||||||
`getopt'. */
|
`FLAC__share__getopt'. */
|
||||||
|
|
||||||
#if defined __STDC__ && __STDC__
|
/*[JEC] was:#if defined __STDC__ && __STDC__*/
|
||||||
# ifdef __GNU_LIBRARY__
|
/*[JEC] was:# ifdef __GNU_LIBRARY__*/
|
||||||
/* Many other libraries have conflicting prototypes for getopt, with
|
/* Many other libraries have conflicting prototypes for getopt, with
|
||||||
differences in the consts, in stdlib.h. To avoid compilation
|
differences in the consts, in stdlib.h. To avoid compilation
|
||||||
errors, only prototype getopt for the GNU C library. */
|
errors, only prototype getopt for the GNU C library. */
|
||||||
extern int getopt (int __argc, char *const *__argv, const char *__shortopts);
|
extern int FLAC__share__getopt (int __argc, char *const *__argv, const char *__shortopts);
|
||||||
# else /* not __GNU_LIBRARY__ */
|
/*[JEC] was:# else*/ /* not __GNU_LIBRARY__ */
|
||||||
extern int getopt ();
|
/*[JEC] was:extern int getopt ();*/
|
||||||
# endif /* __GNU_LIBRARY__ */
|
/*[JEC] was:# endif*/ /* __GNU_LIBRARY__ */
|
||||||
|
|
||||||
# ifndef __need_getopt
|
/*[JEC] was:# ifndef __need_getopt*/
|
||||||
extern int getopt_long (int __argc, char *const *__argv, const char *__shortopts,
|
extern int FLAC__share__getopt_long (int __argc, char *const *__argv, const char *__shortopts,
|
||||||
const struct option *__longopts, int *__longind);
|
const struct FLAC__share__option *__longopts, int *__longind);
|
||||||
extern int getopt_long_only (int __argc, char *const *__argv,
|
extern int FLAC__share__getopt_long_only (int __argc, char *const *__argv,
|
||||||
const char *__shortopts,
|
const char *__shortopts,
|
||||||
const struct option *__longopts, int *__longind);
|
const struct FLAC__share__option *__longopts, int *__longind);
|
||||||
|
|
||||||
/* Internal only. Users should not call this directly. */
|
/* Internal only. Users should not call this directly. */
|
||||||
extern int _getopt_internal (int __argc, char *const *__argv,
|
extern int FLAC__share___getopt_internal (int __argc, char *const *__argv,
|
||||||
const char *__shortopts,
|
const char *__shortopts,
|
||||||
const struct option *__longopts, int *__longind,
|
const struct FLAC__share__option *__longopts, int *__longind,
|
||||||
int __long_only);
|
int __long_only);
|
||||||
# endif
|
/*[JEC] was:# endif*/
|
||||||
#else /* not __STDC__ */
|
/*[JEC] was:#else*/ /* not __STDC__ */
|
||||||
extern int getopt ();
|
/*[JEC] was:extern int getopt ();*/
|
||||||
# ifndef __need_getopt
|
/*[JEC] was:# ifndef __need_getopt*/
|
||||||
extern int getopt_long ();
|
/*[JEC] was:extern int getopt_long ();*/
|
||||||
extern int getopt_long_only ();
|
/*[JEC] was:extern int getopt_long_only ();*/
|
||||||
|
|
||||||
extern int _getopt_internal ();
|
/*[JEC] was:extern int _getopt_internal ();*/
|
||||||
# endif
|
/*[JEC] was:# endif*/
|
||||||
#endif /* __STDC__ */
|
/*[JEC] was:#endif*/ /* __STDC__ */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Make sure we later can get all the definitions and declarations. */
|
/* Make sure we later can get all the definitions and declarations. */
|
||||||
#undef __need_getopt
|
/*[JEC] was:#undef __need_getopt*/
|
||||||
|
|
||||||
#endif /* getopt.h */
|
#endif /* getopt.h */
|
||||||
|
|||||||
@@ -33,17 +33,19 @@ more powerful operations yet to add:
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#if HAVE_GETOPT_LONG
|
#if 0
|
||||||
|
/*[JEC] was:#if HAVE_GETOPT_LONG*/
|
||||||
|
/*[JEC] see flac/include/share/getopt.h as to why the change */
|
||||||
# include <getopt.h>
|
# include <getopt.h>
|
||||||
#else
|
#else
|
||||||
# include "share/getopt.h"
|
# include "share/getopt.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
getopt format struct; note we don't use short options so we just
|
FLAC__share__getopt format struct; note we don't use short options so we just
|
||||||
set the 'val' field to 0 everywhere to indicate a valid option.
|
set the 'val' field to 0 everywhere to indicate a valid option.
|
||||||
*/
|
*/
|
||||||
static struct option long_options_[] = {
|
static struct FLAC__share__option long_options_[] = {
|
||||||
/* global options */
|
/* global options */
|
||||||
{ "preserve-modtime", 0, 0, 0 },
|
{ "preserve-modtime", 0, 0, 0 },
|
||||||
{ "with-filename", 0, 0, 0 },
|
{ "with-filename", 0, 0, 0 },
|
||||||
@@ -304,10 +306,10 @@ FLAC__bool parse_options(int argc, char *argv[], CommandLineOptions *options)
|
|||||||
int option_index = 1;
|
int option_index = 1;
|
||||||
FLAC__bool had_error = false;
|
FLAC__bool had_error = false;
|
||||||
|
|
||||||
while ((ret = getopt_long(argc, argv, "", long_options_, &option_index)) != -1) {
|
while ((ret = FLAC__share__getopt_long(argc, argv, "", long_options_, &option_index)) != -1) {
|
||||||
switch (ret) {
|
switch (ret) {
|
||||||
case 0:
|
case 0:
|
||||||
had_error |= !parse_option(option_index, optarg, options);
|
had_error |= !parse_option(option_index, FLAC__share__optarg, options);
|
||||||
break;
|
break;
|
||||||
case '?':
|
case '?':
|
||||||
case ':':
|
case ':':
|
||||||
@@ -320,22 +322,22 @@ FLAC__bool parse_options(int argc, char *argv[], CommandLineOptions *options)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(options->prefix_with_filename == 2)
|
if(options->prefix_with_filename == 2)
|
||||||
options->prefix_with_filename = (argc - optind > 1);
|
options->prefix_with_filename = (argc - FLAC__share__optind > 1);
|
||||||
|
|
||||||
if(optind >= argc && !options->show_long_help) {
|
if(FLAC__share__optind >= argc && !options->show_long_help) {
|
||||||
fprintf(stderr,"ERROR: you must specify at least one FLAC file;\n");
|
fprintf(stderr,"ERROR: you must specify at least one FLAC file;\n");
|
||||||
fprintf(stderr," metaflac cannot be used as a pipe\n");
|
fprintf(stderr," metaflac cannot be used as a pipe\n");
|
||||||
had_error = true;
|
had_error = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
options->num_files = argc - optind;
|
options->num_files = argc - FLAC__share__optind;
|
||||||
|
|
||||||
if(options->num_files > 0) {
|
if(options->num_files > 0) {
|
||||||
unsigned i = 0;
|
unsigned i = 0;
|
||||||
if(0 == (options->filenames = malloc(sizeof(char *) * options->num_files)))
|
if(0 == (options->filenames = malloc(sizeof(char *) * options->num_files)))
|
||||||
die("out of memory allocating space for file names list");
|
die("out of memory allocating space for file names list");
|
||||||
while(optind < argc)
|
while(FLAC__share__optind < argc)
|
||||||
options->filenames[i++] = local_strdup(argv[optind++]);
|
options->filenames[i++] = local_strdup(argv[FLAC__share__optind++]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(options->args.checks.num_major_ops > 0) {
|
if(options->args.checks.num_major_ops > 0) {
|
||||||
|
|||||||
@@ -1,3 +1,17 @@
|
|||||||
|
/*
|
||||||
|
NOTE:
|
||||||
|
I cannot get the vanilla getopt code to work (i.e. compile only what
|
||||||
|
is needed and not duplicate symbols found in the standard library)
|
||||||
|
on all the platforms that FLAC supports. In particular the gating
|
||||||
|
of code with the ELIDE_CODE #define is not accurate enough on systems
|
||||||
|
that are POSIX but not glibc. If someone has a patch that works on
|
||||||
|
GNU/Linux, Darwin, AND Solaris please submit it on the project page:
|
||||||
|
http://sourceforge.net/projects/flac
|
||||||
|
|
||||||
|
In the meantime I have munged the global symbols and remove gates
|
||||||
|
around code, while at the same time trying to touch the original as
|
||||||
|
little as possible.
|
||||||
|
*/
|
||||||
/* Getopt for GNU.
|
/* Getopt for GNU.
|
||||||
NOTE: getopt is now part of the C library, so if you don't know what
|
NOTE: getopt is now part of the C library, so if you don't know what
|
||||||
"Keep this file name-space clean" means, talk to drepper@gnu.org
|
"Keep this file name-space clean" means, talk to drepper@gnu.org
|
||||||
@@ -57,7 +71,8 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef ELIDE_CODE
|
#if 1
|
||||||
|
/*[JEC] was:#ifndef ELIDE_CODE*/
|
||||||
|
|
||||||
|
|
||||||
/* This needs to come after some library #include
|
/* This needs to come after some library #include
|
||||||
@@ -87,11 +102,11 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* This version of `getopt' appears to the caller like standard Unix `getopt'
|
/* This version of `FLAC__share__getopt' appears to the caller like standard Unix `getopt'
|
||||||
but it behaves differently for the user, since it allows the user
|
but it behaves differently for the user, since it allows the user
|
||||||
to intersperse the options with the other arguments.
|
to intersperse the options with the other arguments.
|
||||||
|
|
||||||
As `getopt' works, it permutes the elements of ARGV so that,
|
As `FLAC__share__getopt' works, it permutes the elements of ARGV so that,
|
||||||
when it is done, all the options precede everything else. Thus
|
when it is done, all the options precede everything else. Thus
|
||||||
all application programs are extended to handle flexible argument order.
|
all application programs are extended to handle flexible argument order.
|
||||||
|
|
||||||
@@ -101,36 +116,36 @@
|
|||||||
GNU application programs can use a third alternative mode in which
|
GNU application programs can use a third alternative mode in which
|
||||||
they can distinguish the relative order of options and other arguments. */
|
they can distinguish the relative order of options and other arguments. */
|
||||||
|
|
||||||
#include "getopt.h"
|
/*[JEC] was:#include "getopt.h"*/
|
||||||
|
|
||||||
/* For communication from `getopt' to the caller.
|
/* For communication from `FLAC__share__getopt' to the caller.
|
||||||
When `getopt' finds an option that takes an argument,
|
When `FLAC__share__getopt' finds an option that takes an argument,
|
||||||
the argument value is returned here.
|
the argument value is returned here.
|
||||||
Also, when `ordering' is RETURN_IN_ORDER,
|
Also, when `ordering' is RETURN_IN_ORDER,
|
||||||
each non-option ARGV-element is returned here. */
|
each non-option ARGV-element is returned here. */
|
||||||
|
|
||||||
char *optarg;
|
char *FLAC__share__optarg;
|
||||||
|
|
||||||
/* Index in ARGV of the next element to be scanned.
|
/* Index in ARGV of the next element to be scanned.
|
||||||
This is used for communication to and from the caller
|
This is used for communication to and from the caller
|
||||||
and for communication between successive calls to `getopt'.
|
and for communication between successive calls to `FLAC__share__getopt'.
|
||||||
|
|
||||||
On entry to `getopt', zero means this is the first call; initialize.
|
On entry to `FLAC__share__getopt', zero means this is the first call; initialize.
|
||||||
|
|
||||||
When `getopt' returns -1, this is the index of the first of the
|
When `FLAC__share__getopt' returns -1, this is the index of the first of the
|
||||||
non-option elements that the caller should itself scan.
|
non-option elements that the caller should itself scan.
|
||||||
|
|
||||||
Otherwise, `optind' communicates from one call to the next
|
Otherwise, `FLAC__share__optind' communicates from one call to the next
|
||||||
how much of ARGV has been scanned so far. */
|
how much of ARGV has been scanned so far. */
|
||||||
|
|
||||||
/* 1003.2 says this must be 1 before any call. */
|
/* 1003.2 says this must be 1 before any call. */
|
||||||
int optind = 1;
|
int FLAC__share__optind = 1;
|
||||||
|
|
||||||
/* Formerly, initialization of getopt depended on optind==0, which
|
/* Formerly, initialization of getopt depended on FLAC__share__optind==0, which
|
||||||
causes problems with re-calling getopt as programs generally don't
|
causes problems with re-calling getopt as programs generally don't
|
||||||
know that. */
|
know that. */
|
||||||
|
|
||||||
int __getopt_initialized;
|
int FLAC__share____getopt_initialized;
|
||||||
|
|
||||||
/* The next char to be scanned in the option-element
|
/* The next char to be scanned in the option-element
|
||||||
in which the last option character we returned was found.
|
in which the last option character we returned was found.
|
||||||
@@ -144,13 +159,13 @@ static char *nextchar;
|
|||||||
/* Callers store zero here to inhibit the error message
|
/* Callers store zero here to inhibit the error message
|
||||||
for unrecognized options. */
|
for unrecognized options. */
|
||||||
|
|
||||||
int opterr = 1;
|
int FLAC__share__opterr = 1;
|
||||||
|
|
||||||
/* Set to an option character which was unrecognized.
|
/* Set to an option character which was unrecognized.
|
||||||
This must be initialized on some systems to avoid linking in the
|
This must be initialized on some systems to avoid linking in the
|
||||||
system's own getopt implementation. */
|
system's own getopt implementation. */
|
||||||
|
|
||||||
int optopt = '?';
|
int FLAC__share__optopt = '?';
|
||||||
|
|
||||||
/* Describe how to deal with options that follow non-option ARGV-elements.
|
/* Describe how to deal with options that follow non-option ARGV-elements.
|
||||||
|
|
||||||
@@ -179,7 +194,7 @@ int optopt = '?';
|
|||||||
|
|
||||||
The special argument `--' forces an end of option-scanning regardless
|
The special argument `--' forces an end of option-scanning regardless
|
||||||
of the value of `ordering'. In the case of RETURN_IN_ORDER, only
|
of the value of `ordering'. In the case of RETURN_IN_ORDER, only
|
||||||
`--' can cause `getopt' to return -1 with `optind' != ARGC. */
|
`--' can cause `FLAC__share__getopt' to return -1 with `FLAC__share__optind' != ARGC. */
|
||||||
|
|
||||||
static enum
|
static enum
|
||||||
{
|
{
|
||||||
@@ -287,7 +302,7 @@ text_set_element (__libc_subinit, store_args_and_env);
|
|||||||
/* Exchange two adjacent subsequences of ARGV.
|
/* Exchange two adjacent subsequences of ARGV.
|
||||||
One subsequence is elements [first_nonopt,last_nonopt)
|
One subsequence is elements [first_nonopt,last_nonopt)
|
||||||
which contains all the non-options that have been skipped so far.
|
which contains all the non-options that have been skipped so far.
|
||||||
The other is elements [last_nonopt,optind), which contains all
|
The other is elements [last_nonopt,FLAC__share__optind), which contains all
|
||||||
the options processed since those non-options were skipped.
|
the options processed since those non-options were skipped.
|
||||||
|
|
||||||
`first_nonopt' and `last_nonopt' are relocated so that they describe
|
`first_nonopt' and `last_nonopt' are relocated so that they describe
|
||||||
@@ -303,7 +318,7 @@ exchange (argv)
|
|||||||
{
|
{
|
||||||
int bottom = first_nonopt;
|
int bottom = first_nonopt;
|
||||||
int middle = last_nonopt;
|
int middle = last_nonopt;
|
||||||
int top = optind;
|
int top = FLAC__share__optind;
|
||||||
char *tem;
|
char *tem;
|
||||||
|
|
||||||
/* Exchange the shorter segment with the far end of the longer segment.
|
/* Exchange the shorter segment with the far end of the longer segment.
|
||||||
@@ -373,17 +388,17 @@ exchange (argv)
|
|||||||
|
|
||||||
/* Update records for the slots the non-options now occupy. */
|
/* Update records for the slots the non-options now occupy. */
|
||||||
|
|
||||||
first_nonopt += (optind - last_nonopt);
|
first_nonopt += (FLAC__share__optind - last_nonopt);
|
||||||
last_nonopt = optind;
|
last_nonopt = FLAC__share__optind;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Initialize the internal data when the first call is made. */
|
/* Initialize the internal data when the first call is made. */
|
||||||
|
|
||||||
#if defined __STDC__ && __STDC__
|
#if defined __STDC__ && __STDC__
|
||||||
static const char *_getopt_initialize (int, char *const *, const char *);
|
static const char *FLAC__share___getopt_initialize (int, char *const *, const char *);
|
||||||
#endif
|
#endif
|
||||||
static const char *
|
static const char *
|
||||||
_getopt_initialize (argc, argv, optstring)
|
FLAC__share___getopt_initialize (argc, argv, optstring)
|
||||||
int argc;
|
int argc;
|
||||||
char *const *argv;
|
char *const *argv;
|
||||||
const char *optstring;
|
const char *optstring;
|
||||||
@@ -392,7 +407,7 @@ _getopt_initialize (argc, argv, optstring)
|
|||||||
is the program name); the sequence of previously skipped
|
is the program name); the sequence of previously skipped
|
||||||
non-option ARGV-elements is empty. */
|
non-option ARGV-elements is empty. */
|
||||||
|
|
||||||
first_nonopt = last_nonopt = optind;
|
first_nonopt = last_nonopt = FLAC__share__optind;
|
||||||
|
|
||||||
nextchar = NULL;
|
nextchar = NULL;
|
||||||
|
|
||||||
@@ -453,29 +468,29 @@ _getopt_initialize (argc, argv, optstring)
|
|||||||
|
|
||||||
If an element of ARGV starts with '-', and is not exactly "-" or "--",
|
If an element of ARGV starts with '-', and is not exactly "-" or "--",
|
||||||
then it is an option element. The characters of this element
|
then it is an option element. The characters of this element
|
||||||
(aside from the initial '-') are option characters. If `getopt'
|
(aside from the initial '-') are option characters. If `FLAC__share__getopt'
|
||||||
is called repeatedly, it returns successively each of the option characters
|
is called repeatedly, it returns successively each of the option characters
|
||||||
from each of the option elements.
|
from each of the option elements.
|
||||||
|
|
||||||
If `getopt' finds another option character, it returns that character,
|
If `FLAC__share__getopt' finds another option character, it returns that character,
|
||||||
updating `optind' and `nextchar' so that the next call to `getopt' can
|
updating `FLAC__share__optind' and `nextchar' so that the next call to `FLAC__share__getopt' can
|
||||||
resume the scan with the following option character or ARGV-element.
|
resume the scan with the following option character or ARGV-element.
|
||||||
|
|
||||||
If there are no more option characters, `getopt' returns -1.
|
If there are no more option characters, `FLAC__share__getopt' returns -1.
|
||||||
Then `optind' is the index in ARGV of the first ARGV-element
|
Then `FLAC__share__optind' is the index in ARGV of the first ARGV-element
|
||||||
that is not an option. (The ARGV-elements have been permuted
|
that is not an option. (The ARGV-elements have been permuted
|
||||||
so that those that are not options now come last.)
|
so that those that are not options now come last.)
|
||||||
|
|
||||||
OPTSTRING is a string containing the legitimate option characters.
|
OPTSTRING is a string containing the legitimate option characters.
|
||||||
If an option character is seen that is not listed in OPTSTRING,
|
If an option character is seen that is not listed in OPTSTRING,
|
||||||
return '?' after printing an error message. If you set `opterr' to
|
return '?' after printing an error message. If you set `FLAC__share__opterr' to
|
||||||
zero, the error message is suppressed but we still return '?'.
|
zero, the error message is suppressed but we still return '?'.
|
||||||
|
|
||||||
If a char in OPTSTRING is followed by a colon, that means it wants an arg,
|
If a char in OPTSTRING is followed by a colon, that means it wants an arg,
|
||||||
so the following text in the same ARGV-element, or the text of the following
|
so the following text in the same ARGV-element, or the text of the following
|
||||||
ARGV-element, is returned in `optarg'. Two colons mean an option that
|
ARGV-element, is returned in `FLAC__share__optarg'. Two colons mean an option that
|
||||||
wants an optional arg; if there is text in the current ARGV-element,
|
wants an optional arg; if there is text in the current ARGV-element,
|
||||||
it is returned in `optarg', otherwise `optarg' is set to zero.
|
it is returned in `FLAC__share__optarg', otherwise `FLAC__share__optarg' is set to zero.
|
||||||
|
|
||||||
If OPTSTRING starts with `-' or `+', it requests different methods of
|
If OPTSTRING starts with `-' or `+', it requests different methods of
|
||||||
handling the non-option ARGV-elements.
|
handling the non-option ARGV-elements.
|
||||||
@@ -486,7 +501,7 @@ _getopt_initialize (argc, argv, optstring)
|
|||||||
or is an exact match for some defined option. If they have an
|
or is an exact match for some defined option. If they have an
|
||||||
argument, it follows the option name in the same ARGV-element, separated
|
argument, it follows the option name in the same ARGV-element, separated
|
||||||
from the option name by a `=', or else the in next ARGV-element.
|
from the option name by a `=', or else the in next ARGV-element.
|
||||||
When `getopt' finds a long-named option, it returns 0 if that option's
|
When `FLAC__share__getopt' finds a long-named option, it returns 0 if that option's
|
||||||
`flag' field is nonzero, the value of the option's `val' field
|
`flag' field is nonzero, the value of the option's `val' field
|
||||||
if the `flag' field is zero.
|
if the `flag' field is zero.
|
||||||
|
|
||||||
@@ -494,7 +509,7 @@ _getopt_initialize (argc, argv, optstring)
|
|||||||
But we pretend they're const in the prototype to be compatible
|
But we pretend they're const in the prototype to be compatible
|
||||||
with other systems.
|
with other systems.
|
||||||
|
|
||||||
LONGOPTS is a vector of `struct option' terminated by an
|
LONGOPTS is a vector of `struct FLAC__share__option' terminated by an
|
||||||
element containing a name which is zero.
|
element containing a name which is zero.
|
||||||
|
|
||||||
LONGIND returns the index in LONGOPT of the long-named option found.
|
LONGIND returns the index in LONGOPT of the long-named option found.
|
||||||
@@ -505,34 +520,34 @@ _getopt_initialize (argc, argv, optstring)
|
|||||||
long-named options. */
|
long-named options. */
|
||||||
|
|
||||||
int
|
int
|
||||||
_getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
FLAC__share___getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
||||||
int argc;
|
int argc;
|
||||||
char *const *argv;
|
char *const *argv;
|
||||||
const char *optstring;
|
const char *optstring;
|
||||||
const struct option *longopts;
|
const struct FLAC__share__option *longopts;
|
||||||
int *longind;
|
int *longind;
|
||||||
int long_only;
|
int long_only;
|
||||||
{
|
{
|
||||||
optarg = NULL;
|
FLAC__share__optarg = NULL;
|
||||||
|
|
||||||
if (optind == 0 || !__getopt_initialized)
|
if (FLAC__share__optind == 0 || !FLAC__share____getopt_initialized)
|
||||||
{
|
{
|
||||||
if (optind == 0)
|
if (FLAC__share__optind == 0)
|
||||||
optind = 1; /* Don't scan ARGV[0], the program name. */
|
FLAC__share__optind = 1; /* Don't scan ARGV[0], the program name. */
|
||||||
optstring = _getopt_initialize (argc, argv, optstring);
|
optstring = FLAC__share___getopt_initialize (argc, argv, optstring);
|
||||||
__getopt_initialized = 1;
|
FLAC__share____getopt_initialized = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Test whether ARGV[optind] points to a non-option argument.
|
/* Test whether ARGV[FLAC__share__optind] points to a non-option argument.
|
||||||
Either it does not have option syntax, or there is an environment flag
|
Either it does not have option syntax, or there is an environment flag
|
||||||
from the shell indicating it is not an option. The later information
|
from the shell indicating it is not an option. The later information
|
||||||
is only used when the used in the GNU libc. */
|
is only used when the used in the GNU libc. */
|
||||||
#ifdef _LIBC
|
#ifdef _LIBC
|
||||||
# define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0' \
|
# define NONOPTION_P (argv[FLAC__share__optind][0] != '-' || argv[FLAC__share__optind][1] == '\0' \
|
||||||
|| (optind < nonoption_flags_len \
|
|| (FLAC__share__optind < nonoption_flags_len \
|
||||||
&& __getopt_nonoption_flags[optind] == '1'))
|
&& __getopt_nonoption_flags[FLAC__share__optind] == '1'))
|
||||||
#else
|
#else
|
||||||
# define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0')
|
# define NONOPTION_P (argv[FLAC__share__optind][0] != '-' || argv[FLAC__share__optind][1] == '\0')
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (nextchar == NULL || *nextchar == '\0')
|
if (nextchar == NULL || *nextchar == '\0')
|
||||||
@@ -541,27 +556,27 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
|
|
||||||
/* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
|
/* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
|
||||||
moved back by the user (who may also have changed the arguments). */
|
moved back by the user (who may also have changed the arguments). */
|
||||||
if (last_nonopt > optind)
|
if (last_nonopt > FLAC__share__optind)
|
||||||
last_nonopt = optind;
|
last_nonopt = FLAC__share__optind;
|
||||||
if (first_nonopt > optind)
|
if (first_nonopt > FLAC__share__optind)
|
||||||
first_nonopt = optind;
|
first_nonopt = FLAC__share__optind;
|
||||||
|
|
||||||
if (ordering == PERMUTE)
|
if (ordering == PERMUTE)
|
||||||
{
|
{
|
||||||
/* If we have just processed some options following some non-options,
|
/* If we have just processed some options following some non-options,
|
||||||
exchange them so that the options come first. */
|
exchange them so that the options come first. */
|
||||||
|
|
||||||
if (first_nonopt != last_nonopt && last_nonopt != optind)
|
if (first_nonopt != last_nonopt && last_nonopt != FLAC__share__optind)
|
||||||
exchange ((char **) argv);
|
exchange ((char **) argv);
|
||||||
else if (last_nonopt != optind)
|
else if (last_nonopt != FLAC__share__optind)
|
||||||
first_nonopt = optind;
|
first_nonopt = FLAC__share__optind;
|
||||||
|
|
||||||
/* Skip any additional non-options
|
/* Skip any additional non-options
|
||||||
and extend the range of non-options previously skipped. */
|
and extend the range of non-options previously skipped. */
|
||||||
|
|
||||||
while (optind < argc && NONOPTION_P)
|
while (FLAC__share__optind < argc && NONOPTION_P)
|
||||||
optind++;
|
FLAC__share__optind++;
|
||||||
last_nonopt = optind;
|
last_nonopt = FLAC__share__optind;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The special ARGV-element `--' means premature end of options.
|
/* The special ARGV-element `--' means premature end of options.
|
||||||
@@ -569,28 +584,28 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
then exchange with previous non-options as if it were an option,
|
then exchange with previous non-options as if it were an option,
|
||||||
then skip everything else like a non-option. */
|
then skip everything else like a non-option. */
|
||||||
|
|
||||||
if (optind != argc && !strcmp (argv[optind], "--"))
|
if (FLAC__share__optind != argc && !strcmp (argv[FLAC__share__optind], "--"))
|
||||||
{
|
{
|
||||||
optind++;
|
FLAC__share__optind++;
|
||||||
|
|
||||||
if (first_nonopt != last_nonopt && last_nonopt != optind)
|
if (first_nonopt != last_nonopt && last_nonopt != FLAC__share__optind)
|
||||||
exchange ((char **) argv);
|
exchange ((char **) argv);
|
||||||
else if (first_nonopt == last_nonopt)
|
else if (first_nonopt == last_nonopt)
|
||||||
first_nonopt = optind;
|
first_nonopt = FLAC__share__optind;
|
||||||
last_nonopt = argc;
|
last_nonopt = argc;
|
||||||
|
|
||||||
optind = argc;
|
FLAC__share__optind = argc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If we have done all the ARGV-elements, stop the scan
|
/* If we have done all the ARGV-elements, stop the scan
|
||||||
and back over any non-options that we skipped and permuted. */
|
and back over any non-options that we skipped and permuted. */
|
||||||
|
|
||||||
if (optind == argc)
|
if (FLAC__share__optind == argc)
|
||||||
{
|
{
|
||||||
/* Set the next-arg-index to point at the non-options
|
/* Set the next-arg-index to point at the non-options
|
||||||
that we previously skipped, so the caller will digest them. */
|
that we previously skipped, so the caller will digest them. */
|
||||||
if (first_nonopt != last_nonopt)
|
if (first_nonopt != last_nonopt)
|
||||||
optind = first_nonopt;
|
FLAC__share__optind = first_nonopt;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -601,15 +616,15 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
{
|
{
|
||||||
if (ordering == REQUIRE_ORDER)
|
if (ordering == REQUIRE_ORDER)
|
||||||
return -1;
|
return -1;
|
||||||
optarg = argv[optind++];
|
FLAC__share__optarg = argv[FLAC__share__optind++];
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We have found another option-ARGV-element.
|
/* We have found another option-ARGV-element.
|
||||||
Skip the initial punctuation. */
|
Skip the initial punctuation. */
|
||||||
|
|
||||||
nextchar = (argv[optind] + 1
|
nextchar = (argv[FLAC__share__optind] + 1
|
||||||
+ (longopts != NULL && argv[optind][1] == '-'));
|
+ (longopts != NULL && argv[FLAC__share__optind][1] == '-'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Decode the current option-ARGV-element. */
|
/* Decode the current option-ARGV-element. */
|
||||||
@@ -628,12 +643,12 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
This distinction seems to be the most useful approach. */
|
This distinction seems to be the most useful approach. */
|
||||||
|
|
||||||
if (longopts != NULL
|
if (longopts != NULL
|
||||||
&& (argv[optind][1] == '-'
|
&& (argv[FLAC__share__optind][1] == '-'
|
||||||
|| (long_only && (argv[optind][2] || !my_index (optstring, argv[optind][1])))))
|
|| (long_only && (argv[FLAC__share__optind][2] || !my_index (optstring, argv[FLAC__share__optind][1])))))
|
||||||
{
|
{
|
||||||
char *nameend;
|
char *nameend;
|
||||||
const struct option *p;
|
const struct FLAC__share__option *p;
|
||||||
const struct option *pfound = NULL;
|
const struct FLAC__share__option *pfound = NULL;
|
||||||
int exact = 0;
|
int exact = 0;
|
||||||
int ambig = 0;
|
int ambig = 0;
|
||||||
int indfound = -1;
|
int indfound = -1;
|
||||||
@@ -669,30 +684,30 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
|
|
||||||
if (ambig && !exact)
|
if (ambig && !exact)
|
||||||
{
|
{
|
||||||
if (opterr)
|
if (FLAC__share__opterr)
|
||||||
fprintf (stderr, _("%s: option `%s' is ambiguous\n"),
|
fprintf (stderr, _("%s: option `%s' is ambiguous\n"),
|
||||||
argv[0], argv[optind]);
|
argv[0], argv[FLAC__share__optind]);
|
||||||
nextchar += strlen (nextchar);
|
nextchar += strlen (nextchar);
|
||||||
optind++;
|
FLAC__share__optind++;
|
||||||
optopt = 0;
|
FLAC__share__optopt = 0;
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pfound != NULL)
|
if (pfound != NULL)
|
||||||
{
|
{
|
||||||
option_index = indfound;
|
option_index = indfound;
|
||||||
optind++;
|
FLAC__share__optind++;
|
||||||
if (*nameend)
|
if (*nameend)
|
||||||
{
|
{
|
||||||
/* Don't test has_arg with >, because some C compilers don't
|
/* Don't test has_arg with >, because some C compilers don't
|
||||||
allow it to be used on enums. */
|
allow it to be used on enums. */
|
||||||
if (pfound->has_arg)
|
if (pfound->has_arg)
|
||||||
optarg = nameend + 1;
|
FLAC__share__optarg = nameend + 1;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (opterr)
|
if (FLAC__share__opterr)
|
||||||
{
|
{
|
||||||
if (argv[optind - 1][1] == '-')
|
if (argv[FLAC__share__optind - 1][1] == '-')
|
||||||
/* --option */
|
/* --option */
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
_("%s: option `--%s' doesn't allow an argument\n"),
|
_("%s: option `--%s' doesn't allow an argument\n"),
|
||||||
@@ -701,27 +716,27 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
/* +option or -option */
|
/* +option or -option */
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
_("%s: option `%c%s' doesn't allow an argument\n"),
|
_("%s: option `%c%s' doesn't allow an argument\n"),
|
||||||
argv[0], argv[optind - 1][0], pfound->name);
|
argv[0], argv[FLAC__share__optind - 1][0], pfound->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
nextchar += strlen (nextchar);
|
nextchar += strlen (nextchar);
|
||||||
|
|
||||||
optopt = pfound->val;
|
FLAC__share__optopt = pfound->val;
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (pfound->has_arg == 1)
|
else if (pfound->has_arg == 1)
|
||||||
{
|
{
|
||||||
if (optind < argc)
|
if (FLAC__share__optind < argc)
|
||||||
optarg = argv[optind++];
|
FLAC__share__optarg = argv[FLAC__share__optind++];
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (opterr)
|
if (FLAC__share__opterr)
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
_("%s: option `%s' requires an argument\n"),
|
_("%s: option `%s' requires an argument\n"),
|
||||||
argv[0], argv[optind - 1]);
|
argv[0], argv[FLAC__share__optind - 1]);
|
||||||
nextchar += strlen (nextchar);
|
nextchar += strlen (nextchar);
|
||||||
optopt = pfound->val;
|
FLAC__share__optopt = pfound->val;
|
||||||
return optstring[0] == ':' ? ':' : '?';
|
return optstring[0] == ':' ? ':' : '?';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -736,27 +751,27 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
return pfound->val;
|
return pfound->val;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Can't find it as a long option. If this is not getopt_long_only,
|
/* Can't find it as a long option. If this is not FLAC__share__getopt_long_only,
|
||||||
or the option starts with '--' or is not a valid short
|
or the option starts with '--' or is not a valid short
|
||||||
option, then it's an error.
|
option, then it's an error.
|
||||||
Otherwise interpret it as a short option. */
|
Otherwise interpret it as a short option. */
|
||||||
if (!long_only || argv[optind][1] == '-'
|
if (!long_only || argv[FLAC__share__optind][1] == '-'
|
||||||
|| my_index (optstring, *nextchar) == NULL)
|
|| my_index (optstring, *nextchar) == NULL)
|
||||||
{
|
{
|
||||||
if (opterr)
|
if (FLAC__share__opterr)
|
||||||
{
|
{
|
||||||
if (argv[optind][1] == '-')
|
if (argv[FLAC__share__optind][1] == '-')
|
||||||
/* --option */
|
/* --option */
|
||||||
fprintf (stderr, _("%s: unrecognized option `--%s'\n"),
|
fprintf (stderr, _("%s: unrecognized option `--%s'\n"),
|
||||||
argv[0], nextchar);
|
argv[0], nextchar);
|
||||||
else
|
else
|
||||||
/* +option or -option */
|
/* +option or -option */
|
||||||
fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),
|
fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),
|
||||||
argv[0], argv[optind][0], nextchar);
|
argv[0], argv[FLAC__share__optind][0], nextchar);
|
||||||
}
|
}
|
||||||
nextchar = (char *) "";
|
nextchar = (char *) "";
|
||||||
optind++;
|
FLAC__share__optind++;
|
||||||
optopt = 0;
|
FLAC__share__optopt = 0;
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -767,13 +782,13 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
char c = *nextchar++;
|
char c = *nextchar++;
|
||||||
char *temp = my_index (optstring, c);
|
char *temp = my_index (optstring, c);
|
||||||
|
|
||||||
/* Increment `optind' when we start to process its last character. */
|
/* Increment `FLAC__share__optind' when we start to process its last character. */
|
||||||
if (*nextchar == '\0')
|
if (*nextchar == '\0')
|
||||||
++optind;
|
++FLAC__share__optind;
|
||||||
|
|
||||||
if (temp == NULL || c == ':')
|
if (temp == NULL || c == ':')
|
||||||
{
|
{
|
||||||
if (opterr)
|
if (FLAC__share__opterr)
|
||||||
{
|
{
|
||||||
if (posixly_correct)
|
if (posixly_correct)
|
||||||
/* 1003.2 specifies the format of this message. */
|
/* 1003.2 specifies the format of this message. */
|
||||||
@@ -783,15 +798,15 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
fprintf (stderr, _("%s: invalid option -- %c\n"),
|
fprintf (stderr, _("%s: invalid option -- %c\n"),
|
||||||
argv[0], c);
|
argv[0], c);
|
||||||
}
|
}
|
||||||
optopt = c;
|
FLAC__share__optopt = c;
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
/* Convenience. Treat POSIX -W foo same as long option --foo */
|
/* Convenience. Treat POSIX -W foo same as long option --foo */
|
||||||
if (temp[0] == 'W' && temp[1] == ';')
|
if (temp[0] == 'W' && temp[1] == ';')
|
||||||
{
|
{
|
||||||
char *nameend;
|
char *nameend;
|
||||||
const struct option *p;
|
const struct FLAC__share__option *p;
|
||||||
const struct option *pfound = NULL;
|
const struct FLAC__share__option *pfound = NULL;
|
||||||
int exact = 0;
|
int exact = 0;
|
||||||
int ambig = 0;
|
int ambig = 0;
|
||||||
int indfound = 0;
|
int indfound = 0;
|
||||||
@@ -800,20 +815,20 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
/* This is an option that requires an argument. */
|
/* This is an option that requires an argument. */
|
||||||
if (*nextchar != '\0')
|
if (*nextchar != '\0')
|
||||||
{
|
{
|
||||||
optarg = nextchar;
|
FLAC__share__optarg = nextchar;
|
||||||
/* If we end this ARGV-element by taking the rest as an arg,
|
/* If we end this ARGV-element by taking the rest as an arg,
|
||||||
we must advance to the next element now. */
|
we must advance to the next element now. */
|
||||||
optind++;
|
FLAC__share__optind++;
|
||||||
}
|
}
|
||||||
else if (optind == argc)
|
else if (FLAC__share__optind == argc)
|
||||||
{
|
{
|
||||||
if (opterr)
|
if (FLAC__share__opterr)
|
||||||
{
|
{
|
||||||
/* 1003.2 specifies the format of this message. */
|
/* 1003.2 specifies the format of this message. */
|
||||||
fprintf (stderr, _("%s: option requires an argument -- %c\n"),
|
fprintf (stderr, _("%s: option requires an argument -- %c\n"),
|
||||||
argv[0], c);
|
argv[0], c);
|
||||||
}
|
}
|
||||||
optopt = c;
|
FLAC__share__optopt = c;
|
||||||
if (optstring[0] == ':')
|
if (optstring[0] == ':')
|
||||||
c = ':';
|
c = ':';
|
||||||
else
|
else
|
||||||
@@ -821,14 +836,14 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
/* We already incremented `optind' once;
|
/* We already incremented `FLAC__share__optind' once;
|
||||||
increment it again when taking next ARGV-elt as argument. */
|
increment it again when taking next ARGV-elt as argument. */
|
||||||
optarg = argv[optind++];
|
FLAC__share__optarg = argv[FLAC__share__optind++];
|
||||||
|
|
||||||
/* optarg is now the argument, see if it's in the
|
/* FLAC__share__optarg is now the argument, see if it's in the
|
||||||
table of longopts. */
|
table of longopts. */
|
||||||
|
|
||||||
for (nextchar = nameend = optarg; *nameend && *nameend != '='; nameend++)
|
for (nextchar = nameend = FLAC__share__optarg; *nameend && *nameend != '='; nameend++)
|
||||||
/* Do nothing. */ ;
|
/* Do nothing. */ ;
|
||||||
|
|
||||||
/* Test all long options for either exact match
|
/* Test all long options for either exact match
|
||||||
@@ -856,11 +871,11 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
}
|
}
|
||||||
if (ambig && !exact)
|
if (ambig && !exact)
|
||||||
{
|
{
|
||||||
if (opterr)
|
if (FLAC__share__opterr)
|
||||||
fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"),
|
fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"),
|
||||||
argv[0], argv[optind]);
|
argv[0], argv[FLAC__share__optind]);
|
||||||
nextchar += strlen (nextchar);
|
nextchar += strlen (nextchar);
|
||||||
optind++;
|
FLAC__share__optind++;
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
if (pfound != NULL)
|
if (pfound != NULL)
|
||||||
@@ -871,10 +886,10 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
/* Don't test has_arg with >, because some C compilers don't
|
/* Don't test has_arg with >, because some C compilers don't
|
||||||
allow it to be used on enums. */
|
allow it to be used on enums. */
|
||||||
if (pfound->has_arg)
|
if (pfound->has_arg)
|
||||||
optarg = nameend + 1;
|
FLAC__share__optarg = nameend + 1;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (opterr)
|
if (FLAC__share__opterr)
|
||||||
fprintf (stderr, _("\
|
fprintf (stderr, _("\
|
||||||
%s: option `-W %s' doesn't allow an argument\n"),
|
%s: option `-W %s' doesn't allow an argument\n"),
|
||||||
argv[0], pfound->name);
|
argv[0], pfound->name);
|
||||||
@@ -885,14 +900,14 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
}
|
}
|
||||||
else if (pfound->has_arg == 1)
|
else if (pfound->has_arg == 1)
|
||||||
{
|
{
|
||||||
if (optind < argc)
|
if (FLAC__share__optind < argc)
|
||||||
optarg = argv[optind++];
|
FLAC__share__optarg = argv[FLAC__share__optind++];
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (opterr)
|
if (FLAC__share__opterr)
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
_("%s: option `%s' requires an argument\n"),
|
_("%s: option `%s' requires an argument\n"),
|
||||||
argv[0], argv[optind - 1]);
|
argv[0], argv[FLAC__share__optind - 1]);
|
||||||
nextchar += strlen (nextchar);
|
nextchar += strlen (nextchar);
|
||||||
return optstring[0] == ':' ? ':' : '?';
|
return optstring[0] == ':' ? ':' : '?';
|
||||||
}
|
}
|
||||||
@@ -917,11 +932,11 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
/* This is an option that accepts an argument optionally. */
|
/* This is an option that accepts an argument optionally. */
|
||||||
if (*nextchar != '\0')
|
if (*nextchar != '\0')
|
||||||
{
|
{
|
||||||
optarg = nextchar;
|
FLAC__share__optarg = nextchar;
|
||||||
optind++;
|
FLAC__share__optind++;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
optarg = NULL;
|
FLAC__share__optarg = NULL;
|
||||||
nextchar = NULL;
|
nextchar = NULL;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -929,30 +944,30 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
/* This is an option that requires an argument. */
|
/* This is an option that requires an argument. */
|
||||||
if (*nextchar != '\0')
|
if (*nextchar != '\0')
|
||||||
{
|
{
|
||||||
optarg = nextchar;
|
FLAC__share__optarg = nextchar;
|
||||||
/* If we end this ARGV-element by taking the rest as an arg,
|
/* If we end this ARGV-element by taking the rest as an arg,
|
||||||
we must advance to the next element now. */
|
we must advance to the next element now. */
|
||||||
optind++;
|
FLAC__share__optind++;
|
||||||
}
|
}
|
||||||
else if (optind == argc)
|
else if (FLAC__share__optind == argc)
|
||||||
{
|
{
|
||||||
if (opterr)
|
if (FLAC__share__opterr)
|
||||||
{
|
{
|
||||||
/* 1003.2 specifies the format of this message. */
|
/* 1003.2 specifies the format of this message. */
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
_("%s: option requires an argument -- %c\n"),
|
_("%s: option requires an argument -- %c\n"),
|
||||||
argv[0], c);
|
argv[0], c);
|
||||||
}
|
}
|
||||||
optopt = c;
|
FLAC__share__optopt = c;
|
||||||
if (optstring[0] == ':')
|
if (optstring[0] == ':')
|
||||||
c = ':';
|
c = ':';
|
||||||
else
|
else
|
||||||
c = '?';
|
c = '?';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
/* We already incremented `optind' once;
|
/* We already incremented `FLAC__share__optind' once;
|
||||||
increment it again when taking next ARGV-elt as argument. */
|
increment it again when taking next ARGV-elt as argument. */
|
||||||
optarg = argv[optind++];
|
FLAC__share__optarg = argv[FLAC__share__optind++];
|
||||||
nextchar = NULL;
|
nextchar = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -961,13 +976,13 @@ _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
getopt (argc, argv, optstring)
|
FLAC__share__getopt (argc, argv, optstring)
|
||||||
int argc;
|
int argc;
|
||||||
char *const *argv;
|
char *const *argv;
|
||||||
const char *optstring;
|
const char *optstring;
|
||||||
{
|
{
|
||||||
return _getopt_internal (argc, argv, optstring,
|
return FLAC__share___getopt_internal (argc, argv, optstring,
|
||||||
(const struct option *) 0,
|
(const struct FLAC__share__option *) 0,
|
||||||
(int *) 0,
|
(int *) 0,
|
||||||
0);
|
0);
|
||||||
}
|
}
|
||||||
@@ -977,7 +992,7 @@ getopt (argc, argv, optstring)
|
|||||||
#ifdef TEST
|
#ifdef TEST
|
||||||
|
|
||||||
/* Compile with -DTEST to make an executable for use in testing
|
/* Compile with -DTEST to make an executable for use in testing
|
||||||
the above definition of `getopt'. */
|
the above definition of `FLAC__share__getopt'. */
|
||||||
|
|
||||||
int
|
int
|
||||||
main (argc, argv)
|
main (argc, argv)
|
||||||
@@ -989,9 +1004,9 @@ main (argc, argv)
|
|||||||
|
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
int this_option_optind = optind ? optind : 1;
|
int this_option_optind = FLAC__share__optind ? FLAC__share__optind : 1;
|
||||||
|
|
||||||
c = getopt (argc, argv, "abc:d:0123456789");
|
c = FLAC__share__getopt (argc, argv, "abc:d:0123456789");
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -1022,7 +1037,7 @@ main (argc, argv)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'c':
|
case 'c':
|
||||||
printf ("option c with value `%s'\n", optarg);
|
printf ("option c with value `%s'\n", FLAC__share__optarg);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '?':
|
case '?':
|
||||||
@@ -1033,11 +1048,11 @@ main (argc, argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (optind < argc)
|
if (FLAC__share__optind < argc)
|
||||||
{
|
{
|
||||||
printf ("non-option ARGV-elements: ");
|
printf ("non-option ARGV-elements: ");
|
||||||
while (optind < argc)
|
while (FLAC__share__optind < argc)
|
||||||
printf ("%s ", argv[optind++]);
|
printf ("%s ", argv[FLAC__share__optind++]);
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,17 @@
|
|||||||
|
/*
|
||||||
|
NOTE:
|
||||||
|
I cannot get the vanilla getopt code to work (i.e. compile only what
|
||||||
|
is needed and not duplicate symbols found in the standard library)
|
||||||
|
on all the platforms that FLAC supports. In particular the gating
|
||||||
|
of code with the ELIDE_CODE #define is not accurate enough on systems
|
||||||
|
that are POSIX but not glibc. If someone has a patch that works on
|
||||||
|
GNU/Linux, Darwin, AND Solaris please submit it on the project page:
|
||||||
|
http://sourceforge.net/projects/flac
|
||||||
|
|
||||||
|
In the meantime I have munged the global symbols and remove gates
|
||||||
|
around code, while at the same time trying to touch the original as
|
||||||
|
little as possible.
|
||||||
|
*/
|
||||||
/* getopt_long and getopt_long_only entry points for GNU getopt.
|
/* getopt_long and getopt_long_only entry points for GNU getopt.
|
||||||
Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98
|
Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
@@ -22,7 +36,7 @@
|
|||||||
#include <config.h>
|
#include <config.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "getopt.h"
|
/*[JEC] was:#include "getopt.h"*/
|
||||||
|
|
||||||
#if !defined __STDC__ || !__STDC__
|
#if !defined __STDC__ || !__STDC__
|
||||||
/* This is a separate conditional since some stdc systems
|
/* This is a separate conditional since some stdc systems
|
||||||
@@ -50,7 +64,8 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef ELIDE_CODE
|
#if 1
|
||||||
|
/*[JEC] was:#ifndef ELIDE_CODE*/
|
||||||
|
|
||||||
|
|
||||||
/* This needs to come after some library #include
|
/* This needs to come after some library #include
|
||||||
@@ -64,30 +79,30 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
int
|
int
|
||||||
getopt_long (argc, argv, options, long_options, opt_index)
|
FLAC__share__getopt_long (argc, argv, options, long_options, opt_index)
|
||||||
int argc;
|
int argc;
|
||||||
char *const *argv;
|
char *const *argv;
|
||||||
const char *options;
|
const char *options;
|
||||||
const struct option *long_options;
|
const struct FLAC__share__option *long_options;
|
||||||
int *opt_index;
|
int *opt_index;
|
||||||
{
|
{
|
||||||
return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
|
return FLAC__share___getopt_internal (argc, argv, options, long_options, opt_index, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Like getopt_long, but '-' as well as '--' can indicate a long option.
|
/* Like FLAC__share__getopt_long, but '-' as well as '--' can indicate a long option.
|
||||||
If an option that starts with '-' (not '--') doesn't match a long option,
|
If an option that starts with '-' (not '--') doesn't match a long option,
|
||||||
but does match a short option, it is parsed as a short option
|
but does match a short option, it is parsed as a short option
|
||||||
instead. */
|
instead. */
|
||||||
|
|
||||||
int
|
int
|
||||||
getopt_long_only (argc, argv, options, long_options, opt_index)
|
FLAC__share__getopt_long_only (argc, argv, options, long_options, opt_index)
|
||||||
int argc;
|
int argc;
|
||||||
char *const *argv;
|
char *const *argv;
|
||||||
const char *options;
|
const char *options;
|
||||||
const struct option *long_options;
|
const struct FLAC__share__option *long_options;
|
||||||
int *opt_index;
|
int *opt_index;
|
||||||
{
|
{
|
||||||
return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
|
return FLAC__share___getopt_internal (argc, argv, options, long_options, opt_index, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -107,9 +122,9 @@ main (argc, argv)
|
|||||||
|
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
int this_option_optind = optind ? optind : 1;
|
int this_option_optind = FLAC__share__optind ? FLAC__share__optind : 1;
|
||||||
int option_index = 0;
|
int option_index = 0;
|
||||||
static struct option long_options[] =
|
static struct FLAC__share__option long_options[] =
|
||||||
{
|
{
|
||||||
{"add", 1, 0, 0},
|
{"add", 1, 0, 0},
|
||||||
{"append", 0, 0, 0},
|
{"append", 0, 0, 0},
|
||||||
@@ -120,7 +135,7 @@ main (argc, argv)
|
|||||||
{0, 0, 0, 0}
|
{0, 0, 0, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
c = getopt_long (argc, argv, "abc:d:0123456789",
|
c = FLAC__share__getopt_long (argc, argv, "abc:d:0123456789",
|
||||||
long_options, &option_index);
|
long_options, &option_index);
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
break;
|
break;
|
||||||
@@ -129,8 +144,8 @@ main (argc, argv)
|
|||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
printf ("option %s", long_options[option_index].name);
|
printf ("option %s", long_options[option_index].name);
|
||||||
if (optarg)
|
if (FLAC__share__optarg)
|
||||||
printf (" with arg %s", optarg);
|
printf (" with arg %s", FLAC__share__optarg);
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -159,11 +174,11 @@ main (argc, argv)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'c':
|
case 'c':
|
||||||
printf ("option c with value `%s'\n", optarg);
|
printf ("option c with value `%s'\n", FLAC__share__optarg);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'd':
|
case 'd':
|
||||||
printf ("option d with value `%s'\n", optarg);
|
printf ("option d with value `%s'\n", FLAC__share__optarg);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '?':
|
case '?':
|
||||||
@@ -174,11 +189,11 @@ main (argc, argv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (optind < argc)
|
if (FLAC__share__optind < argc)
|
||||||
{
|
{
|
||||||
printf ("non-option ARGV-elements: ");
|
printf ("non-option ARGV-elements: ");
|
||||||
while (optind < argc)
|
while (FLAC__share__optind < argc)
|
||||||
printf ("%s ", argv[optind++]);
|
printf ("%s ", argv[FLAC__share__optind++]);
|
||||||
printf ("\n");
|
printf ("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user