annotate audacious/getopt.c @ 254:5de006f3d342 trunk

[svn] Initialize two variables before use and remove an unused one. Squashes 3 warnings.
author chainsaw
date Sun, 04 Dec 2005 06:48:27 -0800
parents cb178e5ad177
children f12d7e208b43
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
1 /* Getopt for GNU.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
2 NOTE: getopt is now part of the C library, so if you don't know what
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
3 "Keep this file name-space clean" means, talk to roland@gnu.ai.mit.edu
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
4 before changing it!
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
5
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
6 Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
7 Free Software Foundation, Inc.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
8
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
9 This file is part of the GNU C Library. Its master source is NOT part of
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
10 the C library, however. The master source lives in /gd/gnu/lib.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
11
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
12 The GNU C Library is free software; you can redistribute it and/or
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
13 modify it under the terms of the GNU Library General Public License as
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
14 published by the Free Software Foundation; either version 2 of the
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
15 License, or (at your option) any later version.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
16
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
17 The GNU C Library is distributed in the hope that it will be useful,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
20 Library General Public License for more details.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
21
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
22 You should have received a copy of the GNU Library General Public
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
23 License along with the GNU C Library; see the file COPYING.LIB. If not,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
24 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
25 Boston, MA 02111-1307, USA. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
26
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
27 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
28 Ditto for AIX 3.2 and <stdlib.h>. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
29 #ifndef _NO_PROTO
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
30 #define _NO_PROTO
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
31 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
32
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
33 #ifdef HAVE_CONFIG_H
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
34 #include <config.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
35 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
36
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
37 #if !defined (__STDC__) || !__STDC__
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
38 /* This is a separate conditional since some stdc systems
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
39 reject `defined (const)'. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
40 #ifndef const
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
41 #define const
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
42 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
43 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
44
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
45 #include <stdio.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
46 #include <string.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
47
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
48 /* Comment out all this code if we are using the GNU C Library, and are not
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
49 actually compiling the library itself. This code is part of the GNU C
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
50 Library, but also included in many other GNU distributions. Compiling
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
51 and linking in this code is a waste when using the GNU C library
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
52 (especially if it is a shared library). Rather than having every GNU
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
53 program understand `configure --with-gnu-libc' and omit the object files,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
54 it is simpler to just do this in the source for each such file. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
55
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
56 #define GETOPT_INTERFACE_VERSION 2
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
57 #if !defined (_LIBC) && defined (__GLIBC__) && __GLIBC__ >= 2
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
58 #include <gnu-versions.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
59 #if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
60 #define ELIDE_CODE
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
61 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
62 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
63
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
64 #ifndef ELIDE_CODE
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
65
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
66 /* This needs to come after some library #include
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
67 to get __GNU_LIBRARY__ defined. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
68 #ifdef __GNU_LIBRARY__
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
69 /* Don't include stdlib.h for non-GNU C libraries because some of them
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
70 contain conflicting prototypes for getopt. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
71 #include <stdlib.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
72 #include <unistd.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
73 #endif /* GNU C library. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
74
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
75 #ifdef VMS
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
76 #include <unixlib.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
77 #if HAVE_STRING_H - 0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
78 #include <string.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
79 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
80 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
81
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
82 #if defined (WIN32) && !defined (__CYGWIN32__)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
83 /* It's not Unix, really. See? Capital letters. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
84 #include <windows.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
85 #define getpid() GetCurrentProcessId()
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
86 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
87
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
88 #ifndef _
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
89 /* This is for other GNU distributions with internationalized messages.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
90 When compiling libc, the _ macro is predefined. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
91 #ifdef HAVE_LIBINTL_H
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
92 #include <libintl.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
93 #define _(msgid) gettext (msgid)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
94 #else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
95 #define _(msgid) (msgid)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
96 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
97 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
98
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
99 /* This version of `getopt' appears to the caller like standard Unix `getopt'
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
100 but it behaves differently for the user, since it allows the user
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
101 to intersperse the options with the other arguments.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
102
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
103 As `getopt' works, it permutes the elements of ARGV so that,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
104 when it is done, all the options precede everything else. Thus
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
105 all application programs are extended to handle flexible argument order.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
106
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
107 Setting the environment variable POSIXLY_CORRECT disables permutation.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
108 Then the behavior is completely standard.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
109
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
110 GNU application programs can use a third alternative mode in which
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
111 they can distinguish the relative order of options and other arguments. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
112
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
113 #include "getopt.h"
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
114
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
115 /* For communication from `getopt' to the caller.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
116 When `getopt' finds an option that takes an argument,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
117 the argument value is returned here.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
118 Also, when `ordering' is RETURN_IN_ORDER,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
119 each non-option ARGV-element is returned here. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
120
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
121 char *optarg = NULL;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
122
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
123 /* Index in ARGV of the next element to be scanned.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
124 This is used for communication to and from the caller
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
125 and for communication between successive calls to `getopt'.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
126
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
127 On entry to `getopt', zero means this is the first call; initialize.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
128
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
129 When `getopt' returns -1, this is the index of the first of the
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
130 non-option elements that the caller should itself scan.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
131
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
132 Otherwise, `optind' communicates from one call to the next
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
133 how much of ARGV has been scanned so far. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
134
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
135 /* 1003.2 says this must be 1 before any call. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
136 int optind = 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
137
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
138 /* Formerly, initialization of getopt depended on optind==0, which
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
139 causes problems with re-calling getopt as programs generally don't
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
140 know that. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
141
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
142 int __getopt_initialized = 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
143
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
144 /* The next char to be scanned in the option-element
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
145 in which the last option character we returned was found.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
146 This allows us to pick up the scan where we left off.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
147
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
148 If this is zero, or a null string, it means resume the scan
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
149 by advancing to the next ARGV-element. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
150
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
151 static char *nextchar;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
152
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
153 /* Callers store zero here to inhibit the error message
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
154 for unrecognized options. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
155
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
156 int opterr = 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
157
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
158 /* Set to an option character which was unrecognized.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
159 This must be initialized on some systems to avoid linking in the
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
160 system's own getopt implementation. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
161
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
162 int optopt = '?';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
163
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
164 /* Describe how to deal with options that follow non-option ARGV-elements.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
165
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
166 If the caller did not specify anything,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
167 the default is REQUIRE_ORDER if the environment variable
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
168 POSIXLY_CORRECT is defined, PERMUTE otherwise.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
169
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
170 REQUIRE_ORDER means don't recognize them as options;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
171 stop option processing when the first non-option is seen.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
172 This is what Unix does.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
173 This mode of operation is selected by either setting the environment
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
174 variable POSIXLY_CORRECT, or using `+' as the first character
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
175 of the list of option characters.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
176
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
177 PERMUTE is the default. We permute the contents of ARGV as we scan,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
178 so that eventually all the non-options are at the end. This allows options
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
179 to be given in any order, even with programs that were not written to
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
180 expect this.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
181
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
182 RETURN_IN_ORDER is an option available to programs that were written
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
183 to expect options and other ARGV-elements in any order and that care about
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
184 the ordering of the two. We describe each non-option ARGV-element
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
185 as if it were the argument of an option with character code 1.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
186 Using `-' as the first character of the list of option characters
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
187 selects this mode of operation.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
188
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
189 The special argument `--' forces an end of option-scanning regardless
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
190 of the value of `ordering'. In the case of RETURN_IN_ORDER, only
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
191 `--' can cause `getopt' to return -1 with `optind' != ARGC. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
192
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
193 static enum {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
194 REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
195 } ordering;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
196
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
197 /* Value of POSIXLY_CORRECT environment variable. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
198 static char *posixly_correct;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
199
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
200 #ifdef __GNU_LIBRARY__
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
201 /* We want to avoid inclusion of string.h with non-GNU libraries
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
202 because there are many ways it can cause trouble.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
203 On some systems, it contains special magic macros that don't work
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
204 in GCC. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
205 #include <string.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
206 #define my_index strchr
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
207 #else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
208
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
209 /* Avoid depending on library functions or files
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
210 whose names are inconsistent. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
211
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
212 char *getenv();
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
213
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
214 static char *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
215 my_index(str, chr)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
216 const char *str;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
217 int chr;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
218 {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
219 while (*str) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
220 if (*str == chr)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
221 return (char *) str;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
222 str++;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
223 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
224 return 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
225 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
226
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
227 /* If using GCC, we can safely declare strlen this way.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
228 If not using GCC, it is ok not to declare it. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
229 #ifdef __GNUC__
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
230 /* Note that Motorola Delta 68k R3V7 comes with GCC but not stddef.h.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
231 That was relevant to code that was here before. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
232 #if !defined (__STDC__) || !__STDC__
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
233 /* gcc with -traditional declares the built-in strlen to return int,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
234 and has done so at least since version 2.4.5. -- rms. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
235 extern int strlen(const char *);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
236
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
237 #endif /* not __STDC__ */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
238 #endif /* __GNUC__ */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
239
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
240 #endif /* not __GNU_LIBRARY__ */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
241
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
242 /* Handle permutation of arguments. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
243
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
244 /* Describe the part of ARGV that contains non-options that have
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
245 been skipped. `first_nonopt' is the index in ARGV of the first of them;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
246 `last_nonopt' is the index after the last of them. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
247
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
248 static int first_nonopt;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
249 static int last_nonopt;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
250
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
251 #ifdef _LIBC
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
252 /* Bash 2.0 gives us an environment variable containing flags
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
253 indicating ARGV elements that should not be considered arguments. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
254
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
255 static const char *nonoption_flags;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
256 static int nonoption_flags_len;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
257
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
258 static int original_argc;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
259 static char *const *original_argv;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
260
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
261 /* Make sure the environment variable bash 2.0 puts in the environment
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
262 is valid for the getopt call we must make sure that the ARGV passed
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
263 to getopt is that one passed to the process. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
264 static void store_args(int argc, char *const *argv)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
265 __attribute__ ((unused));
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
266 static void
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
267 store_args(int argc, char *const *argv)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
268 {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
269 /* XXX This is no good solution. We should rather copy the args so
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
270 that we can compare them later. But we must not use malloc(3). */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
271 original_argc = argc;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
272 original_argv = argv;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
273 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
274
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
275 text_set_element(__libc_subinit, store_args);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
276 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
277
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
278 /* Exchange two adjacent subsequences of ARGV.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
279 One subsequence is elements [first_nonopt,last_nonopt)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
280 which contains all the non-options that have been skipped so far.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
281 The other is elements [last_nonopt,optind), which contains all
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
282 the options processed since those non-options were skipped.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
283
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
284 `first_nonopt' and `last_nonopt' are relocated so that they describe
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
285 the new indices of the non-options in ARGV after they are moved. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
286
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
287 #if defined (__STDC__) && __STDC__
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
288 static void exchange(char **);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
289
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
290 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
291
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
292 static void
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
293 exchange(argv)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
294 char **argv;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
295 {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
296 int bottom = first_nonopt;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
297 int middle = last_nonopt;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
298 int top = optind;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
299 char *tem;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
300
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
301 /* Exchange the shorter segment with the far end of the longer segment.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
302 That puts the shorter segment into the right place.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
303 It leaves the longer segment in the right place overall,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
304 but it consists of two parts that need to be swapped next. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
305
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
306 while (top > middle && middle > bottom) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
307 if (top - middle > middle - bottom) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
308 /* Bottom segment is the short one. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
309 int len = middle - bottom;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
310 register int i;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
311
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
312 /* Swap it with the top part of the top segment. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
313 for (i = 0; i < len; i++) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
314 tem = argv[bottom + i];
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
315 argv[bottom + i] = argv[top - (middle - bottom) + i];
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
316 argv[top - (middle - bottom) + i] = tem;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
317 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
318 /* Exclude the moved bottom segment from further swapping. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
319 top -= len;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
320 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
321 else {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
322 /* Top segment is the short one. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
323 int len = top - middle;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
324 register int i;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
325
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
326 /* Swap it with the bottom part of the bottom segment. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
327 for (i = 0; i < len; i++) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
328 tem = argv[bottom + i];
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
329 argv[bottom + i] = argv[middle + i];
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
330 argv[middle + i] = tem;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
331 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
332 /* Exclude the moved top segment from further swapping. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
333 bottom += len;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
334 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
335 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
336
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
337 /* Update records for the slots the non-options now occupy. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
338
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
339 first_nonopt += (optind - last_nonopt);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
340 last_nonopt = optind;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
341 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
342
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
343 /* Initialize the internal data when the first call is made. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
344
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
345 #if defined (__STDC__) && __STDC__
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
346 static const char *_getopt_initialize(int, char *const *, const char *);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
347
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
348 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
349 static const char *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
350 _getopt_initialize(argc, argv, optstring)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
351 int argc;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
352 char *const *argv;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
353 const char *optstring;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
354 {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
355 /* Start processing options with ARGV-element 1 (since ARGV-element 0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
356 is the program name); the sequence of previously skipped
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
357 non-option ARGV-elements is empty. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
358
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
359 first_nonopt = last_nonopt = optind = 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
360
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
361 nextchar = NULL;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
362
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
363 posixly_correct = getenv("POSIXLY_CORRECT");
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
364
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
365 /* Determine how to handle the ordering of options and nonoptions. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
366
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
367 if (optstring[0] == '-') {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
368 ordering = RETURN_IN_ORDER;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
369 ++optstring;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
370 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
371 else if (optstring[0] == '+') {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
372 ordering = REQUIRE_ORDER;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
373 ++optstring;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
374 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
375 else if (posixly_correct != NULL)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
376 ordering = REQUIRE_ORDER;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
377 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
378 ordering = PERMUTE;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
379
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
380 #ifdef _LIBC
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
381 if (posixly_correct == NULL
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
382 && argc == original_argc && argv == original_argv) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
383 /* Bash 2.0 puts a special variable in the environment for each
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
384 command it runs, specifying which ARGV elements are the results of
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
385 file name wildcard expansion and therefore should not be
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
386 considered as options. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
387 char var[100];
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
388
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
389 sprintf(var, "_%d_GNU_nonoption_argv_flags_", getpid());
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
390 nonoption_flags = getenv(var);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
391 if (nonoption_flags == NULL)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
392 nonoption_flags_len = 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
393 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
394 nonoption_flags_len = strlen(nonoption_flags);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
395 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
396 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
397 nonoption_flags_len = 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
398 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
399
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
400 return optstring;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
401 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
402
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
403 /* Scan elements of ARGV (whose length is ARGC) for option characters
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
404 given in OPTSTRING.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
405
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
406 If an element of ARGV starts with '-', and is not exactly "-" or "--",
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
407 then it is an option element. The characters of this element
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
408 (aside from the initial '-') are option characters. If `getopt'
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
409 is called repeatedly, it returns successively each of the option characters
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
410 from each of the option elements.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
411
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
412 If `getopt' finds another option character, it returns that character,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
413 updating `optind' and `nextchar' so that the next call to `getopt' can
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
414 resume the scan with the following option character or ARGV-element.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
415
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
416 If there are no more option characters, `getopt' returns -1.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
417 Then `optind' is the index in ARGV of the first ARGV-element
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
418 that is not an option. (The ARGV-elements have been permuted
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
419 so that those that are not options now come last.)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
420
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
421 OPTSTRING is a string containing the legitimate option characters.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
422 If an option character is seen that is not listed in OPTSTRING,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
423 return '?' after printing an error message. If you set `opterr' to
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
424 zero, the error message is suppressed but we still return '?'.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
425
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
426 If a char in OPTSTRING is followed by a colon, that means it wants an arg,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
427 so the following text in the same ARGV-element, or the text of the following
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
428 ARGV-element, is returned in `optarg'. Two colons mean an option that
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
429 wants an optional arg; if there is text in the current ARGV-element,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
430 it is returned in `optarg', otherwise `optarg' is set to zero.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
431
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
432 If OPTSTRING starts with `-' or `+', it requests different methods of
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
433 handling the non-option ARGV-elements.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
434 See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
435
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
436 Long-named options begin with `--' instead of `-'.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
437 Their names may be abbreviated as long as the abbreviation is unique
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
438 or is an exact match for some defined option. If they have an
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
439 argument, it follows the option name in the same ARGV-element, separated
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
440 from the option name by a `=', or else the in next ARGV-element.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
441 When `getopt' finds a long-named option, it returns 0 if that option's
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
442 `flag' field is nonzero, the value of the option's `val' field
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
443 if the `flag' field is zero.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
444
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
445 The elements of ARGV aren't really const, because we permute them.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
446 But we pretend they're const in the prototype to be compatible
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
447 with other systems.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
448
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
449 LONGOPTS is a vector of `struct option' terminated by an
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
450 element containing a name which is zero.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
451
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
452 LONGIND returns the index in LONGOPT of the long-named option found.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
453 It is only valid when a long-named option has been found by the most
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
454 recent call.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
455
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
456 If LONG_ONLY is nonzero, '-' as well as '--' can introduce
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
457 long-named options. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
458
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
459 int
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
460 _getopt_internal(argc, argv, optstring, longopts, longind, long_only)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
461 int argc;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
462 char *const *argv;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
463 const char *optstring;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
464 const struct option *longopts;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
465 int *longind;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
466 int long_only;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
467 {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
468 optarg = NULL;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
469
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
470 if (!__getopt_initialized || optind == 0) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
471 optstring = _getopt_initialize(argc, argv, optstring);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
472 optind = 1; /* Don't scan ARGV[0], the program name. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
473 __getopt_initialized = 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
474 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
475
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
476 /* Test whether ARGV[optind] points to a non-option argument.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
477 Either it does not have option syntax, or there is an environment flag
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
478 from the shell indicating it is not an option. The later information
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
479 is only used when the used in the GNU libc. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
480 #ifdef _LIBC
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
481 #define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0' \
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
482 || (optind < nonoption_flags_len \
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
483 && nonoption_flags[optind] == '1'))
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
484 #else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
485 #define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0')
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
486 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
487
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
488 if (nextchar == NULL || *nextchar == '\0') {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
489 /* Advance to the next ARGV-element. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
490
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
491 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
492 moved back by the user (who may also have changed the arguments). */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
493 if (last_nonopt > optind)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
494 last_nonopt = optind;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
495 if (first_nonopt > optind)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
496 first_nonopt = optind;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
497
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
498 if (ordering == PERMUTE) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
499 /* If we have just processed some options following some non-options,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
500 exchange them so that the options come first. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
501
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
502 if (first_nonopt != last_nonopt && last_nonopt != optind)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
503 exchange((char **) argv);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
504 else if (last_nonopt != optind)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
505 first_nonopt = optind;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
506
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
507 /* Skip any additional non-options
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
508 and extend the range of non-options previously skipped. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
509
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
510 while (optind < argc && NONOPTION_P)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
511 optind++;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
512 last_nonopt = optind;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
513 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
514
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
515 /* The special ARGV-element `--' means premature end of options.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
516 Skip it like a null option,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
517 then exchange with previous non-options as if it were an option,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
518 then skip everything else like a non-option. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
519
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
520 if (optind != argc && !strcmp(argv[optind], "--")) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
521 optind++;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
522
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
523 if (first_nonopt != last_nonopt && last_nonopt != optind)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
524 exchange((char **) argv);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
525 else if (first_nonopt == last_nonopt)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
526 first_nonopt = optind;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
527 last_nonopt = argc;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
528
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
529 optind = argc;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
530 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
531
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
532 /* If we have done all the ARGV-elements, stop the scan
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
533 and back over any non-options that we skipped and permuted. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
534
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
535 if (optind == argc) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
536 /* Set the next-arg-index to point at the non-options
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
537 that we previously skipped, so the caller will digest them. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
538 if (first_nonopt != last_nonopt)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
539 optind = first_nonopt;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
540 return -1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
541 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
542
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
543 /* If we have come to a non-option and did not permute it,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
544 either stop the scan or describe it to the caller and pass it by. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
545
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
546 if (NONOPTION_P) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
547 if (ordering == REQUIRE_ORDER)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
548 return -1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
549 optarg = argv[optind++];
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
550 return 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
551 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
552
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
553 /* We have found another option-ARGV-element.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
554 Skip the initial punctuation. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
555
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
556 nextchar = (argv[optind] + 1
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
557 + (longopts != NULL && argv[optind][1] == '-'));
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
558 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
559
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
560 /* Decode the current option-ARGV-element. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
561
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
562 /* Check whether the ARGV-element is a long option.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
563
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
564 If long_only and the ARGV-element has the form "-f", where f is
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
565 a valid short option, don't consider it an abbreviated form of
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
566 a long option that starts with f. Otherwise there would be no
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
567 way to give the -f short option.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
568
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
569 On the other hand, if there's a long option "fubar" and
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
570 the ARGV-element is "-fu", do consider that an abbreviation of
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
571 the long option, just like "--fu", and not "-f" with arg "u".
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
572
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
573 This distinction seems to be the most useful approach. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
574
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
575 if (longopts != NULL
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
576 && (argv[optind][1] == '-' || (long_only && (argv[optind][2]
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
577 ||
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
578 !my_index(optstring,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
579 argv[optind]
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
580 [1]))))) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
581 char *nameend;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
582 const struct option *p;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
583 const struct option *pfound = NULL;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
584 int exact = 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
585 int ambig = 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
586 int indfound = -1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
587 int option_index;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
588
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
589 for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
590 /* Do nothing. */ ;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
591
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
592 /* Test all long options for either exact match
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
593 or abbreviated matches. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
594 for (p = longopts, option_index = 0; p->name; p++, option_index++)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
595 if (!strncmp(p->name, nextchar, nameend - nextchar)) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
596 if ((unsigned int) (nameend - nextchar)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
597 == (unsigned int) strlen(p->name)) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
598 /* Exact match found. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
599 pfound = p;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
600 indfound = option_index;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
601 exact = 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
602 break;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
603 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
604 else if (pfound == NULL) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
605 /* First nonexact match found. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
606 pfound = p;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
607 indfound = option_index;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
608 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
609 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
610 /* Second or later nonexact match found. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
611 ambig = 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
612 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
613
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
614 if (ambig && !exact) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
615 if (opterr)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
616 fprintf(stderr, _("%s: option `%s' is ambiguous\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
617 argv[0], argv[optind]);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
618 nextchar += strlen(nextchar);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
619 optind++;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
620 optopt = 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
621 return '?';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
622 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
623
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
624 if (pfound != NULL) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
625 option_index = indfound;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
626 optind++;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
627 if (*nameend) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
628 /* Don't test has_arg with >, because some C compilers don't
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
629 allow it to be used on enums. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
630 if (pfound->has_arg)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
631 optarg = nameend + 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
632 else {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
633 if (opterr)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
634 if (argv[optind - 1][1] == '-')
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
635 /* --option */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
636 fprintf(stderr,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
637 _
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
638 ("%s: option `--%s' doesn't allow an argument\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
639 argv[0], pfound->name);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
640 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
641 /* +option or -option */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
642 fprintf(stderr,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
643 _
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
644 ("%s: option `%c%s' doesn't allow an argument\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
645 argv[0], argv[optind - 1][0],
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
646 pfound->name);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
647
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
648 nextchar += strlen(nextchar);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
649
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
650 optopt = pfound->val;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
651 return '?';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
652 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
653 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
654 else if (pfound->has_arg == 1) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
655 if (optind < argc)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
656 optarg = argv[optind++];
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
657 else {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
658 if (opterr)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
659 fprintf(stderr,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
660 _
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
661 ("%s: option `%s' requires an argument\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
662 argv[0], argv[optind - 1]);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
663 nextchar += strlen(nextchar);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
664 optopt = pfound->val;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
665 return optstring[0] == ':' ? ':' : '?';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
666 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
667 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
668 nextchar += strlen(nextchar);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
669 if (longind != NULL)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
670 *longind = option_index;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
671 if (pfound->flag) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
672 *(pfound->flag) = pfound->val;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
673 return 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
674 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
675 return pfound->val;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
676 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
677
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
678 /* Can't find it as a long option. If this is not getopt_long_only,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
679 or the option starts with '--' or is not a valid short
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
680 option, then it's an error.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
681 Otherwise interpret it as a short option. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
682 if (!long_only || argv[optind][1] == '-'
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
683 || my_index(optstring, *nextchar) == NULL) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
684 if (opterr) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
685 if (argv[optind][1] == '-')
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
686 /* --option */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
687 fprintf(stderr, _("%s: unrecognized option `--%s'\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
688 argv[0], nextchar);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
689 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
690 /* +option or -option */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
691 fprintf(stderr, _("%s: unrecognized option `%c%s'\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
692 argv[0], argv[optind][0], nextchar);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
693 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
694 nextchar = (char *) "";
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
695 optind++;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
696 optopt = 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
697 return '?';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
698 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
699 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
700
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
701 /* Look at and handle the next short option-character. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
702
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
703 {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
704 char c = *nextchar++;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
705 char *temp = my_index(optstring, c);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
706
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
707 /* Increment `optind' when we start to process its last character. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
708 if (*nextchar == '\0')
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
709 ++optind;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
710
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
711 if (temp == NULL || c == ':') {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
712 if (opterr) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
713 if (posixly_correct)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
714 /* 1003.2 specifies the format of this message. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
715 fprintf(stderr, _("%s: illegal option -- %c\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
716 argv[0], c);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
717 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
718 fprintf(stderr, _("%s: invalid option -- %c\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
719 argv[0], c);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
720 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
721 optopt = c;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
722 return '?';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
723 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
724 /* Convenience. Treat POSIX -W foo same as long option --foo */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
725 if (temp[0] == 'W' && temp[1] == ';') {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
726 char *nameend;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
727 const struct option *p;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
728 const struct option *pfound = NULL;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
729 int exact = 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
730 int ambig = 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
731 int indfound = 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
732 int option_index;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
733
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
734 /* This is an option that requires an argument. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
735 if (*nextchar != '\0') {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
736 optarg = nextchar;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
737 /* If we end this ARGV-element by taking the rest as an arg,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
738 we must advance to the next element now. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
739 optind++;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
740 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
741 else if (optind == argc) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
742 if (opterr) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
743 /* 1003.2 specifies the format of this message. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
744 fprintf(stderr,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
745 _("%s: option requires an argument -- %c\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
746 argv[0], c);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
747 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
748 optopt = c;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
749 if (optstring[0] == ':')
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
750 c = ':';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
751 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
752 c = '?';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
753 return c;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
754 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
755 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
756 /* We already incremented `optind' once;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
757 increment it again when taking next ARGV-elt as argument. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
758 optarg = argv[optind++];
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
759
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
760 /* optarg is now the argument, see if it's in the
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
761 table of longopts. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
762
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
763 for (nextchar = nameend = optarg; *nameend && *nameend != '=';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
764 nameend++)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
765 /* Do nothing. */ ;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
766
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
767 /* Test all long options for either exact match
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
768 or abbreviated matches. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
769 for (p = longopts, option_index = 0; p->name; p++, option_index++)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
770 if (!strncmp(p->name, nextchar, nameend - nextchar)) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
771 if ((unsigned int) (nameend - nextchar) ==
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
772 strlen(p->name)) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
773 /* Exact match found. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
774 pfound = p;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
775 indfound = option_index;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
776 exact = 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
777 break;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
778 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
779 else if (pfound == NULL) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
780 /* First nonexact match found. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
781 pfound = p;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
782 indfound = option_index;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
783 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
784 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
785 /* Second or later nonexact match found. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
786 ambig = 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
787 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
788 if (ambig && !exact) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
789 if (opterr)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
790 fprintf(stderr, _("%s: option `-W %s' is ambiguous\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
791 argv[0], argv[optind]);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
792 nextchar += strlen(nextchar);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
793 optind++;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
794 return '?';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
795 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
796 if (pfound != NULL) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
797 option_index = indfound;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
798 if (*nameend) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
799 /* Don't test has_arg with >, because some C compilers don't
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
800 allow it to be used on enums. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
801 if (pfound->has_arg)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
802 optarg = nameend + 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
803 else {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
804 if (opterr)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
805 fprintf(stderr, _("\
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
806 %s: option `-W %s' doesn't allow an argument\n"), argv[0], pfound->name);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
807
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
808 nextchar += strlen(nextchar);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
809 return '?';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
810 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
811 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
812 else if (pfound->has_arg == 1) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
813 if (optind < argc)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
814 optarg = argv[optind++];
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
815 else {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
816 if (opterr)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
817 fprintf(stderr,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
818 _
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
819 ("%s: option `%s' requires an argument\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
820 argv[0], argv[optind - 1]);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
821 nextchar += strlen(nextchar);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
822 return optstring[0] == ':' ? ':' : '?';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
823 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
824 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
825 nextchar += strlen(nextchar);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
826 if (longind != NULL)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
827 *longind = option_index;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
828 if (pfound->flag) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
829 *(pfound->flag) = pfound->val;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
830 return 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
831 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
832 return pfound->val;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
833 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
834 nextchar = NULL;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
835 return 'W'; /* Let the application handle it. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
836 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
837 if (temp[1] == ':') {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
838 if (temp[2] == ':') {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
839 /* This is an option that accepts an argument optionally. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
840 if (*nextchar != '\0') {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
841 optarg = nextchar;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
842 optind++;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
843 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
844 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
845 optarg = NULL;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
846 nextchar = NULL;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
847 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
848 else {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
849 /* This is an option that requires an argument. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
850 if (*nextchar != '\0') {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
851 optarg = nextchar;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
852 /* If we end this ARGV-element by taking the rest as an arg,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
853 we must advance to the next element now. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
854 optind++;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
855 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
856 else if (optind == argc) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
857 if (opterr) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
858 /* 1003.2 specifies the format of this message. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
859 fprintf(stderr,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
860 _
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
861 ("%s: option requires an argument -- %c\n"),
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
862 argv[0], c);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
863 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
864 optopt = c;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
865 if (optstring[0] == ':')
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
866 c = ':';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
867 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
868 c = '?';
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
869 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
870 else
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
871 /* We already incremented `optind' once;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
872 increment it again when taking next ARGV-elt as argument. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
873 optarg = argv[optind++];
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
874 nextchar = NULL;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
875 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
876 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
877 return c;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
878 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
879 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
880
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
881 int
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
882 getopt(argc, argv, optstring)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
883 int argc;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
884 char *const *argv;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
885 const char *optstring;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
886 {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
887 return _getopt_internal(argc, argv, optstring,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
888 (const struct option *) 0, (int *) 0, 0);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
889 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
890
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
891 #endif /* Not ELIDE_CODE. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
892
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
893 #ifdef TEST
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
894
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
895 /* Compile with -DTEST to make an executable for use in testing
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
896 the above definition of `getopt'. */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
897
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
898 int
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
899 main(argc, argv)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
900 int argc;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
901 char **argv;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
902 {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
903 int c;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
904 int digit_optind = 0;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
905
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
906 while (1) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
907 int this_option_optind = optind ? optind : 1;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
908
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
909 c = getopt(argc, argv, "abc:d:0123456789");
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
910 if (c == -1)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
911 break;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
912
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
913 switch (c) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
914 case '0':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
915 case '1':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
916 case '2':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
917 case '3':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
918 case '4':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
919 case '5':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
920 case '6':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
921 case '7':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
922 case '8':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
923 case '9':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
924 if (digit_optind != 0 && digit_optind != this_option_optind)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
925 printf("digits occur in two different argv-elements.\n");
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
926 digit_optind = this_option_optind;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
927 printf("option %c\n", c);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
928 break;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
929
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
930 case 'a':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
931 printf("option a\n");
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
932 break;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
933
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
934 case 'b':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
935 printf("option b\n");
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
936 break;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
937
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
938 case 'c':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
939 printf("option c with value `%s'\n", optarg);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
940 break;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
941
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
942 case '?':
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
943 break;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
944
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
945 default:
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
946 printf("?? getopt returned character code 0%o ??\n", c);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
947 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
948 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
949
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
950 if (optind < argc) {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
951 printf("non-option ARGV-elements: ");
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
952 while (optind < argc)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
953 printf("%s ", argv[optind++]);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
954 printf("\n");
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
955 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
956
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
957 exit(0);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
958 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
959
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
960 #endif /* TEST */