]> git.ozlabs.org Git - ccan/blob - ccan/opt/test/utils.c
opt: fix gcc -O3 warnings.
[ccan] / ccan / opt / test / utils.c
1 #define _GNU_SOURCE
2 #include <ccan/tap/tap.h>
3 #include <stdarg.h>
4 #include <stdlib.h>
5 #include <ccan/opt/opt.h>
6 #include <getopt.h>
7 #include <string.h>
8 #include <stdio.h>
9 #include "utils.h"
10
11 unsigned int test_cb_called;
12 char *test_noarg(void *arg)
13 {
14         test_cb_called++;
15         return NULL;
16 }
17
18 char *test_arg(const char *optarg, const char *arg)
19 {
20         test_cb_called++;
21         ok1(strcmp(optarg, arg) == 0);
22         return NULL;
23 }
24
25 void show_arg(char buf[OPT_SHOW_LEN], const char *arg)
26 {
27         strncpy(buf, arg, OPT_SHOW_LEN);
28 }
29
30 char *err_output = NULL;
31
32 static void save_err_output(const char *fmt, ...)
33 {
34         va_list ap;
35         char *p;
36
37         va_start(ap, fmt);
38         /* Check return, for fascist gcc */
39         if (vasprintf(&p, fmt, ap) == -1)
40                 p = NULL;
41         va_end(ap);
42
43         if (err_output) {
44                 err_output = realloc(err_output,
45                                      strlen(err_output) + strlen(p) + 1);
46                 strcat(err_output, p);
47                 free(p);
48         } else
49                 err_output = p;
50 }       
51
52 /* FIXME: This leaks, BTW. */
53 bool parse_args(int *argc, char ***argv, ...)
54 {
55         char **a;
56         va_list ap;
57
58         va_start(ap, argv);
59         *argc = 1;
60         a = malloc(sizeof(*a) * (*argc + 1));
61         a[0] = (*argv)[0];
62         while ((a[*argc] = va_arg(ap, char *)) != NULL) {
63                 (*argc)++;
64                 a = realloc(a, sizeof(*a) * (*argc + 1));
65         }
66         *argv = a;
67         /* Re-set before parsing. */
68         optind = 0;
69
70         return opt_parse(argc, *argv, save_err_output);
71 }
72
73 struct opt_table short_table[] = {
74         /* Short opts, different args. */
75         OPT_WITHOUT_ARG("-a", test_noarg, "a", "Description of a"),
76         OPT_WITH_ARG("-b", test_arg, show_arg, "b", "Description of b"),
77         OPT_ENDTABLE
78 };
79
80 struct opt_table long_table[] = {
81         /* Long opts, different args. */
82         OPT_WITHOUT_ARG("--ddd", test_noarg, "ddd", "Description of ddd"),
83         OPT_WITH_ARG("--eee <filename>", test_arg, show_arg, "eee", ""),
84         OPT_ENDTABLE
85 };
86
87 struct opt_table long_and_short_table[] = {
88         /* Short and long, different args. */
89         OPT_WITHOUT_ARG("--ggg|-g", test_noarg, "ggg", "Description of ggg"),
90         OPT_WITH_ARG("-h|--hhh", test_arg, NULL, "hhh", "Description of hhh"),
91         OPT_ENDTABLE
92 };
93
94 /* Sub-table test. */
95 struct opt_table subtables[] = {
96         /* Two short, and two long long, no description */
97         OPT_WITH_ARG("--jjj|-j|--lll|-l", test_arg, show_arg, "jjj", ""),
98         /* Hidden option */
99         OPT_WITH_ARG("--mmm|-m", test_arg, show_arg, "mmm", opt_hidden),
100         OPT_SUBTABLE(short_table, NULL),
101         OPT_SUBTABLE(long_table, "long table options"),
102         OPT_SUBTABLE(long_and_short_table, NULL),
103         OPT_ENDTABLE
104 };