]> git.ipfire.org Git - thirdparty/glibc.git/blob - argp/argp-help.c
Update.
[thirdparty/glibc.git] / argp / argp-help.c
1 /* Hierarchial argument parsing help output
2 Copyright (C) 1995,1996,1997,1998,1999,2000 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 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
10
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 Library General Public License for more details.
15
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 #ifndef _GNU_SOURCE
22 # define _GNU_SOURCE 1
23 #endif
24
25 #ifdef HAVE_CONFIG_H
26 #include <config.h>
27 #endif
28
29 #ifndef alloca
30 # ifdef __GNUC__
31 # define alloca __builtin_alloca
32 # define HAVE_ALLOCA 1
33 # else
34 # if defined HAVE_ALLOCA_H || defined _LIBC
35 # include <alloca.h>
36 # else
37 # ifdef _AIX
38 #pragma alloca
39 # else
40 # ifndef alloca
41 char *alloca ();
42 # endif
43 # endif
44 # endif
45 # endif
46 #endif
47
48 #include <stddef.h>
49 #include <stdlib.h>
50 #include <string.h>
51 #include <assert.h>
52 #include <stdarg.h>
53 #include <malloc.h>
54 #include <ctype.h>
55
56 #ifndef _
57 /* This is for other GNU distributions with internationalized messages. */
58 # if defined HAVE_LIBINTL_H || defined _LIBC
59 # include <libintl.h>
60 # ifdef _LIBC
61 # undef dgettext
62 # define dgettext(domain, msgid) __dcgettext (domain, msgid, LC_MESSAGES)
63 # endif
64 # else
65 # define dgettext(domain, msgid) (msgid)
66 # endif
67 #endif
68
69 #include "argp.h"
70 #include "argp-fmtstream.h"
71 #include "argp-namefrob.h"
72 \f
73 /* User-selectable (using an environment variable) formatting parameters.
74
75 These may be specified in an environment variable called `ARGP_HELP_FMT',
76 with a contents like: VAR1=VAL1,VAR2=VAL2,BOOLVAR2,no-BOOLVAR2
77 Where VALn must be a positive integer. The list of variables is in the
78 UPARAM_NAMES vector, below. */
79
80 /* Default parameters. */
81 #define DUP_ARGS 0 /* True if option argument can be duplicated. */
82 #define DUP_ARGS_NOTE 1 /* True to print a note about duplicate args. */
83 #define SHORT_OPT_COL 2 /* column in which short options start */
84 #define LONG_OPT_COL 6 /* column in which long options start */
85 #define DOC_OPT_COL 2 /* column in which doc options start */
86 #define OPT_DOC_COL 29 /* column in which option text starts */
87 #define HEADER_COL 1 /* column in which group headers are printed */
88 #define USAGE_INDENT 12 /* indentation of wrapped usage lines */
89 #define RMARGIN 79 /* right margin used for wrapping */
90
91 /* User-selectable (using an environment variable) formatting parameters.
92 They must all be of type `int' for the parsing code to work. */
93 struct uparams
94 {
95 /* If true, arguments for an option are shown with both short and long
96 options, even when a given option has both, e.g. `-x ARG, --longx=ARG'.
97 If false, then if an option has both, the argument is only shown with
98 the long one, e.g., `-x, --longx=ARG', and a message indicating that
99 this really means both is printed below the options. */
100 int dup_args;
101
102 /* This is true if when DUP_ARGS is false, and some duplicate arguments have
103 been suppressed, an explanatory message should be printed. */
104 int dup_args_note;
105
106 /* Various output columns. */
107 int short_opt_col;
108 int long_opt_col;
109 int doc_opt_col;
110 int opt_doc_col;
111 int header_col;
112 int usage_indent;
113 int rmargin;
114
115 int valid; /* True when the values in here are valid. */
116 };
117
118 /* This is a global variable, as user options are only ever read once. */
119 static struct uparams uparams = {
120 DUP_ARGS, DUP_ARGS_NOTE,
121 SHORT_OPT_COL, LONG_OPT_COL, DOC_OPT_COL, OPT_DOC_COL, HEADER_COL,
122 USAGE_INDENT, RMARGIN,
123 0
124 };
125
126 /* A particular uparam, and what the user name is. */
127 struct uparam_name
128 {
129 const char *name; /* User name. */
130 int is_bool; /* Whether it's `boolean'. */
131 size_t uparams_offs; /* Location of the (int) field in UPARAMS. */
132 };
133
134 /* The name-field mappings we know about. */
135 static const struct uparam_name uparam_names[] =
136 {
137 { "dup-args", 1, offsetof (struct uparams, dup_args) },
138 { "dup-args-note", 1, offsetof (struct uparams, dup_args_note) },
139 { "short-opt-col", 0, offsetof (struct uparams, short_opt_col) },
140 { "long-opt-col", 0, offsetof (struct uparams, long_opt_col) },
141 { "doc-opt-col", 0, offsetof (struct uparams, doc_opt_col) },
142 { "opt-doc-col", 0, offsetof (struct uparams, opt_doc_col) },
143 { "header-col", 0, offsetof (struct uparams, header_col) },
144 { "usage-indent", 0, offsetof (struct uparams, usage_indent) },
145 { "rmargin", 0, offsetof (struct uparams, rmargin) },
146 { 0 }
147 };
148
149 /* Read user options from the environment, and fill in UPARAMS appropiately. */
150 static void
151 fill_in_uparams (const struct argp_state *state)
152 {
153 const char *var = getenv ("ARGP_HELP_FMT");
154
155 #define SKIPWS(p) do { while (isspace (*p)) p++; } while (0);
156
157 if (var)
158 /* Parse var. */
159 while (*var)
160 {
161 SKIPWS (var);
162
163 if (isalpha (*var))
164 {
165 size_t var_len;
166 const struct uparam_name *un;
167 int unspec = 0, val = 0;
168 const char *arg = var;
169
170 while (isalnum (*arg) || *arg == '-' || *arg == '_')
171 arg++;
172 var_len = arg - var;
173
174 SKIPWS (arg);
175
176 if (*arg == '\0' || *arg == ',')
177 unspec = 1;
178 else if (*arg == '=')
179 {
180 arg++;
181 SKIPWS (arg);
182 }
183
184 if (unspec)
185 {
186 if (var[0] == 'n' && var[1] == 'o' && var[2] == '-')
187 {
188 val = 0;
189 var += 3;
190 var_len -= 3;
191 }
192 else
193 val = 1;
194 }
195 else if (isdigit (*arg))
196 {
197 val = atoi (arg);
198 while (isdigit (*arg))
199 arg++;
200 SKIPWS (arg);
201 }
202
203 for (un = uparam_names; un->name; un++)
204 if (strlen (un->name) == var_len
205 && strncmp (var, un->name, var_len) == 0)
206 {
207 if (unspec && !un->is_bool)
208 __argp_failure (state, 0, 0,
209 dgettext (state->root_argp->argp_domain, "\
210 %.*s: ARGP_HELP_FMT parameter requires a value"),
211 (int) var_len, var);
212 else
213 *(int *)((char *)&uparams + un->uparams_offs) = val;
214 break;
215 }
216 if (! un->name)
217 __argp_failure (state, 0, 0,
218 dgettext (state->root_argp->argp_domain, "\
219 %.*s: Unknown ARGP_HELP_FMT parameter"),
220 (int) var_len, var);
221
222 var = arg;
223 if (*var == ',')
224 var++;
225 }
226 else if (*var)
227 {
228 __argp_failure (state, 0, 0,
229 dgettext (state->root_argp->argp_domain,
230 "Garbage in ARGP_HELP_FMT: %s"), var);
231 break;
232 }
233 }
234 }
235 \f
236 /* Returns true if OPT hasn't been marked invisible. Visibility only affects
237 whether OPT is displayed or used in sorting, not option shadowing. */
238 #define ovisible(opt) (! ((opt)->flags & OPTION_HIDDEN))
239
240 /* Returns true if OPT is an alias for an earlier option. */
241 #define oalias(opt) ((opt)->flags & OPTION_ALIAS)
242
243 /* Returns true if OPT is an documentation-only entry. */
244 #define odoc(opt) ((opt)->flags & OPTION_DOC)
245
246 /* Returns true if OPT is the end-of-list marker for a list of options. */
247 #define oend(opt) __option_is_end (opt)
248
249 /* Returns true if OPT has a short option. */
250 #define oshort(opt) __option_is_short (opt)
251 \f
252 /*
253 The help format for a particular option is like:
254
255 -xARG, -yARG, --long1=ARG, --long2=ARG Documentation...
256
257 Where ARG will be omitted if there's no argument, for this option, or
258 will be surrounded by "[" and "]" appropiately if the argument is
259 optional. The documentation string is word-wrapped appropiately, and if
260 the list of options is long enough, it will be started on a separate line.
261 If there are no short options for a given option, the first long option is
262 indented slighly in a way that's supposed to make most long options appear
263 to be in a separate column.
264
265 For example, the following output (from ps):
266
267 -p PID, --pid=PID List the process PID
268 --pgrp=PGRP List processes in the process group PGRP
269 -P, -x, --no-parent Include processes without parents
270 -Q, --all-fields Don't elide unusable fields (normally if there's
271 some reason ps can't print a field for any
272 process, it's removed from the output entirely)
273 -r, --reverse, --gratuitously-long-reverse-option
274 Reverse the order of any sort
275 --session[=SID] Add the processes from the session SID (which
276 defaults to the sid of the current process)
277
278 Here are some more options:
279 -f ZOT, --foonly=ZOT Glork a foonly
280 -z, --zaza Snit a zar
281
282 -?, --help Give this help list
283 --usage Give a short usage message
284 -V, --version Print program version
285
286 The struct argp_option array for the above could look like:
287
288 {
289 {"pid", 'p', "PID", 0, "List the process PID"},
290 {"pgrp", OPT_PGRP, "PGRP", 0, "List processes in the process group PGRP"},
291 {"no-parent", 'P', 0, 0, "Include processes without parents"},
292 {0, 'x', 0, OPTION_ALIAS},
293 {"all-fields",'Q', 0, 0, "Don't elide unusable fields (normally"
294 " if there's some reason ps can't"
295 " print a field for any process, it's"
296 " removed from the output entirely)" },
297 {"reverse", 'r', 0, 0, "Reverse the order of any sort"},
298 {"gratuitously-long-reverse-option", 0, 0, OPTION_ALIAS},
299 {"session", OPT_SESS, "SID", OPTION_ARG_OPTIONAL,
300 "Add the processes from the session"
301 " SID (which defaults to the sid of"
302 " the current process)" },
303
304 {0,0,0,0, "Here are some more options:"},
305 {"foonly", 'f', "ZOT", 0, "Glork a foonly"},
306 {"zaza", 'z', 0, 0, "Snit a zar"},
307
308 {0}
309 }
310
311 Note that the last three options are automatically supplied by argp_parse,
312 unless you tell it not to with ARGP_NO_HELP.
313
314 */
315 \f
316 /* Returns true if CH occurs between BEG and END. */
317 static int
318 find_char (char ch, char *beg, char *end)
319 {
320 while (beg < end)
321 if (*beg == ch)
322 return 1;
323 else
324 beg++;
325 return 0;
326 }
327 \f
328 struct hol_cluster; /* fwd decl */
329
330 struct hol_entry
331 {
332 /* First option. */
333 const struct argp_option *opt;
334 /* Number of options (including aliases). */
335 unsigned num;
336
337 /* A pointers into the HOL's short_options field, to the first short option
338 letter for this entry. The order of the characters following this point
339 corresponds to the order of options pointed to by OPT, and there are at
340 most NUM. A short option recorded in a option following OPT is only
341 valid if it occurs in the right place in SHORT_OPTIONS (otherwise it's
342 probably been shadowed by some other entry). */
343 char *short_options;
344
345 /* Entries are sorted by their group first, in the order:
346 1, 2, ..., n, 0, -m, ..., -2, -1
347 and then alphabetically within each group. The default is 0. */
348 int group;
349
350 /* The cluster of options this entry belongs to, or 0 if none. */
351 struct hol_cluster *cluster;
352
353 /* The argp from which this option came. */
354 const struct argp *argp;
355 };
356
357 /* A cluster of entries to reflect the argp tree structure. */
358 struct hol_cluster
359 {
360 /* A descriptive header printed before options in this cluster. */
361 const char *header;
362
363 /* Used to order clusters within the same group with the same parent,
364 according to the order in which they occurred in the parent argp's child
365 list. */
366 int index;
367
368 /* How to sort this cluster with respect to options and other clusters at the
369 same depth (clusters always follow options in the same group). */
370 int group;
371
372 /* The cluster to which this cluster belongs, or 0 if it's at the base
373 level. */
374 struct hol_cluster *parent;
375
376 /* The argp from which this cluster is (eventually) derived. */
377 const struct argp *argp;
378
379 /* The distance this cluster is from the root. */
380 int depth;
381
382 /* Clusters in a given hol are kept in a linked list, to make freeing them
383 possible. */
384 struct hol_cluster *next;
385 };
386
387 /* A list of options for help. */
388 struct hol
389 {
390 /* An array of hol_entry's. */
391 struct hol_entry *entries;
392 /* The number of entries in this hol. If this field is zero, the others
393 are undefined. */
394 unsigned num_entries;
395
396 /* A string containing all short options in this HOL. Each entry contains
397 pointers into this string, so the order can't be messed with blindly. */
398 char *short_options;
399
400 /* Clusters of entries in this hol. */
401 struct hol_cluster *clusters;
402 };
403 \f
404 /* Create a struct hol from the options in ARGP. CLUSTER is the
405 hol_cluster in which these entries occur, or 0, if at the root. */
406 static struct hol *
407 make_hol (const struct argp *argp, struct hol_cluster *cluster)
408 {
409 char *so;
410 const struct argp_option *o;
411 const struct argp_option *opts = argp->options;
412 struct hol_entry *entry;
413 unsigned num_short_options = 0;
414 struct hol *hol = malloc (sizeof (struct hol));
415
416 assert (hol);
417
418 hol->num_entries = 0;
419 hol->clusters = 0;
420
421 if (opts)
422 {
423 int cur_group = 0;
424
425 /* The first option must not be an alias. */
426 assert (! oalias (opts));
427
428 /* Calculate the space needed. */
429 for (o = opts; ! oend (o); o++)
430 {
431 if (! oalias (o))
432 hol->num_entries++;
433 if (oshort (o))
434 num_short_options++; /* This is an upper bound. */
435 }
436
437 hol->entries = malloc (sizeof (struct hol_entry) * hol->num_entries);
438 hol->short_options = malloc (num_short_options + 1);
439
440 assert (hol->entries && hol->short_options);
441
442 /* Fill in the entries. */
443 so = hol->short_options;
444 for (o = opts, entry = hol->entries; ! oend (o); entry++)
445 {
446 entry->opt = o;
447 entry->num = 0;
448 entry->short_options = so;
449 entry->group = cur_group =
450 o->group
451 ? o->group
452 : ((!o->name && !o->key)
453 ? cur_group + 1
454 : cur_group);
455 entry->cluster = cluster;
456 entry->argp = argp;
457
458 do
459 {
460 entry->num++;
461 if (oshort (o) && ! find_char (o->key, hol->short_options, so))
462 /* O has a valid short option which hasn't already been used.*/
463 *so++ = o->key;
464 o++;
465 }
466 while (! oend (o) && oalias (o));
467 }
468 *so = '\0'; /* null terminated so we can find the length */
469 }
470
471 return hol;
472 }
473 \f
474 /* Add a new cluster to HOL, with the given GROUP and HEADER (taken from the
475 associated argp child list entry), INDEX, and PARENT, and return a pointer
476 to it. ARGP is the argp that this cluster results from. */
477 static struct hol_cluster *
478 hol_add_cluster (struct hol *hol, int group, const char *header, int index,
479 struct hol_cluster *parent, const struct argp *argp)
480 {
481 struct hol_cluster *cl = malloc (sizeof (struct hol_cluster));
482 if (cl)
483 {
484 cl->group = group;
485 cl->header = header;
486
487 cl->index = index;
488 cl->parent = parent;
489 cl->argp = argp;
490 cl->depth = parent ? parent->depth + 1 : 0;
491
492 cl->next = hol->clusters;
493 hol->clusters = cl;
494 }
495 return cl;
496 }
497 \f
498 /* Free HOL and any resources it uses. */
499 static void
500 hol_free (struct hol *hol)
501 {
502 struct hol_cluster *cl = hol->clusters;
503
504 while (cl)
505 {
506 struct hol_cluster *next = cl->next;
507 free (cl);
508 cl = next;
509 }
510
511 if (hol->num_entries > 0)
512 {
513 free (hol->entries);
514 free (hol->short_options);
515 }
516
517 free (hol);
518 }
519 \f
520 static inline int
521 hol_entry_short_iterate (const struct hol_entry *entry,
522 int (*func)(const struct argp_option *opt,
523 const struct argp_option *real,
524 const char *domain, void *cookie),
525 const char *domain, void *cookie)
526 {
527 unsigned nopts;
528 int val = 0;
529 const struct argp_option *opt, *real = entry->opt;
530 char *so = entry->short_options;
531
532 for (opt = real, nopts = entry->num; nopts > 0 && !val; opt++, nopts--)
533 if (oshort (opt) && *so == opt->key)
534 {
535 if (!oalias (opt))
536 real = opt;
537 if (ovisible (opt))
538 val = (*func)(opt, real, domain, cookie);
539 so++;
540 }
541
542 return val;
543 }
544
545 static inline int
546 hol_entry_long_iterate (const struct hol_entry *entry,
547 int (*func)(const struct argp_option *opt,
548 const struct argp_option *real,
549 const char *domain, void *cookie),
550 const char *domain, void *cookie)
551 {
552 unsigned nopts;
553 int val = 0;
554 const struct argp_option *opt, *real = entry->opt;
555
556 for (opt = real, nopts = entry->num; nopts > 0 && !val; opt++, nopts--)
557 if (opt->name)
558 {
559 if (!oalias (opt))
560 real = opt;
561 if (ovisible (opt))
562 val = (*func)(opt, real, domain, cookie);
563 }
564
565 return val;
566 }
567 \f
568 /* Iterator that returns true for the first short option. */
569 static inline int
570 until_short (const struct argp_option *opt, const struct argp_option *real,
571 const char *domain, void *cookie)
572 {
573 return oshort (opt) ? opt->key : 0;
574 }
575
576 /* Returns the first valid short option in ENTRY, or 0 if there is none. */
577 static char
578 hol_entry_first_short (const struct hol_entry *entry)
579 {
580 return hol_entry_short_iterate (entry, until_short,
581 entry->argp->argp_domain, 0);
582 }
583
584 /* Returns the first valid long option in ENTRY, or 0 if there is none. */
585 static const char *
586 hol_entry_first_long (const struct hol_entry *entry)
587 {
588 const struct argp_option *opt;
589 unsigned num;
590 for (opt = entry->opt, num = entry->num; num > 0; opt++, num--)
591 if (opt->name && ovisible (opt))
592 return opt->name;
593 return 0;
594 }
595
596 /* Returns the entry in HOL with the long option name NAME, or 0 if there is
597 none. */
598 static struct hol_entry *
599 hol_find_entry (struct hol *hol, const char *name)
600 {
601 struct hol_entry *entry = hol->entries;
602 unsigned num_entries = hol->num_entries;
603
604 while (num_entries-- > 0)
605 {
606 const struct argp_option *opt = entry->opt;
607 unsigned num_opts = entry->num;
608
609 while (num_opts-- > 0)
610 if (opt->name && ovisible (opt) && strcmp (opt->name, name) == 0)
611 return entry;
612 else
613 opt++;
614
615 entry++;
616 }
617
618 return 0;
619 }
620 \f
621 /* If an entry with the long option NAME occurs in HOL, set it's special
622 sort position to GROUP. */
623 static void
624 hol_set_group (struct hol *hol, const char *name, int group)
625 {
626 struct hol_entry *entry = hol_find_entry (hol, name);
627 if (entry)
628 entry->group = group;
629 }
630 \f
631 /* Order by group: 0, 1, 2, ..., n, -m, ..., -2, -1.
632 EQ is what to return if GROUP1 and GROUP2 are the same. */
633 static int
634 group_cmp (int group1, int group2, int eq)
635 {
636 if (group1 == group2)
637 return eq;
638 else if ((group1 < 0 && group2 < 0) || (group1 >= 0 && group2 >= 0))
639 return group1 - group2;
640 else
641 return group2 - group1;
642 }
643
644 /* Compare clusters CL1 & CL2 by the order that they should appear in
645 output. */
646 static int
647 hol_cluster_cmp (const struct hol_cluster *cl1, const struct hol_cluster *cl2)
648 {
649 /* If one cluster is deeper than the other, use its ancestor at the same
650 level, so that finding the common ancestor is straightforward. */
651 while (cl1->depth < cl2->depth)
652 cl1 = cl1->parent;
653 while (cl2->depth < cl1->depth)
654 cl2 = cl2->parent;
655
656 /* Now reduce both clusters to their ancestors at the point where both have
657 a common parent; these can be directly compared. */
658 while (cl1->parent != cl2->parent)
659 cl1 = cl1->parent, cl2 = cl2->parent;
660
661 return group_cmp (cl1->group, cl2->group, cl2->index - cl1->index);
662 }
663
664 /* Return the ancestor of CL that's just below the root (i.e., has a parent
665 of 0). */
666 static struct hol_cluster *
667 hol_cluster_base (struct hol_cluster *cl)
668 {
669 while (cl->parent)
670 cl = cl->parent;
671 return cl;
672 }
673
674 /* Return true if CL1 is a child of CL2. */
675 static int
676 hol_cluster_is_child (const struct hol_cluster *cl1,
677 const struct hol_cluster *cl2)
678 {
679 while (cl1 && cl1 != cl2)
680 cl1 = cl1->parent;
681 return cl1 == cl2;
682 }
683 \f
684 /* Given the name of a OPTION_DOC option, modifies NAME to start at the tail
685 that should be used for comparisons, and returns true iff it should be
686 treated as a non-option. */
687 static int
688 canon_doc_option (const char **name)
689 {
690 int non_opt;
691 /* Skip initial whitespace. */
692 while (isspace (**name))
693 (*name)++;
694 /* Decide whether this looks like an option (leading `-') or not. */
695 non_opt = (**name != '-');
696 /* Skip until part of name used for sorting. */
697 while (**name && !isalnum (**name))
698 (*name)++;
699 return non_opt;
700 }
701
702 /* Order ENTRY1 & ENTRY2 by the order which they should appear in a help
703 listing. */
704 static int
705 hol_entry_cmp (const struct hol_entry *entry1,
706 const struct hol_entry *entry2)
707 {
708 /* The group numbers by which the entries should be ordered; if either is
709 in a cluster, then this is just the group within the cluster. */
710 int group1 = entry1->group, group2 = entry2->group;
711
712 if (entry1->cluster != entry2->cluster)
713 {
714 /* The entries are not within the same cluster, so we can't compare them
715 directly, we have to use the appropiate clustering level too. */
716 if (! entry1->cluster)
717 /* ENTRY1 is at the `base level', not in a cluster, so we have to
718 compare it's group number with that of the base cluster in which
719 ENTRY2 resides. Note that if they're in the same group, the
720 clustered option always comes laster. */
721 return group_cmp (group1, hol_cluster_base (entry2->cluster)->group, -1);
722 else if (! entry2->cluster)
723 /* Likewise, but ENTRY2's not in a cluster. */
724 return group_cmp (hol_cluster_base (entry1->cluster)->group, group2, 1);
725 else
726 /* Both entries are in clusters, we can just compare the clusters. */
727 return hol_cluster_cmp (entry1->cluster, entry2->cluster);
728 }
729 else if (group1 == group2)
730 /* The entries are both in the same cluster and group, so compare them
731 alphabetically. */
732 {
733 int short1 = hol_entry_first_short (entry1);
734 int short2 = hol_entry_first_short (entry2);
735 int doc1 = odoc (entry1->opt);
736 int doc2 = odoc (entry2->opt);
737 const char *long1 = hol_entry_first_long (entry1);
738 const char *long2 = hol_entry_first_long (entry2);
739
740 if (doc1)
741 doc1 = canon_doc_option (&long1);
742 if (doc2)
743 doc2 = canon_doc_option (&long2);
744
745 if (doc1 != doc2)
746 /* `documentation' options always follow normal options (or
747 documentation options that *look* like normal options). */
748 return doc1 - doc2;
749 else if (!short1 && !short2 && long1 && long2)
750 /* Only long options. */
751 return __strcasecmp (long1, long2);
752 else
753 /* Compare short/short, long/short, short/long, using the first
754 character of long options. Entries without *any* valid
755 options (such as options with OPTION_HIDDEN set) will be put
756 first, but as they're not displayed, it doesn't matter where
757 they are. */
758 {
759 char first1 = short1 ? short1 : long1 ? *long1 : 0;
760 char first2 = short2 ? short2 : long2 ? *long2 : 0;
761 #ifdef _tolower
762 int lower_cmp = _tolower (first1) - _tolower (first2);
763 #else
764 int lower_cmp = tolower (first1) - tolower (first2);
765 #endif
766 /* Compare ignoring case, except when the options are both the
767 same letter, in which case lower-case always comes first. */
768 return lower_cmp ? lower_cmp : first2 - first1;
769 }
770 }
771 else
772 /* Within the same cluster, but not the same group, so just compare
773 groups. */
774 return group_cmp (group1, group2, 0);
775 }
776
777 /* Version of hol_entry_cmp with correct signature for qsort. */
778 static int
779 hol_entry_qcmp (const void *entry1_v, const void *entry2_v)
780 {
781 return hol_entry_cmp (entry1_v, entry2_v);
782 }
783
784 /* Sort HOL by group and alphabetically by option name (with short options
785 taking precedence over long). Since the sorting is for display purposes
786 only, the shadowing of options isn't effected. */
787 static void
788 hol_sort (struct hol *hol)
789 {
790 if (hol->num_entries > 0)
791 qsort (hol->entries, hol->num_entries, sizeof (struct hol_entry),
792 hol_entry_qcmp);
793 }
794 \f
795 /* Append MORE to HOL, destroying MORE in the process. Options in HOL shadow
796 any in MORE with the same name. */
797 static void
798 hol_append (struct hol *hol, struct hol *more)
799 {
800 struct hol_cluster **cl_end = &hol->clusters;
801
802 /* Steal MORE's cluster list, and add it to the end of HOL's. */
803 while (*cl_end)
804 cl_end = &(*cl_end)->next;
805 *cl_end = more->clusters;
806 more->clusters = 0;
807
808 /* Merge entries. */
809 if (more->num_entries > 0)
810 {
811 if (hol->num_entries == 0)
812 {
813 hol->num_entries = more->num_entries;
814 hol->entries = more->entries;
815 hol->short_options = more->short_options;
816 more->num_entries = 0; /* Mark MORE's fields as invalid. */
817 }
818 else
819 /* Append the entries in MORE to those in HOL, taking care to only add
820 non-shadowed SHORT_OPTIONS values. */
821 {
822 unsigned left;
823 char *so, *more_so;
824 struct hol_entry *e;
825 unsigned num_entries = hol->num_entries + more->num_entries;
826 struct hol_entry *entries =
827 malloc (num_entries * sizeof (struct hol_entry));
828 unsigned hol_so_len = strlen (hol->short_options);
829 char *short_options =
830 malloc (hol_so_len + strlen (more->short_options) + 1);
831
832 __mempcpy (__mempcpy (entries, hol->entries,
833 hol->num_entries * sizeof (struct hol_entry)),
834 more->entries,
835 more->num_entries * sizeof (struct hol_entry));
836
837 __mempcpy (short_options, hol->short_options, hol_so_len);
838
839 /* Fix up the short options pointers from HOL. */
840 for (e = entries, left = hol->num_entries; left > 0; e++, left--)
841 e->short_options += (short_options - hol->short_options);
842
843 /* Now add the short options from MORE, fixing up its entries
844 too. */
845 so = short_options + hol_so_len;
846 more_so = more->short_options;
847 for (left = more->num_entries; left > 0; e++, left--)
848 {
849 int opts_left;
850 const struct argp_option *opt;
851
852 e->short_options = so;
853
854 for (opts_left = e->num, opt = e->opt; opts_left; opt++, opts_left--)
855 {
856 int ch = *more_so;
857 if (oshort (opt) && ch == opt->key)
858 /* The next short option in MORE_SO, CH, is from OPT. */
859 {
860 if (! find_char (ch, short_options,
861 short_options + hol_so_len))
862 /* The short option CH isn't shadowed by HOL's options,
863 so add it to the sum. */
864 *so++ = ch;
865 more_so++;
866 }
867 }
868 }
869
870 *so = '\0';
871
872 free (hol->entries);
873 free (hol->short_options);
874
875 hol->entries = entries;
876 hol->num_entries = num_entries;
877 hol->short_options = short_options;
878 }
879 }
880
881 hol_free (more);
882 }
883 \f
884 /* Inserts enough spaces to make sure STREAM is at column COL. */
885 static void
886 indent_to (argp_fmtstream_t stream, unsigned col)
887 {
888 int needed = col - __argp_fmtstream_point (stream);
889 while (needed-- > 0)
890 __argp_fmtstream_putc (stream, ' ');
891 }
892
893 /* Output to STREAM either a space, or a newline if there isn't room for at
894 least ENSURE characters before the right margin. */
895 static void
896 space (argp_fmtstream_t stream, size_t ensure)
897 {
898 if (__argp_fmtstream_point (stream) + ensure
899 >= __argp_fmtstream_rmargin (stream))
900 __argp_fmtstream_putc (stream, '\n');
901 else
902 __argp_fmtstream_putc (stream, ' ');
903 }
904
905 /* If the option REAL has an argument, we print it in using the printf
906 format REQ_FMT or OPT_FMT depending on whether it's a required or
907 optional argument. */
908 static void
909 arg (const struct argp_option *real, const char *req_fmt, const char *opt_fmt,
910 const char *domain, argp_fmtstream_t stream)
911 {
912 if (real->arg)
913 {
914 if (real->flags & OPTION_ARG_OPTIONAL)
915 __argp_fmtstream_printf (stream, opt_fmt,
916 dgettext (domain, real->arg));
917 else
918 __argp_fmtstream_printf (stream, req_fmt,
919 dgettext (domain, real->arg));
920 }
921 }
922 \f
923 /* Helper functions for hol_entry_help. */
924
925 /* State used during the execution of hol_help. */
926 struct hol_help_state
927 {
928 /* PREV_ENTRY should contain the previous entry printed, or 0. */
929 struct hol_entry *prev_entry;
930
931 /* If an entry is in a different group from the previous one, and SEP_GROUPS
932 is true, then a blank line will be printed before any output. */
933 int sep_groups;
934
935 /* True if a duplicate option argument was suppressed (only ever set if
936 UPARAMS.dup_args is false). */
937 int suppressed_dup_arg;
938 };
939
940 /* Some state used while printing a help entry (used to communicate with
941 helper functions). See the doc for hol_entry_help for more info, as most
942 of the fields are copied from its arguments. */
943 struct pentry_state
944 {
945 const struct hol_entry *entry;
946 argp_fmtstream_t stream;
947 struct hol_help_state *hhstate;
948
949 /* True if nothing's been printed so far. */
950 int first;
951
952 /* If non-zero, the state that was used to print this help. */
953 const struct argp_state *state;
954 };
955
956 /* If a user doc filter should be applied to DOC, do so. */
957 static const char *
958 filter_doc (const char *doc, int key, const struct argp *argp,
959 const struct argp_state *state)
960 {
961 if (argp->help_filter)
962 /* We must apply a user filter to this output. */
963 {
964 void *input = __argp_input (argp, state);
965 return (*argp->help_filter) (key, doc, input);
966 }
967 else
968 /* No filter. */
969 return doc;
970 }
971
972 /* Prints STR as a header line, with the margin lines set appropiately, and
973 notes the fact that groups should be separated with a blank line. ARGP is
974 the argp that should dictate any user doc filtering to take place. Note
975 that the previous wrap margin isn't restored, but the left margin is reset
976 to 0. */
977 static void
978 print_header (const char *str, const struct argp *argp,
979 struct pentry_state *pest)
980 {
981 const char *tstr = dgettext (argp->argp_domain, str);
982 const char *fstr = filter_doc (tstr, ARGP_KEY_HELP_HEADER, argp, pest->state);
983
984 if (fstr)
985 {
986 if (*fstr)
987 {
988 if (pest->hhstate->prev_entry)
989 /* Precede with a blank line. */
990 __argp_fmtstream_putc (pest->stream, '\n');
991 indent_to (pest->stream, uparams.header_col);
992 __argp_fmtstream_set_lmargin (pest->stream, uparams.header_col);
993 __argp_fmtstream_set_wmargin (pest->stream, uparams.header_col);
994 __argp_fmtstream_puts (pest->stream, fstr);
995 __argp_fmtstream_set_lmargin (pest->stream, 0);
996 __argp_fmtstream_putc (pest->stream, '\n');
997 }
998
999 pest->hhstate->sep_groups = 1; /* Separate subsequent groups. */
1000 }
1001
1002 if (fstr != tstr)
1003 free ((char *) fstr);
1004 }
1005
1006 /* Inserts a comma if this isn't the first item on the line, and then makes
1007 sure we're at least to column COL. If this *is* the first item on a line,
1008 prints any pending whitespace/headers that should precede this line. Also
1009 clears FIRST. */
1010 static void
1011 comma (unsigned col, struct pentry_state *pest)
1012 {
1013 if (pest->first)
1014 {
1015 const struct hol_entry *pe = pest->hhstate->prev_entry;
1016 const struct hol_cluster *cl = pest->entry->cluster;
1017
1018 if (pest->hhstate->sep_groups && pe && pest->entry->group != pe->group)
1019 __argp_fmtstream_putc (pest->stream, '\n');
1020
1021 if (cl && cl->header && *cl->header
1022 && (!pe
1023 || (pe->cluster != cl
1024 && !hol_cluster_is_child (pe->cluster, cl))))
1025 /* If we're changing clusters, then this must be the start of the
1026 ENTRY's cluster unless that is an ancestor of the previous one
1027 (in which case we had just popped into a sub-cluster for a bit).
1028 If so, then print the cluster's header line. */
1029 {
1030 int old_wm = __argp_fmtstream_wmargin (pest->stream);
1031 print_header (cl->header, cl->argp, pest);
1032 __argp_fmtstream_set_wmargin (pest->stream, old_wm);
1033 }
1034
1035 pest->first = 0;
1036 }
1037 else
1038 __argp_fmtstream_puts (pest->stream, ", ");
1039
1040 indent_to (pest->stream, col);
1041 }
1042 \f
1043 /* Print help for ENTRY to STREAM. */
1044 static void
1045 hol_entry_help (struct hol_entry *entry, const struct argp_state *state,
1046 argp_fmtstream_t stream, struct hol_help_state *hhstate)
1047 {
1048 unsigned num;
1049 const struct argp_option *real = entry->opt, *opt;
1050 char *so = entry->short_options;
1051 int have_long_opt = 0; /* We have any long options. */
1052 /* Saved margins. */
1053 int old_lm = __argp_fmtstream_set_lmargin (stream, 0);
1054 int old_wm = __argp_fmtstream_wmargin (stream);
1055 /* PEST is a state block holding some of our variables that we'd like to
1056 share with helper functions. */
1057 struct pentry_state pest = { entry, stream, hhstate, 1, state };
1058
1059 if (! odoc (real))
1060 for (opt = real, num = entry->num; num > 0; opt++, num--)
1061 if (opt->name && ovisible (opt))
1062 {
1063 have_long_opt = 1;
1064 break;
1065 }
1066
1067 /* First emit short options. */
1068 __argp_fmtstream_set_wmargin (stream, uparams.short_opt_col); /* For truly bizarre cases. */
1069 for (opt = real, num = entry->num; num > 0; opt++, num--)
1070 if (oshort (opt) && opt->key == *so)
1071 /* OPT has a valid (non shadowed) short option. */
1072 {
1073 if (ovisible (opt))
1074 {
1075 comma (uparams.short_opt_col, &pest);
1076 __argp_fmtstream_putc (stream, '-');
1077 __argp_fmtstream_putc (stream, *so);
1078 if (!have_long_opt || uparams.dup_args)
1079 arg (real, " %s", "[%s]", state->root_argp->argp_domain, stream);
1080 else if (real->arg)
1081 hhstate->suppressed_dup_arg = 1;
1082 }
1083 so++;
1084 }
1085
1086 /* Now, long options. */
1087 if (odoc (real))
1088 /* A `documentation' option. */
1089 {
1090 __argp_fmtstream_set_wmargin (stream, uparams.doc_opt_col);
1091 for (opt = real, num = entry->num; num > 0; opt++, num--)
1092 if (opt->name && ovisible (opt))
1093 {
1094 comma (uparams.doc_opt_col, &pest);
1095 /* Calling gettext here isn't quite right, since sorting will
1096 have been done on the original; but documentation options
1097 should be pretty rare anyway... */
1098 __argp_fmtstream_puts (stream,
1099 dgettext (state->root_argp->argp_domain,
1100 opt->name));
1101 }
1102 }
1103 else
1104 /* A real long option. */
1105 {
1106 int first_long_opt = 1;
1107
1108 __argp_fmtstream_set_wmargin (stream, uparams.long_opt_col);
1109 for (opt = real, num = entry->num; num > 0; opt++, num--)
1110 if (opt->name && ovisible (opt))
1111 {
1112 comma (uparams.long_opt_col, &pest);
1113 __argp_fmtstream_printf (stream, "--%s", opt->name);
1114 if (first_long_opt || uparams.dup_args)
1115 arg (real, "=%s", "[=%s]", state->root_argp->argp_domain,
1116 stream);
1117 else if (real->arg)
1118 hhstate->suppressed_dup_arg = 1;
1119 }
1120 }
1121
1122 /* Next, documentation strings. */
1123 __argp_fmtstream_set_lmargin (stream, 0);
1124
1125 if (pest.first)
1126 {
1127 /* Didn't print any switches, what's up? */
1128 if (!oshort (real) && !real->name)
1129 /* This is a group header, print it nicely. */
1130 print_header (real->doc, entry->argp, &pest);
1131 else
1132 /* Just a totally shadowed option or null header; print nothing. */
1133 goto cleanup; /* Just return, after cleaning up. */
1134 }
1135 else
1136 {
1137 const char *tstr = real->doc ? dgettext (state->root_argp->argp_domain,
1138 real->doc) : 0;
1139 const char *fstr = filter_doc (tstr, real->key, entry->argp, state);
1140 if (fstr && *fstr)
1141 {
1142 unsigned int col = __argp_fmtstream_point (stream);
1143
1144 __argp_fmtstream_set_lmargin (stream, uparams.opt_doc_col);
1145 __argp_fmtstream_set_wmargin (stream, uparams.opt_doc_col);
1146
1147 if (col > (unsigned int) (uparams.opt_doc_col + 3))
1148 __argp_fmtstream_putc (stream, '\n');
1149 else if (col >= (unsigned int) uparams.opt_doc_col)
1150 __argp_fmtstream_puts (stream, " ");
1151 else
1152 indent_to (stream, uparams.opt_doc_col);
1153
1154 __argp_fmtstream_puts (stream, fstr);
1155 }
1156 if (fstr && fstr != tstr)
1157 free ((char *) fstr);
1158
1159 /* Reset the left margin. */
1160 __argp_fmtstream_set_lmargin (stream, 0);
1161 __argp_fmtstream_putc (stream, '\n');
1162 }
1163
1164 hhstate->prev_entry = entry;
1165
1166 cleanup:
1167 __argp_fmtstream_set_lmargin (stream, old_lm);
1168 __argp_fmtstream_set_wmargin (stream, old_wm);
1169 }
1170 \f
1171 /* Output a long help message about the options in HOL to STREAM. */
1172 static void
1173 hol_help (struct hol *hol, const struct argp_state *state,
1174 argp_fmtstream_t stream)
1175 {
1176 unsigned num;
1177 struct hol_entry *entry;
1178 struct hol_help_state hhstate = { 0, 0, 0 };
1179
1180 for (entry = hol->entries, num = hol->num_entries; num > 0; entry++, num--)
1181 hol_entry_help (entry, state, stream, &hhstate);
1182
1183 if (hhstate.suppressed_dup_arg && uparams.dup_args_note)
1184 {
1185 const char *tstr = dgettext (state->root_argp->argp_domain, "\
1186 Mandatory or optional arguments to long options are also mandatory or \
1187 optional for any corresponding short options.");
1188 const char *fstr = filter_doc (tstr, ARGP_KEY_HELP_DUP_ARGS_NOTE,
1189 state ? state->root_argp : 0, state);
1190 if (fstr && *fstr)
1191 {
1192 __argp_fmtstream_putc (stream, '\n');
1193 __argp_fmtstream_puts (stream, fstr);
1194 __argp_fmtstream_putc (stream, '\n');
1195 }
1196 if (fstr && fstr != tstr)
1197 free ((char *) fstr);
1198 }
1199 }
1200 \f
1201 /* Helper functions for hol_usage. */
1202
1203 /* If OPT is a short option without an arg, append its key to the string
1204 pointer pointer to by COOKIE, and advance the pointer. */
1205 static int
1206 add_argless_short_opt (const struct argp_option *opt,
1207 const struct argp_option *real,
1208 const char *domain, void *cookie)
1209 {
1210 char **snao_end = cookie;
1211 if (!(opt->arg || real->arg)
1212 && !((opt->flags | real->flags) & OPTION_NO_USAGE))
1213 *(*snao_end)++ = opt->key;
1214 return 0;
1215 }
1216
1217 /* If OPT is a short option with an arg, output a usage entry for it to the
1218 stream pointed at by COOKIE. */
1219 static int
1220 usage_argful_short_opt (const struct argp_option *opt,
1221 const struct argp_option *real,
1222 const char *domain, void *cookie)
1223 {
1224 argp_fmtstream_t stream = cookie;
1225 const char *arg = opt->arg;
1226 int flags = opt->flags | real->flags;
1227
1228 if (! arg)
1229 arg = real->arg;
1230
1231 if (arg && !(flags & OPTION_NO_USAGE))
1232 {
1233 arg = dgettext (domain, arg);
1234
1235 if (flags & OPTION_ARG_OPTIONAL)
1236 __argp_fmtstream_printf (stream, " [-%c[%s]]", opt->key, arg);
1237 else
1238 {
1239 /* Manually do line wrapping so that it (probably) won't
1240 get wrapped at the embedded space. */
1241 space (stream, 6 + strlen (arg));
1242 __argp_fmtstream_printf (stream, "[-%c %s]", opt->key, arg);
1243 }
1244 }
1245
1246 return 0;
1247 }
1248
1249 /* Output a usage entry for the long option opt to the stream pointed at by
1250 COOKIE. */
1251 static int
1252 usage_long_opt (const struct argp_option *opt,
1253 const struct argp_option *real,
1254 const char *domain, void *cookie)
1255 {
1256 argp_fmtstream_t stream = cookie;
1257 const char *arg = opt->arg;
1258 int flags = opt->flags | real->flags;
1259
1260 if (! arg)
1261 arg = real->arg;
1262
1263 if (! (flags & OPTION_NO_USAGE))
1264 {
1265 if (arg)
1266 {
1267 arg = dgettext (domain, arg);
1268 if (flags & OPTION_ARG_OPTIONAL)
1269 __argp_fmtstream_printf (stream, " [--%s[=%s]]", opt->name, arg);
1270 else
1271 __argp_fmtstream_printf (stream, " [--%s=%s]", opt->name, arg);
1272 }
1273 else
1274 __argp_fmtstream_printf (stream, " [--%s]", opt->name);
1275 }
1276
1277 return 0;
1278 }
1279 \f
1280 /* Print a short usage description for the arguments in HOL to STREAM. */
1281 static void
1282 hol_usage (struct hol *hol, argp_fmtstream_t stream)
1283 {
1284 if (hol->num_entries > 0)
1285 {
1286 unsigned nentries;
1287 struct hol_entry *entry;
1288 char *short_no_arg_opts = alloca (strlen (hol->short_options) + 1);
1289 char *snao_end = short_no_arg_opts;
1290
1291 /* First we put a list of short options without arguments. */
1292 for (entry = hol->entries, nentries = hol->num_entries
1293 ; nentries > 0
1294 ; entry++, nentries--)
1295 hol_entry_short_iterate (entry, add_argless_short_opt,
1296 entry->argp->argp_domain, &snao_end);
1297 if (snao_end > short_no_arg_opts)
1298 {
1299 *snao_end++ = 0;
1300 __argp_fmtstream_printf (stream, " [-%s]", short_no_arg_opts);
1301 }
1302
1303 /* Now a list of short options *with* arguments. */
1304 for (entry = hol->entries, nentries = hol->num_entries
1305 ; nentries > 0
1306 ; entry++, nentries--)
1307 hol_entry_short_iterate (entry, usage_argful_short_opt,
1308 entry->argp->argp_domain, stream);
1309
1310 /* Finally, a list of long options (whew!). */
1311 for (entry = hol->entries, nentries = hol->num_entries
1312 ; nentries > 0
1313 ; entry++, nentries--)
1314 hol_entry_long_iterate (entry, usage_long_opt,
1315 entry->argp->argp_domain, stream);
1316 }
1317 }
1318 \f
1319 /* Make a HOL containing all levels of options in ARGP. CLUSTER is the
1320 cluster in which ARGP's entries should be clustered, or 0. */
1321 static struct hol *
1322 argp_hol (const struct argp *argp, struct hol_cluster *cluster)
1323 {
1324 const struct argp_child *child = argp->children;
1325 struct hol *hol = make_hol (argp, cluster);
1326 if (child)
1327 while (child->argp)
1328 {
1329 struct hol_cluster *child_cluster =
1330 ((child->group || child->header)
1331 /* Put CHILD->argp within its own cluster. */
1332 ? hol_add_cluster (hol, child->group, child->header,
1333 child - argp->children, cluster, argp)
1334 /* Just merge it into the parent's cluster. */
1335 : cluster);
1336 hol_append (hol, argp_hol (child->argp, child_cluster)) ;
1337 child++;
1338 }
1339 return hol;
1340 }
1341 \f
1342 /* Calculate how many different levels with alternative args strings exist in
1343 ARGP. */
1344 static size_t
1345 argp_args_levels (const struct argp *argp)
1346 {
1347 size_t levels = 0;
1348 const struct argp_child *child = argp->children;
1349
1350 if (argp->args_doc && strchr (argp->args_doc, '\n'))
1351 levels++;
1352
1353 if (child)
1354 while (child->argp)
1355 levels += argp_args_levels ((child++)->argp);
1356
1357 return levels;
1358 }
1359
1360 /* Print all the non-option args documented in ARGP to STREAM. Any output is
1361 preceded by a space. LEVELS is a pointer to a byte vector the length
1362 returned by argp_args_levels; it should be initialized to zero, and
1363 updated by this routine for the next call if ADVANCE is true. True is
1364 returned as long as there are more patterns to output. */
1365 static int
1366 argp_args_usage (const struct argp *argp, const struct argp_state *state,
1367 char **levels, int advance, argp_fmtstream_t stream)
1368 {
1369 char *our_level = *levels;
1370 int multiple = 0;
1371 const struct argp_child *child = argp->children;
1372 const char *tdoc = dgettext (argp->argp_domain, argp->args_doc), *nl = 0;
1373 const char *fdoc = filter_doc (tdoc, ARGP_KEY_HELP_ARGS_DOC, argp, state);
1374
1375 if (fdoc)
1376 {
1377 const char *cp = fdoc;
1378 nl = __strchrnul (cp, '\n');
1379 if (*nl != '\0')
1380 /* This is a `multi-level' args doc; advance to the correct position
1381 as determined by our state in LEVELS, and update LEVELS. */
1382 {
1383 int i;
1384 multiple = 1;
1385 for (i = 0; i < *our_level; i++)
1386 cp = nl + 1, nl = __strchrnul (cp, '\n');
1387 (*levels)++;
1388 }
1389
1390 /* Manually do line wrapping so that it (probably) won't get wrapped at
1391 any embedded spaces. */
1392 space (stream, 1 + nl - cp);
1393
1394 __argp_fmtstream_write (stream, cp, nl - cp);
1395 }
1396 if (fdoc && fdoc != tdoc)
1397 free ((char *)fdoc); /* Free user's modified doc string. */
1398
1399 if (child)
1400 while (child->argp)
1401 advance = !argp_args_usage ((child++)->argp, state, levels, advance, stream);
1402
1403 if (advance && multiple)
1404 {
1405 /* Need to increment our level. */
1406 if (*nl)
1407 /* There's more we can do here. */
1408 {
1409 (*our_level)++;
1410 advance = 0; /* Our parent shouldn't advance also. */
1411 }
1412 else if (*our_level > 0)
1413 /* We had multiple levels, but used them up; reset to zero. */
1414 *our_level = 0;
1415 }
1416
1417 return !advance;
1418 }
1419 \f
1420 /* Print the documentation for ARGP to STREAM; if POST is false, then
1421 everything preceeding a `\v' character in the documentation strings (or
1422 the whole string, for those with none) is printed, otherwise, everything
1423 following the `\v' character (nothing for strings without). Each separate
1424 bit of documentation is separated a blank line, and if PRE_BLANK is true,
1425 then the first is as well. If FIRST_ONLY is true, only the first
1426 occurrence is output. Returns true if anything was output. */
1427 static int
1428 argp_doc (const struct argp *argp, const struct argp_state *state,
1429 int post, int pre_blank, int first_only,
1430 argp_fmtstream_t stream)
1431 {
1432 const char *text;
1433 const char *inp_text;
1434 void *input = 0;
1435 int anything = 0;
1436 size_t inp_text_limit = 0;
1437 const char *doc = dgettext (argp->argp_domain, argp->doc);
1438 const struct argp_child *child = argp->children;
1439
1440 if (doc)
1441 {
1442 char *vt = strchr (doc, '\v');
1443 inp_text = post ? (vt ? vt + 1 : 0) : doc;
1444 inp_text_limit = (!post && vt) ? (vt - doc) : 0;
1445 }
1446 else
1447 inp_text = 0;
1448
1449 if (argp->help_filter)
1450 /* We have to filter the doc strings. */
1451 {
1452 if (inp_text_limit)
1453 /* Copy INP_TEXT so that it's nul-terminated. */
1454 inp_text = __strndup (inp_text, inp_text_limit);
1455 input = __argp_input (argp, state);
1456 text =
1457 (*argp->help_filter) (post
1458 ? ARGP_KEY_HELP_POST_DOC
1459 : ARGP_KEY_HELP_PRE_DOC,
1460 inp_text, input);
1461 }
1462 else
1463 text = (const char *) inp_text;
1464
1465 if (text)
1466 {
1467 if (pre_blank)
1468 __argp_fmtstream_putc (stream, '\n');
1469
1470 if (text == inp_text && inp_text_limit)
1471 __argp_fmtstream_write (stream, inp_text, inp_text_limit);
1472 else
1473 __argp_fmtstream_puts (stream, text);
1474
1475 if (__argp_fmtstream_point (stream) > __argp_fmtstream_lmargin (stream))
1476 __argp_fmtstream_putc (stream, '\n');
1477
1478 anything = 1;
1479 }
1480
1481 if (text && text != inp_text)
1482 free ((char *) text); /* Free TEXT returned from the help filter. */
1483 if (inp_text && inp_text_limit && argp->help_filter)
1484 free ((char *) inp_text); /* We copied INP_TEXT, so free it now. */
1485
1486 if (post && argp->help_filter)
1487 /* Now see if we have to output a ARGP_KEY_HELP_EXTRA text. */
1488 {
1489 text = (*argp->help_filter) (ARGP_KEY_HELP_EXTRA, 0, input);
1490 if (text)
1491 {
1492 if (anything || pre_blank)
1493 __argp_fmtstream_putc (stream, '\n');
1494 __argp_fmtstream_puts (stream, text);
1495 free ((char *) text);
1496 if (__argp_fmtstream_point (stream)
1497 > __argp_fmtstream_lmargin (stream))
1498 __argp_fmtstream_putc (stream, '\n');
1499 anything = 1;
1500 }
1501 }
1502
1503 if (child)
1504 while (child->argp && !(first_only && anything))
1505 anything |=
1506 argp_doc ((child++)->argp, state,
1507 post, anything || pre_blank, first_only,
1508 stream);
1509
1510 return anything;
1511 }
1512 \f
1513 /* Output a usage message for ARGP to STREAM. If called from
1514 argp_state_help, STATE is the relevent parsing state. FLAGS are from the
1515 set ARGP_HELP_*. NAME is what to use wherever a `program name' is
1516 needed. */
1517 static void
1518 _help (const struct argp *argp, const struct argp_state *state, FILE *stream,
1519 unsigned flags, char *name)
1520 {
1521 int anything = 0; /* Whether we've output anything. */
1522 struct hol *hol = 0;
1523 argp_fmtstream_t fs;
1524
1525 if (! stream)
1526 return;
1527
1528 __flockfile (stream);
1529
1530 if (! uparams.valid)
1531 fill_in_uparams (state);
1532
1533 fs = __argp_make_fmtstream (stream, 0, uparams.rmargin, 0);
1534 if (! fs)
1535 {
1536 __funlockfile (stream);
1537 return;
1538 }
1539
1540 if (flags & (ARGP_HELP_USAGE | ARGP_HELP_SHORT_USAGE | ARGP_HELP_LONG))
1541 {
1542 hol = argp_hol (argp, 0);
1543
1544 /* If present, these options always come last. */
1545 hol_set_group (hol, "help", -1);
1546 hol_set_group (hol, "version", -1);
1547
1548 hol_sort (hol);
1549 }
1550
1551 if (flags & (ARGP_HELP_USAGE | ARGP_HELP_SHORT_USAGE))
1552 /* Print a short `Usage:' message. */
1553 {
1554 int first_pattern = 1, more_patterns;
1555 size_t num_pattern_levels = argp_args_levels (argp);
1556 char *pattern_levels = alloca (num_pattern_levels);
1557
1558 memset (pattern_levels, 0, num_pattern_levels);
1559
1560 do
1561 {
1562 int old_lm;
1563 int old_wm = __argp_fmtstream_set_wmargin (fs, uparams.usage_indent);
1564 char *levels = pattern_levels;
1565
1566 if (first_pattern)
1567 __argp_fmtstream_printf (fs, "%s %s",
1568 dgettext (argp->argp_domain, "Usage:"),
1569 name);
1570 else
1571 __argp_fmtstream_printf (fs, "%s %s",
1572 dgettext (argp->argp_domain, " or: "),
1573 name);
1574
1575 /* We set the lmargin as well as the wmargin, because hol_usage
1576 manually wraps options with newline to avoid annoying breaks. */
1577 old_lm = __argp_fmtstream_set_lmargin (fs, uparams.usage_indent);
1578
1579 if (flags & ARGP_HELP_SHORT_USAGE)
1580 /* Just show where the options go. */
1581 {
1582 if (hol->num_entries > 0)
1583 __argp_fmtstream_puts (fs, dgettext (argp->argp_domain,
1584 " [OPTION...]"));
1585 }
1586 else
1587 /* Actually print the options. */
1588 {
1589 hol_usage (hol, fs);
1590 flags |= ARGP_HELP_SHORT_USAGE; /* But only do so once. */
1591 }
1592
1593 more_patterns = argp_args_usage (argp, state, &levels, 1, fs);
1594
1595 __argp_fmtstream_set_wmargin (fs, old_wm);
1596 __argp_fmtstream_set_lmargin (fs, old_lm);
1597
1598 __argp_fmtstream_putc (fs, '\n');
1599 anything = 1;
1600
1601 first_pattern = 0;
1602 }
1603 while (more_patterns);
1604 }
1605
1606 if (flags & ARGP_HELP_PRE_DOC)
1607 anything |= argp_doc (argp, state, 0, 0, 1, fs);
1608
1609 if (flags & ARGP_HELP_SEE)
1610 {
1611 __argp_fmtstream_printf (fs, dgettext (argp->argp_domain, "\
1612 Try `%s --help' or `%s --usage' for more information.\n"),
1613 name, name);
1614 anything = 1;
1615 }
1616
1617 if (flags & ARGP_HELP_LONG)
1618 /* Print a long, detailed help message. */
1619 {
1620 /* Print info about all the options. */
1621 if (hol->num_entries > 0)
1622 {
1623 if (anything)
1624 __argp_fmtstream_putc (fs, '\n');
1625 hol_help (hol, state, fs);
1626 anything = 1;
1627 }
1628 }
1629
1630 if (flags & ARGP_HELP_POST_DOC)
1631 /* Print any documentation strings at the end. */
1632 anything |= argp_doc (argp, state, 1, anything, 0, fs);
1633
1634 if ((flags & ARGP_HELP_BUG_ADDR) && argp_program_bug_address)
1635 {
1636 if (anything)
1637 __argp_fmtstream_putc (fs, '\n');
1638 __argp_fmtstream_printf (fs, dgettext (argp->argp_domain,
1639 "Report bugs to %s.\n"),
1640 argp_program_bug_address);
1641 anything = 1;
1642 }
1643
1644 __funlockfile (stream);
1645
1646 if (hol)
1647 hol_free (hol);
1648
1649 __argp_fmtstream_free (fs);
1650 }
1651 \f
1652 /* Output a usage message for ARGP to STREAM. FLAGS are from the set
1653 ARGP_HELP_*. NAME is what to use wherever a `program name' is needed. */
1654 void __argp_help (const struct argp *argp, FILE *stream,
1655 unsigned flags, char *name)
1656 {
1657 _help (argp, 0, stream, flags, name);
1658 }
1659 #ifdef weak_alias
1660 weak_alias (__argp_help, argp_help)
1661 #endif
1662
1663 /* Output, if appropriate, a usage message for STATE to STREAM. FLAGS are
1664 from the set ARGP_HELP_*. */
1665 void
1666 __argp_state_help (const struct argp_state *state, FILE *stream, unsigned flags)
1667 {
1668 if ((!state || ! (state->flags & ARGP_NO_ERRS)) && stream)
1669 {
1670 if (state && (state->flags & ARGP_LONG_ONLY))
1671 flags |= ARGP_HELP_LONG_ONLY;
1672
1673 _help (state ? state->root_argp : 0, state, stream, flags,
1674 state ? state->name : program_invocation_short_name);
1675
1676 if (!state || ! (state->flags & ARGP_NO_EXIT))
1677 {
1678 if (flags & ARGP_HELP_EXIT_ERR)
1679 exit (argp_err_exit_status);
1680 if (flags & ARGP_HELP_EXIT_OK)
1681 exit (0);
1682 }
1683 }
1684 }
1685 #ifdef weak_alias
1686 weak_alias (__argp_state_help, argp_state_help)
1687 #endif
1688 \f
1689 /* If appropriate, print the printf string FMT and following args, preceded
1690 by the program name and `:', to stderr, and followed by a `Try ... --help'
1691 message, then exit (1). */
1692 void
1693 __argp_error (const struct argp_state *state, const char *fmt, ...)
1694 {
1695 if (!state || !(state->flags & ARGP_NO_ERRS))
1696 {
1697 FILE *stream = state ? state->err_stream : stderr;
1698
1699 if (stream)
1700 {
1701 va_list ap;
1702
1703 __flockfile (stream);
1704
1705 fputs_unlocked (state ? state->name : program_invocation_short_name,
1706 stream);
1707 putc_unlocked (':', stream);
1708 putc_unlocked (' ', stream);
1709
1710 va_start (ap, fmt);
1711 vfprintf (stream, fmt, ap);
1712 va_end (ap);
1713
1714 putc_unlocked ('\n', stream);
1715
1716 __argp_state_help (state, stream, ARGP_HELP_STD_ERR);
1717
1718 __funlockfile (stream);
1719 }
1720 }
1721 }
1722 #ifdef weak_alias
1723 weak_alias (__argp_error, argp_error)
1724 #endif
1725 \f
1726 /* Similar to the standard gnu error-reporting function error(), but will
1727 respect the ARGP_NO_EXIT and ARGP_NO_ERRS flags in STATE, and will print
1728 to STATE->err_stream. This is useful for argument parsing code that is
1729 shared between program startup (when exiting is desired) and runtime
1730 option parsing (when typically an error code is returned instead). The
1731 difference between this function and argp_error is that the latter is for
1732 *parsing errors*, and the former is for other problems that occur during
1733 parsing but don't reflect a (syntactic) problem with the input. */
1734 void
1735 __argp_failure (const struct argp_state *state, int status, int errnum,
1736 const char *fmt, ...)
1737 {
1738 if (!state || !(state->flags & ARGP_NO_ERRS))
1739 {
1740 FILE *stream = state ? state->err_stream : stderr;
1741
1742 if (stream)
1743 {
1744 __flockfile (stream);
1745
1746 fputs_unlocked (state ? state->name : program_invocation_short_name,
1747 stream);
1748
1749 if (fmt)
1750 {
1751 va_list ap;
1752
1753 putc_unlocked (':', stream);
1754 putc_unlocked (' ', stream);
1755
1756 va_start (ap, fmt);
1757 vfprintf (stream, fmt, ap);
1758 va_end (ap);
1759 }
1760
1761 if (errnum)
1762 {
1763 putc_unlocked (':', stream);
1764 putc_unlocked (' ', stream);
1765 fputs (strerror (errnum), stream);
1766 }
1767
1768 putc_unlocked ('\n', stream);
1769
1770 __funlockfile (stream);
1771
1772 if (status && (!state || !(state->flags & ARGP_NO_EXIT)))
1773 exit (status);
1774 }
1775 }
1776 }
1777 #ifdef weak_alias
1778 weak_alias (__argp_failure, argp_failure)
1779 #endif