The sixteenth batch
[git/gitster.git] / config.h
blobcbb0f4fddcddec73ef61c65f8e9e88e496bc69dc
1 #ifndef CONFIG_H
2 #define CONFIG_H
4 #include "hashmap.h"
5 #include "string-list.h"
6 #include "repository.h"
7 #include "parse.h"
9 /**
10 * The config API gives callers a way to access Git configuration files
11 * (and files which have the same syntax).
13 * General Usage
14 * -------------
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.
24 struct object_id;
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
37 #define CONFIG_REGEX_NONE ((void *)1)
39 enum 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,
48 const char *config_scope_name(enum config_scope scope);
50 struct git_config_source {
51 unsigned int use_stdin:1;
52 const char *file;
53 const char *blob;
54 enum config_scope scope;
57 enum 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
66 enum 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
75 struct config_source;
77 * The parser event function (if not NULL) is called with the event type and
78 * the begin/end offsets of the parsed elements.
80 * Note: for CONFIG_EVENT_ENTRY (i.e. config variables), the trailing newline
81 * character is considered part of the element.
83 typedef 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);
88 struct 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;
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.
101 unsigned int unconditional_remote_url : 1;
103 const char *commondir;
104 const char *git_dir;
106 * event_fn and event_fn_data are for internal use only. Handles events
107 * emitted by the config parser.
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;
119 /* Config source metadata for a given config key-value pair */
120 struct key_value_info {
121 const char *filename;
122 int linenr;
123 enum config_origin_type origin_type;
124 enum config_scope scope;
126 #define KVI_INIT { \
127 .filename = NULL, \
128 .linenr = -1, \
129 .origin_type = CONFIG_ORIGIN_UNKNOWN, \
130 .scope = CONFIG_SCOPE_UNKNOWN, \
133 /* Captures additional information that a config callback can use. */
134 struct config_context {
135 /* Config source metadata for key and value. */
136 const struct key_value_info *kvi;
138 #define CONFIG_CONTEXT_INIT { 0 }
141 * A config callback function takes four parameters:
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`.
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).
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).
157 * - a void pointer passed in by the caller of the config API; this can
158 * contain callback-specific data
160 * A config callback should return 0 for success, or -1 if the variable
161 * could not be parsed properly.
163 typedef int (*config_fn_t)(const char *, const char *,
164 const struct config_context *, void *);
166 int git_default_config(const char *, const char *,
167 const struct config_context *, void *);
170 * Read a specific file in git-config format.
171 * This function takes the same callback and data parameters as `repo_config`.
173 * Unlike repo_config(), this function does not respect includes.
175 int git_config_from_file(config_fn_t fn, const char *, void *);
177 int git_config_from_file_with_options(config_fn_t fn, const char *,
178 void *, enum config_scope,
179 const struct config_options *);
180 int git_config_from_mem(config_fn_t fn,
181 const enum config_origin_type,
182 const char *name,
183 const char *buf, size_t len,
184 void *data, enum config_scope scope,
185 const struct config_options *opts);
186 int git_config_from_blob_oid(config_fn_t fn, const char *name,
187 struct repository *repo,
188 const struct object_id *oid, void *data,
189 enum config_scope scope);
190 void git_config_push_parameter(const char *text);
191 void git_config_push_env(const char *spec);
192 int git_config_from_parameters(config_fn_t fn, void *data);
195 * Read config when the Git directory has not yet been set up. In case
196 * `the_repository` has not yet been set up, try to discover the Git
197 * directory to read the configuration from.
199 void read_early_config(struct repository *repo, config_fn_t cb, void *data);
202 * Read config but only enumerate system and global settings.
203 * Omit any repo-local, worktree-local, or command-line settings.
205 void read_very_early_config(config_fn_t cb, void *data);
208 * Most programs will simply want to look up variables in all config files
209 * that Git knows about, using the normal precedence rules. To do this,
210 * call `repo_config` with a callback function and void data pointer.
212 * `repo_config` will read all config sources in order of increasing
213 * priority. Thus a callback should typically overwrite previously-seen
214 * entries with new ones (e.g., if both the user-wide `~/.gitconfig` and
215 * repo-specific `.git/config` contain `color.ui`, the config machinery
216 * will first feed the user-wide one to the callback, and then the
217 * repo-specific one; by overwriting, the higher-priority repo-specific
218 * value is left at the end).
220 * In cases where the repository variable is NULL, repo_config() will
221 * skip the per-repository config but retain system and global configs
222 * by calling read_very_early_config() which also ignores one-time
223 * overrides like "git -c var=val". This is to support handling "git foo -h"
224 * (which lets git.c:run_builtin() to pass NULL and have the cmd_foo()
225 * call repo_config() before calling parse_options() to notice "-h", give
226 * help and exit) for a command that ordinarily require a repository
227 * so this limitation may be OK (but if needed you are welcome to fix it).
229 * Unlike git_config_from_file(), this function respects includes.
231 void repo_config(struct repository *r, config_fn_t fn, void *);
234 * Lets the caller examine config while adjusting some of the default
235 * behavior of `repo_config`. It should almost never be used by "regular"
236 * Git code that is looking up configuration variables.
237 * It is intended for advanced callers like `git-config`, which are
238 * intentionally tweaking the normal config-lookup process.
239 * It takes two extra parameters:
241 * - `config_source`
242 * If this parameter is non-NULL, it specifies the source to parse for
243 * configuration, rather than looking in the usual files. See `struct
244 * git_config_source` in `config.h` for details. Regular `repo_config` defaults
245 * to `NULL`.
247 * - `opts`
248 * Specify options to adjust the behavior of parsing config files. See `struct
249 * config_options` in `config.h` for details. As an example: regular `repo_config`
250 * sets `opts.respect_includes` to `1` by default.
252 int config_with_options(config_fn_t fn, void *,
253 const struct git_config_source *config_source,
254 struct repository *repo,
255 const struct config_options *opts);
258 * Value Parsing Helpers
259 * ---------------------
261 * The following helper functions aid in parsing string values
265 * Parse the string to an integer, including unit factors. Dies on error;
266 * otherwise, returns the parsed result.
268 int git_config_int(const char *, const char *, const struct key_value_info *);
270 int64_t git_config_int64(const char *, const char *,
271 const struct key_value_info *);
274 * Identical to `git_config_int`, but for unsigned longs.
276 unsigned long git_config_ulong(const char *, const char *,
277 const struct key_value_info *);
279 ssize_t git_config_ssize_t(const char *, const char *,
280 const struct key_value_info *);
283 * Identically to `git_config_double`, but for double-precision floating point
284 * values.
286 double git_config_double(const char *, const char *,
287 const struct key_value_info *);
290 * Same as `git_config_bool`, except that integers are returned as-is, and
291 * an `is_bool` flag is unset.
293 int git_config_bool_or_int(const char *, const char *,
294 const struct key_value_info *, int *);
297 * Parse a string into a boolean value, respecting keywords like "true" and
298 * "false". Integer values are converted into true/false values (when they
299 * are non-zero or zero, respectively). Other values cause a die(). If
300 * parsing is successful, the return value is the result.
302 int git_config_bool(const char *, const char *);
305 * Allocates and copies the value string into the `dest` parameter; if no
306 * string is given, prints an error message and returns -1.
308 int git_config_string(char **, const char *, const char *);
311 * Similar to `git_config_string`, but expands `~` or `~user` into the
312 * user's home directory when found at the beginning of the path.
314 int git_config_pathname(char **, const char *, const char *);
316 int git_config_expiry_date(timestamp_t *, const char *, const char *);
317 int git_config_color(char *, const char *, const char *);
318 int repo_config_set_in_file_gently(struct repository *r, const char *config_filename,
319 const char *key, const char *comment, const char *value);
322 * write config values to a specific config file, takes a key/value pair as
323 * parameter.
325 void repo_config_set_in_file(struct repository *, const char *, const char *, const char *);
327 int repo_config_set_gently(struct repository *r, const char *, const char *);
330 * Write a config value that should apply to the current worktree. If
331 * extensions.worktreeConfig is enabled, then the write will happen in the
332 * current worktree's config. Otherwise, write to the common config file.
334 int repo_config_set_worktree_gently(struct repository *, const char *, const char *);
337 * write config values to `.git/config`, takes a key/value pair as parameter.
339 void repo_config_set(struct repository *, const char *, const char *);
341 int git_config_parse_key(const char *, char **, size_t *);
344 * The following macros specify flag bits that alter the behavior
345 * of the repo_config_set_multivar*() methods.
349 * When CONFIG_FLAGS_MULTI_REPLACE is specified, all matching key/values
350 * are removed before a single new pair is written. If the flag is not
351 * present, then set operations replace only the first match.
353 #define CONFIG_FLAGS_MULTI_REPLACE (1 << 0)
356 * When CONFIG_FLAGS_FIXED_VALUE is specified, match key/value pairs
357 * by string comparison (not regex match) to the provided value_pattern
358 * parameter.
360 #define CONFIG_FLAGS_FIXED_VALUE (1 << 1)
362 int repo_config_set_multivar_gently(struct repository *, const char *, const char *, const char *, unsigned);
363 void repo_config_set_multivar(struct repository *r, const char *, const char *, const char *, unsigned);
364 int repo_config_set_multivar_in_file_gently(struct repository *, const char *, const char *, const char *, const char *, const char *, unsigned);
366 char *git_config_prepare_comment_string(const char *);
369 * takes four parameters:
371 * - the name of the file, as a string, to which key/value pairs will be written.
373 * - the name of key, as a string. This is in canonical "flat" form: the section,
374 * subsection, and variable segments will be separated by dots, and the section
375 * and variable segments will be all lowercase.
376 * E.g., `core.ignorecase`, `diff.SomeType.textconv`.
378 * - the value of the variable, as a string. If value is equal to NULL, it will
379 * remove the matching key from the config file.
381 * - the value regex, as a string. It will disregard key/value pairs where value
382 * does not match.
384 * - a flags value with bits corresponding to the CONFIG_FLAG_* macros.
386 * It returns 0 on success.
388 void repo_config_set_multivar_in_file(struct repository *r,
389 const char *config_filename,
390 const char *key,
391 const char *value,
392 const char *value_pattern,
393 unsigned flags);
396 * rename or remove sections in the config file
397 * parameters `old_name` and `new_name`
398 * If NULL is passed through `new_name` parameter,
399 * the section will be removed from the config file.
401 int repo_config_rename_section(struct repository *, const char *, const char *);
403 int repo_config_rename_section_in_file(struct repository *, const char *, const char *, const char *);
404 int repo_config_copy_section(struct repository *, const char *, const char *);
405 int repo_config_copy_section_in_file(struct repository *, const char *, const char *, const char *);
406 int git_config_system(void);
407 int config_error_nonbool(const char *);
408 #if defined(__GNUC__)
409 #define config_error_nonbool(s) (config_error_nonbool(s), const_error())
410 #endif
412 char *git_system_config(void);
413 char *git_global_config(void);
414 void git_global_config_paths(char **user, char **xdg);
416 int git_config_parse_parameter(const char *, config_fn_t fn, void *data);
418 const char *config_origin_type_name(enum config_origin_type type);
419 void kvi_from_param(struct key_value_info *out);
422 * Match and parse a config key of the form:
424 * section.(subsection.)?key
426 * (i.e., what gets handed to a config_fn_t). The caller provides the section;
427 * we return -1 if it does not match, 0 otherwise. The subsection and key
428 * out-parameters are filled by the function (and *subsection is NULL if it is
429 * missing).
431 * If the subsection pointer-to-pointer passed in is NULL, returns 0 only if
432 * there is no subsection at all.
434 int parse_config_key(const char *var,
435 const char *section,
436 const char **subsection, size_t *subsection_len,
437 const char **key);
440 * Custom Configsets
441 * -----------------
443 * A `config_set` can be used to construct an in-memory cache for
444 * config-like files that the caller specifies (i.e., files like `.gitmodules`,
445 * `~/.gitconfig` etc.). For example,
447 * ----------------------------------------
448 * struct config_set gm_config;
449 * git_configset_init(&gm_config);
450 * int b;
451 * //we add config files to the config_set
452 * git_configset_add_file(&gm_config, ".gitmodules");
453 * git_configset_add_file(&gm_config, ".gitmodules_alt");
455 * if (!git_configset_get_bool(gm_config, "submodule.frotz.ignore", &b)) {
456 * //hack hack hack
459 * when we are done with the configset:
460 * git_configset_clear(&gm_config);
461 * ----------------------------------------
463 * Configset API provides functions for the above mentioned work flow
466 struct config_set_element {
467 struct hashmap_entry ent;
468 char *key;
469 struct string_list value_list;
472 struct configset_list_item {
473 struct config_set_element *e;
474 int value_index;
478 * the contents of the list are ordered according to their
479 * position in the config files and order of parsing the files.
480 * (i.e. key-value pair at the last position of .git/config will
481 * be at the last item of the list)
483 struct configset_list {
484 struct configset_list_item *items;
485 unsigned int nr, alloc;
488 struct config_set {
489 struct hashmap config_hash;
490 int hash_initialized;
491 struct configset_list list;
495 * Initializes the config_set `cs`.
497 void git_configset_init(struct config_set *cs);
500 * Parses the file and adds the variable-value pairs to the `config_set`,
501 * dies if there is an error in parsing the file. Returns 0 on success, or
502 * -1 if the file does not exist or is inaccessible. The caller decides
503 * whether to free the incomplete configset or continue using it when
504 * the function returns -1.
506 int git_configset_add_file(struct config_set *cs, const char *filename);
509 * Finds and returns the value list, sorted in order of increasing priority
510 * for the configuration variable `key` and config set `cs`. When the
511 * configuration variable `key` is not found, returns 1 without touching
512 * `value`.
514 * The key will be parsed for validity with git_config_parse_key(), on
515 * error a negative value will be returned.
517 * The caller should not free or modify the returned pointer, as it is
518 * owned by the cache.
520 RESULT_MUST_BE_USED
521 int git_configset_get_value_multi(struct config_set *cs, const char *key,
522 const struct string_list **dest);
525 * A validation wrapper for git_configset_get_value_multi() which does
526 * for it what git_configset_get_string() does for
527 * git_configset_get_value().
529 * The configuration syntax allows for "[section] key", which will
530 * give us a NULL entry in the "struct string_list", as opposed to
531 * "[section] key =" which is the empty string. Most users of the API
532 * are not prepared to handle NULL in a "struct string_list".
534 int git_configset_get_string_multi(struct config_set *cs, const char *key,
535 const struct string_list **dest);
538 * Clears `config_set` structure, removes all saved variable-value pairs.
540 void git_configset_clear(struct config_set *cs);
543 * These functions return 1 if not found, and 0 if found, leaving the found
544 * value in the 'dest' pointer.
548 * git_configset_get() returns negative values on error, see
549 * repo_config_get() below.
551 RESULT_MUST_BE_USED
552 int git_configset_get(struct config_set *cs, const char *key);
555 * Finds the highest-priority value for the configuration variable `key`
556 * and config set `cs`, stores the pointer to it in `value` and returns 0.
557 * When the configuration variable `key` is not found, returns 1 without
558 * touching `value`. The caller should not free or modify `value`, as it
559 * is owned by the cache.
561 int git_configset_get_value(struct config_set *cs, const char *key,
562 const char **dest, struct key_value_info *kvi);
564 int git_configset_get_string(struct config_set *cs, const char *key, char **dest);
565 int git_configset_get_int(struct config_set *cs, const char *key, int *dest);
566 int git_configset_get_ulong(struct config_set *cs, const char *key, unsigned long *dest);
567 int git_configset_get_bool(struct config_set *cs, const char *key, int *dest);
568 int git_configset_get_bool_or_int(struct config_set *cs, const char *key, int *is_bool, int *dest);
569 int git_configset_get_maybe_bool(struct config_set *cs, const char *key, int *dest);
570 int git_configset_get_pathname(struct config_set *cs, const char *key, char **dest);
573 * Run only the discover part of the repo_config_get_*() functions
574 * below, in addition to 1 if not found, returns negative values on
575 * error (e.g. if the key itself is invalid).
577 int repo_config_get_pathname(struct repository *repo,
578 const char *key, char **dest);
581 * Functions for reading protected config. By definition, protected
582 * config ignores repository config, so these do not take a `struct
583 * repository` parameter.
585 void git_protected_config(config_fn_t fn, void *data);
588 * Querying For Specific Variables
589 * -------------------------------
591 * For programs wanting to query for specific variables in a non-callback
592 * manner, the config API provides two functions `repo_config_get_value`
593 * and `repo_config_get_value_multi`. They both read values from an internal
594 * cache generated previously from reading the config files.
596 * For those repo_config_get*() functions that aren't documented,
597 * consult the corresponding repo_config_get*() function's
598 * documentation.
601 RESULT_MUST_BE_USED
602 int repo_config_get(struct repository *r, const char *key);
605 * Finds the highest-priority value for the configuration variable `key`,
606 * stores the pointer to it in `value` and returns 0. When the
607 * configuration variable `key` is not found, returns 1 without touching
608 * `value`. The caller should not free or modify `value`, as it is owned
609 * by the cache.
611 int repo_config_get_value(struct repository *r, const char *key, const char **value);
614 * Finds and returns the value list, sorted in order of increasing priority
615 * for the configuration variable `key`. When the configuration variable
616 * `key` is not found, returns 1 without touching `value`.
618 * The caller should not free or modify the returned pointer, as it is
619 * owned by the cache.
621 RESULT_MUST_BE_USED
622 int repo_config_get_value_multi(struct repository *r, const char *key,
623 const struct string_list **dest);
624 RESULT_MUST_BE_USED
625 int repo_config_get_string_multi(struct repository *r, const char *key,
626 const struct string_list **dest);
629 * Resets and invalidates the config cache.
631 void repo_config_clear(struct repository *repo);
634 * Allocates and copies the retrieved string into the `dest` parameter for
635 * the configuration variable `key`; if NULL string is given, prints an
636 * error message and returns -1. When the configuration variable `key` is
637 * not found, returns 1 without touching `dest`.
639 int repo_config_get_string(struct repository *r, const char *key, char **dest);
642 * Similar to `repo_config_get_string`, but does not allocate any new
643 * memory; on success `dest` will point to memory owned by the config
644 * machinery, which could be invalidated if it is discarded and reloaded.
646 int repo_config_get_string_tmp(struct repository *r,
647 const char *key, const char **dest);
650 * Finds and parses the value to an integer for the configuration variable
651 * `key`. Dies on error; otherwise, stores the value of the parsed integer in
652 * `dest` and returns 0. When the configuration variable `key` is not found,
653 * returns 1 without touching `dest`.
655 int repo_config_get_int(struct repository *r, const char *key, int *dest);
658 * Similar to `repo_config_get_int` but for unsigned longs.
660 int repo_config_get_ulong(struct repository *r,
661 const char *key, unsigned long *dest);
664 * Finds and parses the value into a boolean value, for the configuration
665 * variable `key` respecting keywords like "true" and "false". Integer
666 * values are converted into true/false values (when they are non-zero or
667 * zero, respectively). Other values cause a die(). If parsing is successful,
668 * stores the value of the parsed result in `dest` and returns 0. When the
669 * configuration variable `key` is not found, returns 1 without touching
670 * `dest`.
672 int repo_config_get_bool(struct repository *r, const char *key, int *dest);
675 * Similar to `repo_config_get_bool`, except that integers are copied as-is,
676 * and `is_bool` flag is unset.
678 int repo_config_get_bool_or_int(struct repository *r, const char *key,
679 int *is_bool, int *dest);
682 * Similar to `repo_config_get_bool`, except that it returns -1 on error
683 * rather than dying.
685 int repo_config_get_maybe_bool(struct repository *r,
686 const char *key, int *dest);
688 int repo_config_get_index_threads(struct repository *r, int *dest);
689 int repo_config_get_split_index(struct repository *r);
690 int repo_config_get_max_percent_split_change(struct repository *r);
692 /* This dies if the configured or default date is in the future */
693 int repo_config_get_expiry(struct repository *r, const char *key, char **output);
695 /* parse either "this many days" integer, or "5.days.ago" approxidate */
696 int repo_config_get_expiry_in_days(struct repository *r, const char *key,
697 timestamp_t *, timestamp_t now);
700 * First prints the error message specified by the caller in `err` and then
701 * dies printing the line number and the file name of the highest priority
702 * value for the configuration variable `key`.
704 NORETURN void git_die_config(struct repository *r, const char *key, const char *err, ...)
705 __attribute__((format(printf, 3, 4)));
708 * Helper function which formats the die error message according to the
709 * parameters entered. Used by `git_die_config()`. It can be used by callers
710 * handling `repo_config_get_value_multi()` to print the correct error message
711 * for the desired value.
713 NORETURN void git_die_config_linenr(const char *key, const char *filename, int linenr);
715 #define LOOKUP_CONFIG(mapping, var) \
716 lookup_config(mapping, ARRAY_SIZE(mapping), var)
717 int lookup_config(const char **mapping, int nr_mapping, const char *var);
719 # ifdef USE_THE_REPOSITORY_VARIABLE
720 static inline void git_config(config_fn_t fn, void *data)
722 repo_config(the_repository, fn, data);
725 static inline void git_config_clear(void)
727 repo_config_clear(the_repository);
730 static inline int git_config_get(const char *key)
732 return repo_config_get(the_repository, key);
735 static inline int git_config_get_value(const char *key, const char **value)
737 return repo_config_get_value(the_repository, key, value);
740 static inline int git_config_get_value_multi(const char *key, const struct string_list **dest)
742 return repo_config_get_value_multi(the_repository, key, dest);
745 static inline int git_config_get_string_multi(const char *key,
746 const struct string_list **dest)
748 return repo_config_get_string_multi(the_repository, key, dest);
751 static inline int git_config_get_string(const char *key, char **dest)
753 return repo_config_get_string(the_repository, key, dest);
756 static inline int git_config_get_string_tmp(const char *key, const char **dest)
758 return repo_config_get_string_tmp(the_repository, key, dest);
761 static inline int git_config_get_int(const char *key, int *dest)
763 return repo_config_get_int(the_repository, key, dest);
766 static inline int git_config_get_ulong(const char *key, unsigned long *dest)
768 return repo_config_get_ulong(the_repository, key, dest);
771 static inline int git_config_get_bool(const char *key, int *dest)
773 return repo_config_get_bool(the_repository, key, dest);
776 static inline int git_config_get_bool_or_int(const char *key, int *is_bool, int *dest)
778 return repo_config_get_bool_or_int(the_repository, key, is_bool, dest);
781 static inline int git_config_get_maybe_bool(const char *key, int *dest)
783 return repo_config_get_maybe_bool(the_repository, key, dest);
786 static inline int git_config_get_pathname(const char *key, char **dest)
788 return repo_config_get_pathname(the_repository, key, dest);
791 static inline void git_config_set_in_file(const char *config_filename,
792 const char *key, const char *value)
794 repo_config_set_in_file(the_repository, config_filename, key, value);
797 static inline int git_config_set_gently(const char *key, const char *value)
799 return repo_config_set_gently(the_repository, key, value);
802 static inline void git_config_set(const char *key, const char *value)
804 repo_config_set(the_repository, key, value);
807 static inline int git_config_set_in_file_gently(
808 const char *config_filename,
809 const char *key,
810 const char *comment,
811 const char *value)
813 return repo_config_set_in_file_gently(the_repository, config_filename,
814 key, comment, value);
817 static inline int git_config_set_multivar_in_file_gently(
818 const char *config_filename,
819 const char *key, const char *value,
820 const char *value_pattern,
821 const char *comment,
822 unsigned flags)
824 return repo_config_set_multivar_in_file_gently(the_repository, config_filename,
825 key, value, value_pattern,
826 comment, flags);
829 static inline void git_config_set_multivar_in_file(
830 const char *config_filename,
831 const char *key,
832 const char *value,
833 const char *value_pattern,
834 unsigned flags)
836 repo_config_set_multivar_in_file(the_repository, config_filename,
837 key, value, value_pattern, flags);
840 static inline int git_config_set_multivar_gently(const char *key, const char *value,
841 const char *value_pattern, unsigned flags)
843 return repo_config_set_multivar_gently(the_repository, key, value,
844 value_pattern, flags);
847 static inline void git_config_set_multivar(const char *key, const char *value,
848 const char *value_pattern, unsigned flags)
850 repo_config_set_multivar(the_repository, key, value,
851 value_pattern, flags);
853 # endif /* USE_THE_REPOSITORY_VARIABLE */
855 #endif /* CONFIG_H */