git-config: always treat --int as 64-bit internally
[git/raj.git] / builtin / config.c
blob8b182d2a9f281605fa0e53c1e39972020e64b557
1 #include "builtin.h"
2 #include "cache.h"
3 #include "color.h"
4 #include "parse-options.h"
6 static const char *const builtin_config_usage[] = {
7 N_("git config [options]"),
8 NULL
9 };
11 static char *key;
12 static regex_t *key_regexp;
13 static regex_t *regexp;
14 static int show_keys;
15 static int use_key_regexp;
16 static int do_all;
17 static int do_not_match;
18 static char delim = '=';
19 static char key_delim = ' ';
20 static char term = '\n';
22 static int use_global_config, use_system_config, use_local_config;
23 static const char *given_config_file;
24 static const char *given_config_blob;
25 static int actions, types;
26 static const char *get_color_slot, *get_colorbool_slot;
27 static int end_null;
28 static int respect_includes = -1;
30 #define ACTION_GET (1<<0)
31 #define ACTION_GET_ALL (1<<1)
32 #define ACTION_GET_REGEXP (1<<2)
33 #define ACTION_REPLACE_ALL (1<<3)
34 #define ACTION_ADD (1<<4)
35 #define ACTION_UNSET (1<<5)
36 #define ACTION_UNSET_ALL (1<<6)
37 #define ACTION_RENAME_SECTION (1<<7)
38 #define ACTION_REMOVE_SECTION (1<<8)
39 #define ACTION_LIST (1<<9)
40 #define ACTION_EDIT (1<<10)
41 #define ACTION_SET (1<<11)
42 #define ACTION_SET_ALL (1<<12)
43 #define ACTION_GET_COLOR (1<<13)
44 #define ACTION_GET_COLORBOOL (1<<14)
46 #define TYPE_BOOL (1<<0)
47 #define TYPE_INT (1<<1)
48 #define TYPE_BOOL_OR_INT (1<<2)
49 #define TYPE_PATH (1<<3)
51 static struct option builtin_config_options[] = {
52 OPT_GROUP(N_("Config file location")),
53 OPT_BOOLEAN(0, "global", &use_global_config, N_("use global config file")),
54 OPT_BOOLEAN(0, "system", &use_system_config, N_("use system config file")),
55 OPT_BOOLEAN(0, "local", &use_local_config, N_("use repository config file")),
56 OPT_STRING('f', "file", &given_config_file, N_("file"), N_("use given config file")),
57 OPT_STRING(0, "blob", &given_config_blob, N_("blob-id"), N_("read config from given blob object")),
58 OPT_GROUP(N_("Action")),
59 OPT_BIT(0, "get", &actions, N_("get value: name [value-regex]"), ACTION_GET),
60 OPT_BIT(0, "get-all", &actions, N_("get all values: key [value-regex]"), ACTION_GET_ALL),
61 OPT_BIT(0, "get-regexp", &actions, N_("get values for regexp: name-regex [value-regex]"), ACTION_GET_REGEXP),
62 OPT_BIT(0, "replace-all", &actions, N_("replace all matching variables: name value [value_regex]"), ACTION_REPLACE_ALL),
63 OPT_BIT(0, "add", &actions, N_("add a new variable: name value"), ACTION_ADD),
64 OPT_BIT(0, "unset", &actions, N_("remove a variable: name [value-regex]"), ACTION_UNSET),
65 OPT_BIT(0, "unset-all", &actions, N_("remove all matches: name [value-regex]"), ACTION_UNSET_ALL),
66 OPT_BIT(0, "rename-section", &actions, N_("rename section: old-name new-name"), ACTION_RENAME_SECTION),
67 OPT_BIT(0, "remove-section", &actions, N_("remove a section: name"), ACTION_REMOVE_SECTION),
68 OPT_BIT('l', "list", &actions, N_("list all"), ACTION_LIST),
69 OPT_BIT('e', "edit", &actions, N_("open an editor"), ACTION_EDIT),
70 OPT_STRING(0, "get-color", &get_color_slot, N_("slot"), N_("find the color configured: [default]")),
71 OPT_STRING(0, "get-colorbool", &get_colorbool_slot, N_("slot"), N_("find the color setting: [stdout-is-tty]")),
72 OPT_GROUP(N_("Type")),
73 OPT_BIT(0, "bool", &types, N_("value is \"true\" or \"false\""), TYPE_BOOL),
74 OPT_BIT(0, "int", &types, N_("value is decimal number"), TYPE_INT),
75 OPT_BIT(0, "bool-or-int", &types, N_("value is --bool or --int"), TYPE_BOOL_OR_INT),
76 OPT_BIT(0, "path", &types, N_("value is a path (file or directory name)"), TYPE_PATH),
77 OPT_GROUP(N_("Other")),
78 OPT_BOOLEAN('z', "null", &end_null, N_("terminate values with NUL byte")),
79 OPT_BOOL(0, "includes", &respect_includes, N_("respect include directives on lookup")),
80 OPT_END(),
83 static void check_argc(int argc, int min, int max) {
84 if (argc >= min && argc <= max)
85 return;
86 error("wrong number of arguments");
87 usage_with_options(builtin_config_usage, builtin_config_options);
90 static int show_all_config(const char *key_, const char *value_, void *cb)
92 if (value_)
93 printf("%s%c%s%c", key_, delim, value_, term);
94 else
95 printf("%s%c", key_, term);
96 return 0;
99 struct strbuf_list {
100 struct strbuf *items;
101 int nr;
102 int alloc;
105 static int collect_config(const char *key_, const char *value_, void *cb)
107 struct strbuf_list *values = cb;
108 struct strbuf *buf;
109 char value[256];
110 const char *vptr = value;
111 int must_free_vptr = 0;
112 int must_print_delim = 0;
114 if (!use_key_regexp && strcmp(key_, key))
115 return 0;
116 if (use_key_regexp && regexec(key_regexp, key_, 0, NULL, 0))
117 return 0;
118 if (regexp != NULL &&
119 (do_not_match ^ !!regexec(regexp, (value_?value_:""), 0, NULL, 0)))
120 return 0;
122 ALLOC_GROW(values->items, values->nr + 1, values->alloc);
123 buf = &values->items[values->nr++];
124 strbuf_init(buf, 0);
126 if (show_keys) {
127 strbuf_addstr(buf, key_);
128 must_print_delim = 1;
130 if (types == TYPE_INT)
131 sprintf(value, "%"PRId64,
132 git_config_int64(key_, value_ ? value_ : ""));
133 else if (types == TYPE_BOOL)
134 vptr = git_config_bool(key_, value_) ? "true" : "false";
135 else if (types == TYPE_BOOL_OR_INT) {
136 int is_bool, v;
137 v = git_config_bool_or_int(key_, value_, &is_bool);
138 if (is_bool)
139 vptr = v ? "true" : "false";
140 else
141 sprintf(value, "%d", v);
142 } else if (types == TYPE_PATH) {
143 if (git_config_pathname(&vptr, key_, value_) < 0)
144 return -1;
145 must_free_vptr = 1;
146 } else if (value_) {
147 vptr = value_;
148 } else {
149 /* Just show the key name */
150 vptr = "";
151 must_print_delim = 0;
154 if (must_print_delim)
155 strbuf_addch(buf, key_delim);
156 strbuf_addstr(buf, vptr);
157 strbuf_addch(buf, term);
159 if (must_free_vptr)
160 /* If vptr must be freed, it's a pointer to a
161 * dynamically allocated buffer, it's safe to cast to
162 * const.
164 free((char *)vptr);
166 return 0;
169 static int get_value(const char *key_, const char *regex_)
171 int ret = CONFIG_GENERIC_ERROR;
172 struct strbuf_list values = {NULL};
173 int i;
175 if (use_key_regexp) {
176 char *tl;
179 * NEEDSWORK: this naive pattern lowercasing obviously does not
180 * work for more complex patterns like "^[^.]*Foo.*bar".
181 * Perhaps we should deprecate this altogether someday.
184 key = xstrdup(key_);
185 for (tl = key + strlen(key) - 1;
186 tl >= key && *tl != '.';
187 tl--)
188 *tl = tolower(*tl);
189 for (tl = key; *tl && *tl != '.'; tl++)
190 *tl = tolower(*tl);
192 key_regexp = (regex_t*)xmalloc(sizeof(regex_t));
193 if (regcomp(key_regexp, key, REG_EXTENDED)) {
194 fprintf(stderr, "Invalid key pattern: %s\n", key_);
195 free(key_regexp);
196 key_regexp = NULL;
197 ret = CONFIG_INVALID_PATTERN;
198 goto free_strings;
200 } else {
201 if (git_config_parse_key(key_, &key, NULL)) {
202 ret = CONFIG_INVALID_KEY;
203 goto free_strings;
207 if (regex_) {
208 if (regex_[0] == '!') {
209 do_not_match = 1;
210 regex_++;
213 regexp = (regex_t*)xmalloc(sizeof(regex_t));
214 if (regcomp(regexp, regex_, REG_EXTENDED)) {
215 fprintf(stderr, "Invalid pattern: %s\n", regex_);
216 free(regexp);
217 regexp = NULL;
218 ret = CONFIG_INVALID_PATTERN;
219 goto free_strings;
223 git_config_with_options(collect_config, &values,
224 given_config_file, given_config_blob,
225 respect_includes);
227 ret = !values.nr;
229 for (i = 0; i < values.nr; i++) {
230 struct strbuf *buf = values.items + i;
231 if (do_all || i == values.nr - 1)
232 fwrite(buf->buf, 1, buf->len, stdout);
233 strbuf_release(buf);
235 free(values.items);
237 free_strings:
238 free(key);
239 if (key_regexp) {
240 regfree(key_regexp);
241 free(key_regexp);
243 if (regexp) {
244 regfree(regexp);
245 free(regexp);
248 return ret;
251 static char *normalize_value(const char *key, const char *value)
253 char *normalized;
255 if (!value)
256 return NULL;
258 if (types == 0 || types == TYPE_PATH)
260 * We don't do normalization for TYPE_PATH here: If
261 * the path is like ~/foobar/, we prefer to store
262 * "~/foobar/" in the config file, and to expand the ~
263 * when retrieving the value.
265 normalized = xstrdup(value);
266 else {
267 normalized = xmalloc(64);
268 if (types == TYPE_INT) {
269 int64_t v = git_config_int64(key, value);
270 sprintf(normalized, "%"PRId64, v);
272 else if (types == TYPE_BOOL)
273 sprintf(normalized, "%s",
274 git_config_bool(key, value) ? "true" : "false");
275 else if (types == TYPE_BOOL_OR_INT) {
276 int is_bool, v;
277 v = git_config_bool_or_int(key, value, &is_bool);
278 if (!is_bool)
279 sprintf(normalized, "%d", v);
280 else
281 sprintf(normalized, "%s", v ? "true" : "false");
285 return normalized;
288 static int get_color_found;
289 static const char *get_color_slot;
290 static const char *get_colorbool_slot;
291 static char parsed_color[COLOR_MAXLEN];
293 static int git_get_color_config(const char *var, const char *value, void *cb)
295 if (!strcmp(var, get_color_slot)) {
296 if (!value)
297 config_error_nonbool(var);
298 color_parse(value, var, parsed_color);
299 get_color_found = 1;
301 return 0;
304 static void get_color(const char *def_color)
306 get_color_found = 0;
307 parsed_color[0] = '\0';
308 git_config_with_options(git_get_color_config, NULL,
309 given_config_file, given_config_blob,
310 respect_includes);
312 if (!get_color_found && def_color)
313 color_parse(def_color, "command line", parsed_color);
315 fputs(parsed_color, stdout);
318 static int get_colorbool_found;
319 static int get_diff_color_found;
320 static int get_color_ui_found;
321 static int git_get_colorbool_config(const char *var, const char *value,
322 void *cb)
324 if (!strcmp(var, get_colorbool_slot))
325 get_colorbool_found = git_config_colorbool(var, value);
326 else if (!strcmp(var, "diff.color"))
327 get_diff_color_found = git_config_colorbool(var, value);
328 else if (!strcmp(var, "color.ui"))
329 get_color_ui_found = git_config_colorbool(var, value);
330 return 0;
333 static int get_colorbool(int print)
335 get_colorbool_found = -1;
336 get_diff_color_found = -1;
337 get_color_ui_found = -1;
338 git_config_with_options(git_get_colorbool_config, NULL,
339 given_config_file, given_config_blob,
340 respect_includes);
342 if (get_colorbool_found < 0) {
343 if (!strcmp(get_colorbool_slot, "color.diff"))
344 get_colorbool_found = get_diff_color_found;
345 if (get_colorbool_found < 0)
346 get_colorbool_found = get_color_ui_found;
349 if (get_colorbool_found < 0)
350 /* default value if none found in config */
351 get_colorbool_found = GIT_COLOR_AUTO;
353 get_colorbool_found = want_color(get_colorbool_found);
355 if (print) {
356 printf("%s\n", get_colorbool_found ? "true" : "false");
357 return 0;
358 } else
359 return get_colorbool_found ? 0 : 1;
362 static void check_blob_write(void)
364 if (given_config_blob)
365 die("writing config blobs is not supported");
368 int cmd_config(int argc, const char **argv, const char *prefix)
370 int nongit = !startup_info->have_repository;
371 char *value;
373 given_config_file = getenv(CONFIG_ENVIRONMENT);
375 argc = parse_options(argc, argv, prefix, builtin_config_options,
376 builtin_config_usage,
377 PARSE_OPT_STOP_AT_NON_OPTION);
379 if (use_global_config + use_system_config + use_local_config +
380 !!given_config_file + !!given_config_blob > 1) {
381 error("only one config file at a time.");
382 usage_with_options(builtin_config_usage, builtin_config_options);
385 if (use_global_config) {
386 char *user_config = NULL;
387 char *xdg_config = NULL;
389 home_config_paths(&user_config, &xdg_config, "config");
391 if (!user_config)
393 * It is unknown if HOME/.gitconfig exists, so
394 * we do not know if we should write to XDG
395 * location; error out even if XDG_CONFIG_HOME
396 * is set and points at a sane location.
398 die("$HOME not set");
400 if (access_or_warn(user_config, R_OK, 0) &&
401 xdg_config && !access_or_warn(xdg_config, R_OK, 0))
402 given_config_file = xdg_config;
403 else
404 given_config_file = user_config;
406 else if (use_system_config)
407 given_config_file = git_etc_gitconfig();
408 else if (use_local_config)
409 given_config_file = git_pathdup("config");
410 else if (given_config_file) {
411 if (!is_absolute_path(given_config_file) && prefix)
412 given_config_file =
413 xstrdup(prefix_filename(prefix,
414 strlen(prefix),
415 given_config_file));
418 if (respect_includes == -1)
419 respect_includes = !given_config_file;
421 if (end_null) {
422 term = '\0';
423 delim = '\n';
424 key_delim = '\n';
427 if (HAS_MULTI_BITS(types)) {
428 error("only one type at a time.");
429 usage_with_options(builtin_config_usage, builtin_config_options);
432 if (get_color_slot)
433 actions |= ACTION_GET_COLOR;
434 if (get_colorbool_slot)
435 actions |= ACTION_GET_COLORBOOL;
437 if ((get_color_slot || get_colorbool_slot) && types) {
438 error("--get-color and variable type are incoherent");
439 usage_with_options(builtin_config_usage, builtin_config_options);
442 if (HAS_MULTI_BITS(actions)) {
443 error("only one action at a time.");
444 usage_with_options(builtin_config_usage, builtin_config_options);
446 if (actions == 0)
447 switch (argc) {
448 case 1: actions = ACTION_GET; break;
449 case 2: actions = ACTION_SET; break;
450 case 3: actions = ACTION_SET_ALL; break;
451 default:
452 usage_with_options(builtin_config_usage, builtin_config_options);
455 if (actions == ACTION_LIST) {
456 check_argc(argc, 0, 0);
457 if (git_config_with_options(show_all_config, NULL,
458 given_config_file,
459 given_config_blob,
460 respect_includes) < 0) {
461 if (given_config_file)
462 die_errno("unable to read config file '%s'",
463 given_config_file);
464 else
465 die("error processing config file(s)");
468 else if (actions == ACTION_EDIT) {
469 check_argc(argc, 0, 0);
470 if (!given_config_file && nongit)
471 die("not in a git directory");
472 if (given_config_blob)
473 die("editing blobs is not supported");
474 git_config(git_default_config, NULL);
475 launch_editor(given_config_file ?
476 given_config_file : git_path("config"),
477 NULL, NULL);
479 else if (actions == ACTION_SET) {
480 int ret;
481 check_blob_write();
482 check_argc(argc, 2, 2);
483 value = normalize_value(argv[0], argv[1]);
484 ret = git_config_set_in_file(given_config_file, argv[0], value);
485 if (ret == CONFIG_NOTHING_SET)
486 error("cannot overwrite multiple values with a single value\n"
487 " Use a regexp, --add or --replace-all to change %s.", argv[0]);
488 return ret;
490 else if (actions == ACTION_SET_ALL) {
491 check_blob_write();
492 check_argc(argc, 2, 3);
493 value = normalize_value(argv[0], argv[1]);
494 return git_config_set_multivar_in_file(given_config_file,
495 argv[0], value, argv[2], 0);
497 else if (actions == ACTION_ADD) {
498 check_blob_write();
499 check_argc(argc, 2, 2);
500 value = normalize_value(argv[0], argv[1]);
501 return git_config_set_multivar_in_file(given_config_file,
502 argv[0], value, "^$", 0);
504 else if (actions == ACTION_REPLACE_ALL) {
505 check_blob_write();
506 check_argc(argc, 2, 3);
507 value = normalize_value(argv[0], argv[1]);
508 return git_config_set_multivar_in_file(given_config_file,
509 argv[0], value, argv[2], 1);
511 else if (actions == ACTION_GET) {
512 check_argc(argc, 1, 2);
513 return get_value(argv[0], argv[1]);
515 else if (actions == ACTION_GET_ALL) {
516 do_all = 1;
517 check_argc(argc, 1, 2);
518 return get_value(argv[0], argv[1]);
520 else if (actions == ACTION_GET_REGEXP) {
521 show_keys = 1;
522 use_key_regexp = 1;
523 do_all = 1;
524 check_argc(argc, 1, 2);
525 return get_value(argv[0], argv[1]);
527 else if (actions == ACTION_UNSET) {
528 check_blob_write();
529 check_argc(argc, 1, 2);
530 if (argc == 2)
531 return git_config_set_multivar_in_file(given_config_file,
532 argv[0], NULL, argv[1], 0);
533 else
534 return git_config_set_in_file(given_config_file,
535 argv[0], NULL);
537 else if (actions == ACTION_UNSET_ALL) {
538 check_blob_write();
539 check_argc(argc, 1, 2);
540 return git_config_set_multivar_in_file(given_config_file,
541 argv[0], NULL, argv[1], 1);
543 else if (actions == ACTION_RENAME_SECTION) {
544 int ret;
545 check_blob_write();
546 check_argc(argc, 2, 2);
547 ret = git_config_rename_section_in_file(given_config_file,
548 argv[0], argv[1]);
549 if (ret < 0)
550 return ret;
551 if (ret == 0)
552 die("No such section!");
554 else if (actions == ACTION_REMOVE_SECTION) {
555 int ret;
556 check_blob_write();
557 check_argc(argc, 1, 1);
558 ret = git_config_rename_section_in_file(given_config_file,
559 argv[0], NULL);
560 if (ret < 0)
561 return ret;
562 if (ret == 0)
563 die("No such section!");
565 else if (actions == ACTION_GET_COLOR) {
566 get_color(argv[0]);
568 else if (actions == ACTION_GET_COLORBOOL) {
569 if (argc == 1)
570 color_stdout_is_tty = git_config_bool("command line", argv[0]);
571 return get_colorbool(argc != 0);
574 return 0;
577 int cmd_repo_config(int argc, const char **argv, const char *prefix)
579 fprintf(stderr, "WARNING: git repo-config is deprecated in favor of git config.\n");
580 return cmd_config(argc, argv, prefix);