Git fork
1#ifndef CONFIG_H
2#define CONFIG_H
3
4#include "hashmap.h"
5#include "string-list.h"
6#include "repository.h"
7#include "parse.h"
8
9/**
10 * The config API gives callers a way to access Git configuration files
11 * (and files which have the same syntax).
12 *
13 * General Usage
14 * -------------
15 *
16 * Config files are parsed linearly, and each variable found is passed to a
17 * caller-provided callback function. The callback function is responsible
18 * for any actions to be taken on the config option, and is free to ignore
19 * some options. It is not uncommon for the configuration to be parsed
20 * several times during the run of a Git program, with different callbacks
21 * picking out different variables useful to themselves.
22 */
23
24struct object_id;
25
26/* git_config_parse_key() returns these negated: */
27#define CONFIG_INVALID_KEY 1
28#define CONFIG_NO_SECTION_OR_NAME 2
29/* repo_config_set_gently(), repo_config_set_multivar_gently() return the above or these: */
30#define CONFIG_NO_LOCK -1
31#define CONFIG_INVALID_FILE 3
32#define CONFIG_NO_WRITE 4
33#define CONFIG_NOTHING_SET 5
34#define CONFIG_INVALID_PATTERN 6
35#define CONFIG_GENERIC_ERROR 7
36
37#define CONFIG_REGEX_NONE ((void *)1)
38
39enum config_scope {
40 CONFIG_SCOPE_UNKNOWN = 0,
41 CONFIG_SCOPE_SYSTEM,
42 CONFIG_SCOPE_GLOBAL,
43 CONFIG_SCOPE_LOCAL,
44 CONFIG_SCOPE_WORKTREE,
45 CONFIG_SCOPE_COMMAND,
46 CONFIG_SCOPE_SUBMODULE,
47};
48const char *config_scope_name(enum config_scope scope);
49
50struct git_config_source {
51 unsigned int use_stdin:1;
52 const char *file;
53 const char *blob;
54 enum config_scope scope;
55};
56
57enum config_origin_type {
58 CONFIG_ORIGIN_UNKNOWN = 0,
59 CONFIG_ORIGIN_BLOB,
60 CONFIG_ORIGIN_FILE,
61 CONFIG_ORIGIN_STDIN,
62 CONFIG_ORIGIN_SUBMODULE_BLOB,
63 CONFIG_ORIGIN_CMDLINE
64};
65
66enum config_event_t {
67 CONFIG_EVENT_SECTION,
68 CONFIG_EVENT_ENTRY,
69 CONFIG_EVENT_WHITESPACE,
70 CONFIG_EVENT_COMMENT,
71 CONFIG_EVENT_EOF,
72 CONFIG_EVENT_ERROR
73};
74
75struct config_source;
76/*
77 * The parser event function (if not NULL) is called with the event type and
78 * the begin/end offsets of the parsed elements.
79 *
80 * Note: for CONFIG_EVENT_ENTRY (i.e. config variables), the trailing newline
81 * character is considered part of the element.
82 */
83typedef int (*config_parser_event_fn_t)(enum config_event_t type,
84 size_t begin_offset, size_t end_offset,
85 struct config_source *cs,
86 void *event_fn_data);
87
88struct config_options {
89 unsigned int respect_includes : 1;
90 unsigned int ignore_repo : 1;
91 unsigned int ignore_worktree : 1;
92 unsigned int ignore_cmdline : 1;
93 unsigned int system_gently : 1;
94
95 /*
96 * For internal use. Include all includeif.hasremoteurl paths without
97 * checking if the repo has that remote URL, and when doing so, verify
98 * that files included in this way do not configure any remote URLs
99 * themselves.
100 */
101 unsigned int unconditional_remote_url : 1;
102
103 const char *commondir;
104 const char *git_dir;
105 /*
106 * event_fn and event_fn_data are for internal use only. Handles events
107 * emitted by the config parser.
108 */
109 config_parser_event_fn_t event_fn;
110 void *event_fn_data;
111 enum config_error_action {
112 CONFIG_ERROR_UNSET = 0, /* use source-specific default */
113 CONFIG_ERROR_DIE, /* die() on error */
114 CONFIG_ERROR_ERROR, /* error() on error, return -1 */
115 CONFIG_ERROR_SILENT, /* return -1 */
116 } error_action;
117};
118
119/* Config source metadata for a given config key-value pair */
120struct key_value_info {
121 const char *filename;
122 int linenr;
123 enum config_origin_type origin_type;
124 enum config_scope scope;
125};
126#define KVI_INIT { \
127 .filename = NULL, \
128 .linenr = -1, \
129 .origin_type = CONFIG_ORIGIN_UNKNOWN, \
130 .scope = CONFIG_SCOPE_UNKNOWN, \
131}
132
133/* Captures additional information that a config callback can use. */
134struct config_context {
135 /* Config source metadata for key and value. */
136 const struct key_value_info *kvi;
137};
138#define CONFIG_CONTEXT_INIT { 0 }
139
140/**
141 * A config callback function takes four parameters:
142 *
143 * - the name of the parsed variable. This is in canonical "flat" form: the
144 * section, subsection, and variable segments will be separated by dots,
145 * and the section and variable segments will be all lowercase. E.g.,
146 * `core.ignorecase`, `diff.SomeType.textconv`.
147 *
148 * - the value of the found variable, as a string. If the variable had no
149 * value specified, the value will be NULL (typically this means it
150 * should be interpreted as boolean true).
151 *
152 * - the 'config context', that is, additional information about the config
153 * iteration operation provided by the config machinery. For example, this
154 * includes information about the config source being parsed (e.g. the
155 * filename).
156 *
157 * - a void pointer passed in by the caller of the config API; this can
158 * contain callback-specific data
159 *
160 * A config callback should return 0 for success, or -1 if the variable
161 * could not be parsed properly.
162 */
163typedef int (*config_fn_t)(const char *, const char *,
164 const struct config_context *, void *);
165
166/**
167 * Read a specific file in git-config format.
168 * This function takes the same callback and data parameters as `repo_config`.
169 *
170 * Unlike repo_config(), this function does not respect includes.
171 */
172int git_config_from_file(config_fn_t fn, const char *, void *);
173
174int git_config_from_file_with_options(config_fn_t fn, const char *,
175 void *, enum config_scope,
176 const struct config_options *);
177int git_config_from_mem(config_fn_t fn,
178 const enum config_origin_type,
179 const char *name,
180 const char *buf, size_t len,
181 void *data, enum config_scope scope,
182 const struct config_options *opts);
183int git_config_from_blob_oid(config_fn_t fn, const char *name,
184 struct repository *repo,
185 const struct object_id *oid, void *data,
186 enum config_scope scope);
187void git_config_push_parameter(const char *text);
188void git_config_push_env(const char *spec);
189int git_config_from_parameters(config_fn_t fn, void *data);
190
191/*
192 * Read config when the Git directory has not yet been set up. In case
193 * `the_repository` has not yet been set up, try to discover the Git
194 * directory to read the configuration from.
195 */
196void read_early_config(struct repository *repo, config_fn_t cb, void *data);
197
198/*
199 * Read config but only enumerate system and global settings.
200 * Omit any repo-local, worktree-local, or command-line settings.
201 */
202void read_very_early_config(config_fn_t cb, void *data);
203
204/**
205 * Most programs will simply want to look up variables in all config files
206 * that Git knows about, using the normal precedence rules. To do this,
207 * call `repo_config` with a callback function and void data pointer.
208 *
209 * `repo_config` will read all config sources in order of increasing
210 * priority. Thus a callback should typically overwrite previously-seen
211 * entries with new ones (e.g., if both the user-wide `~/.gitconfig` and
212 * repo-specific `.git/config` contain `color.ui`, the config machinery
213 * will first feed the user-wide one to the callback, and then the
214 * repo-specific one; by overwriting, the higher-priority repo-specific
215 * value is left at the end).
216 *
217 * In cases where the repository variable is NULL, repo_config() will
218 * skip the per-repository config but retain system and global configs
219 * by calling read_very_early_config() which also ignores one-time
220 * overrides like "git -c var=val". This is to support handling "git foo -h"
221 * (which lets git.c:run_builtin() to pass NULL and have the cmd_foo()
222 * call repo_config() before calling parse_options() to notice "-h", give
223 * help and exit) for a command that ordinarily require a repository
224 * so this limitation may be OK (but if needed you are welcome to fix it).
225 *
226 * Unlike git_config_from_file(), this function respects includes.
227 */
228void repo_config(struct repository *r, config_fn_t fn, void *);
229
230/**
231 * Lets the caller examine config while adjusting some of the default
232 * behavior of `repo_config`. It should almost never be used by "regular"
233 * Git code that is looking up configuration variables.
234 * It is intended for advanced callers like `git-config`, which are
235 * intentionally tweaking the normal config-lookup process.
236 * It takes two extra parameters:
237 *
238 * - `config_source`
239 * If this parameter is non-NULL, it specifies the source to parse for
240 * configuration, rather than looking in the usual files. See `struct
241 * git_config_source` in `config.h` for details. Regular `repo_config` defaults
242 * to `NULL`.
243 *
244 * - `opts`
245 * Specify options to adjust the behavior of parsing config files. See `struct
246 * config_options` in `config.h` for details. As an example: regular `repo_config`
247 * sets `opts.respect_includes` to `1` by default.
248 */
249int config_with_options(config_fn_t fn, void *,
250 const struct git_config_source *config_source,
251 struct repository *repo,
252 const struct config_options *opts);
253
254/**
255 * Value Parsing Helpers
256 * ---------------------
257 *
258 * The following helper functions aid in parsing string values
259 */
260
261/**
262 * Parse the string to an integer, including unit factors. Dies on error;
263 * otherwise, returns the parsed result.
264 */
265int git_config_int(const char *, const char *, const struct key_value_info *);
266
267int64_t git_config_int64(const char *, const char *,
268 const struct key_value_info *);
269
270/**
271 * Identical to `git_config_int`, but for unsigned longs.
272 */
273unsigned long git_config_ulong(const char *, const char *,
274 const struct key_value_info *);
275
276ssize_t git_config_ssize_t(const char *, const char *,
277 const struct key_value_info *);
278
279/**
280 * Identically to `git_config_double`, but for double-precision floating point
281 * values.
282 */
283double git_config_double(const char *, const char *,
284 const struct key_value_info *);
285
286/**
287 * Same as `git_config_bool`, except that integers are returned as-is, and
288 * an `is_bool` flag is unset.
289 */
290int git_config_bool_or_int(const char *, const char *,
291 const struct key_value_info *, int *);
292
293/**
294 * Parse a string into a boolean value, respecting keywords like "true" and
295 * "false". Integer values are converted into true/false values (when they
296 * are non-zero or zero, respectively). Other values cause a die(). If
297 * parsing is successful, the return value is the result.
298 */
299int git_config_bool(const char *, const char *);
300
301/**
302 * Allocates and copies the value string into the `dest` parameter; if no
303 * string is given, prints an error message and returns -1.
304 */
305int git_config_string(char **, const char *, const char *);
306
307/**
308 * Similar to `git_config_string`, but expands `~` or `~user` into the
309 * user's home directory when found at the beginning of the path.
310 */
311int git_config_pathname(char **, const char *, const char *);
312
313int git_config_expiry_date(timestamp_t *, const char *, const char *);
314int git_config_color(char *, const char *, const char *);
315int repo_config_set_in_file_gently(struct repository *r, const char *config_filename,
316 const char *key, const char *comment, const char *value);
317
318/**
319 * write config values to a specific config file, takes a key/value pair as
320 * parameter.
321 */
322void repo_config_set_in_file(struct repository *, const char *, const char *, const char *);
323
324int repo_config_set_gently(struct repository *r, const char *, const char *);
325
326/**
327 * Write a config value that should apply to the current worktree. If
328 * extensions.worktreeConfig is enabled, then the write will happen in the
329 * current worktree's config. Otherwise, write to the common config file.
330 */
331int repo_config_set_worktree_gently(struct repository *, const char *, const char *);
332
333/**
334 * write config values to `.git/config`, takes a key/value pair as parameter.
335 */
336void repo_config_set(struct repository *, const char *, const char *);
337
338int git_config_parse_key(const char *, char **, size_t *);
339
340/*
341 * The following macros specify flag bits that alter the behavior
342 * of the repo_config_set_multivar*() methods.
343 */
344
345/*
346 * When CONFIG_FLAGS_MULTI_REPLACE is specified, all matching key/values
347 * are removed before a single new pair is written. If the flag is not
348 * present, then set operations replace only the first match.
349 */
350#define CONFIG_FLAGS_MULTI_REPLACE (1 << 0)
351
352/*
353 * When CONFIG_FLAGS_FIXED_VALUE is specified, match key/value pairs
354 * by string comparison (not regex match) to the provided value_pattern
355 * parameter.
356 */
357#define CONFIG_FLAGS_FIXED_VALUE (1 << 1)
358
359int repo_config_set_multivar_gently(struct repository *, const char *, const char *, const char *, unsigned);
360void repo_config_set_multivar(struct repository *r, const char *, const char *, const char *, unsigned);
361int repo_config_set_multivar_in_file_gently(struct repository *, const char *, const char *, const char *, const char *, const char *, unsigned);
362
363char *git_config_prepare_comment_string(const char *);
364
365/**
366 * takes four parameters:
367 *
368 * - the name of the file, as a string, to which key/value pairs will be written.
369 *
370 * - the name of key, as a string. This is in canonical "flat" form: the section,
371 * subsection, and variable segments will be separated by dots, and the section
372 * and variable segments will be all lowercase.
373 * E.g., `core.ignorecase`, `diff.SomeType.textconv`.
374 *
375 * - the value of the variable, as a string. If value is equal to NULL, it will
376 * remove the matching key from the config file.
377 *
378 * - the value regex, as a string. It will disregard key/value pairs where value
379 * does not match.
380 *
381 * - a flags value with bits corresponding to the CONFIG_FLAG_* macros.
382 *
383 * It returns 0 on success.
384 */
385void repo_config_set_multivar_in_file(struct repository *r,
386 const char *config_filename,
387 const char *key,
388 const char *value,
389 const char *value_pattern,
390 unsigned flags);
391
392/**
393 * rename or remove sections in the config file
394 * parameters `old_name` and `new_name`
395 * If NULL is passed through `new_name` parameter,
396 * the section will be removed from the config file.
397 */
398int repo_config_rename_section(struct repository *, const char *, const char *);
399
400int repo_config_rename_section_in_file(struct repository *, const char *, const char *, const char *);
401int repo_config_copy_section(struct repository *, const char *, const char *);
402int repo_config_copy_section_in_file(struct repository *, const char *, const char *, const char *);
403int git_config_system(void);
404int config_error_nonbool(const char *);
405#if defined(__GNUC__)
406#define config_error_nonbool(s) (config_error_nonbool(s), const_error())
407#endif
408
409char *git_system_config(void);
410char *git_global_config(void);
411void git_global_config_paths(char **user, char **xdg);
412
413int git_config_parse_parameter(const char *, config_fn_t fn, void *data);
414
415const char *config_origin_type_name(enum config_origin_type type);
416void kvi_from_param(struct key_value_info *out);
417
418/*
419 * Match and parse a config key of the form:
420 *
421 * section.(subsection.)?key
422 *
423 * (i.e., what gets handed to a config_fn_t). The caller provides the section;
424 * we return -1 if it does not match, 0 otherwise. The subsection and key
425 * out-parameters are filled by the function (and *subsection is NULL if it is
426 * missing).
427 *
428 * If the subsection pointer-to-pointer passed in is NULL, returns 0 only if
429 * there is no subsection at all.
430 */
431int parse_config_key(const char *var,
432 const char *section,
433 const char **subsection, size_t *subsection_len,
434 const char **key);
435
436/**
437 * Custom Configsets
438 * -----------------
439 *
440 * A `config_set` can be used to construct an in-memory cache for
441 * config-like files that the caller specifies (i.e., files like `.gitmodules`,
442 * `~/.gitconfig` etc.). For example,
443 *
444 * ----------------------------------------
445 * struct config_set gm_config;
446 * git_configset_init(&gm_config);
447 * int b;
448 * //we add config files to the config_set
449 * git_configset_add_file(&gm_config, ".gitmodules");
450 * git_configset_add_file(&gm_config, ".gitmodules_alt");
451 *
452 * if (!git_configset_get_bool(gm_config, "submodule.frotz.ignore", &b)) {
453 * //hack hack hack
454 * }
455 *
456 * when we are done with the configset:
457 * git_configset_clear(&gm_config);
458 * ----------------------------------------
459 *
460 * Configset API provides functions for the above mentioned work flow
461 */
462
463struct config_set_element {
464 struct hashmap_entry ent;
465 char *key;
466 struct string_list value_list;
467};
468
469struct configset_list_item {
470 struct config_set_element *e;
471 int value_index;
472};
473
474/*
475 * the contents of the list are ordered according to their
476 * position in the config files and order of parsing the files.
477 * (i.e. key-value pair at the last position of .git/config will
478 * be at the last item of the list)
479 */
480struct configset_list {
481 struct configset_list_item *items;
482 unsigned int nr, alloc;
483};
484
485struct config_set {
486 struct hashmap config_hash;
487 int hash_initialized;
488 struct configset_list list;
489};
490
491/**
492 * Initializes the config_set `cs`.
493 */
494void git_configset_init(struct config_set *cs);
495
496/**
497 * Parses the file and adds the variable-value pairs to the `config_set`,
498 * dies if there is an error in parsing the file. Returns 0 on success, or
499 * -1 if the file does not exist or is inaccessible. The caller decides
500 * whether to free the incomplete configset or continue using it when
501 * the function returns -1.
502 */
503int git_configset_add_file(struct config_set *cs, const char *filename);
504
505/**
506 * Finds and returns the value list, sorted in order of increasing priority
507 * for the configuration variable `key` and config set `cs`. When the
508 * configuration variable `key` is not found, returns 1 without touching
509 * `value`.
510 *
511 * The key will be parsed for validity with git_config_parse_key(), on
512 * error a negative value will be returned.
513 *
514 * The caller should not free or modify the returned pointer, as it is
515 * owned by the cache.
516 */
517RESULT_MUST_BE_USED
518int git_configset_get_value_multi(struct config_set *cs, const char *key,
519 const struct string_list **dest);
520
521/**
522 * A validation wrapper for git_configset_get_value_multi() which does
523 * for it what git_configset_get_string() does for
524 * git_configset_get_value().
525 *
526 * The configuration syntax allows for "[section] key", which will
527 * give us a NULL entry in the "struct string_list", as opposed to
528 * "[section] key =" which is the empty string. Most users of the API
529 * are not prepared to handle NULL in a "struct string_list".
530 */
531int git_configset_get_string_multi(struct config_set *cs, const char *key,
532 const struct string_list **dest);
533
534/**
535 * Clears `config_set` structure, removes all saved variable-value pairs.
536 */
537void git_configset_clear(struct config_set *cs);
538
539/*
540 * These functions return 1 if not found, and 0 if found, leaving the found
541 * value in the 'dest' pointer.
542 */
543
544/**
545 * git_configset_get() returns negative values on error, see
546 * repo_config_get() below.
547 */
548RESULT_MUST_BE_USED
549int git_configset_get(struct config_set *cs, const char *key);
550
551/*
552 * Finds the highest-priority value for the configuration variable `key`
553 * and config set `cs`, stores the pointer to it in `value` and returns 0.
554 * When the configuration variable `key` is not found, returns 1 without
555 * touching `value`. The caller should not free or modify `value`, as it
556 * is owned by the cache.
557 */
558int git_configset_get_value(struct config_set *cs, const char *key,
559 const char **dest, struct key_value_info *kvi);
560
561int git_configset_get_string(struct config_set *cs, const char *key, char **dest);
562int git_configset_get_int(struct config_set *cs, const char *key, int *dest);
563int git_configset_get_ulong(struct config_set *cs, const char *key, unsigned long *dest);
564int git_configset_get_bool(struct config_set *cs, const char *key, int *dest);
565int git_configset_get_bool_or_int(struct config_set *cs, const char *key, int *is_bool, int *dest);
566int git_configset_get_maybe_bool(struct config_set *cs, const char *key, int *dest);
567int git_configset_get_pathname(struct config_set *cs, const char *key, char **dest);
568
569/**
570 * Run only the discover part of the repo_config_get_*() functions
571 * below, in addition to 1 if not found, returns negative values on
572 * error (e.g. if the key itself is invalid).
573 */
574int repo_config_get_pathname(struct repository *repo,
575 const char *key, char **dest);
576
577/*
578 * Functions for reading protected config. By definition, protected
579 * config ignores repository config, so these do not take a `struct
580 * repository` parameter.
581 */
582void git_protected_config(config_fn_t fn, void *data);
583
584/**
585 * Querying For Specific Variables
586 * -------------------------------
587 *
588 * For programs wanting to query for specific variables in a non-callback
589 * manner, the config API provides two functions `repo_config_get_value`
590 * and `repo_config_get_value_multi`. They both read values from an internal
591 * cache generated previously from reading the config files.
592 *
593 * For those repo_config_get*() functions that aren't documented,
594 * consult the corresponding repo_config_get*() function's
595 * documentation.
596 */
597
598RESULT_MUST_BE_USED
599int repo_config_get(struct repository *r, const char *key);
600
601/**
602 * Finds the highest-priority value for the configuration variable `key`,
603 * stores the pointer to it in `value` and returns 0. When the
604 * configuration variable `key` is not found, returns 1 without touching
605 * `value`. The caller should not free or modify `value`, as it is owned
606 * by the cache.
607 */
608int repo_config_get_value(struct repository *r, const char *key, const char **value);
609
610/**
611 * Finds and returns the value list, sorted in order of increasing priority
612 * for the configuration variable `key`. When the configuration variable
613 * `key` is not found, returns 1 without touching `value`.
614 *
615 * The caller should not free or modify the returned pointer, as it is
616 * owned by the cache.
617 */
618RESULT_MUST_BE_USED
619int repo_config_get_value_multi(struct repository *r, const char *key,
620 const struct string_list **dest);
621RESULT_MUST_BE_USED
622int repo_config_get_string_multi(struct repository *r, const char *key,
623 const struct string_list **dest);
624
625/**
626 * Resets and invalidates the config cache.
627 */
628void repo_config_clear(struct repository *repo);
629
630/**
631 * Allocates and copies the retrieved string into the `dest` parameter for
632 * the configuration variable `key`; if NULL string is given, prints an
633 * error message and returns -1. When the configuration variable `key` is
634 * not found, returns 1 without touching `dest`.
635 */
636int repo_config_get_string(struct repository *r, const char *key, char **dest);
637
638/**
639 * Similar to `repo_config_get_string`, but does not allocate any new
640 * memory; on success `dest` will point to memory owned by the config
641 * machinery, which could be invalidated if it is discarded and reloaded.
642 */
643int repo_config_get_string_tmp(struct repository *r,
644 const char *key, const char **dest);
645
646/**
647 * Finds and parses the value to an integer for the configuration variable
648 * `key`. Dies on error; otherwise, stores the value of the parsed integer in
649 * `dest` and returns 0. When the configuration variable `key` is not found,
650 * returns 1 without touching `dest`.
651 */
652int repo_config_get_int(struct repository *r, const char *key, int *dest);
653
654/**
655 * Similar to `repo_config_get_int` but for unsigned longs.
656 */
657int repo_config_get_ulong(struct repository *r,
658 const char *key, unsigned long *dest);
659
660/**
661 * Finds and parses the value into a boolean value, for the configuration
662 * variable `key` respecting keywords like "true" and "false". Integer
663 * values are converted into true/false values (when they are non-zero or
664 * zero, respectively). Other values cause a die(). If parsing is successful,
665 * stores the value of the parsed result in `dest` and returns 0. When the
666 * configuration variable `key` is not found, returns 1 without touching
667 * `dest`.
668 */
669int repo_config_get_bool(struct repository *r, const char *key, int *dest);
670
671/**
672 * Similar to `repo_config_get_bool`, except that integers are copied as-is,
673 * and `is_bool` flag is unset.
674 */
675int repo_config_get_bool_or_int(struct repository *r, const char *key,
676 int *is_bool, int *dest);
677
678/**
679 * Similar to `repo_config_get_bool`, except that it returns -1 on error
680 * rather than dying.
681 */
682int repo_config_get_maybe_bool(struct repository *r,
683 const char *key, int *dest);
684
685int repo_config_get_index_threads(struct repository *r, int *dest);
686int repo_config_get_split_index(struct repository *r);
687int repo_config_get_max_percent_split_change(struct repository *r);
688
689/* This dies if the configured or default date is in the future */
690int repo_config_get_expiry(struct repository *r, const char *key, char **output);
691
692/* parse either "this many days" integer, or "5.days.ago" approxidate */
693int repo_config_get_expiry_in_days(struct repository *r, const char *key,
694 timestamp_t *, timestamp_t now);
695
696/**
697 * First prints the error message specified by the caller in `err` and then
698 * dies printing the line number and the file name of the highest priority
699 * value for the configuration variable `key`.
700 */
701NORETURN void git_die_config(struct repository *r, const char *key, const char *err, ...)
702 __attribute__((format(printf, 3, 4)));
703
704/**
705 * Helper function which formats the die error message according to the
706 * parameters entered. Used by `git_die_config()`. It can be used by callers
707 * handling `repo_config_get_value_multi()` to print the correct error message
708 * for the desired value.
709 */
710NORETURN void git_die_config_linenr(const char *key, const char *filename, int linenr);
711
712#define LOOKUP_CONFIG(mapping, var) \
713 lookup_config(mapping, ARRAY_SIZE(mapping), var)
714int lookup_config(const char **mapping, int nr_mapping, const char *var);
715
716#endif /* CONFIG_H */