1 #include "git-compat-util.h"
2 #include "parse-options.h"
13 static inline const char *get_arg(struct optparse_t
*p
)
16 const char *res
= p
->opt
;
24 static inline const char *skip_prefix(const char *str
, const char *prefix
)
26 size_t len
= strlen(prefix
);
27 return strncmp(str
, prefix
, len
) ? NULL
: str
+ len
;
30 static int opterror(const struct option
*opt
, const char *reason
, int flags
)
32 if (flags
& OPT_SHORT
)
33 return error("switch `%c' %s", opt
->short_name
, reason
);
34 if (flags
& OPT_UNSET
)
35 return error("option `no-%s' %s", opt
->long_name
, reason
);
36 return error("option `%s' %s", opt
->long_name
, reason
);
39 static int get_value(struct optparse_t
*p
,
40 const struct option
*opt
, int flags
)
43 arg
= p
->opt
? p
->opt
: (p
->argc
> 1 ? p
->argv
[1] : NULL
);
45 if (p
->opt
&& (flags
& OPT_UNSET
))
46 return opterror(opt
, "takes no value", flags
);
50 if (!(flags
& OPT_SHORT
) && p
->opt
)
51 return opterror(opt
, "takes no value", flags
);
52 if (flags
& OPT_UNSET
)
53 *(int *)opt
->value
= 0;
55 (*(int *)opt
->value
)++;
59 if (flags
& OPT_UNSET
) {
60 *(const char **)opt
->value
= (const char *)NULL
;
63 if (opt
->flags
& PARSE_OPT_OPTARG
&& (!arg
|| *arg
== '-')) {
64 *(const char **)opt
->value
= (const char *)opt
->defval
;
68 return opterror(opt
, "requires a value", flags
);
69 *(const char **)opt
->value
= get_arg(p
);
73 if (flags
& OPT_UNSET
)
74 return (*opt
->callback
)(opt
, NULL
, 1);
75 if (opt
->flags
& PARSE_OPT_OPTARG
&& (!arg
|| *arg
== '-'))
76 return (*opt
->callback
)(opt
, NULL
, 0);
78 return opterror(opt
, "requires a value", flags
);
79 return (*opt
->callback
)(opt
, get_arg(p
), 0);
82 if (flags
& OPT_UNSET
) {
83 *(int *)opt
->value
= 0;
86 if (opt
->flags
& PARSE_OPT_OPTARG
&& (!arg
|| !isdigit(*arg
))) {
87 *(int *)opt
->value
= opt
->defval
;
91 return opterror(opt
, "requires a value", flags
);
92 *(int *)opt
->value
= strtol(get_arg(p
), (char **)&s
, 10);
94 return opterror(opt
, "expects a numerical value", flags
);
98 die("should not happen, someone must be hit on the forehead");
102 static int parse_short_opt(struct optparse_t
*p
, const struct option
*options
)
104 for (; options
->type
!= OPTION_END
; options
++) {
105 if (options
->short_name
== *p
->opt
) {
106 p
->opt
= p
->opt
[1] ? p
->opt
+ 1 : NULL
;
107 return get_value(p
, options
, OPT_SHORT
);
110 return error("unknown switch `%c'", *p
->opt
);
113 static int parse_long_opt(struct optparse_t
*p
, const char *arg
,
114 const struct option
*options
)
116 const char *arg_end
= strchr(arg
, '=');
117 const struct option
*abbrev_option
= NULL
;
118 int abbrev_flags
= 0;
121 arg_end
= arg
+ strlen(arg
);
123 for (; options
->type
!= OPTION_END
; options
++) {
127 if (!options
->long_name
)
130 rest
= skip_prefix(arg
, options
->long_name
);
133 if (!strncmp(options
->long_name
, arg
, arg_end
- arg
)) {
136 return error("Ambiguous option: %s "
137 "(could be --%s%s or --%s%s)",
139 (flags
& OPT_UNSET
) ?
142 (abbrev_flags
& OPT_UNSET
) ?
144 abbrev_option
->long_name
);
145 if (!(flags
& OPT_UNSET
) && *arg_end
)
146 p
->opt
= arg_end
+ 1;
147 abbrev_option
= options
;
148 abbrev_flags
= flags
;
151 /* negated and abbreviated very much? */
152 if (!prefixcmp("no-", arg
)) {
157 if (strncmp(arg
, "no-", 3))
160 rest
= skip_prefix(arg
+ 3, options
->long_name
);
161 /* abbreviated and negated? */
162 if (!rest
&& !prefixcmp(options
->long_name
, arg
+ 3))
172 return get_value(p
, options
, flags
);
175 return get_value(p
, abbrev_option
, abbrev_flags
);
176 return error("unknown option `%s'", arg
);
179 int parse_options(int argc
, const char **argv
, const struct option
*options
,
180 const char * const usagestr
[], int flags
)
182 struct optparse_t args
= { argv
+ 1, argc
- 1, NULL
};
185 for (; args
.argc
; args
.argc
--, args
.argv
++) {
186 const char *arg
= args
.argv
[0];
188 if (*arg
!= '-' || !arg
[1]) {
189 argv
[j
++] = args
.argv
[0];
196 if (*args
.opt
== 'h')
197 usage_with_options(usagestr
, options
);
198 if (parse_short_opt(&args
, options
) < 0)
199 usage_with_options(usagestr
, options
);
204 if (!arg
[2]) { /* "--" */
205 if (!(flags
& PARSE_OPT_KEEP_DASHDASH
)) {
212 if (!strcmp(arg
+ 2, "help"))
213 usage_with_options(usagestr
, options
);
214 if (parse_long_opt(&args
, arg
+ 2, options
))
215 usage_with_options(usagestr
, options
);
218 memmove(argv
+ j
, args
.argv
, args
.argc
* sizeof(*argv
));
219 argv
[j
+ args
.argc
] = NULL
;
220 return j
+ args
.argc
;
223 #define USAGE_OPTS_WIDTH 24
226 void usage_with_options(const char * const *usagestr
,
227 const struct option
*opts
)
229 fprintf(stderr
, "usage: %s\n", *usagestr
++);
230 while (*usagestr
&& **usagestr
)
231 fprintf(stderr
, " or: %s\n", *usagestr
++);
233 fprintf(stderr
, " %s\n", *usagestr
++);
235 if (opts
->type
!= OPTION_GROUP
)
238 for (; opts
->type
!= OPTION_END
; opts
++) {
242 if (opts
->type
== OPTION_GROUP
) {
245 fprintf(stderr
, "%s\n", opts
->help
);
249 pos
= fprintf(stderr
, " ");
250 if (opts
->short_name
)
251 pos
+= fprintf(stderr
, "-%c", opts
->short_name
);
252 if (opts
->long_name
&& opts
->short_name
)
253 pos
+= fprintf(stderr
, ", ");
255 pos
+= fprintf(stderr
, "--%s", opts
->long_name
);
257 switch (opts
->type
) {
259 if (opts
->flags
& PARSE_OPT_OPTARG
)
260 pos
+= fprintf(stderr
, " [<n>]");
262 pos
+= fprintf(stderr
, " <n>");
265 case OPTION_CALLBACK
:
267 if (opts
->flags
& PARSE_OPT_OPTARG
)
268 pos
+= fprintf(stderr
, " [<%s>]", opts
->argh
);
270 pos
+= fprintf(stderr
, " <%s>", opts
->argh
);
272 if (opts
->flags
& PARSE_OPT_OPTARG
)
273 pos
+= fprintf(stderr
, " [...]");
275 pos
+= fprintf(stderr
, " ...");
282 if (pos
<= USAGE_OPTS_WIDTH
)
283 pad
= USAGE_OPTS_WIDTH
- pos
;
286 pad
= USAGE_OPTS_WIDTH
;
288 fprintf(stderr
, "%*s%s\n", pad
+ USAGE_GAP
, "", opts
->help
);
295 /*----- some often used options -----*/
297 int parse_opt_abbrev_cb(const struct option
*opt
, const char *arg
, int unset
)
302 v
= unset
? 0 : DEFAULT_ABBREV
;
304 v
= strtol(arg
, (char **)&arg
, 10);
306 return opterror(opt
, "expects a numerical value", 0);
307 if (v
&& v
< MINIMUM_ABBREV
)
312 *(int *)(opt
->value
) = v
;