2019-08-13 20:37:43 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "repository.h"
|
|
|
|
|
2019-08-13 20:37:45 +02:00
|
|
|
#define UPDATE_DEFAULT_BOOL(s,v) do { if (s == -1) { s = v; } } while(0)
|
|
|
|
|
2019-08-13 20:37:43 +02:00
|
|
|
void prepare_repo_settings(struct repository *r)
|
|
|
|
{
|
|
|
|
int value;
|
2019-08-13 20:37:46 +02:00
|
|
|
char *strval;
|
2019-08-13 20:37:43 +02:00
|
|
|
|
|
|
|
if (r->settings.initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Defaults */
|
|
|
|
memset(&r->settings, -1, sizeof(r->settings));
|
|
|
|
|
|
|
|
if (!repo_config_get_bool(r, "core.commitgraph", &value))
|
|
|
|
r->settings.core_commit_graph = value;
|
|
|
|
if (!repo_config_get_bool(r, "gc.writecommitgraph", &value))
|
|
|
|
r->settings.gc_write_commit_graph = value;
|
2019-08-13 20:37:45 +02:00
|
|
|
UPDATE_DEFAULT_BOOL(r->settings.core_commit_graph, 1);
|
|
|
|
UPDATE_DEFAULT_BOOL(r->settings.gc_write_commit_graph, 1);
|
2019-08-13 20:37:43 +02:00
|
|
|
|
2019-10-23 22:38:57 +02:00
|
|
|
if (!repo_config_get_int(r, "index.version", &value))
|
2019-08-13 20:37:43 +02:00
|
|
|
r->settings.index_version = value;
|
2019-08-13 20:37:46 +02:00
|
|
|
if (!repo_config_get_maybe_bool(r, "core.untrackedcache", &value)) {
|
|
|
|
if (value == 0)
|
|
|
|
r->settings.core_untracked_cache = UNTRACKED_CACHE_REMOVE;
|
|
|
|
else
|
|
|
|
r->settings.core_untracked_cache = UNTRACKED_CACHE_WRITE;
|
|
|
|
} else if (!repo_config_get_string(r, "core.untrackedcache", &strval)) {
|
|
|
|
if (!strcasecmp(strval, "keep"))
|
|
|
|
r->settings.core_untracked_cache = UNTRACKED_CACHE_KEEP;
|
|
|
|
|
|
|
|
free(strval);
|
|
|
|
}
|
|
|
|
|
2019-08-13 20:37:48 +02:00
|
|
|
if (!repo_config_get_string(r, "fetch.negotiationalgorithm", &strval)) {
|
|
|
|
if (!strcasecmp(strval, "skipping"))
|
|
|
|
r->settings.fetch_negotiation_algorithm = FETCH_NEGOTIATION_SKIPPING;
|
|
|
|
else
|
|
|
|
r->settings.fetch_negotiation_algorithm = FETCH_NEGOTIATION_DEFAULT;
|
|
|
|
}
|
|
|
|
|
2019-08-13 20:37:43 +02:00
|
|
|
if (!repo_config_get_bool(r, "pack.usesparse", &value))
|
|
|
|
r->settings.pack_use_sparse = value;
|
2020-03-20 13:38:09 +01:00
|
|
|
UPDATE_DEFAULT_BOOL(r->settings.pack_use_sparse, 1);
|
|
|
|
|
2019-08-13 20:37:47 +02:00
|
|
|
if (!repo_config_get_bool(r, "feature.manyfiles", &value) && value) {
|
|
|
|
UPDATE_DEFAULT_BOOL(r->settings.index_version, 4);
|
|
|
|
UPDATE_DEFAULT_BOOL(r->settings.core_untracked_cache, UNTRACKED_CACHE_WRITE);
|
|
|
|
}
|
2019-09-03 04:22:02 +02:00
|
|
|
if (!repo_config_get_bool(r, "fetch.writecommitgraph", &value))
|
|
|
|
r->settings.fetch_write_commit_graph = value;
|
2019-08-13 20:37:48 +02:00
|
|
|
if (!repo_config_get_bool(r, "feature.experimental", &value) && value) {
|
|
|
|
UPDATE_DEFAULT_BOOL(r->settings.fetch_negotiation_algorithm, FETCH_NEGOTIATION_SKIPPING);
|
2019-09-03 04:22:02 +02:00
|
|
|
UPDATE_DEFAULT_BOOL(r->settings.fetch_write_commit_graph, 1);
|
2019-08-13 20:37:48 +02:00
|
|
|
}
|
2019-09-03 04:22:02 +02:00
|
|
|
UPDATE_DEFAULT_BOOL(r->settings.fetch_write_commit_graph, 0);
|
2019-08-13 20:37:46 +02:00
|
|
|
|
|
|
|
/* Hack for test programs like test-dump-untracked-cache */
|
|
|
|
if (ignore_untracked_cache_config)
|
|
|
|
r->settings.core_untracked_cache = UNTRACKED_CACHE_KEEP;
|
|
|
|
else
|
|
|
|
UPDATE_DEFAULT_BOOL(r->settings.core_untracked_cache, UNTRACKED_CACHE_KEEP);
|
2019-08-13 20:37:48 +02:00
|
|
|
|
|
|
|
UPDATE_DEFAULT_BOOL(r->settings.fetch_negotiation_algorithm, FETCH_NEGOTIATION_DEFAULT);
|
2019-08-13 20:37:43 +02:00
|
|
|
}
|