17502
|
1 /* Getopt for GNU.
|
48647
|
2 NOTE: getopt is now part of the C library, so if you don't know what
|
|
3 "Keep this file name-space clean" means, talk to drepper@gnu.org
|
|
4 before changing it!
|
64769
|
5 Copyright (C) 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
|
|
6 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003,
|
75348
|
7 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
48647
|
8 This file is part of the GNU C Library.
|
17502
|
9
|
48647
|
10 This program is free software; you can redistribute it and/or modify
|
|
11 it under the terms of the GNU General Public License as published by
|
78257
|
12 the Free Software Foundation; either version 3, or (at your option)
|
48647
|
13 any later version.
|
17502
|
14
|
19875
|
15 This program is distributed in the hope that it will be useful,
|
|
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 GNU General Public License for more details.
|
17502
|
19
|
48647
|
20 You should have received a copy of the GNU General Public License along
|
|
21 with this program; if not, write to the Free Software Foundation,
|
64083
|
22 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
17502
|
23
|
|
24 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
|
|
25 Ditto for AIX 3.2 and <stdlib.h>. */
|
|
26 #ifndef _NO_PROTO
|
21793
|
27 # define _NO_PROTO
|
17502
|
28 #endif
|
|
29
|
|
30 #ifdef HAVE_CONFIG_H
|
21793
|
31 # include <config.h>
|
48647
|
32 #endif
|
|
33
|
17502
|
34 #include <stdio.h>
|
|
35
|
|
36 /* This needs to come after some library #include
|
|
37 to get __GNU_LIBRARY__ defined. */
|
|
38 #ifdef __GNU_LIBRARY__
|
|
39 /* Don't include stdlib.h for non-GNU C libraries because some of them
|
|
40 contain conflicting prototypes for getopt. */
|
21793
|
41 # include <stdlib.h>
|
|
42 # include <unistd.h>
|
17502
|
43 #endif /* GNU C library. */
|
|
44
|
64639
|
45 #include <string.h>
|
|
46
|
17502
|
47 #ifdef VMS
|
21793
|
48 # include <unixlib.h>
|
17502
|
49 #endif
|
|
50
|
64639
|
51 #ifdef _LIBC
|
48757
|
52 # include <libintl.h>
|
64639
|
53 #else
|
|
54 # include "gettext.h"
|
|
55 # define _(msgid) gettext (msgid)
|
|
56 #endif
|
48647
|
57
|
|
58 #if defined _LIBC && defined USE_IN_LIBIO
|
|
59 # include <wchar.h>
|
|
60 #endif
|
|
61
|
|
62 #ifndef attribute_hidden
|
|
63 # define attribute_hidden
|
17502
|
64 #endif
|
|
65
|
64639
|
66 /* Unlike standard Unix `getopt', functions like `getopt_long'
|
|
67 let the user intersperse the options with the other arguments.
|
17502
|
68
|
64639
|
69 As `getopt_long' works, it permutes the elements of ARGV so that,
|
17502
|
70 when it is done, all the options precede everything else. Thus
|
|
71 all application programs are extended to handle flexible argument order.
|
|
72
|
64639
|
73 Using `getopt' or setting the environment variable POSIXLY_CORRECT
|
|
74 disables permutation.
|
|
75 Then the application's behavior is completely standard.
|
17502
|
76
|
|
77 GNU application programs can use a third alternative mode in which
|
|
78 they can distinguish the relative order of options and other arguments. */
|
|
79
|
|
80 #include "getopt.h"
|
64639
|
81 #include "getopt_int.h"
|
17502
|
82
|
|
83 /* For communication from `getopt' to the caller.
|
|
84 When `getopt' finds an option that takes an argument,
|
|
85 the argument value is returned here.
|
|
86 Also, when `ordering' is RETURN_IN_ORDER,
|
|
87 each non-option ARGV-element is returned here. */
|
|
88
|
26083
|
89 char *optarg;
|
17502
|
90
|
|
91 /* Index in ARGV of the next element to be scanned.
|
|
92 This is used for communication to and from the caller
|
|
93 and for communication between successive calls to `getopt'.
|
|
94
|
|
95 On entry to `getopt', zero means this is the first call; initialize.
|
|
96
|
|
97 When `getopt' returns -1, this is the index of the first of the
|
|
98 non-option elements that the caller should itself scan.
|
|
99
|
|
100 Otherwise, `optind' communicates from one call to the next
|
|
101 how much of ARGV has been scanned so far. */
|
|
102
|
|
103 /* 1003.2 says this must be 1 before any call. */
|
|
104 int optind = 1;
|
|
105
|
|
106 /* Callers store zero here to inhibit the error message
|
|
107 for unrecognized options. */
|
|
108
|
|
109 int opterr = 1;
|
|
110
|
|
111 /* Set to an option character which was unrecognized.
|
|
112 This must be initialized on some systems to avoid linking in the
|
|
113 system's own getopt implementation. */
|
|
114
|
|
115 int optopt = '?';
|
|
116
|
64639
|
117 /* Keep a global copy of all internal members of getopt_data. */
|
17502
|
118
|
64639
|
119 static struct _getopt_data getopt_data;
|
17502
|
120
|
|
121
|
64639
|
122 #ifndef __GNU_LIBRARY__
|
22146
|
123
|
17502
|
124 /* Avoid depending on library functions or files
|
|
125 whose names are inconsistent. */
|
|
126
|
21793
|
127 #ifndef getenv
|
|
128 extern char *getenv ();
|
|
129 #endif
|
17502
|
130
|
|
131 #endif /* not __GNU_LIBRARY__ */
|
|
132
|
|
133 #ifdef _LIBC
|
48647
|
134 /* Stored original parameters.
|
|
135 XXX This is no good solution. We should rather copy the args so
|
|
136 that we can compare them later. But we must not use malloc(3). */
|
|
137 extern int __libc_argc;
|
|
138 extern char **__libc_argv;
|
|
139
|
17502
|
140 /* Bash 2.0 gives us an environment variable containing flags
|
|
141 indicating ARGV elements that should not be considered arguments. */
|
|
142
|
48647
|
143 # ifdef USE_NONOPTION_FLAGS
|
17502
|
144 /* Defined in getopt_init.c */
|
|
145 extern char *__getopt_nonoption_flags;
|
48647
|
146 # endif
|
17502
|
147
|
48647
|
148 # ifdef USE_NONOPTION_FLAGS
|
|
149 # define SWAP_FLAGS(ch1, ch2) \
|
64639
|
150 if (d->__nonoption_flags_len > 0) \
|
17502
|
151 { \
|
|
152 char __tmp = __getopt_nonoption_flags[ch1]; \
|
|
153 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
|
|
154 __getopt_nonoption_flags[ch2] = __tmp; \
|
|
155 }
|
48647
|
156 # else
|
|
157 # define SWAP_FLAGS(ch1, ch2)
|
|
158 # endif
|
17502
|
159 #else /* !_LIBC */
|
|
160 # define SWAP_FLAGS(ch1, ch2)
|
|
161 #endif /* _LIBC */
|
|
162
|
|
163 /* Exchange two adjacent subsequences of ARGV.
|
|
164 One subsequence is elements [first_nonopt,last_nonopt)
|
|
165 which contains all the non-options that have been skipped so far.
|
|
166 The other is elements [last_nonopt,optind), which contains all
|
|
167 the options processed since those non-options were skipped.
|
|
168
|
|
169 `first_nonopt' and `last_nonopt' are relocated so that they describe
|
|
170 the new indices of the non-options in ARGV after they are moved. */
|
|
171
|
|
172 static void
|
64639
|
173 exchange (char **argv, struct _getopt_data *d)
|
17502
|
174 {
|
64639
|
175 int bottom = d->__first_nonopt;
|
|
176 int middle = d->__last_nonopt;
|
|
177 int top = d->optind;
|
17502
|
178 char *tem;
|
|
179
|
|
180 /* Exchange the shorter segment with the far end of the longer segment.
|
|
181 That puts the shorter segment into the right place.
|
|
182 It leaves the longer segment in the right place overall,
|
|
183 but it consists of two parts that need to be swapped next. */
|
|
184
|
48647
|
185 #if defined _LIBC && defined USE_NONOPTION_FLAGS
|
17502
|
186 /* First make sure the handling of the `__getopt_nonoption_flags'
|
|
187 string can work normally. Our top argument must be in the range
|
|
188 of the string. */
|
64639
|
189 if (d->__nonoption_flags_len > 0 && top >= d->__nonoption_flags_max_len)
|
17502
|
190 {
|
|
191 /* We must extend the array. The user plays games with us and
|
|
192 presents new arguments. */
|
|
193 char *new_str = malloc (top + 1);
|
|
194 if (new_str == NULL)
|
64639
|
195 d->__nonoption_flags_len = d->__nonoption_flags_max_len = 0;
|
17502
|
196 else
|
|
197 {
|
20212
|
198 memset (__mempcpy (new_str, __getopt_nonoption_flags,
|
64639
|
199 d->__nonoption_flags_max_len),
|
|
200 '\0', top + 1 - d->__nonoption_flags_max_len);
|
|
201 d->__nonoption_flags_max_len = top + 1;
|
17502
|
202 __getopt_nonoption_flags = new_str;
|
|
203 }
|
|
204 }
|
|
205 #endif
|
|
206
|
|
207 while (top > middle && middle > bottom)
|
|
208 {
|
|
209 if (top - middle > middle - bottom)
|
|
210 {
|
|
211 /* Bottom segment is the short one. */
|
|
212 int len = middle - bottom;
|
|
213 register int i;
|
|
214
|
|
215 /* Swap it with the top part of the top segment. */
|
|
216 for (i = 0; i < len; i++)
|
|
217 {
|
|
218 tem = argv[bottom + i];
|
|
219 argv[bottom + i] = argv[top - (middle - bottom) + i];
|
|
220 argv[top - (middle - bottom) + i] = tem;
|
|
221 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
|
|
222 }
|
|
223 /* Exclude the moved bottom segment from further swapping. */
|
|
224 top -= len;
|
|
225 }
|
|
226 else
|
|
227 {
|
|
228 /* Top segment is the short one. */
|
|
229 int len = top - middle;
|
|
230 register int i;
|
|
231
|
|
232 /* Swap it with the bottom part of the bottom segment. */
|
|
233 for (i = 0; i < len; i++)
|
|
234 {
|
|
235 tem = argv[bottom + i];
|
|
236 argv[bottom + i] = argv[middle + i];
|
|
237 argv[middle + i] = tem;
|
|
238 SWAP_FLAGS (bottom + i, middle + i);
|
|
239 }
|
|
240 /* Exclude the moved top segment from further swapping. */
|
|
241 bottom += len;
|
|
242 }
|
|
243 }
|
|
244
|
|
245 /* Update records for the slots the non-options now occupy. */
|
|
246
|
64639
|
247 d->__first_nonopt += (d->optind - d->__last_nonopt);
|
|
248 d->__last_nonopt = d->optind;
|
17502
|
249 }
|
|
250
|
|
251 /* Initialize the internal data when the first call is made. */
|
|
252
|
|
253 static const char *
|
64639
|
254 _getopt_initialize (int argc, char **argv, const char *optstring,
|
|
255 int posixly_correct, struct _getopt_data *d)
|
17502
|
256 {
|
|
257 /* Start processing options with ARGV-element 1 (since ARGV-element 0
|
|
258 is the program name); the sequence of previously skipped
|
|
259 non-option ARGV-elements is empty. */
|
|
260
|
64639
|
261 d->__first_nonopt = d->__last_nonopt = d->optind;
|
17502
|
262
|
64639
|
263 d->__nextchar = NULL;
|
17502
|
264
|
64639
|
265 d->__posixly_correct = posixly_correct || !!getenv ("POSIXLY_CORRECT");
|
17502
|
266
|
|
267 /* Determine how to handle the ordering of options and nonoptions. */
|
|
268
|
|
269 if (optstring[0] == '-')
|
|
270 {
|
64639
|
271 d->__ordering = RETURN_IN_ORDER;
|
17502
|
272 ++optstring;
|
|
273 }
|
|
274 else if (optstring[0] == '+')
|
|
275 {
|
64639
|
276 d->__ordering = REQUIRE_ORDER;
|
17502
|
277 ++optstring;
|
|
278 }
|
64639
|
279 else if (d->__posixly_correct)
|
|
280 d->__ordering = REQUIRE_ORDER;
|
17502
|
281 else
|
64639
|
282 d->__ordering = PERMUTE;
|
17502
|
283
|
48647
|
284 #if defined _LIBC && defined USE_NONOPTION_FLAGS
|
64639
|
285 if (!d->__posixly_correct
|
48647
|
286 && argc == __libc_argc && argv == __libc_argv)
|
17502
|
287 {
|
64639
|
288 if (d->__nonoption_flags_max_len == 0)
|
17502
|
289 {
|
|
290 if (__getopt_nonoption_flags == NULL
|
|
291 || __getopt_nonoption_flags[0] == '\0')
|
64639
|
292 d->__nonoption_flags_max_len = -1;
|
17502
|
293 else
|
|
294 {
|
|
295 const char *orig_str = __getopt_nonoption_flags;
|
64639
|
296 int len = d->__nonoption_flags_max_len = strlen (orig_str);
|
|
297 if (d->__nonoption_flags_max_len < argc)
|
|
298 d->__nonoption_flags_max_len = argc;
|
17502
|
299 __getopt_nonoption_flags =
|
64639
|
300 (char *) malloc (d->__nonoption_flags_max_len);
|
17502
|
301 if (__getopt_nonoption_flags == NULL)
|
64639
|
302 d->__nonoption_flags_max_len = -1;
|
17502
|
303 else
|
20212
|
304 memset (__mempcpy (__getopt_nonoption_flags, orig_str, len),
|
64639
|
305 '\0', d->__nonoption_flags_max_len - len);
|
17502
|
306 }
|
|
307 }
|
64639
|
308 d->__nonoption_flags_len = d->__nonoption_flags_max_len;
|
17502
|
309 }
|
|
310 else
|
64639
|
311 d->__nonoption_flags_len = 0;
|
17502
|
312 #endif
|
|
313
|
|
314 return optstring;
|
|
315 }
|
|
316
|
|
317 /* Scan elements of ARGV (whose length is ARGC) for option characters
|
|
318 given in OPTSTRING.
|
|
319
|
|
320 If an element of ARGV starts with '-', and is not exactly "-" or "--",
|
|
321 then it is an option element. The characters of this element
|
|
322 (aside from the initial '-') are option characters. If `getopt'
|
|
323 is called repeatedly, it returns successively each of the option characters
|
|
324 from each of the option elements.
|
|
325
|
|
326 If `getopt' finds another option character, it returns that character,
|
|
327 updating `optind' and `nextchar' so that the next call to `getopt' can
|
|
328 resume the scan with the following option character or ARGV-element.
|
|
329
|
|
330 If there are no more option characters, `getopt' returns -1.
|
|
331 Then `optind' is the index in ARGV of the first ARGV-element
|
|
332 that is not an option. (The ARGV-elements have been permuted
|
|
333 so that those that are not options now come last.)
|
|
334
|
|
335 OPTSTRING is a string containing the legitimate option characters.
|
|
336 If an option character is seen that is not listed in OPTSTRING,
|
|
337 return '?' after printing an error message. If you set `opterr' to
|
|
338 zero, the error message is suppressed but we still return '?'.
|
|
339
|
|
340 If a char in OPTSTRING is followed by a colon, that means it wants an arg,
|
|
341 so the following text in the same ARGV-element, or the text of the following
|
|
342 ARGV-element, is returned in `optarg'. Two colons mean an option that
|
|
343 wants an optional arg; if there is text in the current ARGV-element,
|
|
344 it is returned in `optarg', otherwise `optarg' is set to zero.
|
|
345
|
|
346 If OPTSTRING starts with `-' or `+', it requests different methods of
|
|
347 handling the non-option ARGV-elements.
|
|
348 See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
|
|
349
|
|
350 Long-named options begin with `--' instead of `-'.
|
|
351 Their names may be abbreviated as long as the abbreviation is unique
|
|
352 or is an exact match for some defined option. If they have an
|
|
353 argument, it follows the option name in the same ARGV-element, separated
|
|
354 from the option name by a `=', or else the in next ARGV-element.
|
|
355 When `getopt' finds a long-named option, it returns 0 if that option's
|
|
356 `flag' field is nonzero, the value of the option's `val' field
|
|
357 if the `flag' field is zero.
|
|
358
|
|
359 LONGOPTS is a vector of `struct option' terminated by an
|
|
360 element containing a name which is zero.
|
|
361
|
|
362 LONGIND returns the index in LONGOPT of the long-named option found.
|
|
363 It is only valid when a long-named option has been found by the most
|
|
364 recent call.
|
|
365
|
|
366 If LONG_ONLY is nonzero, '-' as well as '--' can introduce
|
64639
|
367 long-named options.
|
|
368
|
|
369 If POSIXLY_CORRECT is nonzero, behave as if the POSIXLY_CORRECT
|
|
370 environment variable were set. */
|
17502
|
371
|
|
372 int
|
64639
|
373 _getopt_internal_r (int argc, char **argv, const char *optstring,
|
|
374 const struct option *longopts, int *longind,
|
|
375 int long_only, int posixly_correct, struct _getopt_data *d)
|
17502
|
376 {
|
64639
|
377 int print_errors = d->opterr;
|
48647
|
378 if (optstring[0] == ':')
|
|
379 print_errors = 0;
|
|
380
|
|
381 if (argc < 1)
|
|
382 return -1;
|
|
383
|
64639
|
384 d->optarg = NULL;
|
17502
|
385
|
64639
|
386 if (d->optind == 0 || !d->__initialized)
|
17502
|
387 {
|
64639
|
388 if (d->optind == 0)
|
|
389 d->optind = 1; /* Don't scan ARGV[0], the program name. */
|
|
390 optstring = _getopt_initialize (argc, argv, optstring,
|
|
391 posixly_correct, d);
|
|
392 d->__initialized = 1;
|
17502
|
393 }
|
|
394
|
|
395 /* Test whether ARGV[optind] points to a non-option argument.
|
|
396 Either it does not have option syntax, or there is an environment flag
|
|
397 from the shell indicating it is not an option. The later information
|
|
398 is only used when the used in the GNU libc. */
|
48647
|
399 #if defined _LIBC && defined USE_NONOPTION_FLAGS
|
64639
|
400 # define NONOPTION_P (argv[d->optind][0] != '-' || argv[d->optind][1] == '\0' \
|
|
401 || (d->optind < d->__nonoption_flags_len \
|
|
402 && __getopt_nonoption_flags[d->optind] == '1'))
|
17502
|
403 #else
|
64639
|
404 # define NONOPTION_P (argv[d->optind][0] != '-' || argv[d->optind][1] == '\0')
|
17502
|
405 #endif
|
|
406
|
64639
|
407 if (d->__nextchar == NULL || *d->__nextchar == '\0')
|
17502
|
408 {
|
|
409 /* Advance to the next ARGV-element. */
|
|
410
|
|
411 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
|
|
412 moved back by the user (who may also have changed the arguments). */
|
64639
|
413 if (d->__last_nonopt > d->optind)
|
|
414 d->__last_nonopt = d->optind;
|
|
415 if (d->__first_nonopt > d->optind)
|
|
416 d->__first_nonopt = d->optind;
|
17502
|
417
|
64639
|
418 if (d->__ordering == PERMUTE)
|
17502
|
419 {
|
|
420 /* If we have just processed some options following some non-options,
|
|
421 exchange them so that the options come first. */
|
|
422
|
64639
|
423 if (d->__first_nonopt != d->__last_nonopt
|
|
424 && d->__last_nonopt != d->optind)
|
|
425 exchange ((char **) argv, d);
|
|
426 else if (d->__last_nonopt != d->optind)
|
|
427 d->__first_nonopt = d->optind;
|
17502
|
428
|
|
429 /* Skip any additional non-options
|
|
430 and extend the range of non-options previously skipped. */
|
|
431
|
64639
|
432 while (d->optind < argc && NONOPTION_P)
|
|
433 d->optind++;
|
|
434 d->__last_nonopt = d->optind;
|
17502
|
435 }
|
|
436
|
|
437 /* The special ARGV-element `--' means premature end of options.
|
|
438 Skip it like a null option,
|
|
439 then exchange with previous non-options as if it were an option,
|
|
440 then skip everything else like a non-option. */
|
|
441
|
64639
|
442 if (d->optind != argc && !strcmp (argv[d->optind], "--"))
|
17502
|
443 {
|
64639
|
444 d->optind++;
|
17502
|
445
|
64639
|
446 if (d->__first_nonopt != d->__last_nonopt
|
|
447 && d->__last_nonopt != d->optind)
|
|
448 exchange ((char **) argv, d);
|
|
449 else if (d->__first_nonopt == d->__last_nonopt)
|
|
450 d->__first_nonopt = d->optind;
|
|
451 d->__last_nonopt = argc;
|
17502
|
452
|
64639
|
453 d->optind = argc;
|
17502
|
454 }
|
|
455
|
|
456 /* If we have done all the ARGV-elements, stop the scan
|
|
457 and back over any non-options that we skipped and permuted. */
|
|
458
|
64639
|
459 if (d->optind == argc)
|
17502
|
460 {
|
|
461 /* Set the next-arg-index to point at the non-options
|
|
462 that we previously skipped, so the caller will digest them. */
|
64639
|
463 if (d->__first_nonopt != d->__last_nonopt)
|
|
464 d->optind = d->__first_nonopt;
|
17502
|
465 return -1;
|
|
466 }
|
|
467
|
|
468 /* If we have come to a non-option and did not permute it,
|
|
469 either stop the scan or describe it to the caller and pass it by. */
|
|
470
|
|
471 if (NONOPTION_P)
|
|
472 {
|
64639
|
473 if (d->__ordering == REQUIRE_ORDER)
|
17502
|
474 return -1;
|
64639
|
475 d->optarg = argv[d->optind++];
|
17502
|
476 return 1;
|
|
477 }
|
|
478
|
|
479 /* We have found another option-ARGV-element.
|
|
480 Skip the initial punctuation. */
|
|
481
|
64639
|
482 d->__nextchar = (argv[d->optind] + 1
|
|
483 + (longopts != NULL && argv[d->optind][1] == '-'));
|
17502
|
484 }
|
|
485
|
|
486 /* Decode the current option-ARGV-element. */
|
|
487
|
|
488 /* Check whether the ARGV-element is a long option.
|
|
489
|
|
490 If long_only and the ARGV-element has the form "-f", where f is
|
|
491 a valid short option, don't consider it an abbreviated form of
|
|
492 a long option that starts with f. Otherwise there would be no
|
|
493 way to give the -f short option.
|
|
494
|
|
495 On the other hand, if there's a long option "fubar" and
|
|
496 the ARGV-element is "-fu", do consider that an abbreviation of
|
|
497 the long option, just like "--fu", and not "-f" with arg "u".
|
|
498
|
|
499 This distinction seems to be the most useful approach. */
|
|
500
|
|
501 if (longopts != NULL
|
64639
|
502 && (argv[d->optind][1] == '-'
|
|
503 || (long_only && (argv[d->optind][2]
|
|
504 || !strchr (optstring, argv[d->optind][1])))))
|
17502
|
505 {
|
|
506 char *nameend;
|
|
507 const struct option *p;
|
|
508 const struct option *pfound = NULL;
|
|
509 int exact = 0;
|
|
510 int ambig = 0;
|
|
511 int indfound = -1;
|
|
512 int option_index;
|
|
513
|
64639
|
514 for (nameend = d->__nextchar; *nameend && *nameend != '='; nameend++)
|
17502
|
515 /* Do nothing. */ ;
|
|
516
|
|
517 /* Test all long options for either exact match
|
|
518 or abbreviated matches. */
|
|
519 for (p = longopts, option_index = 0; p->name; p++, option_index++)
|
64639
|
520 if (!strncmp (p->name, d->__nextchar, nameend - d->__nextchar))
|
17502
|
521 {
|
64639
|
522 if ((unsigned int) (nameend - d->__nextchar)
|
17502
|
523 == (unsigned int) strlen (p->name))
|
|
524 {
|
|
525 /* Exact match found. */
|
|
526 pfound = p;
|
|
527 indfound = option_index;
|
|
528 exact = 1;
|
|
529 break;
|
|
530 }
|
|
531 else if (pfound == NULL)
|
|
532 {
|
|
533 /* First nonexact match found. */
|
|
534 pfound = p;
|
|
535 indfound = option_index;
|
|
536 }
|
48647
|
537 else if (long_only
|
|
538 || pfound->has_arg != p->has_arg
|
|
539 || pfound->flag != p->flag
|
|
540 || pfound->val != p->val)
|
17502
|
541 /* Second or later nonexact match found. */
|
|
542 ambig = 1;
|
|
543 }
|
|
544
|
|
545 if (ambig && !exact)
|
|
546 {
|
48647
|
547 if (print_errors)
|
|
548 {
|
|
549 #if defined _LIBC && defined USE_IN_LIBIO
|
|
550 char *buf;
|
|
551
|
|
552 if (__asprintf (&buf, _("%s: option `%s' is ambiguous\n"),
|
64639
|
553 argv[0], argv[d->optind]) >= 0)
|
48647
|
554 {
|
64639
|
555 _IO_flockfile (stderr);
|
|
556
|
|
557 int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
|
|
558 ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
|
48647
|
559
|
|
560 if (_IO_fwide (stderr, 0) > 0)
|
|
561 __fwprintf (stderr, L"%s", buf);
|
|
562 else
|
|
563 fputs (buf, stderr);
|
|
564
|
64639
|
565 ((_IO_FILE *) stderr)->_flags2 = old_flags2;
|
|
566 _IO_funlockfile (stderr);
|
|
567
|
48647
|
568 free (buf);
|
|
569 }
|
|
570 #else
|
|
571 fprintf (stderr, _("%s: option `%s' is ambiguous\n"),
|
64639
|
572 argv[0], argv[d->optind]);
|
48647
|
573 #endif
|
|
574 }
|
64639
|
575 d->__nextchar += strlen (d->__nextchar);
|
|
576 d->optind++;
|
|
577 d->optopt = 0;
|
17502
|
578 return '?';
|
|
579 }
|
|
580
|
|
581 if (pfound != NULL)
|
|
582 {
|
|
583 option_index = indfound;
|
64639
|
584 d->optind++;
|
17502
|
585 if (*nameend)
|
|
586 {
|
|
587 /* Don't test has_arg with >, because some C compilers don't
|
|
588 allow it to be used on enums. */
|
|
589 if (pfound->has_arg)
|
64639
|
590 d->optarg = nameend + 1;
|
17502
|
591 else
|
|
592 {
|
48647
|
593 if (print_errors)
|
26083
|
594 {
|
48647
|
595 #if defined _LIBC && defined USE_IN_LIBIO
|
|
596 char *buf;
|
|
597 int n;
|
|
598 #endif
|
|
599
|
64639
|
600 if (argv[d->optind - 1][1] == '-')
|
48647
|
601 {
|
|
602 /* --option */
|
|
603 #if defined _LIBC && defined USE_IN_LIBIO
|
|
604 n = __asprintf (&buf, _("\
|
|
605 %s: option `--%s' doesn't allow an argument\n"),
|
|
606 argv[0], pfound->name);
|
|
607 #else
|
|
608 fprintf (stderr, _("\
|
|
609 %s: option `--%s' doesn't allow an argument\n"),
|
|
610 argv[0], pfound->name);
|
|
611 #endif
|
|
612 }
|
26083
|
613 else
|
48647
|
614 {
|
|
615 /* +option or -option */
|
|
616 #if defined _LIBC && defined USE_IN_LIBIO
|
|
617 n = __asprintf (&buf, _("\
|
|
618 %s: option `%c%s' doesn't allow an argument\n"),
|
64639
|
619 argv[0], argv[d->optind - 1][0],
|
48647
|
620 pfound->name);
|
|
621 #else
|
|
622 fprintf (stderr, _("\
|
|
623 %s: option `%c%s' doesn't allow an argument\n"),
|
64639
|
624 argv[0], argv[d->optind - 1][0],
|
|
625 pfound->name);
|
48647
|
626 #endif
|
|
627 }
|
|
628
|
|
629 #if defined _LIBC && defined USE_IN_LIBIO
|
|
630 if (n >= 0)
|
|
631 {
|
64639
|
632 _IO_flockfile (stderr);
|
|
633
|
|
634 int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
|
|
635 ((_IO_FILE *) stderr)->_flags2
|
|
636 |= _IO_FLAGS2_NOTCANCEL;
|
|
637
|
48647
|
638 if (_IO_fwide (stderr, 0) > 0)
|
|
639 __fwprintf (stderr, L"%s", buf);
|
|
640 else
|
|
641 fputs (buf, stderr);
|
|
642
|
64639
|
643 ((_IO_FILE *) stderr)->_flags2 = old_flags2;
|
|
644 _IO_funlockfile (stderr);
|
|
645
|
48647
|
646 free (buf);
|
|
647 }
|
|
648 #endif
|
26083
|
649 }
|
17502
|
650
|
64639
|
651 d->__nextchar += strlen (d->__nextchar);
|
17502
|
652
|
64639
|
653 d->optopt = pfound->val;
|
17502
|
654 return '?';
|
|
655 }
|
|
656 }
|
|
657 else if (pfound->has_arg == 1)
|
|
658 {
|
64639
|
659 if (d->optind < argc)
|
|
660 d->optarg = argv[d->optind++];
|
17502
|
661 else
|
|
662 {
|
48647
|
663 if (print_errors)
|
|
664 {
|
|
665 #if defined _LIBC && defined USE_IN_LIBIO
|
|
666 char *buf;
|
|
667
|
|
668 if (__asprintf (&buf, _("\
|
|
669 %s: option `%s' requires an argument\n"),
|
64639
|
670 argv[0], argv[d->optind - 1]) >= 0)
|
48647
|
671 {
|
64639
|
672 _IO_flockfile (stderr);
|
|
673
|
|
674 int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
|
|
675 ((_IO_FILE *) stderr)->_flags2
|
|
676 |= _IO_FLAGS2_NOTCANCEL;
|
|
677
|
48647
|
678 if (_IO_fwide (stderr, 0) > 0)
|
|
679 __fwprintf (stderr, L"%s", buf);
|
|
680 else
|
|
681 fputs (buf, stderr);
|
|
682
|
64639
|
683 ((_IO_FILE *) stderr)->_flags2 = old_flags2;
|
|
684 _IO_funlockfile (stderr);
|
|
685
|
48647
|
686 free (buf);
|
|
687 }
|
|
688 #else
|
|
689 fprintf (stderr,
|
|
690 _("%s: option `%s' requires an argument\n"),
|
64639
|
691 argv[0], argv[d->optind - 1]);
|
48647
|
692 #endif
|
|
693 }
|
64639
|
694 d->__nextchar += strlen (d->__nextchar);
|
|
695 d->optopt = pfound->val;
|
17502
|
696 return optstring[0] == ':' ? ':' : '?';
|
|
697 }
|
|
698 }
|
64639
|
699 d->__nextchar += strlen (d->__nextchar);
|
17502
|
700 if (longind != NULL)
|
|
701 *longind = option_index;
|
|
702 if (pfound->flag)
|
|
703 {
|
|
704 *(pfound->flag) = pfound->val;
|
|
705 return 0;
|
|
706 }
|
|
707 return pfound->val;
|
|
708 }
|
|
709
|
|
710 /* Can't find it as a long option. If this is not getopt_long_only,
|
|
711 or the option starts with '--' or is not a valid short
|
|
712 option, then it's an error.
|
|
713 Otherwise interpret it as a short option. */
|
64639
|
714 if (!long_only || argv[d->optind][1] == '-'
|
|
715 || strchr (optstring, *d->__nextchar) == NULL)
|
17502
|
716 {
|
48647
|
717 if (print_errors)
|
17502
|
718 {
|
48647
|
719 #if defined _LIBC && defined USE_IN_LIBIO
|
|
720 char *buf;
|
|
721 int n;
|
|
722 #endif
|
|
723
|
64639
|
724 if (argv[d->optind][1] == '-')
|
48647
|
725 {
|
|
726 /* --option */
|
|
727 #if defined _LIBC && defined USE_IN_LIBIO
|
|
728 n = __asprintf (&buf, _("%s: unrecognized option `--%s'\n"),
|
64639
|
729 argv[0], d->__nextchar);
|
48647
|
730 #else
|
|
731 fprintf (stderr, _("%s: unrecognized option `--%s'\n"),
|
64639
|
732 argv[0], d->__nextchar);
|
48647
|
733 #endif
|
|
734 }
|
17502
|
735 else
|
48647
|
736 {
|
|
737 /* +option or -option */
|
|
738 #if defined _LIBC && defined USE_IN_LIBIO
|
|
739 n = __asprintf (&buf, _("%s: unrecognized option `%c%s'\n"),
|
64639
|
740 argv[0], argv[d->optind][0], d->__nextchar);
|
48647
|
741 #else
|
|
742 fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),
|
64639
|
743 argv[0], argv[d->optind][0], d->__nextchar);
|
48647
|
744 #endif
|
|
745 }
|
|
746
|
|
747 #if defined _LIBC && defined USE_IN_LIBIO
|
|
748 if (n >= 0)
|
|
749 {
|
64639
|
750 _IO_flockfile (stderr);
|
|
751
|
|
752 int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
|
|
753 ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
|
|
754
|
48647
|
755 if (_IO_fwide (stderr, 0) > 0)
|
|
756 __fwprintf (stderr, L"%s", buf);
|
|
757 else
|
|
758 fputs (buf, stderr);
|
|
759
|
64639
|
760 ((_IO_FILE *) stderr)->_flags2 = old_flags2;
|
|
761 _IO_funlockfile (stderr);
|
|
762
|
48647
|
763 free (buf);
|
|
764 }
|
|
765 #endif
|
17502
|
766 }
|
64639
|
767 d->__nextchar = (char *) "";
|
|
768 d->optind++;
|
|
769 d->optopt = 0;
|
17502
|
770 return '?';
|
|
771 }
|
|
772 }
|
|
773
|
|
774 /* Look at and handle the next short option-character. */
|
|
775
|
|
776 {
|
64639
|
777 char c = *d->__nextchar++;
|
|
778 char *temp = strchr (optstring, c);
|
17502
|
779
|
|
780 /* Increment `optind' when we start to process its last character. */
|
64639
|
781 if (*d->__nextchar == '\0')
|
|
782 ++d->optind;
|
17502
|
783
|
|
784 if (temp == NULL || c == ':')
|
|
785 {
|
48647
|
786 if (print_errors)
|
17502
|
787 {
|
48647
|
788 #if defined _LIBC && defined USE_IN_LIBIO
|
|
789 char *buf;
|
|
790 int n;
|
|
791 #endif
|
|
792
|
64639
|
793 if (d->__posixly_correct)
|
48647
|
794 {
|
|
795 /* 1003.2 specifies the format of this message. */
|
|
796 #if defined _LIBC && defined USE_IN_LIBIO
|
|
797 n = __asprintf (&buf, _("%s: illegal option -- %c\n"),
|
|
798 argv[0], c);
|
|
799 #else
|
|
800 fprintf (stderr, _("%s: illegal option -- %c\n"), argv[0], c);
|
|
801 #endif
|
|
802 }
|
17502
|
803 else
|
48647
|
804 {
|
|
805 #if defined _LIBC && defined USE_IN_LIBIO
|
|
806 n = __asprintf (&buf, _("%s: invalid option -- %c\n"),
|
|
807 argv[0], c);
|
|
808 #else
|
|
809 fprintf (stderr, _("%s: invalid option -- %c\n"), argv[0], c);
|
|
810 #endif
|
|
811 }
|
|
812
|
|
813 #if defined _LIBC && defined USE_IN_LIBIO
|
|
814 if (n >= 0)
|
|
815 {
|
64639
|
816 _IO_flockfile (stderr);
|
|
817
|
|
818 int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
|
|
819 ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
|
|
820
|
48647
|
821 if (_IO_fwide (stderr, 0) > 0)
|
|
822 __fwprintf (stderr, L"%s", buf);
|
|
823 else
|
|
824 fputs (buf, stderr);
|
|
825
|
64639
|
826 ((_IO_FILE *) stderr)->_flags2 = old_flags2;
|
|
827 _IO_funlockfile (stderr);
|
|
828
|
48647
|
829 free (buf);
|
|
830 }
|
|
831 #endif
|
17502
|
832 }
|
64639
|
833 d->optopt = c;
|
17502
|
834 return '?';
|
|
835 }
|
|
836 /* Convenience. Treat POSIX -W foo same as long option --foo */
|
|
837 if (temp[0] == 'W' && temp[1] == ';')
|
|
838 {
|
|
839 char *nameend;
|
|
840 const struct option *p;
|
|
841 const struct option *pfound = NULL;
|
|
842 int exact = 0;
|
|
843 int ambig = 0;
|
|
844 int indfound = 0;
|
|
845 int option_index;
|
|
846
|
|
847 /* This is an option that requires an argument. */
|
64639
|
848 if (*d->__nextchar != '\0')
|
17502
|
849 {
|
64639
|
850 d->optarg = d->__nextchar;
|
17502
|
851 /* If we end this ARGV-element by taking the rest as an arg,
|
|
852 we must advance to the next element now. */
|
64639
|
853 d->optind++;
|
17502
|
854 }
|
64639
|
855 else if (d->optind == argc)
|
17502
|
856 {
|
48647
|
857 if (print_errors)
|
17502
|
858 {
|
|
859 /* 1003.2 specifies the format of this message. */
|
48647
|
860 #if defined _LIBC && defined USE_IN_LIBIO
|
|
861 char *buf;
|
|
862
|
|
863 if (__asprintf (&buf,
|
|
864 _("%s: option requires an argument -- %c\n"),
|
|
865 argv[0], c) >= 0)
|
|
866 {
|
64639
|
867 _IO_flockfile (stderr);
|
|
868
|
|
869 int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
|
|
870 ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
|
|
871
|
48647
|
872 if (_IO_fwide (stderr, 0) > 0)
|
|
873 __fwprintf (stderr, L"%s", buf);
|
|
874 else
|
|
875 fputs (buf, stderr);
|
|
876
|
64639
|
877 ((_IO_FILE *) stderr)->_flags2 = old_flags2;
|
|
878 _IO_funlockfile (stderr);
|
|
879
|
48647
|
880 free (buf);
|
|
881 }
|
|
882 #else
|
17502
|
883 fprintf (stderr, _("%s: option requires an argument -- %c\n"),
|
|
884 argv[0], c);
|
48647
|
885 #endif
|
17502
|
886 }
|
64639
|
887 d->optopt = c;
|
17502
|
888 if (optstring[0] == ':')
|
|
889 c = ':';
|
|
890 else
|
|
891 c = '?';
|
|
892 return c;
|
|
893 }
|
|
894 else
|
64639
|
895 /* We already incremented `d->optind' once;
|
17502
|
896 increment it again when taking next ARGV-elt as argument. */
|
64639
|
897 d->optarg = argv[d->optind++];
|
17502
|
898
|
|
899 /* optarg is now the argument, see if it's in the
|
|
900 table of longopts. */
|
|
901
|
64639
|
902 for (d->__nextchar = nameend = d->optarg; *nameend && *nameend != '=';
|
|
903 nameend++)
|
17502
|
904 /* Do nothing. */ ;
|
|
905
|
|
906 /* Test all long options for either exact match
|
|
907 or abbreviated matches. */
|
|
908 for (p = longopts, option_index = 0; p->name; p++, option_index++)
|
64639
|
909 if (!strncmp (p->name, d->__nextchar, nameend - d->__nextchar))
|
17502
|
910 {
|
64639
|
911 if ((unsigned int) (nameend - d->__nextchar) == strlen (p->name))
|
17502
|
912 {
|
|
913 /* Exact match found. */
|
|
914 pfound = p;
|
|
915 indfound = option_index;
|
|
916 exact = 1;
|
|
917 break;
|
|
918 }
|
|
919 else if (pfound == NULL)
|
|
920 {
|
|
921 /* First nonexact match found. */
|
|
922 pfound = p;
|
|
923 indfound = option_index;
|
|
924 }
|
|
925 else
|
|
926 /* Second or later nonexact match found. */
|
|
927 ambig = 1;
|
|
928 }
|
|
929 if (ambig && !exact)
|
|
930 {
|
48647
|
931 if (print_errors)
|
|
932 {
|
|
933 #if defined _LIBC && defined USE_IN_LIBIO
|
|
934 char *buf;
|
|
935
|
|
936 if (__asprintf (&buf, _("%s: option `-W %s' is ambiguous\n"),
|
64639
|
937 argv[0], argv[d->optind]) >= 0)
|
48647
|
938 {
|
64639
|
939 _IO_flockfile (stderr);
|
|
940
|
|
941 int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
|
|
942 ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
|
|
943
|
48647
|
944 if (_IO_fwide (stderr, 0) > 0)
|
|
945 __fwprintf (stderr, L"%s", buf);
|
|
946 else
|
|
947 fputs (buf, stderr);
|
|
948
|
64639
|
949 ((_IO_FILE *) stderr)->_flags2 = old_flags2;
|
|
950 _IO_funlockfile (stderr);
|
|
951
|
48647
|
952 free (buf);
|
|
953 }
|
|
954 #else
|
|
955 fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"),
|
64639
|
956 argv[0], argv[d->optind]);
|
48647
|
957 #endif
|
|
958 }
|
64639
|
959 d->__nextchar += strlen (d->__nextchar);
|
|
960 d->optind++;
|
17502
|
961 return '?';
|
|
962 }
|
|
963 if (pfound != NULL)
|
|
964 {
|
|
965 option_index = indfound;
|
|
966 if (*nameend)
|
|
967 {
|
|
968 /* Don't test has_arg with >, because some C compilers don't
|
|
969 allow it to be used on enums. */
|
|
970 if (pfound->has_arg)
|
64639
|
971 d->optarg = nameend + 1;
|
17502
|
972 else
|
|
973 {
|
48647
|
974 if (print_errors)
|
|
975 {
|
|
976 #if defined _LIBC && defined USE_IN_LIBIO
|
|
977 char *buf;
|
|
978
|
|
979 if (__asprintf (&buf, _("\
|
17502
|
980 %s: option `-W %s' doesn't allow an argument\n"),
|
48647
|
981 argv[0], pfound->name) >= 0)
|
|
982 {
|
64639
|
983 _IO_flockfile (stderr);
|
|
984
|
|
985 int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
|
|
986 ((_IO_FILE *) stderr)->_flags2
|
|
987 |= _IO_FLAGS2_NOTCANCEL;
|
|
988
|
48647
|
989 if (_IO_fwide (stderr, 0) > 0)
|
|
990 __fwprintf (stderr, L"%s", buf);
|
|
991 else
|
|
992 fputs (buf, stderr);
|
|
993
|
64639
|
994 ((_IO_FILE *) stderr)->_flags2 = old_flags2;
|
|
995 _IO_funlockfile (stderr);
|
|
996
|
48647
|
997 free (buf);
|
|
998 }
|
|
999 #else
|
|
1000 fprintf (stderr, _("\
|
|
1001 %s: option `-W %s' doesn't allow an argument\n"),
|
|
1002 argv[0], pfound->name);
|
|
1003 #endif
|
|
1004 }
|
17502
|
1005
|
64639
|
1006 d->__nextchar += strlen (d->__nextchar);
|
17502
|
1007 return '?';
|
|
1008 }
|
|
1009 }
|
|
1010 else if (pfound->has_arg == 1)
|
|
1011 {
|
64639
|
1012 if (d->optind < argc)
|
|
1013 d->optarg = argv[d->optind++];
|
17502
|
1014 else
|
|
1015 {
|
48647
|
1016 if (print_errors)
|
|
1017 {
|
|
1018 #if defined _LIBC && defined USE_IN_LIBIO
|
|
1019 char *buf;
|
|
1020
|
|
1021 if (__asprintf (&buf, _("\
|
|
1022 %s: option `%s' requires an argument\n"),
|
64639
|
1023 argv[0], argv[d->optind - 1]) >= 0)
|
48647
|
1024 {
|
64639
|
1025 _IO_flockfile (stderr);
|
|
1026
|
|
1027 int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
|
|
1028 ((_IO_FILE *) stderr)->_flags2
|
|
1029 |= _IO_FLAGS2_NOTCANCEL;
|
|
1030
|
48647
|
1031 if (_IO_fwide (stderr, 0) > 0)
|
|
1032 __fwprintf (stderr, L"%s", buf);
|
|
1033 else
|
|
1034 fputs (buf, stderr);
|
|
1035
|
64639
|
1036 ((_IO_FILE *) stderr)->_flags2 = old_flags2;
|
|
1037 _IO_funlockfile (stderr);
|
|
1038
|
48647
|
1039 free (buf);
|
|
1040 }
|
|
1041 #else
|
|
1042 fprintf (stderr,
|
|
1043 _("%s: option `%s' requires an argument\n"),
|
64639
|
1044 argv[0], argv[d->optind - 1]);
|
48647
|
1045 #endif
|
|
1046 }
|
64639
|
1047 d->__nextchar += strlen (d->__nextchar);
|
17502
|
1048 return optstring[0] == ':' ? ':' : '?';
|
|
1049 }
|
|
1050 }
|
64639
|
1051 d->__nextchar += strlen (d->__nextchar);
|
17502
|
1052 if (longind != NULL)
|
|
1053 *longind = option_index;
|
|
1054 if (pfound->flag)
|
|
1055 {
|
|
1056 *(pfound->flag) = pfound->val;
|
|
1057 return 0;
|
|
1058 }
|
|
1059 return pfound->val;
|
|
1060 }
|
64639
|
1061 d->__nextchar = NULL;
|
17502
|
1062 return 'W'; /* Let the application handle it. */
|
|
1063 }
|
|
1064 if (temp[1] == ':')
|
|
1065 {
|
|
1066 if (temp[2] == ':')
|
|
1067 {
|
|
1068 /* This is an option that accepts an argument optionally. */
|
64639
|
1069 if (*d->__nextchar != '\0')
|
17502
|
1070 {
|
64639
|
1071 d->optarg = d->__nextchar;
|
|
1072 d->optind++;
|
17502
|
1073 }
|
|
1074 else
|
64639
|
1075 d->optarg = NULL;
|
|
1076 d->__nextchar = NULL;
|
17502
|
1077 }
|
|
1078 else
|
|
1079 {
|
|
1080 /* This is an option that requires an argument. */
|
64639
|
1081 if (*d->__nextchar != '\0')
|
17502
|
1082 {
|
64639
|
1083 d->optarg = d->__nextchar;
|
17502
|
1084 /* If we end this ARGV-element by taking the rest as an arg,
|
|
1085 we must advance to the next element now. */
|
64639
|
1086 d->optind++;
|
17502
|
1087 }
|
64639
|
1088 else if (d->optind == argc)
|
17502
|
1089 {
|
48647
|
1090 if (print_errors)
|
17502
|
1091 {
|
|
1092 /* 1003.2 specifies the format of this message. */
|
48647
|
1093 #if defined _LIBC && defined USE_IN_LIBIO
|
|
1094 char *buf;
|
|
1095
|
|
1096 if (__asprintf (&buf, _("\
|
|
1097 %s: option requires an argument -- %c\n"),
|
|
1098 argv[0], c) >= 0)
|
|
1099 {
|
64639
|
1100 _IO_flockfile (stderr);
|
|
1101
|
|
1102 int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
|
|
1103 ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
|
|
1104
|
48647
|
1105 if (_IO_fwide (stderr, 0) > 0)
|
|
1106 __fwprintf (stderr, L"%s", buf);
|
|
1107 else
|
|
1108 fputs (buf, stderr);
|
|
1109
|
64639
|
1110 ((_IO_FILE *) stderr)->_flags2 = old_flags2;
|
|
1111 _IO_funlockfile (stderr);
|
|
1112
|
48647
|
1113 free (buf);
|
|
1114 }
|
|
1115 #else
|
17502
|
1116 fprintf (stderr,
|
48647
|
1117 _("%s: option requires an argument -- %c\n"),
|
|
1118 argv[0], c);
|
|
1119 #endif
|
17502
|
1120 }
|
64639
|
1121 d->optopt = c;
|
17502
|
1122 if (optstring[0] == ':')
|
|
1123 c = ':';
|
|
1124 else
|
|
1125 c = '?';
|
|
1126 }
|
|
1127 else
|
|
1128 /* We already incremented `optind' once;
|
|
1129 increment it again when taking next ARGV-elt as argument. */
|
64639
|
1130 d->optarg = argv[d->optind++];
|
|
1131 d->__nextchar = NULL;
|
17502
|
1132 }
|
|
1133 }
|
|
1134 return c;
|
|
1135 }
|
|
1136 }
|
|
1137
|
|
1138 int
|
64639
|
1139 _getopt_internal (int argc, char **argv, const char *optstring,
|
|
1140 const struct option *longopts, int *longind,
|
|
1141 int long_only, int posixly_correct)
|
17502
|
1142 {
|
64639
|
1143 int result;
|
|
1144
|
|
1145 getopt_data.optind = optind;
|
|
1146 getopt_data.opterr = opterr;
|
|
1147
|
|
1148 result = _getopt_internal_r (argc, argv, optstring, longopts, longind,
|
|
1149 long_only, posixly_correct, &getopt_data);
|
|
1150
|
|
1151 optind = getopt_data.optind;
|
|
1152 optarg = getopt_data.optarg;
|
|
1153 optopt = getopt_data.optopt;
|
|
1154
|
|
1155 return result;
|
17502
|
1156 }
|
|
1157
|
64639
|
1158 /* glibc gets a LSB-compliant getopt.
|
|
1159 Standalone applications get a POSIX-compliant getopt. */
|
|
1160 #if _LIBC
|
|
1161 enum { POSIXLY_CORRECT = 0 };
|
|
1162 #else
|
|
1163 enum { POSIXLY_CORRECT = 1 };
|
|
1164 #endif
|
|
1165
|
|
1166 int
|
|
1167 getopt (int argc, char *const *argv, const char *optstring)
|
|
1168 {
|
|
1169 return _getopt_internal (argc, (char **) argv, optstring, NULL, NULL, 0,
|
|
1170 POSIXLY_CORRECT);
|
|
1171 }
|
|
1172
|
17502
|
1173
|
|
1174 #ifdef TEST
|
|
1175
|
|
1176 /* Compile with -DTEST to make an executable for use in testing
|
|
1177 the above definition of `getopt'. */
|
|
1178
|
|
1179 int
|
64639
|
1180 main (int argc, char **argv)
|
17502
|
1181 {
|
|
1182 int c;
|
|
1183 int digit_optind = 0;
|
|
1184
|
|
1185 while (1)
|
|
1186 {
|
|
1187 int this_option_optind = optind ? optind : 1;
|
|
1188
|
|
1189 c = getopt (argc, argv, "abc:d:0123456789");
|
|
1190 if (c == -1)
|
|
1191 break;
|
|
1192
|
|
1193 switch (c)
|
|
1194 {
|
|
1195 case '0':
|
|
1196 case '1':
|
|
1197 case '2':
|
|
1198 case '3':
|
|
1199 case '4':
|
|
1200 case '5':
|
|
1201 case '6':
|
|
1202 case '7':
|
|
1203 case '8':
|
|
1204 case '9':
|
|
1205 if (digit_optind != 0 && digit_optind != this_option_optind)
|
|
1206 printf ("digits occur in two different argv-elements.\n");
|
|
1207 digit_optind = this_option_optind;
|
|
1208 printf ("option %c\n", c);
|
|
1209 break;
|
|
1210
|
|
1211 case 'a':
|
|
1212 printf ("option a\n");
|
|
1213 break;
|
|
1214
|
|
1215 case 'b':
|
|
1216 printf ("option b\n");
|
|
1217 break;
|
|
1218
|
|
1219 case 'c':
|
|
1220 printf ("option c with value `%s'\n", optarg);
|
|
1221 break;
|
|
1222
|
|
1223 case '?':
|
|
1224 break;
|
|
1225
|
|
1226 default:
|
|
1227 printf ("?? getopt returned character code 0%o ??\n", c);
|
|
1228 }
|
|
1229 }
|
|
1230
|
|
1231 if (optind < argc)
|
|
1232 {
|
|
1233 printf ("non-option ARGV-elements: ");
|
|
1234 while (optind < argc)
|
|
1235 printf ("%s ", argv[optind++]);
|
|
1236 printf ("\n");
|
|
1237 }
|
|
1238
|
|
1239 exit (0);
|
|
1240 }
|
|
1241
|
|
1242 #endif /* TEST */
|
64642
|
1243
|
|
1244 /* arch-tag: 0e6da124-7269-4785-a9de-094c263d20dc
|
|
1245 (do not change this comment) */
|