parse-options: make OPT_ARGUMENT() more useful
`OPT_ARGUMENT()` is intended to keep the specified long option in `argv` and not to do anything else. However, it would make a lot of sense for the caller to know whether this option was seen at all or not. For example, we want to teach `git difftool` to work outside of any Git worktree, but only when `--no-index` was specified. Note: nothing in Git uses OPT_ARGUMENT(). Even worse, looking through the commit history, one can easily see that nothing even ever used it, apart from the regression test. So not only do we make `OPT_ARGUMENT()` more useful, we are also about to introduce its first real user! Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
							parent
							
								
									1dcda05820
								
							
						
					
					
						commit
						1a85b49b87
					
				|  | @ -198,8 +198,10 @@ There are some macros to easily define options: | |||
| 	The filename will be prefixed by passing the filename along with | ||||
| 	the prefix argument of `parse_options()` to `prefix_filename()`. | ||||
|  | ||||
| `OPT_ARGUMENT(long, description)`:: | ||||
| `OPT_ARGUMENT(long, &int_var, description)`:: | ||||
| 	Introduce a long-option argument that will be kept in `argv[]`. | ||||
| 	If this option was seen, `int_var` will be set to one (except | ||||
| 	if a `NULL` pointer was passed). | ||||
|  | ||||
| `OPT_NUMBER_CALLBACK(&var, description, func_ptr)`:: | ||||
| 	Recognize numerical options like -123 and feed the integer as | ||||
|  |  | |||
|  | @ -286,6 +286,8 @@ again: | |||
| 					     optname(options, flags)); | ||||
| 			if (*rest) | ||||
| 				continue; | ||||
| 			if (options->value) | ||||
| 				*(int *)options->value = options->defval; | ||||
| 			p->out[p->cpidx++] = arg - 2; | ||||
| 			return PARSE_OPT_DONE; | ||||
| 		} | ||||
|  |  | |||
|  | @ -138,8 +138,8 @@ struct option { | |||
| 	{ OPTION_CALLBACK, (s), (l), (v), (a), (h), (f), (cb) } | ||||
|  | ||||
| #define OPT_END()                   { OPTION_END } | ||||
| #define OPT_ARGUMENT(l, h)          { OPTION_ARGUMENT, 0, (l), NULL, NULL, \ | ||||
| 				      (h), PARSE_OPT_NOARG} | ||||
| #define OPT_ARGUMENT(l, v, h)       { OPTION_ARGUMENT, 0, (l), (v), NULL, \ | ||||
| 				      (h), PARSE_OPT_NOARG, NULL, 1 } | ||||
| #define OPT_GROUP(h)                { OPTION_GROUP, 0, NULL, NULL, NULL, (h) } | ||||
| #define OPT_BIT(s, l, v, h, b)      OPT_BIT_F(s, l, v, h, b, 0) | ||||
| #define OPT_BITOP(s, l, v, h, set, clear) { OPTION_BITOP, (s), (l), (v), NULL, (h), \ | ||||
|  |  | |||
|  | @ -132,7 +132,7 @@ int cmd__parse_options(int argc, const char **argv) | |||
| 		OPT_NOOP_NOARG(0, "obsolete"), | ||||
| 		OPT_STRING_LIST(0, "list", &list, "str", "add str to list"), | ||||
| 		OPT_GROUP("Magic arguments"), | ||||
| 		OPT_ARGUMENT("quux", "means --quux"), | ||||
| 		OPT_ARGUMENT("quux", NULL, "means --quux"), | ||||
| 		OPT_NUMBER_CALLBACK(&integer, "set integer to NUM", | ||||
| 			number_callback), | ||||
| 		{ OPTION_COUNTUP, '+', NULL, &boolean, NULL, "same as -b", | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Johannes Schindelin
						Johannes Schindelin