Merge branch 'es/outside-repo-errmsg-hints'
[git] / t / helper / test-config.c
1 #include "test-tool.h"
2 #include "cache.h"
3 #include "config.h"
4 #include "string-list.h"
5
6 /*
7  * This program exposes the C API of the configuration mechanism
8  * as a set of simple commands in order to facilitate testing.
9  *
10  * Reads stdin and prints result of command to stdout:
11  *
12  * get_value -> prints the value with highest priority for the entered key
13  *
14  * get_value_multi -> prints all values for the entered key in increasing order
15  *                   of priority
16  *
17  * get_int -> print integer value for the entered key or die
18  *
19  * get_bool -> print bool value for the entered key or die
20  *
21  * get_string -> print string value for the entered key or die
22  *
23  * configset_get_value -> returns value with the highest priority for the entered key
24  *                      from a config_set constructed from files entered as arguments.
25  *
26  * configset_get_value_multi -> returns value_list for the entered key sorted in
27  *                              ascending order of priority from a config_set
28  *                              constructed from files entered as arguments.
29  *
30  * iterate -> iterate over all values using git_config(), and print some
31  *            data for each
32  *
33  * Examples:
34  *
35  * To print the value with highest priority for key "foo.bAr Baz.rock":
36  *      test-tool config get_value "foo.bAr Baz.rock"
37  *
38  */
39
40 static int iterate_cb(const char *var, const char *value, void *data)
41 {
42         static int nr;
43
44         if (nr++)
45                 putchar('\n');
46
47         printf("key=%s\n", var);
48         printf("value=%s\n", value ? value : "(null)");
49         printf("origin=%s\n", current_config_origin_type());
50         printf("name=%s\n", current_config_name());
51         printf("scope=%s\n", config_scope_name(current_config_scope()));
52
53         return 0;
54 }
55
56 static int early_config_cb(const char *var, const char *value, void *vdata)
57 {
58         const char *key = vdata;
59
60         if (!strcmp(key, var))
61                 printf("%s\n", value);
62
63         return 0;
64 }
65
66 int cmd__config(int argc, const char **argv)
67 {
68         int i, val;
69         const char *v;
70         const struct string_list *strptr;
71         struct config_set cs;
72
73         if (argc == 3 && !strcmp(argv[1], "read_early_config")) {
74                 read_early_config(early_config_cb, (void *)argv[2]);
75                 return 0;
76         }
77
78         setup_git_directory();
79
80         git_configset_init(&cs);
81
82         if (argc < 2) {
83                 fprintf(stderr, "Please, provide a command name on the command-line\n");
84                 goto exit1;
85         } else if (argc == 3 && !strcmp(argv[1], "get_value")) {
86                 if (!git_config_get_value(argv[2], &v)) {
87                         if (!v)
88                                 printf("(NULL)\n");
89                         else
90                                 printf("%s\n", v);
91                         goto exit0;
92                 } else {
93                         printf("Value not found for \"%s\"\n", argv[2]);
94                         goto exit1;
95                 }
96         } else if (argc == 3 && !strcmp(argv[1], "get_value_multi")) {
97                 strptr = git_config_get_value_multi(argv[2]);
98                 if (strptr) {
99                         for (i = 0; i < strptr->nr; i++) {
100                                 v = strptr->items[i].string;
101                                 if (!v)
102                                         printf("(NULL)\n");
103                                 else
104                                         printf("%s\n", v);
105                         }
106                         goto exit0;
107                 } else {
108                         printf("Value not found for \"%s\"\n", argv[2]);
109                         goto exit1;
110                 }
111         } else if (argc == 3 && !strcmp(argv[1], "get_int")) {
112                 if (!git_config_get_int(argv[2], &val)) {
113                         printf("%d\n", val);
114                         goto exit0;
115                 } else {
116                         printf("Value not found for \"%s\"\n", argv[2]);
117                         goto exit1;
118                 }
119         } else if (argc == 3 && !strcmp(argv[1], "get_bool")) {
120                 if (!git_config_get_bool(argv[2], &val)) {
121                         printf("%d\n", val);
122                         goto exit0;
123                 } else {
124                         printf("Value not found for \"%s\"\n", argv[2]);
125                         goto exit1;
126                 }
127         } else if (argc == 3 && !strcmp(argv[1], "get_string")) {
128                 if (!git_config_get_string_const(argv[2], &v)) {
129                         printf("%s\n", v);
130                         goto exit0;
131                 } else {
132                         printf("Value not found for \"%s\"\n", argv[2]);
133                         goto exit1;
134                 }
135         } else if (!strcmp(argv[1], "configset_get_value")) {
136                 for (i = 3; i < argc; i++) {
137                         int err;
138                         if ((err = git_configset_add_file(&cs, argv[i]))) {
139                                 fprintf(stderr, "Error (%d) reading configuration file %s.\n", err, argv[i]);
140                                 goto exit2;
141                         }
142                 }
143                 if (!git_configset_get_value(&cs, argv[2], &v)) {
144                         if (!v)
145                                 printf("(NULL)\n");
146                         else
147                                 printf("%s\n", v);
148                         goto exit0;
149                 } else {
150                         printf("Value not found for \"%s\"\n", argv[2]);
151                         goto exit1;
152                 }
153         } else if (!strcmp(argv[1], "configset_get_value_multi")) {
154                 for (i = 3; i < argc; i++) {
155                         int err;
156                         if ((err = git_configset_add_file(&cs, argv[i]))) {
157                                 fprintf(stderr, "Error (%d) reading configuration file %s.\n", err, argv[i]);
158                                 goto exit2;
159                         }
160                 }
161                 strptr = git_configset_get_value_multi(&cs, argv[2]);
162                 if (strptr) {
163                         for (i = 0; i < strptr->nr; i++) {
164                                 v = strptr->items[i].string;
165                                 if (!v)
166                                         printf("(NULL)\n");
167                                 else
168                                         printf("%s\n", v);
169                         }
170                         goto exit0;
171                 } else {
172                         printf("Value not found for \"%s\"\n", argv[2]);
173                         goto exit1;
174                 }
175         } else if (!strcmp(argv[1], "iterate")) {
176                 git_config(iterate_cb, NULL);
177                 goto exit0;
178         }
179
180         die("%s: Please check the syntax and the function name", argv[0]);
181
182 exit0:
183         git_configset_clear(&cs);
184         return 0;
185
186 exit1:
187         git_configset_clear(&cs);
188         return 1;
189
190 exit2:
191         git_configset_clear(&cs);
192         return 2;
193 }