]> git.ipfire.org Git - thirdparty/git.git/commitdiff
repo: replace get_value_fn_for_key by get_repo_info_field
authorLucas Seiki Oshiro <lucasseikioshiro@gmail.com>
Wed, 25 Feb 2026 16:32:12 +0000 (13:32 -0300)
committerJunio C Hamano <gitster@pobox.com>
Wed, 25 Feb 2026 19:47:42 +0000 (11:47 -0800)
Remove the function `get_value_fn_for_key`, which returns a function that
retrieves a value for a certain repo info key. Introduce `get_repo_info_field`
instead, which returns a struct field.

This refactor makes the structure of the function print_fields more consistent
to the function print_all_fields, improving its readability.

Signed-off-by: Lucas Seiki Oshiro <lucasseikioshiro@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/repo.c

index aa9a154cd2eebe0c68f2073c90d9cf2ad02a5863..c60a41ba7bea8c476f2d317de98e7135fb3df6db 100644 (file)
@@ -78,14 +78,15 @@ static int repo_info_field_cmp(const void *va, const void *vb)
        return strcmp(a->key, b->key);
 }
 
-static get_value_fn *get_value_fn_for_key(const char *key)
+static const struct field *get_repo_info_field(const char *key)
 {
        const struct field search_key = { key, NULL };
        const struct field *found = bsearch(&search_key, repo_info_field,
                                            ARRAY_SIZE(repo_info_field),
                                            sizeof(*found),
                                            repo_info_field_cmp);
-       return found ? found->get_value : NULL;
+
+       return found;
 }
 
 static void print_field(enum output_format format, const char *key,
@@ -113,18 +114,16 @@ static int print_fields(int argc, const char **argv,
        struct strbuf valbuf = STRBUF_INIT;
 
        for (int i = 0; i < argc; i++) {
-               get_value_fn *get_value;
                const char *key = argv[i];
+               const struct field *field = get_repo_info_field(key);
 
-               get_value = get_value_fn_for_key(key);
-
-               if (!get_value) {
+               if (!field) {
                        ret = error(_("key '%s' not found"), key);
                        continue;
                }
 
                strbuf_reset(&valbuf);
-               get_value(repo, &valbuf);
+               field->get_value(repo, &valbuf);
                print_field(format, key, valbuf.buf);
        }