@@ -8,12 +8,46 @@ git-hook - Manage configured hooks
SYNOPSIS
--------
[verse]
-'git hook'
+'git hook' -l | --list <hook-name>
DESCRIPTION
-----------
You can list, add, and modify hooks with this command.
+This command parses the default configuration files for sections "hook" and
+"hookcmd". "hook" is used to describe the commands which will be run during a
+particular hook event; commands are run in config order. "hookcmd" is used to
+describe attributes of a specific command. If additional attributes don't need
+to be specified, a command to run can be specified directly in the "hook"
+section; if a "hookcmd" by that name isn't found, Git will attempt to run the
+provided value directly. For example:
+
+Global config
+----
+ [hook "post-commit"]
+ command = "linter"
+ command = "~/typocheck.sh"
+
+ [hookcmd "linter"]
+ command = "/bin/linter --c"
+----
+
+Local config
+----
+ [hook "prepare-commit-msg"]
+ command = "linter"
+ [hook "post-commit"]
+ command = "python ~/run-test-suite.py"
+----
+
+OPTIONS
+-------
+
+-l::
+--list::
+ List the hooks which have been configured for <hook-name>. Hooks appear
+ in the order they should be run.
+
GIT
---
Part of the linkgit:git[1] suite
@@ -896,6 +896,7 @@ LIB_OBJS += hashmap.o
LIB_OBJS += linear-assignment.o
LIB_OBJS += help.o
LIB_OBJS += hex.o
+LIB_OBJS += hook.o
LIB_OBJS += ident.o
LIB_OBJS += interdiff.o
LIB_OBJS += json-writer.o
@@ -1,21 +1,77 @@
#include "cache.h"
#include "builtin.h"
+#include "config.h"
+#include "hook.h"
#include "parse-options.h"
+#include "strbuf.h"
static const char * const builtin_hook_usage[] = {
- N_("git hook"),
+ N_("git hook --list <hookname>"),
NULL
};
+enum hook_command {
+ HOOK_NO_COMMAND = 0,
+ HOOK_LIST,
+};
+
+static int print_hook_list(const struct strbuf *hookname)
+{
+ struct list_head *head, *pos;
+ struct hook *item;
+
+ head = hook_list(hookname);
+
+ if (!head) {
+ printf(_("no commands configured for hook '%s'\n"),
+ hookname->buf);
+ return 0;
+ }
+
+ list_for_each(pos, head) {
+ item = list_entry(pos, struct hook, list);
+ if (item)
+ printf("%s\n",
+ item->command.buf);
+ }
+
+ return 0;
+}
+
int cmd_hook(int argc, const char **argv, const char *prefix)
{
+ enum hook_command command = 0;
+ struct strbuf hookname = STRBUF_INIT;
+
struct option builtin_hook_options[] = {
+ OPT_CMDMODE('l', "list", &command,
+ N_("list scripts which will be run for <hookname>"),
+ HOOK_LIST),
OPT_END(),
};
argc = parse_options(argc, argv, prefix, builtin_hook_options,
builtin_hook_usage, 0);
+ if (argc < 1) {
+ usage_msg_opt("a hookname must be provided to operate on.",
+ builtin_hook_usage, builtin_hook_options);
+ }
+
+ strbuf_addstr(&hookname, argv[0]);
+
+ switch(command) {
+ case HOOK_LIST:
+ return print_hook_list(&hookname);
+ break;
+ default:
+ usage_msg_opt("no command given.", builtin_hook_usage,
+ builtin_hook_options);
+ }
+
+ clear_hook_list();
+ strbuf_release(&hookname);
+
return 0;
}
new file mode 100644
@@ -0,0 +1,92 @@
+#include "cache.h"
+
+#include "hook.h"
+#include "config.h"
+
+static LIST_HEAD(hook_head);
+
+void free_hook(struct hook *ptr)
+{
+ if (ptr) {
+ strbuf_release(&ptr->command);
+ free(ptr);
+ }
+}
+
+static void emplace_hook(struct list_head *pos, const char *command)
+{
+ struct hook *to_add = malloc(sizeof(struct hook));
+ to_add->origin = current_config_scope();
+ strbuf_init(&to_add->command, 0);
+ strbuf_addstr(&to_add->command, command);
+
+ list_add_tail(&to_add->list, pos);
+}
+
+static void remove_hook(struct list_head *to_remove)
+{
+ struct hook *hook_to_remove = list_entry(to_remove, struct hook, list);
+ list_del(to_remove);
+ free_hook(hook_to_remove);
+}
+
+void clear_hook_list(void)
+{
+ struct list_head *pos, *tmp;
+ list_for_each_safe(pos, tmp, &hook_head)
+ remove_hook(pos);
+}
+
+struct list_head* hook_list(const struct strbuf* hookname)
+{
+ struct strbuf hook_key = STRBUF_INIT;
+ const struct string_list *commands = NULL;
+ struct string_list_item *it = NULL;
+ struct list_head *pos = NULL, *tmp = NULL;
+ struct strbuf hookcmd_name = STRBUF_INIT;
+ struct hook *hook = NULL;
+
+ if (!hookname)
+ return NULL;
+
+ strbuf_addf(&hook_key, "hook.%s.command", hookname->buf);
+
+ commands = git_config_get_value_multi(hook_key.buf);
+
+ if (!commands)
+ return NULL;
+
+ for_each_string_list_item(it, commands) {
+ const char *command = it->string;
+
+ strbuf_reset(&hookcmd_name);
+ strbuf_addf(&hookcmd_name, "hookcmd.%s.command", command);
+
+ /* If no hookcmd with that name exists, &command is untouched */
+ git_config_get_value(hookcmd_name.buf, &command);
+
+ if (!command)
+ return NULL;
+
+ /*
+ * TODO: implement an option-getting callback, e.g.
+ * get configs by pattern hookcmd.$value.*
+ * for each key+value, do_callback(key, value, cb_data)
+ */
+
+ list_for_each_safe(pos, tmp, &hook_head) {
+ hook = list_entry(pos, struct hook, list);
+ /*
+ * The list of hooks to run can be reordered by being redeclared
+ * in the config. Options about hook ordering should be checked
+ * here.
+ */
+ if (0 == strcmp(hook->command.buf, command))
+ remove_hook(pos);
+ }
+ emplace_hook(pos, command);
+
+ }
+
+ return &hook_head;
+}
new file mode 100644
@@ -0,0 +1,15 @@
+#include "config.h"
+#include "list.h"
+#include "strbuf.h"
+
+struct hook
+{
+ struct list_head list;
+ enum config_scope origin;
+ struct strbuf command;
+};
+
+struct list_head* hook_list(const struct strbuf *hookname);
+
+void free_hook(struct hook *ptr);
+void clear_hook_list(void);
@@ -4,8 +4,55 @@ test_description='config-managed multihooks, including git-hook command'
. ./test-lib.sh
-test_expect_success 'git hook command does not crash' '
- git hook
+test_expect_success 'git hook rejects commands without a mode' '
+ test_must_fail git hook pre-commit
+'
+
+
+test_expect_success 'git hook rejects commands without a hookname' '
+ test_must_fail git hook --list
+'
+
+test_expect_success 'setup hooks in global, and local' '
+ git config --add --local hook.pre-commit.command "/path/ghi" &&
+ git config --add --global hook.pre-commit.command "/path/def"
+'
+
+test_expect_success 'git hook --list orders by config order' '
+ cat >expected <<-\EOF &&
+ /path/def
+ /path/ghi
+ EOF
+
+ git hook --list pre-commit >actual &&
+ test_cmp expected actual
+'
+
+test_expect_success 'git hook --list dereferences a hookcmd' '
+ git config --add --local hook.pre-commit.command "abc" &&
+ git config --add --global hookcmd.abc.command "/path/abc" &&
+
+ cat >expected <<-\EOF &&
+ /path/def
+ /path/ghi
+ /path/abc
+ EOF
+
+ git hook --list pre-commit >actual &&
+ test_cmp expected actual
+'
+
+test_expect_success 'git hook --list reorders on duplicate commands' '
+ git config --add --local hook.pre-commit.command "/path/def" &&
+
+ cat >expected <<-\EOF &&
+ /path/ghi
+ /path/abc
+ /path/def
+ EOF
+
+ git hook --list pre-commit >actual &&
+ test_cmp expected actual
'
test_done
Teach 'git hook --list <hookname>', which checks the known configs in order to create an ordered list of hooks to run on a given hook event. Multiple commands can be specified for a given hook by providing multiple "hook.<hookname>.command = <path-to-hook>" lines. Hooks will be run in config order. If more properties need to be set on a given hook in the future, commands can also be specified by providing "hook.<hookname>.command = <hookcmd-name>", as well as a "[hookcmd <hookcmd-name>]" subsection; at minimum, this subsection must contain a "hookcmd.<hookcmd-name>.command = <path-to-hook>" line. For example: $ git config --list | grep ^hook hook.pre-commit.command=baz hook.pre-commit.command=~/bar.sh hookcmd.baz.command=~/baz/from/hookcmd.sh $ git hook --list pre-commit ~/baz/from/hookcmd.sh ~/bar.sh Signed-off-by: Emily Shaffer <emilyshaffer@google.com> --- Documentation/git-hook.txt | 36 +++++++++++++- Makefile | 1 + builtin/hook.c | 58 +++++++++++++++++++++- hook.c | 92 +++++++++++++++++++++++++++++++++++ hook.h | 15 ++++++ t/t1360-config-based-hooks.sh | 51 ++++++++++++++++++- 6 files changed, 249 insertions(+), 4 deletions(-) create mode 100644 hook.c create mode 100644 hook.h