source: vendor/tar/1.16.1/lib/argp-parse.c@ 3342

Last change on this file since 3342 was 3342, checked in by bird, 18 years ago

tar 1.16.1

File size: 28.8 KB
Line 
1/* Hierarchial argument parsing, layered over getopt
2 Copyright (C) 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Written by Miles Bader <miles@gnu.ai.mit.edu>.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation,
18 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19
20#ifdef HAVE_CONFIG_H
21# include <config.h>
22#endif
23
24#include <alloca.h>
25#include <stddef.h>
26#include <stdlib.h>
27#include <string.h>
28#include <unistd.h>
29#include <limits.h>
30#include <getopt.h>
31#include <getopt_int.h>
32
33#ifdef _LIBC
34# include <libintl.h>
35# undef dgettext
36# define dgettext(domain, msgid) \
37 INTUSE(__dcgettext) (domain, msgid, LC_MESSAGES)
38#else
39# include "gettext.h"
40#endif
41#define N_(msgid) msgid
42
43#include "argp.h"
44#include "argp-namefrob.h"
45
46#define alignof(type) offsetof (struct { char c; type x; }, x)
47#define alignto(n, d) ((((n) + (d) - 1) / (d)) * (d))
48
49/* Getopt return values. */
50#define KEY_END (-1) /* The end of the options. */
51#define KEY_ARG 1 /* A non-option argument. */
52#define KEY_ERR '?' /* An error parsing the options. */
53
54/* The meta-argument used to prevent any further arguments being interpreted
55 as options. */
56#define QUOTE "--"
57
58/* The number of bits we steal in a long-option value for our own use. */
59#define GROUP_BITS CHAR_BIT
60
61/* The number of bits available for the user value. */
62#define USER_BITS ((sizeof ((struct option *)0)->val * CHAR_BIT) - GROUP_BITS)
63#define USER_MASK ((1 << USER_BITS) - 1)
64
65/* EZ alias for ARGP_ERR_UNKNOWN. */
66#define EBADKEY ARGP_ERR_UNKNOWN
67
68
69/* Default options. */
70
71/* When argp is given the --HANG switch, _ARGP_HANG is set and argp will sleep
72 for one second intervals, decrementing _ARGP_HANG until it's zero. Thus
73 you can force the program to continue by attaching a debugger and setting
74 it to 0 yourself. */
75static volatile int _argp_hang;
76
77#define OPT_PROGNAME -2
78#define OPT_USAGE -3
79#define OPT_HANG -4
80
81static const struct argp_option argp_default_options[] =
82{
83 {"help", '?', 0, 0, N_("give this help list"), -1},
84 {"usage", OPT_USAGE, 0, 0, N_("give a short usage message"), 0},
85 {"program-name",OPT_PROGNAME,N_("NAME"), OPTION_HIDDEN, N_("set the program name"), 0},
86 {"HANG", OPT_HANG, N_("SECS"), OPTION_ARG_OPTIONAL | OPTION_HIDDEN,
87 N_("hang for SECS seconds (default 3600)"), 0},
88 {NULL, 0, 0, 0, NULL, 0}
89};
90
91static error_t
92argp_default_parser (int key, char *arg, struct argp_state *state)
93{
94 switch (key)
95 {
96 case '?':
97 __argp_state_help (state, state->out_stream, ARGP_HELP_STD_HELP);
98 break;
99 case OPT_USAGE:
100 __argp_state_help (state, state->out_stream,
101 ARGP_HELP_USAGE | ARGP_HELP_EXIT_OK);
102 break;
103
104 case OPT_PROGNAME: /* Set the program name. */
105#if defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_NAME
106 program_invocation_name = arg;
107#endif
108 /* [Note that some systems only have PROGRAM_INVOCATION_SHORT_NAME (aka
109 __PROGNAME), in which case, PROGRAM_INVOCATION_NAME is just defined
110 to be that, so we have to be a bit careful here.] */
111
112 /* Update what we use for messages. */
113 state->name = __argp_base_name (arg);
114
115#if defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
116 program_invocation_short_name = state->name;
117#endif
118
119 if ((state->flags & (ARGP_PARSE_ARGV0 | ARGP_NO_ERRS))
120 == ARGP_PARSE_ARGV0)
121 /* Update what getopt uses too. */
122 state->argv[0] = arg;
123
124 break;
125
126 case OPT_HANG:
127 _argp_hang = atoi (arg ? arg : "3600");
128 while (_argp_hang-- > 0)
129 __sleep (1);
130 break;
131
132 default:
133 return EBADKEY;
134 }
135 return 0;
136}
137
138static const struct argp argp_default_argp =
139 {argp_default_options, &argp_default_parser, NULL, NULL, NULL, NULL, "libc"};
140
141
142
143static const struct argp_option argp_version_options[] =
144{
145 {"version", 'V', 0, 0, N_("print program version"), -1},
146 {NULL, 0, 0, 0, NULL, 0}
147};
148
149static error_t
150argp_version_parser (int key, char *arg, struct argp_state *state)
151{
152 switch (key)
153 {
154 case 'V':
155 if (argp_program_version_hook)
156 (*argp_program_version_hook) (state->out_stream, state);
157 else if (argp_program_version)
158 fprintf (state->out_stream, "%s\n", argp_program_version);
159 else
160 __argp_error (state, dgettext (state->root_argp->argp_domain,
161 "(PROGRAM ERROR) No version known!?"));
162 if (! (state->flags & ARGP_NO_EXIT))
163 exit (0);
164 break;
165 default:
166 return EBADKEY;
167 }
168 return 0;
169}
170
171static const struct argp argp_version_argp =
172 {argp_version_options, &argp_version_parser, NULL, NULL, NULL, NULL, "libc"};
173
174
175/* Returns the offset into the getopt long options array LONG_OPTIONS of a
176 long option with called NAME, or -1 if none is found. Passing NULL as
177 NAME will return the number of options. */
178static int
179find_long_option (struct option *long_options, const char *name)
180{
181 struct option *l = long_options;
182 while (l->name != NULL)
183 if (name != NULL && strcmp (l->name, name) == 0)
184 return l - long_options;
185 else
186 l++;
187 if (name == NULL)
188 return l - long_options;
189 else
190 return -1;
191}
192
193
194
195/* The state of a `group' during parsing. Each group corresponds to a
196 particular argp structure from the tree of such descending from the top
197 level argp passed to argp_parse. */
198struct group
199{
200 /* This group's parsing function. */
201 argp_parser_t parser;
202
203 /* Which argp this group is from. */
204 const struct argp *argp;
205
206 /* Points to the point in SHORT_OPTS corresponding to the end of the short
207 options for this group. We use it to determine from which group a
208 particular short options is from. */
209 char *short_end;
210
211 /* The number of non-option args sucessfully handled by this parser. */
212 unsigned args_processed;
213
214 /* This group's parser's parent's group. */
215 struct group *parent;
216 unsigned parent_index; /* And the our position in the parent. */
217
218 /* These fields are swapped into and out of the state structure when
219 calling this group's parser. */
220 void *input, **child_inputs;
221 void *hook;
222};
223
224/* Call GROUP's parser with KEY and ARG, swapping any group-specific info
225 from STATE before calling, and back into state afterwards. If GROUP has
226 no parser, EBADKEY is returned. */
227static error_t
228group_parse (struct group *group, struct argp_state *state, int key, char *arg)
229{
230 if (group->parser)
231 {
232 error_t err;
233 state->hook = group->hook;
234 state->input = group->input;
235 state->child_inputs = group->child_inputs;
236 state->arg_num = group->args_processed;
237 err = (*group->parser)(key, arg, state);
238 group->hook = state->hook;
239 return err;
240 }
241 else
242 return EBADKEY;
243}
244
245
246struct parser
247{
248 const struct argp *argp;
249
250 /* SHORT_OPTS is the getopt short options string for the union of all the
251 groups of options. */
252 char *short_opts;
253 /* LONG_OPTS is the array of getop long option structures for the union of
254 all the groups of options. */
255 struct option *long_opts;
256 /* OPT_DATA is the getopt data used for the re-entrant getopt. */
257 struct _getopt_data opt_data;
258
259 /* States of the various parsing groups. */
260 struct group *groups;
261 /* The end of the GROUPS array. */
262 struct group *egroup;
263 /* An vector containing storage for the CHILD_INPUTS field in all groups. */
264 void **child_inputs;
265
266 /* True if we think using getopt is still useful; if false, then
267 remaining arguments are just passed verbatim with ARGP_KEY_ARG. This is
268 cleared whenever getopt returns KEY_END, but may be set again if the user
269 moves the next argument pointer backwards. */
270 int try_getopt;
271
272 /* State block supplied to parsing routines. */
273 struct argp_state state;
274
275 /* Memory used by this parser. */
276 void *storage;
277};
278
279
280/* The next usable entries in the various parser tables being filled in by
281 convert_options. */
282struct parser_convert_state
283{
284 struct parser *parser;
285 char *short_end;
286 struct option *long_end;
287 void **child_inputs_end;
288};
289
290/* Converts all options in ARGP (which is put in GROUP) and ancestors
291 into getopt options stored in SHORT_OPTS and LONG_OPTS; SHORT_END and
292 CVT->LONG_END are the points at which new options are added. Returns the
293 next unused group entry. CVT holds state used during the conversion. */
294static struct group *
295convert_options (const struct argp *argp,
296 struct group *parent, unsigned parent_index,
297 struct group *group, struct parser_convert_state *cvt)
298{
299 /* REAL is the most recent non-alias value of OPT. */
300 const struct argp_option *real = argp->options;
301 const struct argp_child *children = argp->children;
302
303 if (real || argp->parser)
304 {
305 const struct argp_option *opt;
306
307 if (real)
308 for (opt = real; !__option_is_end (opt); opt++)
309 {
310 if (! (opt->flags & OPTION_ALIAS))
311 /* OPT isn't an alias, so we can use values from it. */
312 real = opt;
313
314 if (! (real->flags & OPTION_DOC))
315 /* A real option (not just documentation). */
316 {
317 if (__option_is_short (opt))
318 /* OPT can be used as a short option. */
319 {
320 *cvt->short_end++ = opt->key;
321 if (real->arg)
322 {
323 *cvt->short_end++ = ':';
324 if (real->flags & OPTION_ARG_OPTIONAL)
325 *cvt->short_end++ = ':';
326 }
327 *cvt->short_end = '\0'; /* keep 0 terminated */
328 }
329
330 if (opt->name
331 && find_long_option (cvt->parser->long_opts, opt->name) < 0)
332 /* OPT can be used as a long option. */
333 {
334 cvt->long_end->name = opt->name;
335 cvt->long_end->has_arg =
336 (real->arg
337 ? (real->flags & OPTION_ARG_OPTIONAL
338 ? optional_argument
339 : required_argument)
340 : no_argument);
341 cvt->long_end->flag = 0;
342 /* we add a disambiguating code to all the user's
343 values (which is removed before we actually call
344 the function to parse the value); this means that
345 the user loses use of the high 8 bits in all his
346 values (the sign of the lower bits is preserved
347 however)... */
348 cvt->long_end->val =
349 ((opt->key | real->key) & USER_MASK)
350 + (((group - cvt->parser->groups) + 1) << USER_BITS);
351
352 /* Keep the LONG_OPTS list terminated. */
353 (++cvt->long_end)->name = NULL;
354 }
355 }
356 }
357
358 group->parser = argp->parser;
359 group->argp = argp;
360 group->short_end = cvt->short_end;
361 group->args_processed = 0;
362 group->parent = parent;
363 group->parent_index = parent_index;
364 group->input = 0;
365 group->hook = 0;
366 group->child_inputs = 0;
367
368 if (children)
369 /* Assign GROUP's CHILD_INPUTS field some space from
370 CVT->child_inputs_end.*/
371 {
372 unsigned num_children = 0;
373 while (children[num_children].argp)
374 num_children++;
375 group->child_inputs = cvt->child_inputs_end;
376 cvt->child_inputs_end += num_children;
377 }
378
379 parent = group++;
380 }
381 else
382 parent = 0;
383
384 if (children)
385 {
386 unsigned index = 0;
387 while (children->argp)
388 group =
389 convert_options (children++->argp, parent, index++, group, cvt);
390 }
391
392 return group;
393}
394
395/* Find the merged set of getopt options, with keys appropiately prefixed. */
396static void
397parser_convert (struct parser *parser, const struct argp *argp, int flags)
398{
399 struct parser_convert_state cvt;
400
401 cvt.parser = parser;
402 cvt.short_end = parser->short_opts;
403 cvt.long_end = parser->long_opts;
404 cvt.child_inputs_end = parser->child_inputs;
405
406 if (flags & ARGP_IN_ORDER)
407 *cvt.short_end++ = '-';
408 else if (flags & ARGP_NO_ARGS)
409 *cvt.short_end++ = '+';
410 *cvt.short_end = '\0';
411
412 cvt.long_end->name = NULL;
413
414 parser->argp = argp;
415
416 if (argp)
417 parser->egroup = convert_options (argp, 0, 0, parser->groups, &cvt);
418 else
419 parser->egroup = parser->groups; /* No parsers at all! */
420}
421
422
423/* Lengths of various parser fields which we will allocated. */
424struct parser_sizes
425{
426 size_t short_len; /* Getopt short options string. */
427 size_t long_len; /* Getopt long options vector. */
428 size_t num_groups; /* Group structures we allocate. */
429 size_t num_child_inputs; /* Child input slots. */
430};
431
432/* For ARGP, increments the NUM_GROUPS field in SZS by the total number of
433 argp structures descended from it, and the SHORT_LEN & LONG_LEN fields by
434 the maximum lengths of the resulting merged getopt short options string and
435 long-options array, respectively. */
436static void
437calc_sizes (const struct argp *argp, struct parser_sizes *szs)
438{
439 const struct argp_child *child = argp->children;
440 const struct argp_option *opt = argp->options;
441
442 if (opt || argp->parser)
443 {
444 szs->num_groups++;
445 if (opt)
446 {
447 int num_opts = 0;
448 while (!__option_is_end (opt++))
449 num_opts++;
450 szs->short_len += num_opts * 3; /* opt + up to 2 `:'s */
451 szs->long_len += num_opts;
452 }
453 }
454
455 if (child)
456 while (child->argp)
457 {
458 calc_sizes ((child++)->argp, szs);
459 szs->num_child_inputs++;
460 }
461}
462
463/* Initializes PARSER to parse ARGP in a manner described by FLAGS. */
464static error_t
465parser_init (struct parser *parser, const struct argp *argp,
466 int argc, char **argv, int flags, void *input)
467{
468 error_t err = 0;
469 struct group *group;
470 struct parser_sizes szs;
471 struct _getopt_data opt_data = _GETOPT_DATA_INITIALIZER;
472 char *storage;
473 size_t glen, gsum;
474 size_t clen, csum;
475 size_t llen, lsum;
476 size_t slen, ssum;
477
478 szs.short_len = (flags & ARGP_NO_ARGS) ? 0 : 1;
479 szs.long_len = 0;
480 szs.num_groups = 0;
481 szs.num_child_inputs = 0;
482
483 if (argp)
484 calc_sizes (argp, &szs);
485
486 /* Lengths of the various bits of storage used by PARSER. */
487 glen = (szs.num_groups + 1) * sizeof (struct group);
488 clen = szs.num_child_inputs * sizeof (void *);
489 llen = (szs.long_len + 1) * sizeof (struct option);
490 slen = szs.short_len + 1;
491
492 /* Sums of previous lengths, properly aligned. There's no need to
493 align gsum, since struct group is aligned at least as strictly as
494 void * (since it contains a void * member). And there's no need
495 to align lsum, since struct option is aligned at least as
496 strictly as char. */
497 gsum = glen;
498 csum = alignto (gsum + clen, alignof (struct option));
499 lsum = csum + llen;
500 ssum = lsum + slen;
501
502 parser->storage = malloc (ssum);
503 if (! parser->storage)
504 return ENOMEM;
505
506 storage = parser->storage;
507 parser->groups = parser->storage;
508 parser->child_inputs = (void **) (storage + gsum);
509 parser->long_opts = (struct option *) (storage + csum);
510 parser->short_opts = storage + lsum;
511 parser->opt_data = opt_data;
512
513 memset (parser->child_inputs, 0, clen);
514 parser_convert (parser, argp, flags);
515
516 memset (&parser->state, 0, sizeof (struct argp_state));
517 parser->state.root_argp = parser->argp;
518 parser->state.argc = argc;
519 parser->state.argv = argv;
520 parser->state.flags = flags;
521 parser->state.err_stream = stderr;
522 parser->state.out_stream = stdout;
523 parser->state.next = 0; /* Tell getopt to initialize. */
524 parser->state.pstate = parser;
525
526 parser->try_getopt = 1;
527
528 /* Call each parser for the first time, giving it a chance to propagate
529 values to child parsers. */
530 if (parser->groups < parser->egroup)
531 parser->groups->input = input;
532 for (group = parser->groups;
533 group < parser->egroup && (!err || err == EBADKEY);
534 group++)
535 {
536 if (group->parent)
537 /* If a child parser, get the initial input value from the parent. */
538 group->input = group->parent->child_inputs[group->parent_index];
539
540 if (!group->parser
541 && group->argp->children && group->argp->children->argp)
542 /* For the special case where no parsing function is supplied for an
543 argp, propagate its input to its first child, if any (this just
544 makes very simple wrapper argps more convenient). */
545 group->child_inputs[0] = group->input;
546
547 err = group_parse (group, &parser->state, ARGP_KEY_INIT, 0);
548 }
549 if (err == EBADKEY)
550 err = 0; /* Some parser didn't understand. */
551
552 if (err)
553 return err;
554
555 if (parser->state.flags & ARGP_NO_ERRS)
556 {
557 parser->opt_data.opterr = 0;
558 if (parser->state.flags & ARGP_PARSE_ARGV0)
559 /* getopt always skips ARGV[0], so we have to fake it out. As long
560 as OPTERR is 0, then it shouldn't actually try to access it. */
561 parser->state.argv--, parser->state.argc++;
562 }
563 else
564 parser->opt_data.opterr = 1; /* Print error messages. */
565
566 if (parser->state.argv == argv && argv[0])
567 /* There's an argv[0]; use it for messages. */
568 parser->state.name = __argp_base_name (argv[0]);
569 else
570 parser->state.name = __argp_short_program_name ();
571
572 return 0;
573}
574
575
576/* Free any storage consumed by PARSER (but not PARSER itself). */
577static error_t
578parser_finalize (struct parser *parser,
579 error_t err, int arg_ebadkey, int *end_index)
580{
581 struct group *group;
582
583 if (err == EBADKEY && arg_ebadkey)
584 /* Suppress errors generated by unparsed arguments. */
585 err = 0;
586
587 if (! err)
588 {
589 if (parser->state.next == parser->state.argc)
590 /* We successfully parsed all arguments! Call all the parsers again,
591 just a few more times... */
592 {
593 for (group = parser->groups;
594 group < parser->egroup && (!err || err==EBADKEY);
595 group++)
596 if (group->args_processed == 0)
597 err = group_parse (group, &parser->state, ARGP_KEY_NO_ARGS, 0);
598 for (group = parser->egroup - 1;
599 group >= parser->groups && (!err || err==EBADKEY);
600 group--)
601 err = group_parse (group, &parser->state, ARGP_KEY_END, 0);
602
603 if (err == EBADKEY)
604 err = 0; /* Some parser didn't understand. */
605
606 /* Tell the user that all arguments are parsed. */
607 if (end_index)
608 *end_index = parser->state.next;
609 }
610 else if (end_index)
611 /* Return any remaining arguments to the user. */
612 *end_index = parser->state.next;
613 else
614 /* No way to return the remaining arguments, they must be bogus. */
615 {
616 if (!(parser->state.flags & ARGP_NO_ERRS)
617 && parser->state.err_stream)
618 fprintf (parser->state.err_stream,
619 dgettext (parser->argp->argp_domain,
620 "%s: Too many arguments\n"),
621 parser->state.name);
622 err = EBADKEY;
623 }
624 }
625
626 /* Okay, we're all done, with either an error or success; call the parsers
627 to indicate which one. */
628
629 if (err)
630 {
631 /* Maybe print an error message. */
632 if (err == EBADKEY)
633 /* An appropriate message describing what the error was should have
634 been printed earlier. */
635 __argp_state_help (&parser->state, parser->state.err_stream,
636 ARGP_HELP_STD_ERR);
637
638 /* Since we didn't exit, give each parser an error indication. */
639 for (group = parser->groups; group < parser->egroup; group++)
640 group_parse (group, &parser->state, ARGP_KEY_ERROR, 0);
641 }
642 else
643 /* Notify parsers of success, and propagate back values from parsers. */
644 {
645 /* We pass over the groups in reverse order so that child groups are
646 given a chance to do there processing before passing back a value to
647 the parent. */
648 for (group = parser->egroup - 1
649 ; group >= parser->groups && (!err || err == EBADKEY)
650 ; group--)
651 err = group_parse (group, &parser->state, ARGP_KEY_SUCCESS, 0);
652 if (err == EBADKEY)
653 err = 0; /* Some parser didn't understand. */
654 }
655
656 /* Call parsers once more, to do any final cleanup. Errors are ignored. */
657 for (group = parser->egroup - 1; group >= parser->groups; group--)
658 group_parse (group, &parser->state, ARGP_KEY_FINI, 0);
659
660 if (err == EBADKEY)
661 err = EINVAL;
662
663 free (parser->storage);
664
665 return err;
666}
667
668
669/* Call the user parsers to parse the non-option argument VAL, at the current
670 position, returning any error. The state NEXT pointer is assumed to have
671 been adjusted (by getopt) to point after this argument; this function will
672 adjust it correctly to reflect however many args actually end up being
673 consumed. */
674static error_t
675parser_parse_arg (struct parser *parser, char *val)
676{
677 /* Save the starting value of NEXT, first adjusting it so that the arg
678 we're parsing is again the front of the arg vector. */
679 int index = --parser->state.next;
680 error_t err = EBADKEY;
681 struct group *group;
682 int key = 0; /* Which of ARGP_KEY_ARG[S] we used. */
683
684 /* Try to parse the argument in each parser. */
685 for (group = parser->groups
686 ; group < parser->egroup && err == EBADKEY
687 ; group++)
688 {
689 parser->state.next++; /* For ARGP_KEY_ARG, consume the arg. */
690 key = ARGP_KEY_ARG;
691 err = group_parse (group, &parser->state, key, val);
692
693 if (err == EBADKEY)
694 /* This parser doesn't like ARGP_KEY_ARG; try ARGP_KEY_ARGS instead. */
695 {
696 parser->state.next--; /* For ARGP_KEY_ARGS, put back the arg. */
697 key = ARGP_KEY_ARGS;
698 err = group_parse (group, &parser->state, key, 0);
699 }
700 }
701
702 if (! err)
703 {
704 if (key == ARGP_KEY_ARGS)
705 /* The default for ARGP_KEY_ARGS is to assume that if NEXT isn't
706 changed by the user, *all* arguments should be considered
707 consumed. */
708 parser->state.next = parser->state.argc;
709
710 if (parser->state.next > index)
711 /* Remember that we successfully processed a non-option
712 argument -- but only if the user hasn't gotten tricky and set
713 the clock back. */
714 (--group)->args_processed += (parser->state.next - index);
715 else
716 /* The user wants to reparse some args, give getopt another try. */
717 parser->try_getopt = 1;
718 }
719
720 return err;
721}
722
723
724/* Call the user parsers to parse the option OPT, with argument VAL, at the
725 current position, returning any error. */
726static error_t
727parser_parse_opt (struct parser *parser, int opt, char *val)
728{
729 /* The group key encoded in the high bits; 0 for short opts or
730 group_number + 1 for long opts. */
731 int group_key = opt >> USER_BITS;
732 error_t err = EBADKEY;
733
734 if (group_key == 0)
735 /* A short option. By comparing OPT's position in SHORT_OPTS to the
736 various starting positions in each group's SHORT_END field, we can
737 determine which group OPT came from. */
738 {
739 struct group *group;
740 char *short_index = strchr (parser->short_opts, opt);
741
742 if (short_index)
743 for (group = parser->groups; group < parser->egroup; group++)
744 if (group->short_end > short_index)
745 {
746 err = group_parse (group, &parser->state, opt,
747 parser->opt_data.optarg);
748 break;
749 }
750 }
751 else
752 /* A long option. We use shifts instead of masking for extracting
753 the user value in order to preserve the sign. */
754 err =
755 group_parse (&parser->groups[group_key - 1], &parser->state,
756 (opt << GROUP_BITS) >> GROUP_BITS,
757 parser->opt_data.optarg);
758
759 if (err == EBADKEY)
760 /* At least currently, an option not recognized is an error in the
761 parser, because we pre-compute which parser is supposed to deal
762 with each option. */
763 {
764 static const char bad_key_err[] =
765 N_("(PROGRAM ERROR) Option should have been recognized!?");
766 if (group_key == 0)
767 __argp_error (&parser->state, "-%c: %s", opt,
768 dgettext (parser->argp->argp_domain, bad_key_err));
769 else
770 {
771 struct option *long_opt = parser->long_opts;
772 while (long_opt->val != opt && long_opt->name)
773 long_opt++;
774 __argp_error (&parser->state, "--%s: %s",
775 long_opt->name ? long_opt->name : "???",
776 dgettext (parser->argp->argp_domain, bad_key_err));
777 }
778 }
779
780 return err;
781}
782
783
784/* Parse the next argument in PARSER (as indicated by PARSER->state.next).
785 Any error from the parsers is returned, and *ARGP_EBADKEY indicates
786 whether a value of EBADKEY is due to an unrecognized argument (which is
787 generally not fatal). */
788static error_t
789parser_parse_next (struct parser *parser, int *arg_ebadkey)
790{
791 int opt;
792 error_t err = 0;
793
794 if (parser->state.quoted && parser->state.next < parser->state.quoted)
795 /* The next argument pointer has been moved to before the quoted
796 region, so pretend we never saw the quoting `--', and give getopt
797 another chance. If the user hasn't removed it, getopt will just
798 process it again. */
799 parser->state.quoted = 0;
800
801 if (parser->try_getopt && !parser->state.quoted)
802 /* Give getopt a chance to parse this. */
803 {
804 /* Put it back in OPTIND for getopt. */
805 parser->opt_data.optind = parser->state.next;
806 /* Distinguish KEY_ERR from a real option. */
807 parser->opt_data.optopt = KEY_END;
808 if (parser->state.flags & ARGP_LONG_ONLY)
809 opt = _getopt_long_only_r (parser->state.argc, parser->state.argv,
810 parser->short_opts, parser->long_opts, 0,
811 &parser->opt_data);
812 else
813 opt = _getopt_long_r (parser->state.argc, parser->state.argv,
814 parser->short_opts, parser->long_opts, 0,
815 &parser->opt_data);
816 /* And see what getopt did. */
817 parser->state.next = parser->opt_data.optind;
818
819 if (opt == KEY_END)
820 /* Getopt says there are no more options, so stop using
821 getopt; we'll continue if necessary on our own. */
822 {
823 parser->try_getopt = 0;
824 if (parser->state.next > 1
825 && strcmp (parser->state.argv[parser->state.next - 1], QUOTE)
826 == 0)
827 /* Not only is this the end of the options, but it's a
828 `quoted' region, which may have args that *look* like
829 options, so we definitely shouldn't try to use getopt past
830 here, whatever happens. */
831 parser->state.quoted = parser->state.next;
832 }
833 else if (opt == KEY_ERR && parser->opt_data.optopt != KEY_END)
834 /* KEY_ERR can have the same value as a valid user short
835 option, but in the case of a real error, getopt sets OPTOPT
836 to the offending character, which can never be KEY_END. */
837 {
838 *arg_ebadkey = 0;
839 return EBADKEY;
840 }
841 }
842 else
843 opt = KEY_END;
844
845 if (opt == KEY_END)
846 {
847 /* We're past what getopt considers the options. */
848 if (parser->state.next >= parser->state.argc
849 || (parser->state.flags & ARGP_NO_ARGS))
850 /* Indicate that we're done. */
851 {
852 *arg_ebadkey = 1;
853 return EBADKEY;
854 }
855 else
856 /* A non-option arg; simulate what getopt might have done. */
857 {
858 opt = KEY_ARG;
859 parser->opt_data.optarg = parser->state.argv[parser->state.next++];
860 }
861 }
862
863 if (opt == KEY_ARG)
864 /* A non-option argument; try each parser in turn. */
865 err = parser_parse_arg (parser, parser->opt_data.optarg);
866 else
867 err = parser_parse_opt (parser, opt, parser->opt_data.optarg);
868
869 if (err == EBADKEY)
870 *arg_ebadkey = (opt == KEY_END || opt == KEY_ARG);
871
872 return err;
873}
874
875
876/* Parse the options strings in ARGC & ARGV according to the argp in ARGP.
877 FLAGS is one of the ARGP_ flags above. If END_INDEX is non-NULL, the
878 index in ARGV of the first unparsed option is returned in it. If an
879 unknown option is present, EINVAL is returned; if some parser routine
880 returned a non-zero value, it is returned; otherwise 0 is returned. */
881error_t
882__argp_parse (const struct argp *argp, int argc, char **argv, unsigned flags,
883 int *end_index, void *input)
884{
885 error_t err;
886 struct parser parser;
887
888 /* If true, then err == EBADKEY is a result of a non-option argument failing
889 to be parsed (which in some cases isn't actually an error). */
890 int arg_ebadkey = 0;
891
892#ifndef _LIBC
893 if (!(flags & ARGP_PARSE_ARGV0))
894 {
895#ifdef HAVE_DECL_PROGRAM_INVOCATION_NAME
896 if (!program_invocation_name)
897 program_invocation_name = argv[0];
898#endif
899#ifdef HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
900 if (!program_invocation_short_name)
901 program_invocation_short_name = __argp_base_name (argv[0]);
902#endif
903 }
904#endif
905
906 if (! (flags & ARGP_NO_HELP))
907 /* Add our own options. */
908 {
909 struct argp_child *child = alloca (4 * sizeof (struct argp_child));
910 struct argp *top_argp = alloca (sizeof (struct argp));
911
912 /* TOP_ARGP has no options, it just serves to group the user & default
913 argps. */
914 memset (top_argp, 0, sizeof (*top_argp));
915 top_argp->children = child;
916
917 memset (child, 0, 4 * sizeof (struct argp_child));
918
919 if (argp)
920 (child++)->argp = argp;
921 (child++)->argp = &argp_default_argp;
922 if (argp_program_version || argp_program_version_hook)
923 (child++)->argp = &argp_version_argp;
924 child->argp = 0;
925
926 argp = top_argp;
927 }
928
929 /* Construct a parser for these arguments. */
930 err = parser_init (&parser, argp, argc, argv, flags, input);
931
932 if (! err)
933 /* Parse! */
934 {
935 while (! err)
936 err = parser_parse_next (&parser, &arg_ebadkey);
937 err = parser_finalize (&parser, err, arg_ebadkey, end_index);
938 }
939
940 return err;
941}
942#ifdef weak_alias
943weak_alias (__argp_parse, argp_parse)
944#endif
945
946
947/* Return the input field for ARGP in the parser corresponding to STATE; used
948 by the help routines. */
949void *
950__argp_input (const struct argp *argp, const struct argp_state *state)
951{
952 if (state)
953 {
954 struct group *group;
955 struct parser *parser = state->pstate;
956
957 for (group = parser->groups; group < parser->egroup; group++)
958 if (group->argp == argp)
959 return group->input;
960 }
961
962 return 0;
963}
964#ifdef weak_alias
965weak_alias (__argp_input, _argp_input)
966#endif
Note: See TracBrowser for help on using the repository browser.