repo: replace get_value_fn_for_key by get_repo_info_field

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>
This commit is contained in:
Lucas Seiki Oshiro
2026-02-18 18:08:39 -03:00
committed by Junio C Hamano
parent f453ac375c
commit ddb3231c5b

View 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);
}