Bump versions.
[shishi.git] / gl / argp-help.c
blob42e4e4a294e9495ade4321f9c762e6bb33a2046d
1 /* Hierarchial argument parsing help output
2 Copyright (C) 1995-2000, 2001, 2002, 2003 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 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.
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 #ifndef _GNU_SOURCE
21 # define _GNU_SOURCE 1
22 #endif
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
28 #ifndef alloca
29 # ifdef __GNUC__
30 # define alloca __builtin_alloca
31 # define HAVE_ALLOCA 1
32 # else
33 # if defined HAVE_ALLOCA_H || defined _LIBC
34 # include <alloca.h>
35 # else
36 # ifdef _AIX
37 #pragma alloca
38 # else
39 # ifndef alloca
40 char *alloca ();
41 # endif
42 # endif
43 # endif
44 # endif
45 #endif
47 #include <stddef.h>
48 #include <stdlib.h>
49 #include <string.h>
50 #include <assert.h>
51 #include <stdarg.h>
52 #include <ctype.h>
53 #ifdef USE_IN_LIBIO
54 # include <wchar.h>
55 #endif
57 #ifndef _
58 /* This is for other GNU distributions with internationalized messages. */
59 # if defined HAVE_LIBINTL_H || defined _LIBC
60 # include <libintl.h>
61 # ifdef _LIBC
62 # undef dgettext
63 # define dgettext(domain, msgid) \
64 INTUSE(__dcgettext) (domain, msgid, LC_MESSAGES)
65 # endif
66 # else
67 # define dgettext(domain, msgid) (msgid)
68 # endif
69 #endif
71 #ifndef __attribute
72 # define __attribute(xyz) /* Ignore */
73 #endif
75 #ifndef _LIBC
76 # if !HAVE_DECL_STRERROR
77 char *strerror ();
78 # endif
79 #endif
81 #include "argp.h"
82 #include "argp-fmtstream.h"
83 #include "argp-namefrob.h"
85 /* User-selectable (using an environment variable) formatting parameters.
87 These may be specified in an environment variable called `ARGP_HELP_FMT',
88 with a contents like: VAR1=VAL1,VAR2=VAL2,BOOLVAR2,no-BOOLVAR2
89 Where VALn must be a positive integer. The list of variables is in the
90 UPARAM_NAMES vector, below. */
92 /* Default parameters. */
93 #define DUP_ARGS 0 /* True if option argument can be duplicated. */
94 #define DUP_ARGS_NOTE 1 /* True to print a note about duplicate args. */
95 #define SHORT_OPT_COL 2 /* column in which short options start */
96 #define LONG_OPT_COL 6 /* column in which long options start */
97 #define DOC_OPT_COL 2 /* column in which doc options start */
98 #define OPT_DOC_COL 29 /* column in which option text starts */
99 #define HEADER_COL 1 /* column in which group headers are printed */
100 #define USAGE_INDENT 12 /* indentation of wrapped usage lines */
101 #define RMARGIN 79 /* right margin used for wrapping */
103 /* User-selectable (using an environment variable) formatting parameters.
104 They must all be of type `int' for the parsing code to work. */
105 struct uparams
107 /* If true, arguments for an option are shown with both short and long
108 options, even when a given option has both, e.g. `-x ARG, --longx=ARG'.
109 If false, then if an option has both, the argument is only shown with
110 the long one, e.g., `-x, --longx=ARG', and a message indicating that
111 this really means both is printed below the options. */
112 int dup_args;
114 /* This is true if when DUP_ARGS is false, and some duplicate arguments have
115 been suppressed, an explanatory message should be printed. */
116 int dup_args_note;
118 /* Various output columns. */
119 int short_opt_col;
120 int long_opt_col;
121 int doc_opt_col;
122 int opt_doc_col;
123 int header_col;
124 int usage_indent;
125 int rmargin;
127 int valid; /* True when the values in here are valid. */
130 /* This is a global variable, as user options are only ever read once. */
131 static struct uparams uparams = {
132 DUP_ARGS, DUP_ARGS_NOTE,
133 SHORT_OPT_COL, LONG_OPT_COL, DOC_OPT_COL, OPT_DOC_COL, HEADER_COL,
134 USAGE_INDENT, RMARGIN,
138 /* A particular uparam, and what the user name is. */
139 struct uparam_name
141 const char *name; /* User name. */
142 int is_bool; /* Whether it's `boolean'. */
143 size_t uparams_offs; /* Location of the (int) field in UPARAMS. */
146 /* The name-field mappings we know about. */
147 static const struct uparam_name uparam_names[] =
149 { "dup-args", 1, offsetof (struct uparams, dup_args) },
150 { "dup-args-note", 1, offsetof (struct uparams, dup_args_note) },
151 { "short-opt-col", 0, offsetof (struct uparams, short_opt_col) },
152 { "long-opt-col", 0, offsetof (struct uparams, long_opt_col) },
153 { "doc-opt-col", 0, offsetof (struct uparams, doc_opt_col) },
154 { "opt-doc-col", 0, offsetof (struct uparams, opt_doc_col) },
155 { "header-col", 0, offsetof (struct uparams, header_col) },
156 { "usage-indent", 0, offsetof (struct uparams, usage_indent) },
157 { "rmargin", 0, offsetof (struct uparams, rmargin) },
158 { 0 }
161 /* Read user options from the environment, and fill in UPARAMS appropiately. */
162 static void
163 fill_in_uparams (const struct argp_state *state)
165 const char *var = getenv ("ARGP_HELP_FMT");
167 #define SKIPWS(p) do { while (isspace (*p)) p++; } while (0);
169 if (var)
170 /* Parse var. */
171 while (*var)
173 SKIPWS (var);
175 if (isalpha (*var))
177 size_t var_len;
178 const struct uparam_name *un;
179 int unspec = 0, val = 0;
180 const char *arg = var;
182 while (isalnum (*arg) || *arg == '-' || *arg == '_')
183 arg++;
184 var_len = arg - var;
186 SKIPWS (arg);
188 if (*arg == '\0' || *arg == ',')
189 unspec = 1;
190 else if (*arg == '=')
192 arg++;
193 SKIPWS (arg);
196 if (unspec)
198 if (var[0] == 'n' && var[1] == 'o' && var[2] == '-')
200 val = 0;
201 var += 3;
202 var_len -= 3;
204 else
205 val = 1;
207 else if (isdigit (*arg))
209 val = atoi (arg);
210 while (isdigit (*arg))
211 arg++;
212 SKIPWS (arg);
215 for (un = uparam_names; un->name; un++)
216 if (strlen (un->name) == var_len
217 && strncmp (var, un->name, var_len) == 0)
219 if (unspec && !un->is_bool)
220 __argp_failure (state, 0, 0,
221 dgettext (state->root_argp->argp_domain, "\
222 %.*s: ARGP_HELP_FMT parameter requires a value"),
223 (int) var_len, var);
224 else
225 *(int *)((char *)&uparams + un->uparams_offs) = val;
226 break;
228 if (! un->name)
229 __argp_failure (state, 0, 0,
230 dgettext (state->root_argp->argp_domain, "\
231 %.*s: Unknown ARGP_HELP_FMT parameter"),
232 (int) var_len, var);
234 var = arg;
235 if (*var == ',')
236 var++;
238 else if (*var)
240 __argp_failure (state, 0, 0,
241 dgettext (state->root_argp->argp_domain,
242 "Garbage in ARGP_HELP_FMT: %s"), var);
243 break;
248 /* Returns true if OPT hasn't been marked invisible. Visibility only affects
249 whether OPT is displayed or used in sorting, not option shadowing. */
250 #define ovisible(opt) (! ((opt)->flags & OPTION_HIDDEN))
252 /* Returns true if OPT is an alias for an earlier option. */
253 #define oalias(opt) ((opt)->flags & OPTION_ALIAS)
255 /* Returns true if OPT is an documentation-only entry. */
256 #define odoc(opt) ((opt)->flags & OPTION_DOC)
258 /* Returns true if OPT is the end-of-list marker for a list of options. */
259 #define oend(opt) __option_is_end (opt)
261 /* Returns true if OPT has a short option. */
262 #define oshort(opt) __option_is_short (opt)
265 The help format for a particular option is like:
267 -xARG, -yARG, --long1=ARG, --long2=ARG Documentation...
269 Where ARG will be omitted if there's no argument, for this option, or
270 will be surrounded by "[" and "]" appropiately if the argument is
271 optional. The documentation string is word-wrapped appropiately, and if
272 the list of options is long enough, it will be started on a separate line.
273 If there are no short options for a given option, the first long option is
274 indented slighly in a way that's supposed to make most long options appear
275 to be in a separate column.
277 For example, the following output (from ps):
279 -p PID, --pid=PID List the process PID
280 --pgrp=PGRP List processes in the process group PGRP
281 -P, -x, --no-parent Include processes without parents
282 -Q, --all-fields Don't elide unusable fields (normally if there's
283 some reason ps can't print a field for any
284 process, it's removed from the output entirely)
285 -r, --reverse, --gratuitously-long-reverse-option
286 Reverse the order of any sort
287 --session[=SID] Add the processes from the session SID (which
288 defaults to the sid of the current process)
290 Here are some more options:
291 -f ZOT, --foonly=ZOT Glork a foonly
292 -z, --zaza Snit a zar
294 -?, --help Give this help list
295 --usage Give a short usage message
296 -V, --version Print program version
298 The struct argp_option array for the above could look like:
301 {"pid", 'p', "PID", 0, "List the process PID"},
302 {"pgrp", OPT_PGRP, "PGRP", 0, "List processes in the process group PGRP"},
303 {"no-parent", 'P', 0, 0, "Include processes without parents"},
304 {0, 'x', 0, OPTION_ALIAS},
305 {"all-fields",'Q', 0, 0, "Don't elide unusable fields (normally"
306 " if there's some reason ps can't"
307 " print a field for any process, it's"
308 " removed from the output entirely)" },
309 {"reverse", 'r', 0, 0, "Reverse the order of any sort"},
310 {"gratuitously-long-reverse-option", 0, 0, OPTION_ALIAS},
311 {"session", OPT_SESS, "SID", OPTION_ARG_OPTIONAL,
312 "Add the processes from the session"
313 " SID (which defaults to the sid of"
314 " the current process)" },
316 {0,0,0,0, "Here are some more options:"},
317 {"foonly", 'f', "ZOT", 0, "Glork a foonly"},
318 {"zaza", 'z', 0, 0, "Snit a zar"},
323 Note that the last three options are automatically supplied by argp_parse,
324 unless you tell it not to with ARGP_NO_HELP.
328 /* Returns true if CH occurs between BEG and END. */
329 static int
330 find_char (char ch, char *beg, char *end)
332 while (beg < end)
333 if (*beg == ch)
334 return 1;
335 else
336 beg++;
337 return 0;
340 struct hol_cluster; /* fwd decl */
342 struct hol_entry
344 /* First option. */
345 const struct argp_option *opt;
346 /* Number of options (including aliases). */
347 unsigned num;
349 /* A pointers into the HOL's short_options field, to the first short option
350 letter for this entry. The order of the characters following this point
351 corresponds to the order of options pointed to by OPT, and there are at
352 most NUM. A short option recorded in a option following OPT is only
353 valid if it occurs in the right place in SHORT_OPTIONS (otherwise it's
354 probably been shadowed by some other entry). */
355 char *short_options;
357 /* Entries are sorted by their group first, in the order:
358 1, 2, ..., n, 0, -m, ..., -2, -1
359 and then alphabetically within each group. The default is 0. */
360 int group;
362 /* The cluster of options this entry belongs to, or 0 if none. */
363 struct hol_cluster *cluster;
365 /* The argp from which this option came. */
366 const struct argp *argp;
369 /* A cluster of entries to reflect the argp tree structure. */
370 struct hol_cluster
372 /* A descriptive header printed before options in this cluster. */
373 const char *header;
375 /* Used to order clusters within the same group with the same parent,
376 according to the order in which they occurred in the parent argp's child
377 list. */
378 int index;
380 /* How to sort this cluster with respect to options and other clusters at the
381 same depth (clusters always follow options in the same group). */
382 int group;
384 /* The cluster to which this cluster belongs, or 0 if it's at the base
385 level. */
386 struct hol_cluster *parent;
388 /* The argp from which this cluster is (eventually) derived. */
389 const struct argp *argp;
391 /* The distance this cluster is from the root. */
392 int depth;
394 /* Clusters in a given hol are kept in a linked list, to make freeing them
395 possible. */
396 struct hol_cluster *next;
399 /* A list of options for help. */
400 struct hol
402 /* An array of hol_entry's. */
403 struct hol_entry *entries;
404 /* The number of entries in this hol. If this field is zero, the others
405 are undefined. */
406 unsigned num_entries;
408 /* A string containing all short options in this HOL. Each entry contains
409 pointers into this string, so the order can't be messed with blindly. */
410 char *short_options;
412 /* Clusters of entries in this hol. */
413 struct hol_cluster *clusters;
416 /* Create a struct hol from the options in ARGP. CLUSTER is the
417 hol_cluster in which these entries occur, or 0, if at the root. */
418 static struct hol *
419 make_hol (const struct argp *argp, struct hol_cluster *cluster)
421 char *so;
422 const struct argp_option *o;
423 const struct argp_option *opts = argp->options;
424 struct hol_entry *entry;
425 unsigned num_short_options = 0;
426 struct hol *hol = malloc (sizeof (struct hol));
428 assert (hol);
430 hol->num_entries = 0;
431 hol->clusters = 0;
433 if (opts)
435 int cur_group = 0;
437 /* The first option must not be an alias. */
438 assert (! oalias (opts));
440 /* Calculate the space needed. */
441 for (o = opts; ! oend (o); o++)
443 if (! oalias (o))
444 hol->num_entries++;
445 if (oshort (o))
446 num_short_options++; /* This is an upper bound. */
449 hol->entries = malloc (sizeof (struct hol_entry) * hol->num_entries);
450 hol->short_options = malloc (num_short_options + 1);
452 assert (hol->entries && hol->short_options);
454 /* Fill in the entries. */
455 so = hol->short_options;
456 for (o = opts, entry = hol->entries; ! oend (o); entry++)
458 entry->opt = o;
459 entry->num = 0;
460 entry->short_options = so;
461 entry->group = cur_group =
462 o->group
463 ? o->group
464 : ((!o->name && !o->key)
465 ? cur_group + 1
466 : cur_group);
467 entry->cluster = cluster;
468 entry->argp = argp;
472 entry->num++;
473 if (oshort (o) && ! find_char (o->key, hol->short_options, so))
474 /* O has a valid short option which hasn't already been used.*/
475 *so++ = o->key;
476 o++;
478 while (! oend (o) && oalias (o));
480 *so = '\0'; /* null terminated so we can find the length */
483 return hol;
486 /* Add a new cluster to HOL, with the given GROUP and HEADER (taken from the
487 associated argp child list entry), INDEX, and PARENT, and return a pointer
488 to it. ARGP is the argp that this cluster results from. */
489 static struct hol_cluster *
490 hol_add_cluster (struct hol *hol, int group, const char *header, int index,
491 struct hol_cluster *parent, const struct argp *argp)
493 struct hol_cluster *cl = malloc (sizeof (struct hol_cluster));
494 if (cl)
496 cl->group = group;
497 cl->header = header;
499 cl->index = index;
500 cl->parent = parent;
501 cl->argp = argp;
502 cl->depth = parent ? parent->depth + 1 : 0;
504 cl->next = hol->clusters;
505 hol->clusters = cl;
507 return cl;
510 /* Free HOL and any resources it uses. */
511 static void
512 hol_free (struct hol *hol)
514 struct hol_cluster *cl = hol->clusters;
516 while (cl)
518 struct hol_cluster *next = cl->next;
519 free (cl);
520 cl = next;
523 if (hol->num_entries > 0)
525 free (hol->entries);
526 free (hol->short_options);
529 free (hol);
532 static int
533 hol_entry_short_iterate (const struct hol_entry *entry,
534 int (*func)(const struct argp_option *opt,
535 const struct argp_option *real,
536 const char *domain, void *cookie),
537 const char *domain, void *cookie)
539 unsigned nopts;
540 int val = 0;
541 const struct argp_option *opt, *real = entry->opt;
542 char *so = entry->short_options;
544 for (opt = real, nopts = entry->num; nopts > 0 && !val; opt++, nopts--)
545 if (oshort (opt) && *so == opt->key)
547 if (!oalias (opt))
548 real = opt;
549 if (ovisible (opt))
550 val = (*func)(opt, real, domain, cookie);
551 so++;
554 return val;
557 static inline int
558 __attribute ((always_inline))
559 hol_entry_long_iterate (const struct hol_entry *entry,
560 int (*func)(const struct argp_option *opt,
561 const struct argp_option *real,
562 const char *domain, void *cookie),
563 const char *domain, void *cookie)
565 unsigned nopts;
566 int val = 0;
567 const struct argp_option *opt, *real = entry->opt;
569 for (opt = real, nopts = entry->num; nopts > 0 && !val; opt++, nopts--)
570 if (opt->name)
572 if (!oalias (opt))
573 real = opt;
574 if (ovisible (opt))
575 val = (*func)(opt, real, domain, cookie);
578 return val;
581 /* Iterator that returns true for the first short option. */
582 static inline int
583 until_short (const struct argp_option *opt, const struct argp_option *real,
584 const char *domain, void *cookie)
586 return oshort (opt) ? opt->key : 0;
589 /* Returns the first valid short option in ENTRY, or 0 if there is none. */
590 static char
591 hol_entry_first_short (const struct hol_entry *entry)
593 return hol_entry_short_iterate (entry, until_short,
594 entry->argp->argp_domain, 0);
597 /* Returns the first valid long option in ENTRY, or 0 if there is none. */
598 static const char *
599 hol_entry_first_long (const struct hol_entry *entry)
601 const struct argp_option *opt;
602 unsigned num;
603 for (opt = entry->opt, num = entry->num; num > 0; opt++, num--)
604 if (opt->name && ovisible (opt))
605 return opt->name;
606 return 0;
609 /* Returns the entry in HOL with the long option name NAME, or 0 if there is
610 none. */
611 static struct hol_entry *
612 hol_find_entry (struct hol *hol, const char *name)
614 struct hol_entry *entry = hol->entries;
615 unsigned num_entries = hol->num_entries;
617 while (num_entries-- > 0)
619 const struct argp_option *opt = entry->opt;
620 unsigned num_opts = entry->num;
622 while (num_opts-- > 0)
623 if (opt->name && ovisible (opt) && strcmp (opt->name, name) == 0)
624 return entry;
625 else
626 opt++;
628 entry++;
631 return 0;
634 /* If an entry with the long option NAME occurs in HOL, set it's special
635 sort position to GROUP. */
636 static void
637 hol_set_group (struct hol *hol, const char *name, int group)
639 struct hol_entry *entry = hol_find_entry (hol, name);
640 if (entry)
641 entry->group = group;
644 /* Order by group: 0, 1, 2, ..., n, -m, ..., -2, -1.
645 EQ is what to return if GROUP1 and GROUP2 are the same. */
646 static int
647 group_cmp (int group1, int group2, int eq)
649 if (group1 == group2)
650 return eq;
651 else if ((group1 < 0 && group2 < 0) || (group1 >= 0 && group2 >= 0))
652 return group1 - group2;
653 else
654 return group2 - group1;
657 /* Compare clusters CL1 & CL2 by the order that they should appear in
658 output. */
659 static int
660 hol_cluster_cmp (const struct hol_cluster *cl1, const struct hol_cluster *cl2)
662 /* If one cluster is deeper than the other, use its ancestor at the same
663 level, so that finding the common ancestor is straightforward. */
664 while (cl1->depth < cl2->depth)
665 cl1 = cl1->parent;
666 while (cl2->depth < cl1->depth)
667 cl2 = cl2->parent;
669 /* Now reduce both clusters to their ancestors at the point where both have
670 a common parent; these can be directly compared. */
671 while (cl1->parent != cl2->parent)
672 cl1 = cl1->parent, cl2 = cl2->parent;
674 return group_cmp (cl1->group, cl2->group, cl2->index - cl1->index);
677 /* Return the ancestor of CL that's just below the root (i.e., has a parent
678 of 0). */
679 static struct hol_cluster *
680 hol_cluster_base (struct hol_cluster *cl)
682 while (cl->parent)
683 cl = cl->parent;
684 return cl;
687 /* Return true if CL1 is a child of CL2. */
688 static int
689 hol_cluster_is_child (const struct hol_cluster *cl1,
690 const struct hol_cluster *cl2)
692 while (cl1 && cl1 != cl2)
693 cl1 = cl1->parent;
694 return cl1 == cl2;
697 /* Given the name of a OPTION_DOC option, modifies NAME to start at the tail
698 that should be used for comparisons, and returns true iff it should be
699 treated as a non-option. */
700 static int
701 canon_doc_option (const char **name)
703 int non_opt;
704 /* Skip initial whitespace. */
705 while (isspace (**name))
706 (*name)++;
707 /* Decide whether this looks like an option (leading `-') or not. */
708 non_opt = (**name != '-');
709 /* Skip until part of name used for sorting. */
710 while (**name && !isalnum (**name))
711 (*name)++;
712 return non_opt;
715 /* Order ENTRY1 & ENTRY2 by the order which they should appear in a help
716 listing. */
717 static int
718 hol_entry_cmp (const struct hol_entry *entry1,
719 const struct hol_entry *entry2)
721 /* The group numbers by which the entries should be ordered; if either is
722 in a cluster, then this is just the group within the cluster. */
723 int group1 = entry1->group, group2 = entry2->group;
725 if (entry1->cluster != entry2->cluster)
727 /* The entries are not within the same cluster, so we can't compare them
728 directly, we have to use the appropiate clustering level too. */
729 if (! entry1->cluster)
730 /* ENTRY1 is at the `base level', not in a cluster, so we have to
731 compare it's group number with that of the base cluster in which
732 ENTRY2 resides. Note that if they're in the same group, the
733 clustered option always comes laster. */
734 return group_cmp (group1, hol_cluster_base (entry2->cluster)->group, -1);
735 else if (! entry2->cluster)
736 /* Likewise, but ENTRY2's not in a cluster. */
737 return group_cmp (hol_cluster_base (entry1->cluster)->group, group2, 1);
738 else
739 /* Both entries are in clusters, we can just compare the clusters. */
740 return hol_cluster_cmp (entry1->cluster, entry2->cluster);
742 else if (group1 == group2)
743 /* The entries are both in the same cluster and group, so compare them
744 alphabetically. */
746 int short1 = hol_entry_first_short (entry1);
747 int short2 = hol_entry_first_short (entry2);
748 int doc1 = odoc (entry1->opt);
749 int doc2 = odoc (entry2->opt);
750 const char *long1 = hol_entry_first_long (entry1);
751 const char *long2 = hol_entry_first_long (entry2);
753 if (doc1)
754 doc1 = canon_doc_option (&long1);
755 if (doc2)
756 doc2 = canon_doc_option (&long2);
758 if (doc1 != doc2)
759 /* `documentation' options always follow normal options (or
760 documentation options that *look* like normal options). */
761 return doc1 - doc2;
762 else if (!short1 && !short2 && long1 && long2)
763 /* Only long options. */
764 return __strcasecmp (long1, long2);
765 else
766 /* Compare short/short, long/short, short/long, using the first
767 character of long options. Entries without *any* valid
768 options (such as options with OPTION_HIDDEN set) will be put
769 first, but as they're not displayed, it doesn't matter where
770 they are. */
772 char first1 = short1 ? short1 : long1 ? *long1 : 0;
773 char first2 = short2 ? short2 : long2 ? *long2 : 0;
774 #ifdef _tolower
775 int lower_cmp = _tolower (first1) - _tolower (first2);
776 #else
777 int lower_cmp = tolower (first1) - tolower (first2);
778 #endif
779 /* Compare ignoring case, except when the options are both the
780 same letter, in which case lower-case always comes first. */
781 return lower_cmp ? lower_cmp : first2 - first1;
784 else
785 /* Within the same cluster, but not the same group, so just compare
786 groups. */
787 return group_cmp (group1, group2, 0);
790 /* Version of hol_entry_cmp with correct signature for qsort. */
791 static int
792 hol_entry_qcmp (const void *entry1_v, const void *entry2_v)
794 return hol_entry_cmp (entry1_v, entry2_v);
797 /* Sort HOL by group and alphabetically by option name (with short options
798 taking precedence over long). Since the sorting is for display purposes
799 only, the shadowing of options isn't effected. */
800 static void
801 hol_sort (struct hol *hol)
803 if (hol->num_entries > 0)
804 qsort (hol->entries, hol->num_entries, sizeof (struct hol_entry),
805 hol_entry_qcmp);
808 /* Append MORE to HOL, destroying MORE in the process. Options in HOL shadow
809 any in MORE with the same name. */
810 static void
811 hol_append (struct hol *hol, struct hol *more)
813 struct hol_cluster **cl_end = &hol->clusters;
815 /* Steal MORE's cluster list, and add it to the end of HOL's. */
816 while (*cl_end)
817 cl_end = &(*cl_end)->next;
818 *cl_end = more->clusters;
819 more->clusters = 0;
821 /* Merge entries. */
822 if (more->num_entries > 0)
824 if (hol->num_entries == 0)
826 hol->num_entries = more->num_entries;
827 hol->entries = more->entries;
828 hol->short_options = more->short_options;
829 more->num_entries = 0; /* Mark MORE's fields as invalid. */
831 else
832 /* Append the entries in MORE to those in HOL, taking care to only add
833 non-shadowed SHORT_OPTIONS values. */
835 unsigned left;
836 char *so, *more_so;
837 struct hol_entry *e;
838 unsigned num_entries = hol->num_entries + more->num_entries;
839 struct hol_entry *entries =
840 malloc (num_entries * sizeof (struct hol_entry));
841 unsigned hol_so_len = strlen (hol->short_options);
842 char *short_options =
843 malloc (hol_so_len + strlen (more->short_options) + 1);
845 __mempcpy (__mempcpy (entries, hol->entries,
846 hol->num_entries * sizeof (struct hol_entry)),
847 more->entries,
848 more->num_entries * sizeof (struct hol_entry));
850 __mempcpy (short_options, hol->short_options, hol_so_len);
852 /* Fix up the short options pointers from HOL. */
853 for (e = entries, left = hol->num_entries; left > 0; e++, left--)
854 e->short_options += (short_options - hol->short_options);
856 /* Now add the short options from MORE, fixing up its entries
857 too. */
858 so = short_options + hol_so_len;
859 more_so = more->short_options;
860 for (left = more->num_entries; left > 0; e++, left--)
862 int opts_left;
863 const struct argp_option *opt;
865 e->short_options = so;
867 for (opts_left = e->num, opt = e->opt; opts_left; opt++, opts_left--)
869 int ch = *more_so;
870 if (oshort (opt) && ch == opt->key)
871 /* The next short option in MORE_SO, CH, is from OPT. */
873 if (! find_char (ch, short_options,
874 short_options + hol_so_len))
875 /* The short option CH isn't shadowed by HOL's options,
876 so add it to the sum. */
877 *so++ = ch;
878 more_so++;
883 *so = '\0';
885 free (hol->entries);
886 free (hol->short_options);
888 hol->entries = entries;
889 hol->num_entries = num_entries;
890 hol->short_options = short_options;
894 hol_free (more);
897 /* Inserts enough spaces to make sure STREAM is at column COL. */
898 static void
899 indent_to (argp_fmtstream_t stream, unsigned col)
901 int needed = col - __argp_fmtstream_point (stream);
902 while (needed-- > 0)
903 __argp_fmtstream_putc (stream, ' ');
906 /* Output to STREAM either a space, or a newline if there isn't room for at
907 least ENSURE characters before the right margin. */
908 static void
909 space (argp_fmtstream_t stream, size_t ensure)
911 if (__argp_fmtstream_point (stream) + ensure
912 >= __argp_fmtstream_rmargin (stream))
913 __argp_fmtstream_putc (stream, '\n');
914 else
915 __argp_fmtstream_putc (stream, ' ');
918 /* If the option REAL has an argument, we print it in using the printf
919 format REQ_FMT or OPT_FMT depending on whether it's a required or
920 optional argument. */
921 static void
922 arg (const struct argp_option *real, const char *req_fmt, const char *opt_fmt,
923 const char *domain, argp_fmtstream_t stream)
925 if (real->arg)
927 if (real->flags & OPTION_ARG_OPTIONAL)
928 __argp_fmtstream_printf (stream, opt_fmt,
929 dgettext (domain, real->arg));
930 else
931 __argp_fmtstream_printf (stream, req_fmt,
932 dgettext (domain, real->arg));
936 /* Helper functions for hol_entry_help. */
938 /* State used during the execution of hol_help. */
939 struct hol_help_state
941 /* PREV_ENTRY should contain the previous entry printed, or 0. */
942 struct hol_entry *prev_entry;
944 /* If an entry is in a different group from the previous one, and SEP_GROUPS
945 is true, then a blank line will be printed before any output. */
946 int sep_groups;
948 /* True if a duplicate option argument was suppressed (only ever set if
949 UPARAMS.dup_args is false). */
950 int suppressed_dup_arg;
953 /* Some state used while printing a help entry (used to communicate with
954 helper functions). See the doc for hol_entry_help for more info, as most
955 of the fields are copied from its arguments. */
956 struct pentry_state
958 const struct hol_entry *entry;
959 argp_fmtstream_t stream;
960 struct hol_help_state *hhstate;
962 /* True if nothing's been printed so far. */
963 int first;
965 /* If non-zero, the state that was used to print this help. */
966 const struct argp_state *state;
969 /* If a user doc filter should be applied to DOC, do so. */
970 static const char *
971 filter_doc (const char *doc, int key, const struct argp *argp,
972 const struct argp_state *state)
974 if (argp->help_filter)
975 /* We must apply a user filter to this output. */
977 void *input = __argp_input (argp, state);
978 return (*argp->help_filter) (key, doc, input);
980 else
981 /* No filter. */
982 return doc;
985 /* Prints STR as a header line, with the margin lines set appropiately, and
986 notes the fact that groups should be separated with a blank line. ARGP is
987 the argp that should dictate any user doc filtering to take place. Note
988 that the previous wrap margin isn't restored, but the left margin is reset
989 to 0. */
990 static void
991 print_header (const char *str, const struct argp *argp,
992 struct pentry_state *pest)
994 const char *tstr = dgettext (argp->argp_domain, str);
995 const char *fstr = filter_doc (tstr, ARGP_KEY_HELP_HEADER, argp, pest->state);
997 if (fstr)
999 if (*fstr)
1001 if (pest->hhstate->prev_entry)
1002 /* Precede with a blank line. */
1003 __argp_fmtstream_putc (pest->stream, '\n');
1004 indent_to (pest->stream, uparams.header_col);
1005 __argp_fmtstream_set_lmargin (pest->stream, uparams.header_col);
1006 __argp_fmtstream_set_wmargin (pest->stream, uparams.header_col);
1007 __argp_fmtstream_puts (pest->stream, fstr);
1008 __argp_fmtstream_set_lmargin (pest->stream, 0);
1009 __argp_fmtstream_putc (pest->stream, '\n');
1012 pest->hhstate->sep_groups = 1; /* Separate subsequent groups. */
1015 if (fstr != tstr)
1016 free ((char *) fstr);
1019 /* Inserts a comma if this isn't the first item on the line, and then makes
1020 sure we're at least to column COL. If this *is* the first item on a line,
1021 prints any pending whitespace/headers that should precede this line. Also
1022 clears FIRST. */
1023 static void
1024 comma (unsigned col, struct pentry_state *pest)
1026 if (pest->first)
1028 const struct hol_entry *pe = pest->hhstate->prev_entry;
1029 const struct hol_cluster *cl = pest->entry->cluster;
1031 if (pest->hhstate->sep_groups && pe && pest->entry->group != pe->group)
1032 __argp_fmtstream_putc (pest->stream, '\n');
1034 if (cl && cl->header && *cl->header
1035 && (!pe
1036 || (pe->cluster != cl
1037 && !hol_cluster_is_child (pe->cluster, cl))))
1038 /* If we're changing clusters, then this must be the start of the
1039 ENTRY's cluster unless that is an ancestor of the previous one
1040 (in which case we had just popped into a sub-cluster for a bit).
1041 If so, then print the cluster's header line. */
1043 int old_wm = __argp_fmtstream_wmargin (pest->stream);
1044 print_header (cl->header, cl->argp, pest);
1045 __argp_fmtstream_set_wmargin (pest->stream, old_wm);
1048 pest->first = 0;
1050 else
1051 __argp_fmtstream_puts (pest->stream, ", ");
1053 indent_to (pest->stream, col);
1056 /* Print help for ENTRY to STREAM. */
1057 static void
1058 hol_entry_help (struct hol_entry *entry, const struct argp_state *state,
1059 argp_fmtstream_t stream, struct hol_help_state *hhstate)
1061 unsigned num;
1062 const struct argp_option *real = entry->opt, *opt;
1063 char *so = entry->short_options;
1064 int have_long_opt = 0; /* We have any long options. */
1065 /* Saved margins. */
1066 int old_lm = __argp_fmtstream_set_lmargin (stream, 0);
1067 int old_wm = __argp_fmtstream_wmargin (stream);
1068 /* PEST is a state block holding some of our variables that we'd like to
1069 share with helper functions. */
1070 struct pentry_state pest = { entry, stream, hhstate, 1, state };
1072 if (! odoc (real))
1073 for (opt = real, num = entry->num; num > 0; opt++, num--)
1074 if (opt->name && ovisible (opt))
1076 have_long_opt = 1;
1077 break;
1080 /* First emit short options. */
1081 __argp_fmtstream_set_wmargin (stream, uparams.short_opt_col); /* For truly bizarre cases. */
1082 for (opt = real, num = entry->num; num > 0; opt++, num--)
1083 if (oshort (opt) && opt->key == *so)
1084 /* OPT has a valid (non shadowed) short option. */
1086 if (ovisible (opt))
1088 comma (uparams.short_opt_col, &pest);
1089 __argp_fmtstream_putc (stream, '-');
1090 __argp_fmtstream_putc (stream, *so);
1091 if (!have_long_opt || uparams.dup_args)
1092 arg (real, " %s", "[%s]", state->root_argp->argp_domain, stream);
1093 else if (real->arg)
1094 hhstate->suppressed_dup_arg = 1;
1096 so++;
1099 /* Now, long options. */
1100 if (odoc (real))
1101 /* A `documentation' option. */
1103 __argp_fmtstream_set_wmargin (stream, uparams.doc_opt_col);
1104 for (opt = real, num = entry->num; num > 0; opt++, num--)
1105 if (opt->name && ovisible (opt))
1107 comma (uparams.doc_opt_col, &pest);
1108 /* Calling gettext here isn't quite right, since sorting will
1109 have been done on the original; but documentation options
1110 should be pretty rare anyway... */
1111 __argp_fmtstream_puts (stream,
1112 dgettext (state->root_argp->argp_domain,
1113 opt->name));
1116 else
1117 /* A real long option. */
1119 int first_long_opt = 1;
1121 __argp_fmtstream_set_wmargin (stream, uparams.long_opt_col);
1122 for (opt = real, num = entry->num; num > 0; opt++, num--)
1123 if (opt->name && ovisible (opt))
1125 comma (uparams.long_opt_col, &pest);
1126 __argp_fmtstream_printf (stream, "--%s", opt->name);
1127 if (first_long_opt || uparams.dup_args)
1128 arg (real, "=%s", "[=%s]", state->root_argp->argp_domain,
1129 stream);
1130 else if (real->arg)
1131 hhstate->suppressed_dup_arg = 1;
1135 /* Next, documentation strings. */
1136 __argp_fmtstream_set_lmargin (stream, 0);
1138 if (pest.first)
1140 /* Didn't print any switches, what's up? */
1141 if (!oshort (real) && !real->name)
1142 /* This is a group header, print it nicely. */
1143 print_header (real->doc, entry->argp, &pest);
1144 else
1145 /* Just a totally shadowed option or null header; print nothing. */
1146 goto cleanup; /* Just return, after cleaning up. */
1148 else
1150 const char *tstr = real->doc ? dgettext (state->root_argp->argp_domain,
1151 real->doc) : 0;
1152 const char *fstr = filter_doc (tstr, real->key, entry->argp, state);
1153 if (fstr && *fstr)
1155 unsigned int col = __argp_fmtstream_point (stream);
1157 __argp_fmtstream_set_lmargin (stream, uparams.opt_doc_col);
1158 __argp_fmtstream_set_wmargin (stream, uparams.opt_doc_col);
1160 if (col > (unsigned int) (uparams.opt_doc_col + 3))
1161 __argp_fmtstream_putc (stream, '\n');
1162 else if (col >= (unsigned int) uparams.opt_doc_col)
1163 __argp_fmtstream_puts (stream, " ");
1164 else
1165 indent_to (stream, uparams.opt_doc_col);
1167 __argp_fmtstream_puts (stream, fstr);
1169 if (fstr && fstr != tstr)
1170 free ((char *) fstr);
1172 /* Reset the left margin. */
1173 __argp_fmtstream_set_lmargin (stream, 0);
1174 __argp_fmtstream_putc (stream, '\n');
1177 hhstate->prev_entry = entry;
1179 cleanup:
1180 __argp_fmtstream_set_lmargin (stream, old_lm);
1181 __argp_fmtstream_set_wmargin (stream, old_wm);
1184 /* Output a long help message about the options in HOL to STREAM. */
1185 static void
1186 hol_help (struct hol *hol, const struct argp_state *state,
1187 argp_fmtstream_t stream)
1189 unsigned num;
1190 struct hol_entry *entry;
1191 struct hol_help_state hhstate = { 0, 0, 0 };
1193 for (entry = hol->entries, num = hol->num_entries; num > 0; entry++, num--)
1194 hol_entry_help (entry, state, stream, &hhstate);
1196 if (hhstate.suppressed_dup_arg && uparams.dup_args_note)
1198 const char *tstr = dgettext (state->root_argp->argp_domain, "\
1199 Mandatory or optional arguments to long options are also mandatory or \
1200 optional for any corresponding short options.");
1201 const char *fstr = filter_doc (tstr, ARGP_KEY_HELP_DUP_ARGS_NOTE,
1202 state ? state->root_argp : 0, state);
1203 if (fstr && *fstr)
1205 __argp_fmtstream_putc (stream, '\n');
1206 __argp_fmtstream_puts (stream, fstr);
1207 __argp_fmtstream_putc (stream, '\n');
1209 if (fstr && fstr != tstr)
1210 free ((char *) fstr);
1214 /* Helper functions for hol_usage. */
1216 /* If OPT is a short option without an arg, append its key to the string
1217 pointer pointer to by COOKIE, and advance the pointer. */
1218 static int
1219 add_argless_short_opt (const struct argp_option *opt,
1220 const struct argp_option *real,
1221 const char *domain, void *cookie)
1223 char **snao_end = cookie;
1224 if (!(opt->arg || real->arg)
1225 && !((opt->flags | real->flags) & OPTION_NO_USAGE))
1226 *(*snao_end)++ = opt->key;
1227 return 0;
1230 /* If OPT is a short option with an arg, output a usage entry for it to the
1231 stream pointed at by COOKIE. */
1232 static int
1233 usage_argful_short_opt (const struct argp_option *opt,
1234 const struct argp_option *real,
1235 const char *domain, void *cookie)
1237 argp_fmtstream_t stream = cookie;
1238 const char *arg = opt->arg;
1239 int flags = opt->flags | real->flags;
1241 if (! arg)
1242 arg = real->arg;
1244 if (arg && !(flags & OPTION_NO_USAGE))
1246 arg = dgettext (domain, arg);
1248 if (flags & OPTION_ARG_OPTIONAL)
1249 __argp_fmtstream_printf (stream, " [-%c[%s]]", opt->key, arg);
1250 else
1252 /* Manually do line wrapping so that it (probably) won't
1253 get wrapped at the embedded space. */
1254 space (stream, 6 + strlen (arg));
1255 __argp_fmtstream_printf (stream, "[-%c %s]", opt->key, arg);
1259 return 0;
1262 /* Output a usage entry for the long option opt to the stream pointed at by
1263 COOKIE. */
1264 static int
1265 usage_long_opt (const struct argp_option *opt,
1266 const struct argp_option *real,
1267 const char *domain, void *cookie)
1269 argp_fmtstream_t stream = cookie;
1270 const char *arg = opt->arg;
1271 int flags = opt->flags | real->flags;
1273 if (! arg)
1274 arg = real->arg;
1276 if (! (flags & OPTION_NO_USAGE))
1278 if (arg)
1280 arg = dgettext (domain, arg);
1281 if (flags & OPTION_ARG_OPTIONAL)
1282 __argp_fmtstream_printf (stream, " [--%s[=%s]]", opt->name, arg);
1283 else
1284 __argp_fmtstream_printf (stream, " [--%s=%s]", opt->name, arg);
1286 else
1287 __argp_fmtstream_printf (stream, " [--%s]", opt->name);
1290 return 0;
1293 /* Print a short usage description for the arguments in HOL to STREAM. */
1294 static void
1295 hol_usage (struct hol *hol, argp_fmtstream_t stream)
1297 if (hol->num_entries > 0)
1299 unsigned nentries;
1300 struct hol_entry *entry;
1301 char *short_no_arg_opts = alloca (strlen (hol->short_options) + 1);
1302 char *snao_end = short_no_arg_opts;
1304 /* First we put a list of short options without arguments. */
1305 for (entry = hol->entries, nentries = hol->num_entries
1306 ; nentries > 0
1307 ; entry++, nentries--)
1308 hol_entry_short_iterate (entry, add_argless_short_opt,
1309 entry->argp->argp_domain, &snao_end);
1310 if (snao_end > short_no_arg_opts)
1312 *snao_end++ = 0;
1313 __argp_fmtstream_printf (stream, " [-%s]", short_no_arg_opts);
1316 /* Now a list of short options *with* arguments. */
1317 for (entry = hol->entries, nentries = hol->num_entries
1318 ; nentries > 0
1319 ; entry++, nentries--)
1320 hol_entry_short_iterate (entry, usage_argful_short_opt,
1321 entry->argp->argp_domain, stream);
1323 /* Finally, a list of long options (whew!). */
1324 for (entry = hol->entries, nentries = hol->num_entries
1325 ; nentries > 0
1326 ; entry++, nentries--)
1327 hol_entry_long_iterate (entry, usage_long_opt,
1328 entry->argp->argp_domain, stream);
1332 /* Make a HOL containing all levels of options in ARGP. CLUSTER is the
1333 cluster in which ARGP's entries should be clustered, or 0. */
1334 static struct hol *
1335 argp_hol (const struct argp *argp, struct hol_cluster *cluster)
1337 const struct argp_child *child = argp->children;
1338 struct hol *hol = make_hol (argp, cluster);
1339 if (child)
1340 while (child->argp)
1342 struct hol_cluster *child_cluster =
1343 ((child->group || child->header)
1344 /* Put CHILD->argp within its own cluster. */
1345 ? hol_add_cluster (hol, child->group, child->header,
1346 child - argp->children, cluster, argp)
1347 /* Just merge it into the parent's cluster. */
1348 : cluster);
1349 hol_append (hol, argp_hol (child->argp, child_cluster)) ;
1350 child++;
1352 return hol;
1355 /* Calculate how many different levels with alternative args strings exist in
1356 ARGP. */
1357 static size_t
1358 argp_args_levels (const struct argp *argp)
1360 size_t levels = 0;
1361 const struct argp_child *child = argp->children;
1363 if (argp->args_doc && strchr (argp->args_doc, '\n'))
1364 levels++;
1366 if (child)
1367 while (child->argp)
1368 levels += argp_args_levels ((child++)->argp);
1370 return levels;
1373 /* Print all the non-option args documented in ARGP to STREAM. Any output is
1374 preceded by a space. LEVELS is a pointer to a byte vector the length
1375 returned by argp_args_levels; it should be initialized to zero, and
1376 updated by this routine for the next call if ADVANCE is true. True is
1377 returned as long as there are more patterns to output. */
1378 static int
1379 argp_args_usage (const struct argp *argp, const struct argp_state *state,
1380 char **levels, int advance, argp_fmtstream_t stream)
1382 char *our_level = *levels;
1383 int multiple = 0;
1384 const struct argp_child *child = argp->children;
1385 const char *tdoc = dgettext (argp->argp_domain, argp->args_doc), *nl = 0;
1386 const char *fdoc = filter_doc (tdoc, ARGP_KEY_HELP_ARGS_DOC, argp, state);
1388 if (fdoc)
1390 const char *cp = fdoc;
1391 nl = __strchrnul (cp, '\n');
1392 if (*nl != '\0')
1393 /* This is a `multi-level' args doc; advance to the correct position
1394 as determined by our state in LEVELS, and update LEVELS. */
1396 int i;
1397 multiple = 1;
1398 for (i = 0; i < *our_level; i++)
1399 cp = nl + 1, nl = __strchrnul (cp, '\n');
1400 (*levels)++;
1403 /* Manually do line wrapping so that it (probably) won't get wrapped at
1404 any embedded spaces. */
1405 space (stream, 1 + nl - cp);
1407 __argp_fmtstream_write (stream, cp, nl - cp);
1409 if (fdoc && fdoc != tdoc)
1410 free ((char *)fdoc); /* Free user's modified doc string. */
1412 if (child)
1413 while (child->argp)
1414 advance = !argp_args_usage ((child++)->argp, state, levels, advance, stream);
1416 if (advance && multiple)
1418 /* Need to increment our level. */
1419 if (*nl)
1420 /* There's more we can do here. */
1422 (*our_level)++;
1423 advance = 0; /* Our parent shouldn't advance also. */
1425 else if (*our_level > 0)
1426 /* We had multiple levels, but used them up; reset to zero. */
1427 *our_level = 0;
1430 return !advance;
1433 /* Print the documentation for ARGP to STREAM; if POST is false, then
1434 everything preceeding a `\v' character in the documentation strings (or
1435 the whole string, for those with none) is printed, otherwise, everything
1436 following the `\v' character (nothing for strings without). Each separate
1437 bit of documentation is separated a blank line, and if PRE_BLANK is true,
1438 then the first is as well. If FIRST_ONLY is true, only the first
1439 occurrence is output. Returns true if anything was output. */
1440 static int
1441 argp_doc (const struct argp *argp, const struct argp_state *state,
1442 int post, int pre_blank, int first_only,
1443 argp_fmtstream_t stream)
1445 const char *text;
1446 const char *inp_text;
1447 void *input = 0;
1448 int anything = 0;
1449 size_t inp_text_limit = 0;
1450 const char *doc = dgettext (argp->argp_domain, argp->doc);
1451 const struct argp_child *child = argp->children;
1453 if (doc)
1455 char *vt = strchr (doc, '\v');
1456 inp_text = post ? (vt ? vt + 1 : 0) : doc;
1457 inp_text_limit = (!post && vt) ? (vt - doc) : 0;
1459 else
1460 inp_text = 0;
1462 if (argp->help_filter)
1463 /* We have to filter the doc strings. */
1465 if (inp_text_limit)
1466 /* Copy INP_TEXT so that it's nul-terminated. */
1467 inp_text = __strndup (inp_text, inp_text_limit);
1468 input = __argp_input (argp, state);
1469 text =
1470 (*argp->help_filter) (post
1471 ? ARGP_KEY_HELP_POST_DOC
1472 : ARGP_KEY_HELP_PRE_DOC,
1473 inp_text, input);
1475 else
1476 text = (const char *) inp_text;
1478 if (text)
1480 if (pre_blank)
1481 __argp_fmtstream_putc (stream, '\n');
1483 if (text == inp_text && inp_text_limit)
1484 __argp_fmtstream_write (stream, inp_text, inp_text_limit);
1485 else
1486 __argp_fmtstream_puts (stream, text);
1488 if (__argp_fmtstream_point (stream) > __argp_fmtstream_lmargin (stream))
1489 __argp_fmtstream_putc (stream, '\n');
1491 anything = 1;
1494 if (text && text != inp_text)
1495 free ((char *) text); /* Free TEXT returned from the help filter. */
1496 if (inp_text && inp_text_limit && argp->help_filter)
1497 free ((char *) inp_text); /* We copied INP_TEXT, so free it now. */
1499 if (post && argp->help_filter)
1500 /* Now see if we have to output a ARGP_KEY_HELP_EXTRA text. */
1502 text = (*argp->help_filter) (ARGP_KEY_HELP_EXTRA, 0, input);
1503 if (text)
1505 if (anything || pre_blank)
1506 __argp_fmtstream_putc (stream, '\n');
1507 __argp_fmtstream_puts (stream, text);
1508 free ((char *) text);
1509 if (__argp_fmtstream_point (stream)
1510 > __argp_fmtstream_lmargin (stream))
1511 __argp_fmtstream_putc (stream, '\n');
1512 anything = 1;
1516 if (child)
1517 while (child->argp && !(first_only && anything))
1518 anything |=
1519 argp_doc ((child++)->argp, state,
1520 post, anything || pre_blank, first_only,
1521 stream);
1523 return anything;
1526 /* Output a usage message for ARGP to STREAM. If called from
1527 argp_state_help, STATE is the relevent parsing state. FLAGS are from the
1528 set ARGP_HELP_*. NAME is what to use wherever a `program name' is
1529 needed. */
1530 static void
1531 _help (const struct argp *argp, const struct argp_state *state, FILE *stream,
1532 unsigned flags, char *name)
1534 int anything = 0; /* Whether we've output anything. */
1535 struct hol *hol = 0;
1536 argp_fmtstream_t fs;
1538 if (! stream)
1539 return;
1541 __flockfile (stream);
1543 if (! uparams.valid)
1544 fill_in_uparams (state);
1546 fs = __argp_make_fmtstream (stream, 0, uparams.rmargin, 0);
1547 if (! fs)
1549 __funlockfile (stream);
1550 return;
1553 if (flags & (ARGP_HELP_USAGE | ARGP_HELP_SHORT_USAGE | ARGP_HELP_LONG))
1555 hol = argp_hol (argp, 0);
1557 /* If present, these options always come last. */
1558 hol_set_group (hol, "help", -1);
1559 hol_set_group (hol, "version", -1);
1561 hol_sort (hol);
1564 if (flags & (ARGP_HELP_USAGE | ARGP_HELP_SHORT_USAGE))
1565 /* Print a short `Usage:' message. */
1567 int first_pattern = 1, more_patterns;
1568 size_t num_pattern_levels = argp_args_levels (argp);
1569 char *pattern_levels = alloca (num_pattern_levels);
1571 memset (pattern_levels, 0, num_pattern_levels);
1575 int old_lm;
1576 int old_wm = __argp_fmtstream_set_wmargin (fs, uparams.usage_indent);
1577 char *levels = pattern_levels;
1579 if (first_pattern)
1580 __argp_fmtstream_printf (fs, "%s %s",
1581 dgettext (argp->argp_domain, "Usage:"),
1582 name);
1583 else
1584 __argp_fmtstream_printf (fs, "%s %s",
1585 dgettext (argp->argp_domain, " or: "),
1586 name);
1588 /* We set the lmargin as well as the wmargin, because hol_usage
1589 manually wraps options with newline to avoid annoying breaks. */
1590 old_lm = __argp_fmtstream_set_lmargin (fs, uparams.usage_indent);
1592 if (flags & ARGP_HELP_SHORT_USAGE)
1593 /* Just show where the options go. */
1595 if (hol->num_entries > 0)
1596 __argp_fmtstream_puts (fs, dgettext (argp->argp_domain,
1597 " [OPTION...]"));
1599 else
1600 /* Actually print the options. */
1602 hol_usage (hol, fs);
1603 flags |= ARGP_HELP_SHORT_USAGE; /* But only do so once. */
1606 more_patterns = argp_args_usage (argp, state, &levels, 1, fs);
1608 __argp_fmtstream_set_wmargin (fs, old_wm);
1609 __argp_fmtstream_set_lmargin (fs, old_lm);
1611 __argp_fmtstream_putc (fs, '\n');
1612 anything = 1;
1614 first_pattern = 0;
1616 while (more_patterns);
1619 if (flags & ARGP_HELP_PRE_DOC)
1620 anything |= argp_doc (argp, state, 0, 0, 1, fs);
1622 if (flags & ARGP_HELP_SEE)
1624 __argp_fmtstream_printf (fs, dgettext (argp->argp_domain, "\
1625 Try `%s --help' or `%s --usage' for more information.\n"),
1626 name, name);
1627 anything = 1;
1630 if (flags & ARGP_HELP_LONG)
1631 /* Print a long, detailed help message. */
1633 /* Print info about all the options. */
1634 if (hol->num_entries > 0)
1636 if (anything)
1637 __argp_fmtstream_putc (fs, '\n');
1638 hol_help (hol, state, fs);
1639 anything = 1;
1643 if (flags & ARGP_HELP_POST_DOC)
1644 /* Print any documentation strings at the end. */
1645 anything |= argp_doc (argp, state, 1, anything, 0, fs);
1647 if ((flags & ARGP_HELP_BUG_ADDR) && argp_program_bug_address)
1649 if (anything)
1650 __argp_fmtstream_putc (fs, '\n');
1651 __argp_fmtstream_printf (fs, dgettext (argp->argp_domain,
1652 "Report bugs to %s.\n"),
1653 argp_program_bug_address);
1654 anything = 1;
1657 __funlockfile (stream);
1659 if (hol)
1660 hol_free (hol);
1662 __argp_fmtstream_free (fs);
1665 #ifndef weak_alias
1666 # define __argp_help argp_help
1667 #endif
1668 /* Output a usage message for ARGP to STREAM. FLAGS are from the set
1669 ARGP_HELP_*. NAME is what to use wherever a `program name' is needed. */
1670 void __argp_help (const struct argp *argp, FILE *stream,
1671 unsigned flags, char *name)
1673 _help (argp, 0, stream, flags, name);
1675 #ifdef weak_alias
1676 weak_alias (__argp_help, argp_help)
1677 #endif
1679 char *__argp_basename(char *name)
1681 char *short_name = strrchr(name, '/');
1682 return short_name ? short_name + 1 : name;
1685 char *
1686 __argp_short_program_name(const struct argp_state *state)
1688 if (state)
1689 return state->name;
1690 #if HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME || defined _LIBC
1691 return program_invocation_short_name;
1692 #elif HAVE_DECL_PROGRAM_INVOCATION_NAME
1693 return __argp_basename(program_invocation_name);
1694 #else
1695 /* FIXME: What now? Miles suggests that it is better to use NULL,
1696 but currently the value is passed on directly to fputs_unlocked,
1697 so that requires more changes. */
1698 #if __GNUC__
1699 # warning No reasonable value to return
1700 #endif /* __GNUC__ */
1701 return "";
1702 #endif
1705 #ifndef weak_alias
1706 # define __argp_state_help argp_state_help
1707 #endif
1708 /* Output, if appropriate, a usage message for STATE to STREAM. FLAGS are
1709 from the set ARGP_HELP_*. */
1710 void
1711 __argp_state_help (const struct argp_state *state, FILE *stream, unsigned flags)
1713 if ((!state || ! (state->flags & ARGP_NO_ERRS)) && stream)
1715 if (state && (state->flags & ARGP_LONG_ONLY))
1716 flags |= ARGP_HELP_LONG_ONLY;
1718 _help (state ? state->root_argp : 0, state, stream, flags,
1719 state ? state->name : __argp_short_program_name (state));
1721 if (!state || ! (state->flags & ARGP_NO_EXIT))
1723 if (flags & ARGP_HELP_EXIT_ERR)
1724 exit (argp_err_exit_status);
1725 if (flags & ARGP_HELP_EXIT_OK)
1726 exit (0);
1730 #ifdef weak_alias
1731 weak_alias (__argp_state_help, argp_state_help)
1732 #endif
1734 #ifndef weak_alias
1735 # define __argp_error argp_error
1736 #endif
1737 /* If appropriate, print the printf string FMT and following args, preceded
1738 by the program name and `:', to stderr, and followed by a `Try ... --help'
1739 message, then exit (1). */
1740 void
1741 __argp_error (const struct argp_state *state, const char *fmt, ...)
1743 if (!state || !(state->flags & ARGP_NO_ERRS))
1745 FILE *stream = state ? state->err_stream : stderr;
1747 if (stream)
1749 va_list ap;
1751 __flockfile (stream);
1753 va_start (ap, fmt);
1755 #ifdef USE_IN_LIBIO
1756 if (_IO_fwide (stream, 0) > 0)
1758 char *buf;
1760 __asprintf (&buf, fmt, ap);
1762 __fwprintf (stream, L"%s: %s\n",
1763 state ? state->name :
1764 __argp_short_program_name (state),
1765 buf);
1767 free (buf);
1769 else
1770 #endif
1772 fputs_unlocked (state
1773 ? state->name :
1774 __argp_short_program_name (state),
1775 stream);
1776 putc_unlocked (':', stream);
1777 putc_unlocked (' ', stream);
1779 vfprintf (stream, fmt, ap);
1781 putc_unlocked ('\n', stream);
1784 __argp_state_help (state, stream, ARGP_HELP_STD_ERR);
1786 va_end (ap);
1788 __funlockfile (stream);
1792 #ifdef weak_alias
1793 weak_alias (__argp_error, argp_error)
1794 #endif
1796 #ifndef weak_alias
1797 # define __argp_failure argp_failure
1798 #endif
1799 /* Similar to the standard gnu error-reporting function error(), but will
1800 respect the ARGP_NO_EXIT and ARGP_NO_ERRS flags in STATE, and will print
1801 to STATE->err_stream. This is useful for argument parsing code that is
1802 shared between program startup (when exiting is desired) and runtime
1803 option parsing (when typically an error code is returned instead). The
1804 difference between this function and argp_error is that the latter is for
1805 *parsing errors*, and the former is for other problems that occur during
1806 parsing but don't reflect a (syntactic) problem with the input. */
1807 void
1808 __argp_failure (const struct argp_state *state, int status, int errnum,
1809 const char *fmt, ...)
1811 if (!state || !(state->flags & ARGP_NO_ERRS))
1813 FILE *stream = state ? state->err_stream : stderr;
1815 if (stream)
1817 __flockfile (stream);
1819 #ifdef USE_IN_LIBIO
1820 if (_IO_fwide (stream, 0) > 0)
1821 __fwprintf (stream, L"%s",
1822 state ? state->name :
1823 __argp_short_program_name (state));
1824 else
1825 #endif
1826 fputs_unlocked (state
1827 ? state->name : __argp_short_program_name (state),
1828 stream);
1830 if (fmt)
1832 va_list ap;
1834 va_start (ap, fmt);
1835 #ifdef USE_IN_LIBIO
1836 if (_IO_fwide (stream, 0) > 0)
1838 char *buf;
1840 __asprintf (&buf, fmt, ap);
1842 __fwprintf (stream, L": %s", buf);
1844 free (buf);
1846 else
1847 #endif
1849 putc_unlocked (':', stream);
1850 putc_unlocked (' ', stream);
1852 vfprintf (stream, fmt, ap);
1855 va_end (ap);
1858 if (errnum)
1860 char buf[200];
1862 #ifdef USE_IN_LIBIO
1863 if (_IO_fwide (stream, 0) > 0)
1864 #if defined _LIBC
1865 __fwprintf (stream, L": %s",
1866 __strerror_r (errnum, buf, sizeof (buf)));
1867 #else
1868 __fwprintf (stream, L": %s", strerror (errnum));
1869 #endif
1870 else
1871 #endif
1873 putc_unlocked (':', stream);
1874 putc_unlocked (' ', stream);
1875 #if defined _LIBC
1876 fputs (__strerror_r (errnum, buf, sizeof (buf)), stream);
1877 #else
1878 fputs (strerror (errnum), stream);
1879 #endif
1883 #ifdef USE_IN_LIBIO
1884 if (_IO_fwide (stream, 0) > 0)
1885 putwc_unlocked (L'\n', stream);
1886 else
1887 #endif
1888 putc_unlocked ('\n', stream);
1890 __funlockfile (stream);
1892 if (status && (!state || !(state->flags & ARGP_NO_EXIT)))
1893 exit (status);
1897 #ifdef weak_alias
1898 weak_alias (__argp_failure, argp_failure)
1899 #endif