blob: 7b6e5725ae6d33350a9648e57139b646ab49696e [file] [log] [blame]
Matthias Kestenholze12c0952006-08-02 23:51:59 +02001#include "builtin.h"
Johannes Schindelin1b1e59c2005-11-17 22:44:55 +01002#include "cache.h"
Johannes Schindelin4ddba792005-11-20 06:52:22 +01003#include <regex.h>
Johannes Schindelin1b1e59c2005-11-17 22:44:55 +01004
5static const char git_config_set_usage[] =
Sean34eb3342006-11-02 10:44:20 -05006"git-repo-config [ --global ] [ --bool | --int ] [--get | --get-all | --get-regexp | --replace-all | --unset | --unset-all] name [value [value_regex]] | --list";
Johannes Schindelin4ddba792005-11-20 06:52:22 +01007
David Rientjes96f1e582006-08-15 10:23:48 -07008static char *key;
9static regex_t *key_regexp;
10static regex_t *regexp;
11static int show_keys;
12static int use_key_regexp;
13static int do_all;
14static int do_not_match;
15static int seen;
Petr Baudis7162dff2006-02-12 04:14:48 +010016static enum { T_RAW, T_INT, T_BOOL } type = T_RAW;
Johannes Schindelin4ddba792005-11-20 06:52:22 +010017
Petr Baudisde791f12006-04-25 00:59:25 +020018static int show_all_config(const char *key_, const char *value_)
19{
20 if (value_)
21 printf("%s=%s\n", key_, value_);
22 else
23 printf("%s\n", key_);
24 return 0;
25}
26
Johannes Schindelin4ddba792005-11-20 06:52:22 +010027static int show_config(const char* key_, const char* value_)
28{
Junio C Hamanoe098c6f2006-05-02 21:06:56 -070029 char value[256];
30 const char *vptr = value;
Johannes Schindelin8f5ff312006-05-03 14:41:03 +020031 int dup_error = 0;
Junio C Hamanoe098c6f2006-05-02 21:06:56 -070032
Johannes Schindelin8f5ff312006-05-03 14:41:03 +020033 if (!use_key_regexp && strcmp(key_, key))
34 return 0;
35 if (use_key_regexp && regexec(key_regexp, key_, 0, NULL, 0))
36 return 0;
37 if (regexp != NULL &&
Johannes Schindelinf98d8632005-11-20 13:24:18 +010038 (do_not_match ^
Junio C Hamanoacb70142006-06-24 05:19:30 -070039 regexec(regexp, (value_?value_:""), 0, NULL, 0)))
Johannes Schindelin8f5ff312006-05-03 14:41:03 +020040 return 0;
41
42 if (show_keys)
43 printf("%s ", key_);
44 if (seen && !do_all)
45 dup_error = 1;
46 if (type == T_INT)
Junio C Hamanoacb70142006-06-24 05:19:30 -070047 sprintf(value, "%d", git_config_int(key_, value_?value_:""));
Johannes Schindelin8f5ff312006-05-03 14:41:03 +020048 else if (type == T_BOOL)
49 vptr = git_config_bool(key_, value_) ? "true" : "false";
50 else
Junio C Hamanoacb70142006-06-24 05:19:30 -070051 vptr = value_?value_:"";
Johannes Schindelin8f5ff312006-05-03 14:41:03 +020052 seen++;
53 if (dup_error) {
54 error("More than one value for the key %s: %s",
55 key_, vptr);
Johannes Schindelin4ddba792005-11-20 06:52:22 +010056 }
Johannes Schindelin8f5ff312006-05-03 14:41:03 +020057 else
58 printf("%s\n", vptr);
59
Johannes Schindelin4ddba792005-11-20 06:52:22 +010060 return 0;
61}
62
63static int get_value(const char* key_, const char* regex_)
64{
Johannes Schindelin5f1a63e2006-06-20 01:48:03 +020065 int ret = -1;
Linus Torvaldsd14f7762006-05-09 12:24:02 -070066 char *tl;
Johannes Schindelin5f1a63e2006-06-20 01:48:03 +020067 char *global = NULL, *repo_config = NULL;
68 const char *local;
69
70 local = getenv("GIT_CONFIG");
71 if (!local) {
72 const char *home = getenv("HOME");
73 local = getenv("GIT_CONFIG_LOCAL");
74 if (!local)
Shawn Pearce9befac42006-09-02 00:16:31 -040075 local = repo_config = xstrdup(git_path("config"));
Johannes Schindelin5f1a63e2006-06-20 01:48:03 +020076 if (home)
Shawn Pearce9befac42006-09-02 00:16:31 -040077 global = xstrdup(mkpath("%s/.gitconfig", home));
Johannes Schindelin5f1a63e2006-06-20 01:48:03 +020078 }
Johannes Schindelin4ddba792005-11-20 06:52:22 +010079
Shawn Pearce9befac42006-09-02 00:16:31 -040080 key = xstrdup(key_);
Linus Torvaldsd14f7762006-05-09 12:24:02 -070081 for (tl=key+strlen(key)-1; tl >= key && *tl != '.'; --tl)
82 *tl = tolower(*tl);
83 for (tl=key; *tl && *tl != '.'; ++tl)
84 *tl = tolower(*tl);
Johannes Schindelin4ddba792005-11-20 06:52:22 +010085
Johannes Schindelin2fa9a0f2006-05-02 14:22:48 +020086 if (use_key_regexp) {
Jonas Fonseca2d7320d2006-09-01 00:32:39 +020087 key_regexp = (regex_t*)xmalloc(sizeof(regex_t));
Johannes Schindelin2fa9a0f2006-05-02 14:22:48 +020088 if (regcomp(key_regexp, key, REG_EXTENDED)) {
Junio C Hamanoe098c6f2006-05-02 21:06:56 -070089 fprintf(stderr, "Invalid key pattern: %s\n", key_);
Johannes Schindelin5f1a63e2006-06-20 01:48:03 +020090 goto free_strings;
Johannes Schindelin2fa9a0f2006-05-02 14:22:48 +020091 }
92 }
93
Johannes Schindelin4ddba792005-11-20 06:52:22 +010094 if (regex_) {
Johannes Schindelinf98d8632005-11-20 13:24:18 +010095 if (regex_[0] == '!') {
96 do_not_match = 1;
97 regex_++;
98 }
99
Jonas Fonseca2d7320d2006-09-01 00:32:39 +0200100 regexp = (regex_t*)xmalloc(sizeof(regex_t));
Amos Waterland0a152172006-01-04 19:31:02 -0500101 if (regcomp(regexp, regex_, REG_EXTENDED)) {
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100102 fprintf(stderr, "Invalid pattern: %s\n", regex_);
Johannes Schindelin5f1a63e2006-06-20 01:48:03 +0200103 goto free_strings;
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100104 }
105 }
106
Johannes Schindelin5f1a63e2006-06-20 01:48:03 +0200107 if (do_all && global)
108 git_config_from_file(show_config, global);
109 git_config_from_file(show_config, local);
110 if (!do_all && !seen && global)
111 git_config_from_file(show_config, global);
112
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100113 free(key);
Amos Waterland0a152172006-01-04 19:31:02 -0500114 if (regexp) {
115 regfree(regexp);
116 free(regexp);
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100117 }
118
119 if (do_all)
Johannes Schindelin5f1a63e2006-06-20 01:48:03 +0200120 ret = !seen;
121 else
Petr Baudisdc2613d2006-07-03 22:47:55 +0200122 ret = (seen == 1) ? 0 : seen > 1 ? 2 : 1;
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100123
Johannes Schindelin5f1a63e2006-06-20 01:48:03 +0200124free_strings:
Junio C Hamano4cac42b2006-08-27 21:19:39 -0700125 free(repo_config);
126 free(global);
Johannes Schindelin5f1a63e2006-06-20 01:48:03 +0200127 return ret;
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100128}
Johannes Schindelin1b1e59c2005-11-17 22:44:55 +0100129
Matthias Kestenholze12c0952006-08-02 23:51:59 +0200130int cmd_repo_config(int argc, const char **argv, const char *prefix)
Johannes Schindelin1b1e59c2005-11-17 22:44:55 +0100131{
Linus Torvalds4d599e62006-05-25 08:22:42 -0700132 int nongit = 0;
133 setup_git_directory_gently(&nongit);
Petr Baudis7162dff2006-02-12 04:14:48 +0100134
135 while (1 < argc) {
136 if (!strcmp(argv[1], "--int"))
137 type = T_INT;
138 else if (!strcmp(argv[1], "--bool"))
139 type = T_BOOL;
Johannes Schindelincfa24e12006-05-02 12:54:12 -0700140 else if (!strcmp(argv[1], "--list") || !strcmp(argv[1], "-l"))
141 return git_config(show_all_config);
Sean34eb3342006-11-02 10:44:20 -0500142 else if (!strcmp(argv[1], "--global")) {
143 char *home = getenv("HOME");
144 if (home) {
145 char *user_config = xstrdup(mkpath("%s/.gitconfig", home));
146 setenv("GIT_CONFIG", user_config, 1);
147 free(user_config);
148 } else {
149 die("$HOME not set");
150 }
151 } else
Petr Baudis7162dff2006-02-12 04:14:48 +0100152 break;
153 argc--;
154 argv++;
155 }
156
Johannes Schindelin1b1e59c2005-11-17 22:44:55 +0100157 switch (argc) {
158 case 2:
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100159 return get_value(argv[1], NULL);
Johannes Schindelin1b1e59c2005-11-17 22:44:55 +0100160 case 3:
161 if (!strcmp(argv[1], "--unset"))
162 return git_config_set(argv[2], NULL);
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100163 else if (!strcmp(argv[1], "--unset-all"))
164 return git_config_set_multivar(argv[2], NULL, NULL, 1);
165 else if (!strcmp(argv[1], "--get"))
166 return get_value(argv[2], NULL);
167 else if (!strcmp(argv[1], "--get-all")) {
168 do_all = 1;
169 return get_value(argv[2], NULL);
Johannes Schindelin2fa9a0f2006-05-02 14:22:48 +0200170 } else if (!strcmp(argv[1], "--get-regexp")) {
171 show_keys = 1;
172 use_key_regexp = 1;
173 do_all = 1;
174 return get_value(argv[2], NULL);
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100175 } else
176
Johannes Schindelin1b1e59c2005-11-17 22:44:55 +0100177 return git_config_set(argv[1], argv[2]);
178 case 4:
179 if (!strcmp(argv[1], "--unset"))
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100180 return git_config_set_multivar(argv[2], NULL, argv[3], 0);
181 else if (!strcmp(argv[1], "--unset-all"))
182 return git_config_set_multivar(argv[2], NULL, argv[3], 1);
183 else if (!strcmp(argv[1], "--get"))
184 return get_value(argv[2], argv[3]);
185 else if (!strcmp(argv[1], "--get-all")) {
186 do_all = 1;
187 return get_value(argv[2], argv[3]);
Johannes Schindelin2fa9a0f2006-05-02 14:22:48 +0200188 } else if (!strcmp(argv[1], "--get-regexp")) {
189 show_keys = 1;
190 use_key_regexp = 1;
191 do_all = 1;
192 return get_value(argv[2], argv[3]);
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100193 } else if (!strcmp(argv[1], "--replace-all"))
194
195 return git_config_set_multivar(argv[2], argv[3], NULL, 1);
Johannes Schindelin1b1e59c2005-11-17 22:44:55 +0100196 else
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100197
198 return git_config_set_multivar(argv[1], argv[2], argv[3], 0);
199 case 5:
200 if (!strcmp(argv[1], "--replace-all"))
201 return git_config_set_multivar(argv[2], argv[3], argv[4], 1);
202 case 1:
Johannes Schindelin1b1e59c2005-11-17 22:44:55 +0100203 default:
204 usage(git_config_set_usage);
205 }
206 return 0;
207}