Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 1 | #include "git-compat-util.h" |
| 2 | #include "parse-options.h" |
Pierre Habouzit | 26141b5 | 2008-06-23 22:55:11 +0200 | [diff] [blame] | 3 | #include "cache.h" |
Jake Goulding | 269defd | 2009-01-26 09:13:23 -0500 | [diff] [blame] | 4 | #include "commit.h" |
Mark Lodato | 73e9da0 | 2010-02-16 23:55:58 -0500 | [diff] [blame] | 5 | #include "color.h" |
Jiang Xin | c082196 | 2013-02-09 14:31:09 +0800 | [diff] [blame] | 6 | #include "utf8.h" |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 7 | |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 8 | static int parse_options_usage(struct parse_opt_ctx_t *ctx, |
| 9 | const char * const *usagestr, |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 10 | const struct option *opts, int err); |
Junio C Hamano | 41064eb | 2010-01-11 22:28:45 -0800 | [diff] [blame] | 11 | |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 12 | #define OPT_SHORT 1 |
| 13 | #define OPT_UNSET 2 |
| 14 | |
Dmitry Ivankov | 1f275b7 | 2011-08-11 15:15:37 +0600 | [diff] [blame] | 15 | int optbug(const struct option *opt, const char *reason) |
Jonathan Nieder | 1e5ce57 | 2010-12-02 00:01:18 -0600 | [diff] [blame] | 16 | { |
| 17 | if (opt->long_name) |
| 18 | return error("BUG: option '%s' %s", opt->long_name, reason); |
| 19 | return error("BUG: switch '%c' %s", opt->short_name, reason); |
| 20 | } |
| 21 | |
Pierre Habouzit | 1cc6985 | 2008-07-08 12:34:08 +0200 | [diff] [blame] | 22 | static int get_arg(struct parse_opt_ctx_t *p, const struct option *opt, |
| 23 | int flags, const char **arg) |
| 24 | { |
| 25 | if (p->opt) { |
| 26 | *arg = p->opt; |
| 27 | p->opt = NULL; |
| 28 | } else if (p->argc == 1 && (opt->flags & PARSE_OPT_LASTARG_DEFAULT)) { |
| 29 | *arg = (const char *)opt->defval; |
Olivier Marin | d5d745f | 2008-07-21 20:30:36 +0200 | [diff] [blame] | 30 | } else if (p->argc > 1) { |
Pierre Habouzit | 1cc6985 | 2008-07-08 12:34:08 +0200 | [diff] [blame] | 31 | p->argc--; |
| 32 | *arg = *++p->argv; |
| 33 | } else |
| 34 | return opterror(opt, "requires a value", flags); |
| 35 | return 0; |
| 36 | } |
| 37 | |
Stephen Boyd | df217ed | 2009-05-23 11:53:13 -0700 | [diff] [blame] | 38 | static void fix_filename(const char *prefix, const char **file) |
| 39 | { |
| 40 | if (!file || !*file || !prefix || is_absolute_path(*file) |
| 41 | || !strcmp("-", *file)) |
| 42 | return; |
| 43 | *file = xstrdup(prefix_filename(prefix, strlen(prefix), *file)); |
| 44 | } |
| 45 | |
Junio C Hamano | 1158826 | 2013-07-30 12:06:01 -0700 | [diff] [blame] | 46 | static int opt_command_mode_error(const struct option *opt, |
| 47 | const struct option *all_opts, |
| 48 | int flags) |
| 49 | { |
| 50 | const struct option *that; |
| 51 | struct strbuf message = STRBUF_INIT; |
| 52 | struct strbuf that_name = STRBUF_INIT; |
| 53 | |
| 54 | /* |
| 55 | * Find the other option that was used to set the variable |
| 56 | * already, and report that this is not compatible with it. |
| 57 | */ |
| 58 | for (that = all_opts; that->type != OPTION_END; that++) { |
| 59 | if (that == opt || |
| 60 | that->type != OPTION_CMDMODE || |
| 61 | that->value != opt->value || |
| 62 | that->defval != *(int *)opt->value) |
| 63 | continue; |
| 64 | |
| 65 | if (that->long_name) |
| 66 | strbuf_addf(&that_name, "--%s", that->long_name); |
| 67 | else |
| 68 | strbuf_addf(&that_name, "-%c", that->short_name); |
| 69 | strbuf_addf(&message, ": incompatible with %s", that_name.buf); |
| 70 | strbuf_release(&that_name); |
| 71 | opterror(opt, message.buf, flags); |
| 72 | strbuf_release(&message); |
| 73 | return -1; |
| 74 | } |
| 75 | return opterror(opt, ": incompatible with something else", flags); |
| 76 | } |
| 77 | |
Pierre Habouzit | 7e7bbcb | 2008-06-23 21:59:37 +0200 | [diff] [blame] | 78 | static int get_value(struct parse_opt_ctx_t *p, |
Junio C Hamano | 1158826 | 2013-07-30 12:06:01 -0700 | [diff] [blame] | 79 | const struct option *opt, |
| 80 | const struct option *all_opts, |
| 81 | int flags) |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 82 | { |
Pierre Habouzit | ffe659f | 2007-10-15 01:45:45 +0200 | [diff] [blame] | 83 | const char *s, *arg; |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 84 | const int unset = flags & OPT_UNSET; |
Stephen Boyd | df217ed | 2009-05-23 11:53:13 -0700 | [diff] [blame] | 85 | int err; |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 86 | |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 87 | if (unset && p->opt) |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 88 | return opterror(opt, "takes no value", flags); |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 89 | if (unset && (opt->flags & PARSE_OPT_NONEG)) |
| 90 | return opterror(opt, "isn't available", flags); |
Stephen Boyd | c1f4ec9 | 2010-12-01 17:30:40 -0600 | [diff] [blame] | 91 | if (!(flags & OPT_SHORT) && p->opt && (opt->flags & PARSE_OPT_NOARG)) |
| 92 | return opterror(opt, "takes no value", flags); |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 93 | |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 94 | switch (opt->type) { |
Jonathan Nieder | b0b3a8b | 2010-12-01 17:32:16 -0600 | [diff] [blame] | 95 | case OPTION_LOWLEVEL_CALLBACK: |
| 96 | return (*(parse_opt_ll_cb *)opt->callback)(p, opt, unset); |
| 97 | |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 98 | case OPTION_BIT: |
| 99 | if (unset) |
| 100 | *(int *)opt->value &= ~opt->defval; |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 101 | else |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 102 | *(int *)opt->value |= opt->defval; |
| 103 | return 0; |
| 104 | |
René Scharfe | 2f4b97f | 2009-05-07 21:44:17 +0200 | [diff] [blame] | 105 | case OPTION_NEGBIT: |
| 106 | if (unset) |
| 107 | *(int *)opt->value |= opt->defval; |
| 108 | else |
| 109 | *(int *)opt->value &= ~opt->defval; |
| 110 | return 0; |
| 111 | |
Junio C Hamano | b04ba2b | 2011-09-27 16:56:49 -0700 | [diff] [blame] | 112 | case OPTION_COUNTUP: |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 113 | *(int *)opt->value = unset ? 0 : *(int *)opt->value + 1; |
| 114 | return 0; |
| 115 | |
| 116 | case OPTION_SET_INT: |
| 117 | *(int *)opt->value = unset ? 0 : opt->defval; |
| 118 | return 0; |
| 119 | |
Junio C Hamano | 1158826 | 2013-07-30 12:06:01 -0700 | [diff] [blame] | 120 | case OPTION_CMDMODE: |
| 121 | /* |
| 122 | * Giving the same mode option twice, although is unnecessary, |
| 123 | * is not a grave error, so let it pass. |
| 124 | */ |
| 125 | if (*(int *)opt->value && *(int *)opt->value != opt->defval) |
| 126 | return opt_command_mode_error(opt, all_opts, flags); |
| 127 | *(int *)opt->value = opt->defval; |
| 128 | return 0; |
| 129 | |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 130 | case OPTION_STRING: |
Pierre Habouzit | 1cc6985 | 2008-07-08 12:34:08 +0200 | [diff] [blame] | 131 | if (unset) |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 132 | *(const char **)opt->value = NULL; |
Pierre Habouzit | 1cc6985 | 2008-07-08 12:34:08 +0200 | [diff] [blame] | 133 | else if (opt->flags & PARSE_OPT_OPTARG && !p->opt) |
Pierre Habouzit | ffe659f | 2007-10-15 01:45:45 +0200 | [diff] [blame] | 134 | *(const char **)opt->value = (const char *)opt->defval; |
Pierre Habouzit | 1cc6985 | 2008-07-08 12:34:08 +0200 | [diff] [blame] | 135 | else |
| 136 | return get_arg(p, opt, flags, (const char **)opt->value); |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 137 | return 0; |
| 138 | |
Stephen Boyd | df217ed | 2009-05-23 11:53:13 -0700 | [diff] [blame] | 139 | case OPTION_FILENAME: |
| 140 | err = 0; |
| 141 | if (unset) |
| 142 | *(const char **)opt->value = NULL; |
| 143 | else if (opt->flags & PARSE_OPT_OPTARG && !p->opt) |
| 144 | *(const char **)opt->value = (const char *)opt->defval; |
| 145 | else |
| 146 | err = get_arg(p, opt, flags, (const char **)opt->value); |
| 147 | |
| 148 | if (!err) |
| 149 | fix_filename(p->prefix, (const char **)opt->value); |
| 150 | return err; |
| 151 | |
Pierre Habouzit | ffe659f | 2007-10-15 01:45:45 +0200 | [diff] [blame] | 152 | case OPTION_CALLBACK: |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 153 | if (unset) |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 154 | return (*opt->callback)(opt, NULL, 1) ? (-1) : 0; |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 155 | if (opt->flags & PARSE_OPT_NOARG) |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 156 | return (*opt->callback)(opt, NULL, 0) ? (-1) : 0; |
Pierre Habouzit | c43a248 | 2007-12-21 11:41:41 +0100 | [diff] [blame] | 157 | if (opt->flags & PARSE_OPT_OPTARG && !p->opt) |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 158 | return (*opt->callback)(opt, NULL, 0) ? (-1) : 0; |
Pierre Habouzit | 1cc6985 | 2008-07-08 12:34:08 +0200 | [diff] [blame] | 159 | if (get_arg(p, opt, flags, &arg)) |
| 160 | return -1; |
| 161 | return (*opt->callback)(opt, arg, 0) ? (-1) : 0; |
Pierre Habouzit | ffe659f | 2007-10-15 01:45:45 +0200 | [diff] [blame] | 162 | |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 163 | case OPTION_INTEGER: |
Pierre Habouzit | db7244b | 2007-11-07 11:20:27 +0100 | [diff] [blame] | 164 | if (unset) { |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 165 | *(int *)opt->value = 0; |
| 166 | return 0; |
| 167 | } |
Pierre Habouzit | c43a248 | 2007-12-21 11:41:41 +0100 | [diff] [blame] | 168 | if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { |
Pierre Habouzit | ffe659f | 2007-10-15 01:45:45 +0200 | [diff] [blame] | 169 | *(int *)opt->value = opt->defval; |
| 170 | return 0; |
| 171 | } |
Pierre Habouzit | 1cc6985 | 2008-07-08 12:34:08 +0200 | [diff] [blame] | 172 | if (get_arg(p, opt, flags, &arg)) |
| 173 | return -1; |
| 174 | *(int *)opt->value = strtol(arg, (char **)&s, 10); |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 175 | if (*s) |
| 176 | return opterror(opt, "expects a numerical value", flags); |
| 177 | return 0; |
| 178 | |
| 179 | default: |
| 180 | die("should not happen, someone must be hit on the forehead"); |
| 181 | } |
| 182 | } |
| 183 | |
Pierre Habouzit | 7e7bbcb | 2008-06-23 21:59:37 +0200 | [diff] [blame] | 184 | static int parse_short_opt(struct parse_opt_ctx_t *p, const struct option *options) |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 185 | { |
Junio C Hamano | 1158826 | 2013-07-30 12:06:01 -0700 | [diff] [blame] | 186 | const struct option *all_opts = options; |
René Scharfe | e0319ff | 2009-05-07 21:45:08 +0200 | [diff] [blame] | 187 | const struct option *numopt = NULL; |
| 188 | |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 189 | for (; options->type != OPTION_END; options++) { |
| 190 | if (options->short_name == *p->opt) { |
| 191 | p->opt = p->opt[1] ? p->opt + 1 : NULL; |
Junio C Hamano | 1158826 | 2013-07-30 12:06:01 -0700 | [diff] [blame] | 192 | return get_value(p, options, all_opts, OPT_SHORT); |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 193 | } |
René Scharfe | e0319ff | 2009-05-07 21:45:08 +0200 | [diff] [blame] | 194 | |
| 195 | /* |
| 196 | * Handle the numerical option later, explicit one-digit |
| 197 | * options take precedence over it. |
| 198 | */ |
| 199 | if (options->type == OPTION_NUMBER) |
| 200 | numopt = options; |
| 201 | } |
| 202 | if (numopt && isdigit(*p->opt)) { |
| 203 | size_t len = 1; |
| 204 | char *arg; |
| 205 | int rc; |
| 206 | |
| 207 | while (isdigit(p->opt[len])) |
| 208 | len++; |
| 209 | arg = xmemdupz(p->opt, len); |
| 210 | p->opt = p->opt[len] ? p->opt + len : NULL; |
| 211 | rc = (*numopt->callback)(numopt, arg, 0) ? (-1) : 0; |
| 212 | free(arg); |
| 213 | return rc; |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 214 | } |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 215 | return -2; |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 216 | } |
| 217 | |
Pierre Habouzit | 7e7bbcb | 2008-06-23 21:59:37 +0200 | [diff] [blame] | 218 | static int parse_long_opt(struct parse_opt_ctx_t *p, const char *arg, |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 219 | const struct option *options) |
| 220 | { |
Junio C Hamano | 1158826 | 2013-07-30 12:06:01 -0700 | [diff] [blame] | 221 | const struct option *all_opts = options; |
Rohit Mani | 2c5495f | 2014-03-07 22:48:31 -0800 | [diff] [blame] | 222 | const char *arg_end = strchrnul(arg, '='); |
Johannes Schindelin | 243e061 | 2007-11-05 13:15:21 +0000 | [diff] [blame] | 223 | const struct option *abbrev_option = NULL, *ambiguous_option = NULL; |
| 224 | int abbrev_flags = 0, ambiguous_flags = 0; |
Johannes Schindelin | 7f275b9 | 2007-10-14 17:54:06 +0100 | [diff] [blame] | 225 | |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 226 | for (; options->type != OPTION_END; options++) { |
René Scharfe | 0f1930c5 | 2012-02-25 20:14:54 +0100 | [diff] [blame] | 227 | const char *rest, *long_name = options->long_name; |
| 228 | int flags = 0, opt_flags = 0; |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 229 | |
René Scharfe | 0f1930c5 | 2012-02-25 20:14:54 +0100 | [diff] [blame] | 230 | if (!long_name) |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 231 | continue; |
| 232 | |
René Scharfe | 0f1930c5 | 2012-02-25 20:14:54 +0100 | [diff] [blame] | 233 | again: |
| 234 | rest = skip_prefix(arg, long_name); |
Pierre Habouzit | 580d5bf | 2008-03-02 11:35:56 +0100 | [diff] [blame] | 235 | if (options->type == OPTION_ARGUMENT) { |
| 236 | if (!rest) |
| 237 | continue; |
| 238 | if (*rest == '=') |
| 239 | return opterror(options, "takes no value", flags); |
| 240 | if (*rest) |
| 241 | continue; |
| 242 | p->out[p->cpidx++] = arg - 2; |
| 243 | return 0; |
| 244 | } |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 245 | if (!rest) { |
Johannes Schindelin | 7f275b9 | 2007-10-14 17:54:06 +0100 | [diff] [blame] | 246 | /* abbreviated? */ |
René Scharfe | 0f1930c5 | 2012-02-25 20:14:54 +0100 | [diff] [blame] | 247 | if (!strncmp(long_name, arg, arg_end - arg)) { |
Johannes Schindelin | 7f275b9 | 2007-10-14 17:54:06 +0100 | [diff] [blame] | 248 | is_abbreviated: |
Johannes Schindelin | 243e061 | 2007-11-05 13:15:21 +0000 | [diff] [blame] | 249 | if (abbrev_option) { |
| 250 | /* |
| 251 | * If this is abbreviated, it is |
| 252 | * ambiguous. So when there is no |
| 253 | * exact match later, we need to |
| 254 | * error out. |
| 255 | */ |
| 256 | ambiguous_option = abbrev_option; |
| 257 | ambiguous_flags = abbrev_flags; |
| 258 | } |
Johannes Schindelin | 7f275b9 | 2007-10-14 17:54:06 +0100 | [diff] [blame] | 259 | if (!(flags & OPT_UNSET) && *arg_end) |
| 260 | p->opt = arg_end + 1; |
| 261 | abbrev_option = options; |
René Scharfe | 0f1930c5 | 2012-02-25 20:14:54 +0100 | [diff] [blame] | 262 | abbrev_flags = flags ^ opt_flags; |
Johannes Schindelin | 7f275b9 | 2007-10-14 17:54:06 +0100 | [diff] [blame] | 263 | continue; |
| 264 | } |
Andreas Schwab | 6bbfd1f | 2009-09-25 20:44:44 +0200 | [diff] [blame] | 265 | /* negation allowed? */ |
| 266 | if (options->flags & PARSE_OPT_NONEG) |
| 267 | continue; |
Johannes Schindelin | 7f275b9 | 2007-10-14 17:54:06 +0100 | [diff] [blame] | 268 | /* negated and abbreviated very much? */ |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 269 | if (starts_with("no-", arg)) { |
Johannes Schindelin | 7f275b9 | 2007-10-14 17:54:06 +0100 | [diff] [blame] | 270 | flags |= OPT_UNSET; |
| 271 | goto is_abbreviated; |
| 272 | } |
| 273 | /* negated? */ |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 274 | if (!starts_with(arg, "no-")) { |
| 275 | if (starts_with(long_name, "no-")) { |
René Scharfe | 0f1930c5 | 2012-02-25 20:14:54 +0100 | [diff] [blame] | 276 | long_name += 3; |
| 277 | opt_flags |= OPT_UNSET; |
| 278 | goto again; |
| 279 | } |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 280 | continue; |
René Scharfe | 0f1930c5 | 2012-02-25 20:14:54 +0100 | [diff] [blame] | 281 | } |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 282 | flags |= OPT_UNSET; |
René Scharfe | 0f1930c5 | 2012-02-25 20:14:54 +0100 | [diff] [blame] | 283 | rest = skip_prefix(arg + 3, long_name); |
Johannes Schindelin | 7f275b9 | 2007-10-14 17:54:06 +0100 | [diff] [blame] | 284 | /* abbreviated and negated? */ |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 285 | if (!rest && starts_with(long_name, arg + 3)) |
Johannes Schindelin | 7f275b9 | 2007-10-14 17:54:06 +0100 | [diff] [blame] | 286 | goto is_abbreviated; |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 287 | if (!rest) |
| 288 | continue; |
| 289 | } |
| 290 | if (*rest) { |
| 291 | if (*rest != '=') |
| 292 | continue; |
| 293 | p->opt = rest + 1; |
| 294 | } |
Junio C Hamano | 1158826 | 2013-07-30 12:06:01 -0700 | [diff] [blame] | 295 | return get_value(p, options, all_opts, flags ^ opt_flags); |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 296 | } |
Johannes Schindelin | 243e061 | 2007-11-05 13:15:21 +0000 | [diff] [blame] | 297 | |
| 298 | if (ambiguous_option) |
| 299 | return error("Ambiguous option: %s " |
| 300 | "(could be --%s%s or --%s%s)", |
| 301 | arg, |
| 302 | (ambiguous_flags & OPT_UNSET) ? "no-" : "", |
| 303 | ambiguous_option->long_name, |
| 304 | (abbrev_flags & OPT_UNSET) ? "no-" : "", |
| 305 | abbrev_option->long_name); |
Johannes Schindelin | 7f275b9 | 2007-10-14 17:54:06 +0100 | [diff] [blame] | 306 | if (abbrev_option) |
Junio C Hamano | 1158826 | 2013-07-30 12:06:01 -0700 | [diff] [blame] | 307 | return get_value(p, abbrev_option, all_opts, abbrev_flags); |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 308 | return -2; |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 309 | } |
| 310 | |
René Scharfe | 51a9949 | 2009-05-07 21:45:42 +0200 | [diff] [blame] | 311 | static int parse_nodash_opt(struct parse_opt_ctx_t *p, const char *arg, |
| 312 | const struct option *options) |
| 313 | { |
Junio C Hamano | 1158826 | 2013-07-30 12:06:01 -0700 | [diff] [blame] | 314 | const struct option *all_opts = options; |
| 315 | |
René Scharfe | 51a9949 | 2009-05-07 21:45:42 +0200 | [diff] [blame] | 316 | for (; options->type != OPTION_END; options++) { |
| 317 | if (!(options->flags & PARSE_OPT_NODASH)) |
| 318 | continue; |
René Scharfe | 51a9949 | 2009-05-07 21:45:42 +0200 | [diff] [blame] | 319 | if (options->short_name == arg[0] && arg[1] == '\0') |
Junio C Hamano | 1158826 | 2013-07-30 12:06:01 -0700 | [diff] [blame] | 320 | return get_value(p, options, all_opts, OPT_SHORT); |
René Scharfe | 51a9949 | 2009-05-07 21:45:42 +0200 | [diff] [blame] | 321 | } |
| 322 | return -2; |
| 323 | } |
| 324 | |
Nanako Shiraishi | 1121a87 | 2008-07-16 19:42:18 +0900 | [diff] [blame] | 325 | static void check_typos(const char *arg, const struct option *options) |
Pierre Habouzit | 3a9f0f4 | 2008-01-26 12:26:57 +0100 | [diff] [blame] | 326 | { |
| 327 | if (strlen(arg) < 3) |
| 328 | return; |
| 329 | |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 330 | if (starts_with(arg, "no-")) { |
Pierre Habouzit | 3a9f0f4 | 2008-01-26 12:26:57 +0100 | [diff] [blame] | 331 | error ("did you mean `--%s` (with two dashes ?)", arg); |
| 332 | exit(129); |
| 333 | } |
| 334 | |
| 335 | for (; options->type != OPTION_END; options++) { |
| 336 | if (!options->long_name) |
| 337 | continue; |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 338 | if (starts_with(options->long_name, arg)) { |
Pierre Habouzit | 3a9f0f4 | 2008-01-26 12:26:57 +0100 | [diff] [blame] | 339 | error ("did you mean `--%s` (with two dashes ?)", arg); |
| 340 | exit(129); |
| 341 | } |
| 342 | } |
| 343 | } |
| 344 | |
Pierre Habouzit | cb9d398 | 2009-06-09 10:23:44 +0200 | [diff] [blame] | 345 | static void parse_options_check(const struct option *opts) |
| 346 | { |
| 347 | int err = 0; |
| 348 | |
| 349 | for (; opts->type != OPTION_END; opts++) { |
| 350 | if ((opts->flags & PARSE_OPT_LASTARG_DEFAULT) && |
Jonathan Nieder | 1e5ce57 | 2010-12-02 00:01:18 -0600 | [diff] [blame] | 351 | (opts->flags & PARSE_OPT_OPTARG)) |
| 352 | err |= optbug(opts, "uses incompatible flags " |
| 353 | "LASTARG_DEFAULT and OPTARG"); |
Jonathan Nieder | a02dd4f | 2010-12-02 00:05:05 -0600 | [diff] [blame] | 354 | if (opts->flags & PARSE_OPT_NODASH && |
| 355 | ((opts->flags & PARSE_OPT_OPTARG) || |
| 356 | !(opts->flags & PARSE_OPT_NOARG) || |
| 357 | !(opts->flags & PARSE_OPT_NONEG) || |
| 358 | opts->long_name)) |
| 359 | err |= optbug(opts, "uses feature " |
| 360 | "not supported for dashless options"); |
Jonathan Nieder | 5c400ed | 2010-12-02 00:08:57 -0600 | [diff] [blame] | 361 | switch (opts->type) { |
Junio C Hamano | b04ba2b | 2011-09-27 16:56:49 -0700 | [diff] [blame] | 362 | case OPTION_COUNTUP: |
Jonathan Nieder | 5c400ed | 2010-12-02 00:08:57 -0600 | [diff] [blame] | 363 | case OPTION_BIT: |
| 364 | case OPTION_NEGBIT: |
| 365 | case OPTION_SET_INT: |
Jonathan Nieder | 5c400ed | 2010-12-02 00:08:57 -0600 | [diff] [blame] | 366 | case OPTION_NUMBER: |
| 367 | if ((opts->flags & PARSE_OPT_OPTARG) || |
| 368 | !(opts->flags & PARSE_OPT_NOARG)) |
| 369 | err |= optbug(opts, "should not accept an argument"); |
| 370 | default: |
| 371 | ; /* ok. (usually accepts an argument) */ |
| 372 | } |
Junio C Hamano | b6c2a0d | 2014-03-23 16:04:36 -0700 | [diff] [blame] | 373 | if (opts->argh && |
| 374 | strcspn(opts->argh, " _") != strlen(opts->argh)) |
| 375 | err |= optbug(opts, "multi-word argh should use dash to separate words"); |
Pierre Habouzit | cb9d398 | 2009-06-09 10:23:44 +0200 | [diff] [blame] | 376 | } |
Pierre Habouzit | cb9d398 | 2009-06-09 10:23:44 +0200 | [diff] [blame] | 377 | if (err) |
Jonathan Nieder | 1e5ce57 | 2010-12-02 00:01:18 -0600 | [diff] [blame] | 378 | exit(128); |
Pierre Habouzit | cb9d398 | 2009-06-09 10:23:44 +0200 | [diff] [blame] | 379 | } |
| 380 | |
Pierre Habouzit | 7e7bbcb | 2008-06-23 21:59:37 +0200 | [diff] [blame] | 381 | void parse_options_start(struct parse_opt_ctx_t *ctx, |
Stephen Boyd | 3778292 | 2009-05-23 11:53:12 -0700 | [diff] [blame] | 382 | int argc, const char **argv, const char *prefix, |
Stephen Boyd | 9ca1169 | 2010-12-05 23:57:42 -0800 | [diff] [blame] | 383 | const struct option *options, int flags) |
Pierre Habouzit | 7e7bbcb | 2008-06-23 21:59:37 +0200 | [diff] [blame] | 384 | { |
| 385 | memset(ctx, 0, sizeof(*ctx)); |
| 386 | ctx->argc = argc - 1; |
| 387 | ctx->argv = argv + 1; |
| 388 | ctx->out = argv; |
Stephen Boyd | 3778292 | 2009-05-23 11:53:12 -0700 | [diff] [blame] | 389 | ctx->prefix = prefix; |
Pierre Habouzit | a32a4ea | 2008-06-24 00:31:31 +0200 | [diff] [blame] | 390 | ctx->cpidx = ((flags & PARSE_OPT_KEEP_ARGV0) != 0); |
Pierre Habouzit | 7e7bbcb | 2008-06-23 21:59:37 +0200 | [diff] [blame] | 391 | ctx->flags = flags; |
René Scharfe | 0d260f9 | 2009-03-09 21:57:38 +0100 | [diff] [blame] | 392 | if ((flags & PARSE_OPT_KEEP_UNKNOWN) && |
| 393 | (flags & PARSE_OPT_STOP_AT_NON_OPTION)) |
| 394 | die("STOP_AT_NON_OPTION and KEEP_UNKNOWN don't go together"); |
Stephen Boyd | 9ca1169 | 2010-12-05 23:57:42 -0800 | [diff] [blame] | 395 | parse_options_check(options); |
Pierre Habouzit | 7e7bbcb | 2008-06-23 21:59:37 +0200 | [diff] [blame] | 396 | } |
| 397 | |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 398 | static int usage_with_options_internal(struct parse_opt_ctx_t *, |
| 399 | const char * const *, |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 400 | const struct option *, int, int); |
Pierre Habouzit | ff43ec3 | 2008-06-23 22:38:58 +0200 | [diff] [blame] | 401 | |
| 402 | int parse_options_step(struct parse_opt_ctx_t *ctx, |
| 403 | const struct option *options, |
| 404 | const char * const usagestr[]) |
| 405 | { |
René Scharfe | b92891f | 2009-03-08 19:15:08 +0100 | [diff] [blame] | 406 | int internal_help = !(ctx->flags & PARSE_OPT_NO_INTERNAL_HELP); |
| 407 | |
Pierre Habouzit | 26141b5 | 2008-06-23 22:55:11 +0200 | [diff] [blame] | 408 | /* we must reset ->opt, unknown short option leave it dangling */ |
| 409 | ctx->opt = NULL; |
| 410 | |
Pierre Habouzit | ff43ec3 | 2008-06-23 22:38:58 +0200 | [diff] [blame] | 411 | for (; ctx->argc; ctx->argc--, ctx->argv++) { |
| 412 | const char *arg = ctx->argv[0]; |
| 413 | |
| 414 | if (*arg != '-' || !arg[1]) { |
René Scharfe | 51a9949 | 2009-05-07 21:45:42 +0200 | [diff] [blame] | 415 | if (parse_nodash_opt(ctx, arg, options) == 0) |
| 416 | continue; |
Pierre Habouzit | ff43ec3 | 2008-06-23 22:38:58 +0200 | [diff] [blame] | 417 | if (ctx->flags & PARSE_OPT_STOP_AT_NON_OPTION) |
Jonathan Nieder | 979240f | 2010-12-01 17:32:55 -0600 | [diff] [blame] | 418 | return PARSE_OPT_NON_OPTION; |
Pierre Habouzit | ff43ec3 | 2008-06-23 22:38:58 +0200 | [diff] [blame] | 419 | ctx->out[ctx->cpidx++] = ctx->argv[0]; |
| 420 | continue; |
| 421 | } |
| 422 | |
| 423 | if (arg[1] != '-') { |
| 424 | ctx->opt = arg + 1; |
René Scharfe | b92891f | 2009-03-08 19:15:08 +0100 | [diff] [blame] | 425 | if (internal_help && *ctx->opt == 'h') |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 426 | return parse_options_usage(ctx, usagestr, options, 0); |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 427 | switch (parse_short_opt(ctx, options)) { |
| 428 | case -1: |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 429 | return parse_options_usage(ctx, usagestr, options, 1); |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 430 | case -2: |
René Scharfe | 38916c5 | 2012-03-03 12:00:29 +0100 | [diff] [blame] | 431 | if (ctx->opt) |
| 432 | check_typos(arg + 1, options); |
René Scharfe | b5ce3a5 | 2009-03-08 19:12:47 +0100 | [diff] [blame] | 433 | goto unknown; |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 434 | } |
Pierre Habouzit | ff43ec3 | 2008-06-23 22:38:58 +0200 | [diff] [blame] | 435 | if (ctx->opt) |
| 436 | check_typos(arg + 1, options); |
| 437 | while (ctx->opt) { |
René Scharfe | b92891f | 2009-03-08 19:15:08 +0100 | [diff] [blame] | 438 | if (internal_help && *ctx->opt == 'h') |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 439 | return parse_options_usage(ctx, usagestr, options, 0); |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 440 | switch (parse_short_opt(ctx, options)) { |
| 441 | case -1: |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 442 | return parse_options_usage(ctx, usagestr, options, 1); |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 443 | case -2: |
Pierre Habouzit | 26141b5 | 2008-06-23 22:55:11 +0200 | [diff] [blame] | 444 | /* fake a short option thing to hide the fact that we may have |
| 445 | * started to parse aggregated stuff |
| 446 | * |
| 447 | * This is leaky, too bad. |
| 448 | */ |
| 449 | ctx->argv[0] = xstrdup(ctx->opt - 1); |
| 450 | *(char *)ctx->argv[0] = '-'; |
René Scharfe | b5ce3a5 | 2009-03-08 19:12:47 +0100 | [diff] [blame] | 451 | goto unknown; |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 452 | } |
Pierre Habouzit | ff43ec3 | 2008-06-23 22:38:58 +0200 | [diff] [blame] | 453 | } |
| 454 | continue; |
| 455 | } |
| 456 | |
| 457 | if (!arg[2]) { /* "--" */ |
| 458 | if (!(ctx->flags & PARSE_OPT_KEEP_DASHDASH)) { |
| 459 | ctx->argc--; |
| 460 | ctx->argv++; |
| 461 | } |
| 462 | break; |
| 463 | } |
| 464 | |
René Scharfe | b92891f | 2009-03-08 19:15:08 +0100 | [diff] [blame] | 465 | if (internal_help && !strcmp(arg + 2, "help-all")) |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 466 | return usage_with_options_internal(ctx, usagestr, options, 1, 0); |
René Scharfe | b92891f | 2009-03-08 19:15:08 +0100 | [diff] [blame] | 467 | if (internal_help && !strcmp(arg + 2, "help")) |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 468 | return parse_options_usage(ctx, usagestr, options, 0); |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 469 | switch (parse_long_opt(ctx, arg + 2, options)) { |
| 470 | case -1: |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 471 | return parse_options_usage(ctx, usagestr, options, 1); |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 472 | case -2: |
René Scharfe | b5ce3a5 | 2009-03-08 19:12:47 +0100 | [diff] [blame] | 473 | goto unknown; |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 474 | } |
René Scharfe | b5ce3a5 | 2009-03-08 19:12:47 +0100 | [diff] [blame] | 475 | continue; |
| 476 | unknown: |
| 477 | if (!(ctx->flags & PARSE_OPT_KEEP_UNKNOWN)) |
| 478 | return PARSE_OPT_UNKNOWN; |
| 479 | ctx->out[ctx->cpidx++] = ctx->argv[0]; |
| 480 | ctx->opt = NULL; |
Pierre Habouzit | ff43ec3 | 2008-06-23 22:38:58 +0200 | [diff] [blame] | 481 | } |
| 482 | return PARSE_OPT_DONE; |
| 483 | } |
| 484 | |
Pierre Habouzit | 7e7bbcb | 2008-06-23 21:59:37 +0200 | [diff] [blame] | 485 | int parse_options_end(struct parse_opt_ctx_t *ctx) |
| 486 | { |
| 487 | memmove(ctx->out + ctx->cpidx, ctx->argv, ctx->argc * sizeof(*ctx->out)); |
| 488 | ctx->out[ctx->cpidx + ctx->argc] = NULL; |
| 489 | return ctx->cpidx + ctx->argc; |
| 490 | } |
| 491 | |
Stephen Boyd | 3778292 | 2009-05-23 11:53:12 -0700 | [diff] [blame] | 492 | int parse_options(int argc, const char **argv, const char *prefix, |
| 493 | const struct option *options, const char * const usagestr[], |
| 494 | int flags) |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 495 | { |
Pierre Habouzit | 7e7bbcb | 2008-06-23 21:59:37 +0200 | [diff] [blame] | 496 | struct parse_opt_ctx_t ctx; |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 497 | |
Stephen Boyd | 9ca1169 | 2010-12-05 23:57:42 -0800 | [diff] [blame] | 498 | parse_options_start(&ctx, argc, argv, prefix, options, flags); |
Pierre Habouzit | ff43ec3 | 2008-06-23 22:38:58 +0200 | [diff] [blame] | 499 | switch (parse_options_step(&ctx, options, usagestr)) { |
| 500 | case PARSE_OPT_HELP: |
| 501 | exit(129); |
Jonathan Nieder | 979240f | 2010-12-01 17:32:55 -0600 | [diff] [blame] | 502 | case PARSE_OPT_NON_OPTION: |
Pierre Habouzit | ff43ec3 | 2008-06-23 22:38:58 +0200 | [diff] [blame] | 503 | case PARSE_OPT_DONE: |
| 504 | break; |
| 505 | default: /* PARSE_OPT_UNKNOWN */ |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 506 | if (ctx.argv[0][1] == '-') { |
| 507 | error("unknown option `%s'", ctx.argv[0] + 2); |
Erik Faye-Lund | b141a47 | 2013-02-12 00:13:48 +0100 | [diff] [blame] | 508 | } else if (isascii(*ctx.opt)) { |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 509 | error("unknown switch `%c'", *ctx.opt); |
Erik Faye-Lund | b141a47 | 2013-02-12 00:13:48 +0100 | [diff] [blame] | 510 | } else { |
| 511 | error("unknown non-ascii option in string: `%s'", |
| 512 | ctx.argv[0]); |
Pierre Habouzit | 07fe54d | 2008-06-23 22:46:36 +0200 | [diff] [blame] | 513 | } |
| 514 | usage_with_options(usagestr, options); |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 515 | } |
| 516 | |
Torsten Bögershausen | 76759c7 | 2012-07-08 15:50:25 +0200 | [diff] [blame] | 517 | precompose_argv(argc, argv); |
Pierre Habouzit | 7e7bbcb | 2008-06-23 21:59:37 +0200 | [diff] [blame] | 518 | return parse_options_end(&ctx); |
Pierre Habouzit | 4a59fd1 | 2007-10-15 01:35:37 +0200 | [diff] [blame] | 519 | } |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 520 | |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 521 | static int usage_argh(const struct option *opts, FILE *outfile) |
Stephen Boyd | 29f25d4 | 2009-05-21 00:33:17 -0700 | [diff] [blame] | 522 | { |
| 523 | const char *s; |
Stephen Boyd | 34aec9f | 2009-06-04 16:43:57 -0700 | [diff] [blame] | 524 | int literal = (opts->flags & PARSE_OPT_LITERAL_ARGHELP) || !opts->argh; |
Stephen Boyd | 29f25d4 | 2009-05-21 00:33:17 -0700 | [diff] [blame] | 525 | if (opts->flags & PARSE_OPT_OPTARG) |
| 526 | if (opts->long_name) |
| 527 | s = literal ? "[=%s]" : "[=<%s>]"; |
| 528 | else |
| 529 | s = literal ? "[%s]" : "[<%s>]"; |
| 530 | else |
| 531 | s = literal ? " %s" : " <%s>"; |
Jiang Xin | c082196 | 2013-02-09 14:31:09 +0800 | [diff] [blame] | 532 | return utf8_fprintf(outfile, s, opts->argh ? _(opts->argh) : _("...")); |
Stephen Boyd | 29f25d4 | 2009-05-21 00:33:17 -0700 | [diff] [blame] | 533 | } |
| 534 | |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 535 | #define USAGE_OPTS_WIDTH 24 |
| 536 | #define USAGE_GAP 2 |
| 537 | |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 538 | static int usage_with_options_internal(struct parse_opt_ctx_t *ctx, |
| 539 | const char * const *usagestr, |
| 540 | const struct option *opts, int full, int err) |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 541 | { |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 542 | FILE *outfile = err ? stderr : stdout; |
| 543 | |
René Scharfe | 49b6180 | 2009-03-08 19:16:58 +0100 | [diff] [blame] | 544 | if (!usagestr) |
| 545 | return PARSE_OPT_HELP; |
| 546 | |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 547 | if (!err && ctx && ctx->flags & PARSE_OPT_SHELL_EVAL) |
| 548 | fprintf(outfile, "cat <<\\EOF\n"); |
| 549 | |
Nguyễn Thái Ngọc Duy | 54e6dc7 | 2012-05-06 21:23:51 +0700 | [diff] [blame] | 550 | fprintf_ln(outfile, _("usage: %s"), _(*usagestr++)); |
Alex Riesen | f389c80 | 2007-10-14 00:10:51 +0200 | [diff] [blame] | 551 | while (*usagestr && **usagestr) |
Nguyễn Thái Ngọc Duy | 54e6dc7 | 2012-05-06 21:23:51 +0700 | [diff] [blame] | 552 | /* TRANSLATORS: the colon here should align with the |
| 553 | one in "usage: %s" translation */ |
| 554 | fprintf_ln(outfile, _(" or: %s"), _(*usagestr++)); |
Jeff King | 44d86e9 | 2008-06-14 03:27:21 -0400 | [diff] [blame] | 555 | while (*usagestr) { |
Nguyễn Thái Ngọc Duy | 54e6dc7 | 2012-05-06 21:23:51 +0700 | [diff] [blame] | 556 | if (**usagestr) |
| 557 | fprintf_ln(outfile, _(" %s"), _(*usagestr)); |
| 558 | else |
| 559 | putchar('\n'); |
Jeff King | 44d86e9 | 2008-06-14 03:27:21 -0400 | [diff] [blame] | 560 | usagestr++; |
| 561 | } |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 562 | |
| 563 | if (opts->type != OPTION_GROUP) |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 564 | fputc('\n', outfile); |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 565 | |
| 566 | for (; opts->type != OPTION_END; opts++) { |
| 567 | size_t pos; |
| 568 | int pad; |
| 569 | |
| 570 | if (opts->type == OPTION_GROUP) { |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 571 | fputc('\n', outfile); |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 572 | if (*opts->help) |
Nguyễn Thái Ngọc Duy | 54e6dc7 | 2012-05-06 21:23:51 +0700 | [diff] [blame] | 573 | fprintf(outfile, "%s\n", _(opts->help)); |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 574 | continue; |
| 575 | } |
Pierre Habouzit | dd3bf0f | 2007-11-19 10:21:44 +0100 | [diff] [blame] | 576 | if (!full && (opts->flags & PARSE_OPT_HIDDEN)) |
| 577 | continue; |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 578 | |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 579 | pos = fprintf(outfile, " "); |
René Scharfe | cbb08c2 | 2012-02-28 20:06:09 +0100 | [diff] [blame] | 580 | if (opts->short_name) { |
René Scharfe | 51a9949 | 2009-05-07 21:45:42 +0200 | [diff] [blame] | 581 | if (opts->flags & PARSE_OPT_NODASH) |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 582 | pos += fprintf(outfile, "%c", opts->short_name); |
René Scharfe | 51a9949 | 2009-05-07 21:45:42 +0200 | [diff] [blame] | 583 | else |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 584 | pos += fprintf(outfile, "-%c", opts->short_name); |
René Scharfe | 51a9949 | 2009-05-07 21:45:42 +0200 | [diff] [blame] | 585 | } |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 586 | if (opts->long_name && opts->short_name) |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 587 | pos += fprintf(outfile, ", "); |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 588 | if (opts->long_name) |
René Scharfe | cbb08c2 | 2012-02-28 20:06:09 +0100 | [diff] [blame] | 589 | pos += fprintf(outfile, "--%s", opts->long_name); |
René Scharfe | e0319ff | 2009-05-07 21:45:08 +0200 | [diff] [blame] | 590 | if (opts->type == OPTION_NUMBER) |
Jiang Xin | c082196 | 2013-02-09 14:31:09 +0800 | [diff] [blame] | 591 | pos += utf8_fprintf(outfile, _("-NUM")); |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 592 | |
Jonathan Nieder | b57c68a | 2010-12-01 17:31:36 -0600 | [diff] [blame] | 593 | if ((opts->flags & PARSE_OPT_LITERAL_ARGHELP) || |
| 594 | !(opts->flags & PARSE_OPT_NOARG)) |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 595 | pos += usage_argh(opts, outfile); |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 596 | |
Alex Riesen | f389c80 | 2007-10-14 00:10:51 +0200 | [diff] [blame] | 597 | if (pos <= USAGE_OPTS_WIDTH) |
| 598 | pad = USAGE_OPTS_WIDTH - pos; |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 599 | else { |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 600 | fputc('\n', outfile); |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 601 | pad = USAGE_OPTS_WIDTH; |
| 602 | } |
Nguyễn Thái Ngọc Duy | 54e6dc7 | 2012-05-06 21:23:51 +0700 | [diff] [blame] | 603 | fprintf(outfile, "%*s%s\n", pad + USAGE_GAP, "", _(opts->help)); |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 604 | } |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 605 | fputc('\n', outfile); |
Alex Riesen | f389c80 | 2007-10-14 00:10:51 +0200 | [diff] [blame] | 606 | |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 607 | if (!err && ctx && ctx->flags & PARSE_OPT_SHELL_EVAL) |
| 608 | fputs("EOF\n", outfile); |
| 609 | |
Pierre Habouzit | ee68b87 | 2008-06-23 22:28:04 +0200 | [diff] [blame] | 610 | return PARSE_OPT_HELP; |
Pierre Habouzit | d7a38c5 | 2007-10-15 01:38:30 +0200 | [diff] [blame] | 611 | } |
Pierre Habouzit | 0ce865b | 2007-10-14 11:05:12 +0200 | [diff] [blame] | 612 | |
Stephen Boyd | c2e86ad | 2011-03-22 00:51:05 -0700 | [diff] [blame] | 613 | void NORETURN usage_with_options(const char * const *usagestr, |
Pierre Habouzit | ff43ec3 | 2008-06-23 22:38:58 +0200 | [diff] [blame] | 614 | const struct option *opts) |
Pierre Habouzit | dd3bf0f | 2007-11-19 10:21:44 +0100 | [diff] [blame] | 615 | { |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 616 | usage_with_options_internal(NULL, usagestr, opts, 0, 1); |
Pierre Habouzit | ff43ec3 | 2008-06-23 22:38:58 +0200 | [diff] [blame] | 617 | exit(129); |
Pierre Habouzit | dd3bf0f | 2007-11-19 10:21:44 +0100 | [diff] [blame] | 618 | } |
| 619 | |
Stephen Boyd | c2e86ad | 2011-03-22 00:51:05 -0700 | [diff] [blame] | 620 | void NORETURN usage_msg_opt(const char *msg, |
Christian Couder | 451bb21 | 2009-02-02 06:12:58 +0100 | [diff] [blame] | 621 | const char * const *usagestr, |
| 622 | const struct option *options) |
| 623 | { |
| 624 | fprintf(stderr, "%s\n\n", msg); |
| 625 | usage_with_options(usagestr, options); |
| 626 | } |
| 627 | |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 628 | static int parse_options_usage(struct parse_opt_ctx_t *ctx, |
| 629 | const char * const *usagestr, |
Giuseppe Scrivano | 9c7304e | 2010-05-17 17:34:41 +0200 | [diff] [blame] | 630 | const struct option *opts, int err) |
Pierre Habouzit | ee68b87 | 2008-06-23 22:28:04 +0200 | [diff] [blame] | 631 | { |
Thomas Rast | 47e9cd2 | 2010-06-12 14:57:39 +0200 | [diff] [blame] | 632 | return usage_with_options_internal(ctx, usagestr, opts, 0, err); |
Pierre Habouzit | ee68b87 | 2008-06-23 22:28:04 +0200 | [diff] [blame] | 633 | } |
| 634 | |
Jeff King | a469a10 | 2012-12-15 12:42:10 -0500 | [diff] [blame] | 635 | #undef opterror |
| 636 | int opterror(const struct option *opt, const char *reason, int flags) |
| 637 | { |
| 638 | if (flags & OPT_SHORT) |
| 639 | return error("switch `%c' %s", opt->short_name, reason); |
| 640 | if (flags & OPT_UNSET) |
| 641 | return error("option `no-%s' %s", opt->long_name, reason); |
| 642 | return error("option `%s' %s", opt->long_name, reason); |
| 643 | } |