From: Patrick Steinhardt <ps@pks.im>
To: Adrian Ratiu <adrian.ratiu@collabora.com>
Cc: git@vger.kernel.org, Jeff King <peff@peff.net>,
Emily Shaffer <emilyshaffer@google.com>,
Junio C Hamano <gitster@pobox.com>,
Josh Steadmon <steadmon@google.com>,
Kristoffer Haugsbakk <kristofferhaugsbakk@fastmail.com>
Subject: Re: [PATCH v2 4/8] hook: include hooks from the config
Date: Fri, 20 Feb 2026 13:46:19 +0100 [thread overview]
Message-ID: <aZhXm1-jw_Mi8-vL@pks.im> (raw)
In-Reply-To: <20260218222352.55393-5-adrian.ratiu@collabora.com>
On Thu, Feb 19, 2026 at 12:23:48AM +0200, Adrian Ratiu wrote:
> diff --git a/builtin/hook.c b/builtin/hook.c
> index 51660c4941..e151bb2cd1 100644
> --- a/builtin/hook.c
> +++ b/builtin/hook.c
> @@ -54,6 +56,10 @@ static void hook_clear(struct hook *h, cb_data_free_fn cb_data_free)
>
> if (h->kind == HOOK_TRADITIONAL)
> free((void *)h->u.traditional.path);
> + else if (h->kind == HOOK_CONFIGURED) {
> + free((void *)h->u.configured.friendly_name);
> + free((void *)h->u.configured.command);
> + }
The `if` branch also needs curly braces now.
> @@ -101,6 +107,187 @@ static void list_hooks_add_default(struct repository *r, const char *hookname,
> string_list_append(hook_list, hook_path)->util = h;
> }
>
> +static void unsorted_string_list_remove(struct string_list *list,
> + const char *str)
> +{
> + struct string_list_item *item = unsorted_string_list_lookup(list, str);
> + if (item)
> + unsorted_string_list_delete_item(list, item - list->items, 0);
> +}
This looks like a function that could reasonably be added to
"string-list.{c,h}".
> +/*
> + * Callback struct to collect all hook.* keys in a single config pass.
> + * commands: friendly-name to command map.
> + * event_hooks: event-name to list of friendly-names map.
> + * disabled_hooks: set of friendly-names with hook.name.enabled = false.
> + */
> +struct hook_all_config_cb {
> + struct strmap commands;
> + struct strmap event_hooks;
Hm, curious that we've got two maps. I'd have expected to have a single
map from "friendly name" or "hook name" to `struct hook`. But maybe
we'll assemble these structs for those maps later on.
> + struct string_list disabled_hooks;
> +};
We don't have support for disabled hooks yet. I assume this'll be added
by a later commit, only.
[snip]
> +/* Populate `cache` with the complete hook configuration */
> +static void build_hook_config_map(struct repository *r, struct strmap *cache)
> +{
> + struct hook_all_config_cb cb_data;
> + struct hashmap_iter iter;
> + struct strmap_entry *e;
> +
> + strmap_init(&cb_data.commands);
> + strmap_init(&cb_data.event_hooks);
> + string_list_init_dup(&cb_data.disabled_hooks);
> +
> + /* Parse all configs in one run. */
> + repo_config(r, hook_config_lookup_all, &cb_data);
> +
> + /* Construct the cache from parsed configs. */
> + strmap_for_each_entry(&cb_data.event_hooks, &iter, e) {
> + struct string_list *hook_names = e->value;
> + struct string_list *hooks = xcalloc(1, sizeof(*hooks));
> +
> + string_list_init_dup(hooks);
> +
> + for (size_t i = 0; i < hook_names->nr; i++) {
> + const char *hname = hook_names->items[i].string;
> + char *command;
> +
> + command = strmap_get(&cb_data.commands, hname);
> + if (!command)
> + die(_("'hook.%s.command' must be configured or "
> + "'hook.%s.event' must be removed;"
> + " aborting."), hname, hname);
> +
> + /* util stores the command; owned by the cache. */
> + string_list_append(hooks, hname)->util =
> + xstrdup(command);
> + }
> +
> + strmap_put(cache, e->key, hooks);
> + }
> +
> + strmap_clear(&cb_data.commands, 1);
> + string_list_clear(&cb_data.disabled_hooks, 0);
> + strmap_for_each_entry(&cb_data.event_hooks, &iter, e) {
> + string_list_clear(e->value, 0);
> + free(e->value);
> + }
> + strmap_clear(&cb_data.event_hooks, 0);
> +}
Okay, this is where we assemble the hooks. Still curious that the result
isn't a `struct hook` for each configured hook.
[snip]
> +static void list_hooks_add_configured(struct repository *r,
> + const char *hookname,
> + struct string_list *list,
> + struct run_hooks_opt *options)
> +{
> + struct strmap *cache = get_hook_config_cache(r);
> + struct string_list *configured_hooks = strmap_get(cache, hookname);
> +
> + /* Iterate through configured hooks and initialize internal states */
> + for (size_t i = 0; configured_hooks && i < configured_hooks->nr; i++) {
> + const char *friendly_name = configured_hooks->items[i].string;
> + const char *command = configured_hooks->items[i].util;
> + struct hook *hook = xcalloc(1, sizeof(struct hook));
> +
> + if (options && options->feed_pipe_cb_data_alloc)
> + hook->feed_pipe_cb_data =
> + options->feed_pipe_cb_data_alloc(
> + options->feed_pipe_ctx);
> +
> + hook->kind = HOOK_CONFIGURED;
> + hook->u.configured.friendly_name = xstrdup(friendly_name);
> + hook->u.configured.command = xstrdup(command);
> +
> + string_list_append(list, friendly_name)->util = hook;
> + }
> +}
Okay, here we finally create the hook structures. Is there any specific
reason why we don't cache these structures directly?
Patrick
next prev parent reply other threads:[~2026-02-20 12:46 UTC|newest]
Thread overview: 69+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-04 16:51 [PATCH 0/4] Specify hooks via configs Adrian Ratiu
2026-02-04 16:51 ` [PATCH 1/4] hook: run a list of hooks Adrian Ratiu
2026-02-05 21:59 ` Junio C Hamano
2026-02-06 11:21 ` Adrian Ratiu
2026-02-09 14:27 ` Patrick Steinhardt
2026-02-09 18:16 ` Adrian Ratiu
2026-02-10 13:43 ` Patrick Steinhardt
2026-02-04 16:51 ` [PATCH 2/4] hook: introduce "git hook list" Adrian Ratiu
2026-02-09 14:28 ` Patrick Steinhardt
2026-02-09 18:26 ` Adrian Ratiu
2026-02-04 16:51 ` [PATCH 3/4] hook: include hooks from the config Adrian Ratiu
2026-02-09 14:28 ` Patrick Steinhardt
2026-02-09 19:10 ` Adrian Ratiu
2026-02-10 13:43 ` Patrick Steinhardt
2026-02-10 13:56 ` Adrian Ratiu
2026-02-04 16:51 ` [PATCH 4/4] hook: allow out-of-repo 'git hook' invocations Adrian Ratiu
2026-02-06 16:26 ` [PATCH 0/4] Specify hooks via configs Junio C Hamano
2026-02-18 22:23 ` [PATCH v2 0/8] " Adrian Ratiu
2026-02-18 22:23 ` [PATCH v2 1/8] hook: add internal state alloc/free callbacks Adrian Ratiu
2026-02-19 21:47 ` Junio C Hamano
2026-02-20 12:35 ` Adrian Ratiu
2026-02-20 17:21 ` Junio C Hamano
2026-02-20 12:42 ` Adrian Ratiu
2026-02-20 12:45 ` Patrick Steinhardt
2026-02-20 13:40 ` Adrian Ratiu
2026-02-18 22:23 ` [PATCH v2 2/8] hook: run a list of hooks to prepare for multihook support Adrian Ratiu
2026-02-20 12:46 ` Patrick Steinhardt
2026-02-20 13:51 ` Adrian Ratiu
2026-02-18 22:23 ` [PATCH v2 3/8] hook: add "git hook list" command Adrian Ratiu
2026-02-20 12:46 ` Patrick Steinhardt
2026-02-20 13:53 ` Adrian Ratiu
2026-02-18 22:23 ` [PATCH v2 4/8] hook: include hooks from the config Adrian Ratiu
2026-02-19 22:16 ` Junio C Hamano
2026-02-20 12:27 ` Adrian Ratiu
2026-02-20 12:46 ` Patrick Steinhardt [this message]
2026-02-20 14:31 ` Adrian Ratiu
2026-02-18 22:23 ` [PATCH v2 5/8] hook: allow disabling config hooks Adrian Ratiu
2026-02-20 12:46 ` Patrick Steinhardt
2026-02-20 14:47 ` Adrian Ratiu
2026-02-20 18:40 ` Patrick Steinhardt
2026-02-20 18:45 ` Junio C Hamano
2026-02-18 22:23 ` [PATCH v2 6/8] hook: allow event = "" to overwrite previous values Adrian Ratiu
2026-02-18 22:23 ` [PATCH v2 7/8] hook: allow out-of-repo 'git hook' invocations Adrian Ratiu
2026-02-18 22:23 ` [PATCH v2 8/8] hook: add -z option to "git hook list" Adrian Ratiu
2026-02-19 21:34 ` [PATCH v2 0/8] Specify hooks via configs Junio C Hamano
2026-02-20 12:51 ` Adrian Ratiu
2026-02-20 23:29 ` brian m. carlson
2026-02-21 14:27 ` Adrian Ratiu
2026-02-22 0:39 ` Adrian Ratiu
2026-02-25 18:37 ` Junio C Hamano
2026-02-26 12:21 ` Adrian Ratiu
2026-02-25 22:30 ` brian m. carlson
2026-02-26 12:41 ` Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 00/12][next] " Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 01/12] hook: add internal state alloc/free callbacks Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 02/12] hook: run a list of hooks to prepare for multihook support Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 03/12] hook: add "git hook list" command Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 04/12] string-list: add unsorted_string_list_remove() Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 05/12] hook: include hooks from the config Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 06/12] hook: allow disabling config hooks Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 07/12] hook: allow event = "" to overwrite previous values Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 08/12] hook: allow out-of-repo 'git hook' invocations Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 09/12] hook: add -z option to "git hook list" Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 10/12] hook: refactor hook_config_cache from strmap to named struct Adrian Ratiu
2026-03-01 18:44 ` [PATCH v3 11/12] hook: store and display scope for configured hooks in git hook list Adrian Ratiu
2026-03-01 18:45 ` [PATCH v3 12/12] hook: show disabled hooks in "git hook list" Adrian Ratiu
2026-03-02 16:48 ` [PATCH v3 00/12][next] Specify hooks via configs Junio C Hamano
2026-03-02 17:04 ` Adrian Ratiu
2026-03-02 18:48 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aZhXm1-jw_Mi8-vL@pks.im \
--to=ps@pks.im \
--cc=adrian.ratiu@collabora.com \
--cc=emilyshaffer@google.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=kristofferhaugsbakk@fastmail.com \
--cc=peff@peff.net \
--cc=steadmon@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox