1 /* Hierarchial argument parsing, layered over getopt
2 Copyright (C) 1995-2000, 2002, 2003, 2004, 2010 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Written by Miles Bader <miles@gnu.ai.mit.edu>.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library 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 GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
24 /* AIX requires this to be the first thing in the file. */
26 # if HAVE_ALLOCA_H || defined _LIBC
32 # ifndef alloca /* predefined by HP cc +Olibcalls */
44 #include <getopt_int.h>
47 /* This is for other GNU distributions with internationalized messages.
48 When compiling libc, the _ macro is predefined. */
49 # if defined HAVE_LIBINTL_H || defined _LIBC
53 # define dgettext(domain, msgid) \
54 INTUSE(__dcgettext) (domain, msgid, LC_MESSAGES)
57 # define dgettext(domain, msgid) (msgid)
58 # define gettext(msgid) (msgid)
62 # define N_(msgid) (msgid)
66 #include "argp-namefrob.h"
68 /* Getopt return values. */
69 #define KEY_END (-1) /* The end of the options. */
70 #define KEY_ARG 1 /* A non-option argument. */
71 #define KEY_ERR '?' /* An error parsing the options. */
73 /* The meta-argument used to prevent any further arguments being interpreted
77 /* The number of bits we steal in a long-option value for our own use. */
78 #define GROUP_BITS CHAR_BIT
80 /* The number of bits available for the user value. */
81 #define USER_BITS ((sizeof ((struct option *)0)->val * CHAR_BIT) - GROUP_BITS)
82 #define USER_MASK ((1 << USER_BITS) - 1)
84 /* EZ alias for ARGP_ERR_UNKNOWN. */
85 #define EBADKEY ARGP_ERR_UNKNOWN
87 /* Default options. */
89 /* When argp is given the --HANG switch, _ARGP_HANG is set and argp will sleep
90 for one second intervals, decrementing _ARGP_HANG until it's zero. Thus
91 you can force the program to continue by attaching a debugger and setting
93 static volatile int _argp_hang
;
95 #define OPT_PROGNAME -2
99 static const struct argp_option argp_default_options
[] =
101 {"help", '?', 0, 0, N_("Give this help list"), -1},
102 {"usage", OPT_USAGE
, 0, 0, N_("Give a short usage message")},
103 {"program-name",OPT_PROGNAME
,"NAME", OPTION_HIDDEN
, N_("Set the program name")},
104 {"HANG", OPT_HANG
, "SECS", OPTION_ARG_OPTIONAL
| OPTION_HIDDEN
,
105 N_("Hang for SECS seconds (default 3600)")},
110 argp_default_parser (int key
, char *arg
, struct argp_state
*state
)
115 __argp_state_help (state
, state
->out_stream
, ARGP_HELP_STD_HELP
);
118 __argp_state_help (state
, state
->out_stream
,
119 ARGP_HELP_USAGE
| ARGP_HELP_EXIT_OK
);
122 case OPT_PROGNAME
: /* Set the program name. */
123 #if defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_NAME
124 program_invocation_name
= arg
;
126 /* [Note that some systems only have PROGRAM_INVOCATION_SHORT_NAME (aka
127 __PROGNAME), in which case, PROGRAM_INVOCATION_NAME is just defined
128 to be that, so we have to be a bit careful here.] */
130 /* Update what we use for messages. */
131 state
->name
= strrchr (arg
, '/');
137 #if defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
138 program_invocation_short_name
= state
->name
;
141 if ((state
->flags
& (ARGP_PARSE_ARGV0
| ARGP_NO_ERRS
))
143 /* Update what getopt uses too. */
144 state
->argv
[0] = arg
;
149 _argp_hang
= atoi (arg
? arg
: "3600");
150 while (_argp_hang
-- > 0)
160 static const struct argp argp_default_argp
=
161 {argp_default_options
, &argp_default_parser
, NULL
, NULL
, NULL
, NULL
, "libc"};
164 static const struct argp_option argp_version_options
[] =
166 {"version", 'V', 0, 0, N_("Print program version"), -1},
171 argp_version_parser (int key
, char *arg
, struct argp_state
*state
)
176 if (argp_program_version_hook
)
177 (*argp_program_version_hook
) (state
->out_stream
, state
);
178 else if (argp_program_version
)
179 fprintf (state
->out_stream
, "%s\n", argp_program_version
);
181 __argp_error (state
, dgettext (state
->root_argp
->argp_domain
,
182 "(PROGRAM ERROR) No version known!?"));
183 if (! (state
->flags
& ARGP_NO_EXIT
))
192 static const struct argp argp_version_argp
=
193 {argp_version_options
, &argp_version_parser
, NULL
, NULL
, NULL
, NULL
, "libc"};
195 /* Returns the offset into the getopt long options array LONG_OPTIONS of a
196 long option with called NAME, or -1 if none is found. Passing NULL as
197 NAME will return the number of options. */
199 find_long_option (struct option
*long_options
, const char *name
)
201 struct option
*l
= long_options
;
202 while (l
->name
!= NULL
)
203 if (name
!= NULL
&& strcmp (l
->name
, name
) == 0)
204 return l
- long_options
;
208 return l
- long_options
;
214 /* The state of a `group' during parsing. Each group corresponds to a
215 particular argp structure from the tree of such descending from the top
216 level argp passed to argp_parse. */
219 /* This group's parsing function. */
220 argp_parser_t parser
;
222 /* Which argp this group is from. */
223 const struct argp
*argp
;
225 /* Points to the point in SHORT_OPTS corresponding to the end of the short
226 options for this group. We use it to determine from which group a
227 particular short options is from. */
230 /* The number of non-option args sucessfully handled by this parser. */
231 unsigned args_processed
;
233 /* This group's parser's parent's group. */
234 struct group
*parent
;
235 unsigned parent_index
; /* And the our position in the parent. */
237 /* These fields are swapped into and out of the state structure when
238 calling this group's parser. */
239 void *input
, **child_inputs
;
243 /* Call GROUP's parser with KEY and ARG, swapping any group-specific info
244 from STATE before calling, and back into state afterwards. If GROUP has
245 no parser, EBADKEY is returned. */
247 group_parse (struct group
*group
, struct argp_state
*state
, int key
, char *arg
)
252 state
->hook
= group
->hook
;
253 state
->input
= group
->input
;
254 state
->child_inputs
= group
->child_inputs
;
255 state
->arg_num
= group
->args_processed
;
256 err
= (*group
->parser
)(key
, arg
, state
);
257 group
->hook
= state
->hook
;
266 const struct argp
*argp
;
268 /* SHORT_OPTS is the getopt short options string for the union of all the
269 groups of options. */
271 /* LONG_OPTS is the array of getop long option structures for the union of
272 all the groups of options. */
273 struct option
*long_opts
;
274 /* OPT_DATA is the getopt data used for the re-entrant getopt. */
275 struct _getopt_data opt_data
;
277 /* States of the various parsing groups. */
278 struct group
*groups
;
279 /* The end of the GROUPS array. */
280 struct group
*egroup
;
281 /* An vector containing storage for the CHILD_INPUTS field in all groups. */
284 /* True if we think using getopt is still useful; if false, then
285 remaining arguments are just passed verbatim with ARGP_KEY_ARG. This is
286 cleared whenever getopt returns KEY_END, but may be set again if the user
287 moves the next argument pointer backwards. */
290 /* State block supplied to parsing routines. */
291 struct argp_state state
;
293 /* Memory used by this parser. */
297 /* The next usable entries in the various parser tables being filled in by
299 struct parser_convert_state
301 struct parser
*parser
;
303 struct option
*long_end
;
304 void **child_inputs_end
;
307 /* Converts all options in ARGP (which is put in GROUP) and ancestors
308 into getopt options stored in SHORT_OPTS and LONG_OPTS; SHORT_END and
309 CVT->LONG_END are the points at which new options are added. Returns the
310 next unused group entry. CVT holds state used during the conversion. */
311 static struct group
*
312 convert_options (const struct argp
*argp
,
313 struct group
*parent
, unsigned parent_index
,
314 struct group
*group
, struct parser_convert_state
*cvt
)
316 /* REAL is the most recent non-alias value of OPT. */
317 const struct argp_option
*real
= argp
->options
;
318 const struct argp_child
*children
= argp
->children
;
320 if (real
|| argp
->parser
)
322 const struct argp_option
*opt
;
325 for (opt
= real
; !__option_is_end (opt
); opt
++)
327 if (! (opt
->flags
& OPTION_ALIAS
))
328 /* OPT isn't an alias, so we can use values from it. */
331 if (! (real
->flags
& OPTION_DOC
))
332 /* A real option (not just documentation). */
334 if (__option_is_short (opt
))
335 /* OPT can be used as a short option. */
337 *cvt
->short_end
++ = opt
->key
;
340 *cvt
->short_end
++ = ':';
341 if (real
->flags
& OPTION_ARG_OPTIONAL
)
342 *cvt
->short_end
++ = ':';
344 *cvt
->short_end
= '\0'; /* keep 0 terminated */
348 && find_long_option (cvt
->parser
->long_opts
, opt
->name
) < 0)
349 /* OPT can be used as a long option. */
351 cvt
->long_end
->name
= opt
->name
;
352 cvt
->long_end
->has_arg
=
354 ? (real
->flags
& OPTION_ARG_OPTIONAL
358 cvt
->long_end
->flag
= 0;
359 /* we add a disambiguating code to all the user's
360 values (which is removed before we actually call
361 the function to parse the value); this means that
362 the user loses use of the high 8 bits in all his
363 values (the sign of the lower bits is preserved
366 ((opt
->key
? opt
->key
: real
->key
) & USER_MASK
)
367 + (((group
- cvt
->parser
->groups
) + 1) << USER_BITS
);
369 /* Keep the LONG_OPTS list terminated. */
370 (++cvt
->long_end
)->name
= NULL
;
375 group
->parser
= argp
->parser
;
377 group
->short_end
= cvt
->short_end
;
378 group
->args_processed
= 0;
379 group
->parent
= parent
;
380 group
->parent_index
= parent_index
;
383 group
->child_inputs
= 0;
386 /* Assign GROUP's CHILD_INPUTS field some space from
387 CVT->child_inputs_end.*/
389 unsigned num_children
= 0;
390 while (children
[num_children
].argp
)
392 group
->child_inputs
= cvt
->child_inputs_end
;
393 cvt
->child_inputs_end
+= num_children
;
404 while (children
->argp
)
406 convert_options (children
++->argp
, parent
, index
++, group
, cvt
);
412 /* Find the merged set of getopt options, with keys appropiately prefixed. */
414 parser_convert (struct parser
*parser
, const struct argp
*argp
, int flags
)
416 struct parser_convert_state cvt
;
419 cvt
.short_end
= parser
->short_opts
;
420 cvt
.long_end
= parser
->long_opts
;
421 cvt
.child_inputs_end
= parser
->child_inputs
;
423 if (flags
& ARGP_IN_ORDER
)
424 *cvt
.short_end
++ = '-';
425 else if (flags
& ARGP_NO_ARGS
)
426 *cvt
.short_end
++ = '+';
427 *cvt
.short_end
= '\0';
429 cvt
.long_end
->name
= NULL
;
434 parser
->egroup
= convert_options (argp
, 0, 0, parser
->groups
, &cvt
);
436 parser
->egroup
= parser
->groups
; /* No parsers at all! */
439 /* Lengths of various parser fields which we will allocated. */
442 size_t short_len
; /* Getopt short options string. */
443 size_t long_len
; /* Getopt long options vector. */
444 size_t num_groups
; /* Group structures we allocate. */
445 size_t num_child_inputs
; /* Child input slots. */
448 /* For ARGP, increments the NUM_GROUPS field in SZS by the total number of
449 argp structures descended from it, and the SHORT_LEN & LONG_LEN fields by
450 the maximum lengths of the resulting merged getopt short options string and
451 long-options array, respectively. */
453 calc_sizes (const struct argp
*argp
, struct parser_sizes
*szs
)
455 const struct argp_child
*child
= argp
->children
;
456 const struct argp_option
*opt
= argp
->options
;
458 if (opt
|| argp
->parser
)
464 while (!__option_is_end (opt
++))
466 szs
->short_len
+= num_opts
* 3; /* opt + up to 2 `:'s */
467 szs
->long_len
+= num_opts
;
474 calc_sizes ((child
++)->argp
, szs
);
475 szs
->num_child_inputs
++;
479 /* Initializes PARSER to parse ARGP in a manner described by FLAGS. */
481 parser_init (struct parser
*parser
, const struct argp
*argp
,
482 int argc
, char **argv
, int flags
, void *input
)
486 struct parser_sizes szs
;
487 struct _getopt_data opt_data
= _GETOPT_DATA_INITIALIZER
;
489 szs
.short_len
= (flags
& ARGP_NO_ARGS
) ? 0 : 1;
492 szs
.num_child_inputs
= 0;
495 calc_sizes (argp
, &szs
);
497 /* Lengths of the various bits of storage used by PARSER. */
498 #define GLEN (szs.num_groups + 1) * sizeof (struct group)
499 #define CLEN (szs.num_child_inputs * sizeof (void *))
500 #define LLEN ((szs.long_len + 1) * sizeof (struct option))
501 #define SLEN (szs.short_len + 1)
503 parser
->storage
= malloc (GLEN
+ CLEN
+ LLEN
+ SLEN
);
504 if (! parser
->storage
)
507 parser
->groups
= parser
->storage
;
508 parser
->child_inputs
= parser
->storage
+ GLEN
;
509 parser
->long_opts
= parser
->storage
+ GLEN
+ CLEN
;
510 parser
->short_opts
= parser
->storage
+ GLEN
+ CLEN
+ LLEN
;
511 parser
->opt_data
= opt_data
;
513 memset (parser
->child_inputs
, 0, szs
.num_child_inputs
* sizeof (void *));
514 parser_convert (parser
, argp
, flags
);
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
;
526 parser
->try_getopt
= 1;
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
);
537 /* If a child parser, get the initial input value from the parent. */
538 group
->input
= group
->parent
->child_inputs
[group
->parent_index
];
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
;
547 err
= group_parse (group
, &parser
->state
, ARGP_KEY_INIT
, 0);
550 err
= 0; /* Some parser didn't understand. */
555 if (parser
->state
.flags
& ARGP_NO_ERRS
)
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
++;
564 parser
->opt_data
.opterr
= 1; /* Print error messages. */
566 if (parser
->state
.argv
== argv
&& argv
[0])
567 /* There's an argv[0]; use it for messages. */
569 char *short_name
= strrchr (argv
[0], '/');
570 parser
->state
.name
= short_name
? short_name
+ 1 : argv
[0];
573 parser
->state
.name
= __argp_short_program_name ();
578 /* Free any storage consumed by PARSER (but not PARSER itself). */
580 parser_finalize (struct parser
*parser
,
581 error_t err
, int arg_ebadkey
, int *end_index
)
585 if (err
== EBADKEY
&& arg_ebadkey
)
586 /* Suppress errors generated by unparsed arguments. */
591 if (parser
->state
.next
== parser
->state
.argc
)
592 /* We successfully parsed all arguments! Call all the parsers again,
593 just a few more times... */
595 for (group
= parser
->groups
;
596 group
< parser
->egroup
&& (!err
|| err
==EBADKEY
);
598 if (group
->args_processed
== 0)
599 err
= group_parse (group
, &parser
->state
, ARGP_KEY_NO_ARGS
, 0);
600 for (group
= parser
->egroup
- 1;
601 group
>= parser
->groups
&& (!err
|| err
==EBADKEY
);
603 err
= group_parse (group
, &parser
->state
, ARGP_KEY_END
, 0);
606 err
= 0; /* Some parser didn't understand. */
608 /* Tell the user that all arguments are parsed. */
610 *end_index
= parser
->state
.next
;
613 /* Return any remaining arguments to the user. */
614 *end_index
= parser
->state
.next
;
616 /* No way to return the remaining arguments, they must be bogus. */
618 if (!(parser
->state
.flags
& ARGP_NO_ERRS
)
619 && parser
->state
.err_stream
)
620 fprintf (parser
->state
.err_stream
,
621 dgettext (parser
->argp
->argp_domain
,
622 "%s: Too many arguments\n"),
628 /* Okay, we're all done, with either an error or success; call the parsers
629 to indicate which one. */
633 /* Maybe print an error message. */
635 /* An appropriate message describing what the error was should have
636 been printed earlier. */
637 __argp_state_help (&parser
->state
, parser
->state
.err_stream
,
640 /* Since we didn't exit, give each parser an error indication. */
641 for (group
= parser
->groups
; group
< parser
->egroup
; group
++)
642 group_parse (group
, &parser
->state
, ARGP_KEY_ERROR
, 0);
645 /* Notify parsers of success, and propagate back values from parsers. */
647 /* We pass over the groups in reverse order so that child groups are
648 given a chance to do there processing before passing back a value to
650 for (group
= parser
->egroup
- 1
651 ; group
>= parser
->groups
&& (!err
|| err
== EBADKEY
)
653 err
= group_parse (group
, &parser
->state
, ARGP_KEY_SUCCESS
, 0);
655 err
= 0; /* Some parser didn't understand. */
658 /* Call parsers once more, to do any final cleanup. Errors are ignored. */
659 for (group
= parser
->egroup
- 1; group
>= parser
->groups
; group
--)
660 group_parse (group
, &parser
->state
, ARGP_KEY_FINI
, 0);
665 free (parser
->storage
);
670 /* Call the user parsers to parse the non-option argument VAL, at the current
671 position, returning any error. The state NEXT pointer is assumed to have
672 been adjusted (by getopt) to point after this argument; this function will
673 adjust it correctly to reflect however many args actually end up being
676 parser_parse_arg (struct parser
*parser
, char *val
)
678 /* Save the starting value of NEXT, first adjusting it so that the arg
679 we're parsing is again the front of the arg vector. */
680 int index
= --parser
->state
.next
;
681 error_t err
= EBADKEY
;
683 int key
= 0; /* Which of ARGP_KEY_ARG[S] we used. */
685 /* Try to parse the argument in each parser. */
686 for (group
= parser
->groups
687 ; group
< parser
->egroup
&& err
== EBADKEY
690 parser
->state
.next
++; /* For ARGP_KEY_ARG, consume the arg. */
692 err
= group_parse (group
, &parser
->state
, key
, val
);
695 /* This parser doesn't like ARGP_KEY_ARG; try ARGP_KEY_ARGS instead. */
697 parser
->state
.next
--; /* For ARGP_KEY_ARGS, put back the arg. */
699 err
= group_parse (group
, &parser
->state
, key
, 0);
705 if (key
== ARGP_KEY_ARGS
)
706 /* The default for ARGP_KEY_ARGS is to assume that if NEXT isn't
707 changed by the user, *all* arguments should be considered
709 parser
->state
.next
= parser
->state
.argc
;
711 if (parser
->state
.next
> index
)
712 /* Remember that we successfully processed a non-option
713 argument -- but only if the user hasn't gotten tricky and set
715 (--group
)->args_processed
+= (parser
->state
.next
- index
);
717 /* The user wants to reparse some args, give getopt another try. */
718 parser
->try_getopt
= 1;
724 /* Call the user parsers to parse the option OPT, with argument VAL, at the
725 current position, returning any error. */
727 parser_parse_opt (struct parser
*parser
, int opt
, char *val
)
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
;
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. */
740 char *short_index
= strchr (parser
->short_opts
, opt
);
743 for (group
= parser
->groups
; group
< parser
->egroup
; group
++)
744 if (group
->short_end
> short_index
)
746 err
= group_parse (group
, &parser
->state
, opt
,
747 parser
->opt_data
.optarg
);
752 /* A long option. We use shifts instead of masking for extracting
753 the user value in order to preserve the sign. */
755 group_parse (&parser
->groups
[group_key
- 1], &parser
->state
,
756 (opt
<< GROUP_BITS
) >> GROUP_BITS
,
757 parser
->opt_data
.optarg
);
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
764 static const char bad_key_err
[] =
765 N_("(PROGRAM ERROR) Option should have been recognized!?");
767 __argp_error (&parser
->state
, "-%c: %s", opt
,
768 dgettext (parser
->argp
->argp_domain
, bad_key_err
));
771 struct option
*long_opt
= parser
->long_opts
;
772 while (long_opt
->val
!= opt
&& long_opt
->name
)
774 __argp_error (&parser
->state
, "--%s: %s",
775 long_opt
->name
? long_opt
->name
: "???",
776 dgettext (parser
->argp
->argp_domain
, bad_key_err
));
783 /* Parse the next argument in PARSER (as indicated by PARSER->state.next).
784 Any error from the parsers is returned, and *ARGP_EBADKEY indicates
785 whether a value of EBADKEY is due to an unrecognized argument (which is
786 generally not fatal). */
788 parser_parse_next (struct parser
*parser
, int *arg_ebadkey
)
793 if (parser
->state
.quoted
&& parser
->state
.next
< parser
->state
.quoted
)
794 /* The next argument pointer has been moved to before the quoted
795 region, so pretend we never saw the quoting `--', and give getopt
796 another chance. If the user hasn't removed it, getopt will just
798 parser
->state
.quoted
= 0;
800 if (parser
->try_getopt
&& !parser
->state
.quoted
)
801 /* Give getopt a chance to parse this. */
803 /* Put it back in OPTIND for getopt. */
804 parser
->opt_data
.optind
= parser
->state
.next
;
805 /* Distinguish KEY_ERR from a real option. */
806 parser
->opt_data
.optopt
= KEY_END
;
807 if (parser
->state
.flags
& ARGP_LONG_ONLY
)
808 opt
= _getopt_long_only_r (parser
->state
.argc
, parser
->state
.argv
,
809 parser
->short_opts
, parser
->long_opts
, 0,
812 opt
= _getopt_long_r (parser
->state
.argc
, parser
->state
.argv
,
813 parser
->short_opts
, parser
->long_opts
, 0,
815 /* And see what getopt did. */
816 parser
->state
.next
= parser
->opt_data
.optind
;
819 /* Getopt says there are no more options, so stop using
820 getopt; we'll continue if necessary on our own. */
822 parser
->try_getopt
= 0;
823 if (parser
->state
.next
> 1
824 && strcmp (parser
->state
.argv
[parser
->state
.next
- 1], QUOTE
)
826 /* Not only is this the end of the options, but it's a
827 `quoted' region, which may have args that *look* like
828 options, so we definitely shouldn't try to use getopt past
829 here, whatever happens. */
830 parser
->state
.quoted
= parser
->state
.next
;
832 else if (opt
== KEY_ERR
&& parser
->opt_data
.optopt
!= KEY_END
)
833 /* KEY_ERR can have the same value as a valid user short
834 option, but in the case of a real error, getopt sets OPTOPT
835 to the offending character, which can never be KEY_END. */
846 /* We're past what getopt considers the options. */
847 if (parser
->state
.next
>= parser
->state
.argc
848 || (parser
->state
.flags
& ARGP_NO_ARGS
))
849 /* Indicate that we're done. */
855 /* A non-option arg; simulate what getopt might have done. */
858 parser
->opt_data
.optarg
= parser
->state
.argv
[parser
->state
.next
++];
863 /* A non-option argument; try each parser in turn. */
864 err
= parser_parse_arg (parser
, parser
->opt_data
.optarg
);
866 err
= parser_parse_opt (parser
, opt
, parser
->opt_data
.optarg
);
869 *arg_ebadkey
= (opt
== KEY_END
|| opt
== KEY_ARG
);
874 /* Parse the options strings in ARGC & ARGV according to the argp in ARGP.
875 FLAGS is one of the ARGP_ flags above. If END_INDEX is non-NULL, the
876 index in ARGV of the first unparsed option is returned in it. If an
877 unknown option is present, EINVAL is returned; if some parser routine
878 returned a non-zero value, it is returned; otherwise 0 is returned. */
880 __argp_parse (const struct argp
*argp
, int argc
, char **argv
, unsigned flags
,
881 int *end_index
, void *input
)
884 struct parser parser
;
886 /* If true, then err == EBADKEY is a result of a non-option argument failing
887 to be parsed (which in some cases isn't actually an error). */
890 if (! (flags
& ARGP_NO_HELP
))
891 /* Add our own options. */
893 struct argp_child
*child
= alloca (4 * sizeof (struct argp_child
));
894 struct argp
*top_argp
= alloca (sizeof (struct argp
));
896 /* TOP_ARGP has no options, it just serves to group the user & default
898 memset (top_argp
, 0, sizeof (*top_argp
));
899 top_argp
->children
= child
;
901 memset (child
, 0, 4 * sizeof (struct argp_child
));
904 (child
++)->argp
= argp
;
905 (child
++)->argp
= &argp_default_argp
;
906 if (argp_program_version
|| argp_program_version_hook
)
907 (child
++)->argp
= &argp_version_argp
;
913 /* Construct a parser for these arguments. */
914 err
= parser_init (&parser
, argp
, argc
, argv
, flags
, input
);
920 err
= parser_parse_next (&parser
, &arg_ebadkey
);
921 err
= parser_finalize (&parser
, err
, arg_ebadkey
, end_index
);
927 weak_alias (__argp_parse
, argp_parse
)
930 /* Return the input field for ARGP in the parser corresponding to STATE; used
931 by the help routines. */
933 __argp_input (const struct argp
*argp
, const struct argp_state
*state
)
938 struct parser
*parser
= state
->pstate
;
940 for (group
= parser
->groups
; group
< parser
->egroup
; group
++)
941 if (group
->argp
== argp
)
948 weak_alias (__argp_input
, _argp_input
)