]> git.ipfire.org Git - thirdparty/git.git/commitdiff
config: drop `git_config_get_ulong()` wrapper
authorPatrick Steinhardt <ps@pks.im>
Wed, 23 Jul 2025 14:08:31 +0000 (16:08 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 23 Jul 2025 15:15:20 +0000 (08:15 -0700)
In 036876a1067 (config: hide functions using `the_repository` by
default, 2024-08-13) we have moved around a bunch of functions in the
config subsystem that depend on `the_repository`. Those function have
been converted into mere wrappers around their equivalent function that
takes in a repository as parameter, and the intent was that we'll
eventually remove those wrappers to make the dependency on the global
repository variable explicit at the callsite.

Follow through with that intent and remove `git_config_get_ulong()`. All
callsites are adjusted so that they use
`repo_config_get_ulong(the_repository, ...)` instead. While some
callsites might already have a repository available, this mechanical
conversion is the exact same as the current situation and thus cannot
cause any regression. Those sites should eventually be cleaned up in a
later patch series.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fast-import.c
builtin/gc.c
config.h
http-backend.c

index 9b0ae4371486787e20ced1b8ef67c3fc4c8cb0a7..a3f7f14f4fe5bba63e65ece6491866888b3d7386 100644 (file)
@@ -3523,7 +3523,7 @@ static void git_pack_config(void)
        int limit;
        unsigned long packsizelimit_value;
 
-       if (!git_config_get_ulong("pack.depth", &max_depth)) {
+       if (!repo_config_get_ulong(the_repository, "pack.depth", &max_depth)) {
                if (max_depth > MAX_DEPTH)
                        max_depth = MAX_DEPTH;
        }
@@ -3533,7 +3533,7 @@ static void git_pack_config(void)
                        git_die_config(the_repository, "pack.indexversion",
                                       "bad pack.indexVersion=%"PRIu32, pack_idx_opts.version);
        }
-       if (!git_config_get_ulong("pack.packsizelimit", &packsizelimit_value))
+       if (!repo_config_get_ulong(the_repository, "pack.packsizelimit", &packsizelimit_value))
                max_packsize = packsizelimit_value;
 
        if (!repo_config_get_int(the_repository, "fastimport.unpacklimit", &limit))
index cf175b8f1b76106312937a0191f6e0466fd33e15..d15daf596255970f36e0463f69f5f39a830ec658 100644 (file)
@@ -195,7 +195,7 @@ static void gc_config(struct gc_config *cfg)
        repo_config_get_int(the_repository, "gc.autopacklimit", &cfg->gc_auto_pack_limit);
        git_config_get_bool("gc.autodetach", &cfg->detach_auto);
        git_config_get_bool("gc.cruftpacks", &cfg->cruft_packs);
-       git_config_get_ulong("gc.maxcruftsize", &cfg->max_cruft_size);
+       repo_config_get_ulong(the_repository, "gc.maxcruftsize", &cfg->max_cruft_size);
 
        if (!repo_config_get_expiry(the_repository, "gc.pruneexpire", &owned)) {
                free(cfg->prune_expire);
@@ -212,10 +212,10 @@ static void gc_config(struct gc_config *cfg)
                cfg->gc_log_expire = owned;
        }
 
-       git_config_get_ulong("gc.bigpackthreshold", &cfg->big_pack_threshold);
-       git_config_get_ulong("pack.deltacachesize", &cfg->max_delta_cache_size);
+       repo_config_get_ulong(the_repository, "gc.bigpackthreshold", &cfg->big_pack_threshold);
+       repo_config_get_ulong(the_repository, "pack.deltacachesize", &cfg->max_delta_cache_size);
 
-       if (!git_config_get_ulong("core.deltabasecachelimit", &ulongval))
+       if (!repo_config_get_ulong(the_repository, "core.deltabasecachelimit", &ulongval))
                cfg->delta_base_cache_limit = ulongval;
 
        if (!repo_config_get_string(the_repository, "gc.repackfilter", &owned)) {
@@ -2344,7 +2344,7 @@ static int launchctl_schedule_plist(const char *exec_path, enum schedule_priorit
                die(_("failed to create directories for '%s'"), filename);
 
        if ((long)lock_file_timeout_ms < 0 &&
-           git_config_get_ulong("gc.launchctlplistlocktimeoutms",
+           repo_config_get_ulong(the_repository, "gc.launchctlplistlocktimeoutms",
                                 &lock_file_timeout_ms))
                lock_file_timeout_ms = 150;
 
index 2490c47daaff8e60a3650132364c59ae77a09e14..e22c07a4488bfa29a43119af28f599172454fdd3 100644 (file)
--- a/config.h
+++ b/config.h
@@ -719,11 +719,6 @@ NORETURN void git_die_config_linenr(const char *key, const char *filename, int l
 int lookup_config(const char **mapping, int nr_mapping, const char *var);
 
 # ifdef USE_THE_REPOSITORY_VARIABLE
-static inline int git_config_get_ulong(const char *key, unsigned long *dest)
-{
-       return repo_config_get_ulong(the_repository, key, dest);
-}
-
 static inline int git_config_get_bool(const char *key, int *dest)
 {
        return repo_config_get_bool(the_repository, key, dest);
index ad8c4037493057e96952a3e593d6fb20b29e6903..3d5d5a84646ebc863abe4e5413531026fdfb3ff8 100644 (file)
@@ -247,7 +247,7 @@ static void http_config(void)
        struct strbuf var = STRBUF_INIT;
 
        git_config_get_bool("http.getanyfile", &getanyfile);
-       git_config_get_ulong("http.maxrequestbuffer", &max_request_buffer);
+       repo_config_get_ulong(the_repository, "http.maxrequestbuffer", &max_request_buffer);
 
        for (i = 0; i < ARRAY_SIZE(rpc_service); i++) {
                struct rpc_service *svc = &rpc_service[i];