3 #include "run-command.h"
6 const char *find_hook(const char *name
)
8 static struct strbuf path
= STRBUF_INIT
;
11 strbuf_git_path(&path
, "hooks/%s", name
);
12 if (access(path
.buf
, X_OK
) < 0) {
15 #ifdef STRIP_EXTENSION
16 strbuf_addstr(&path
, STRIP_EXTENSION
);
17 if (access(path
.buf
, X_OK
) >= 0)
23 if (err
== EACCES
&& advice_enabled(ADVICE_IGNORED_HOOK
)) {
24 static struct string_list advise_given
= STRING_LIST_INIT_DUP
;
26 if (!string_list_lookup(&advise_given
, name
)) {
27 string_list_insert(&advise_given
, name
);
28 advise(_("The '%s' hook was ignored because "
29 "it's not set as executable.\n"
30 "You can disable this warning with "
31 "`git config advice.ignoredHook false`."),
40 int hook_exists(const char *name
)
42 return !!find_hook(name
);
45 static int pick_next_hook(struct child_process
*cp
,
50 struct hook_cb_data
*hook_cb
= pp_cb
;
51 const char *hook_path
= hook_cb
->hook_path
;
57 strvec_pushv(&cp
->env_array
, hook_cb
->options
->env
.v
);
58 cp
->stdout_to_stderr
= 1;
59 cp
->trace2_hook_name
= hook_cb
->hook_name
;
60 cp
->dir
= hook_cb
->options
->dir
;
62 strvec_push(&cp
->args
, hook_path
);
63 strvec_pushv(&cp
->args
, hook_cb
->options
->args
.v
);
65 /* Provide context for errors if necessary */
66 *pp_task_cb
= (char *)hook_path
;
69 * This pick_next_hook() will be called again, we're only
70 * running one hook, so indicate that no more work will be
73 hook_cb
->hook_path
= NULL
;
78 static int notify_start_failure(struct strbuf
*out
,
82 struct hook_cb_data
*hook_cb
= pp_cb
;
83 const char *hook_path
= pp_task_cp
;
87 strbuf_addf(out
, _("Couldn't start hook '%s'\n"),
93 static int notify_hook_finished(int result
,
98 struct hook_cb_data
*hook_cb
= pp_cb
;
100 hook_cb
->rc
|= result
;
105 static void run_hooks_opt_clear(struct run_hooks_opt
*options
)
107 strvec_clear(&options
->env
);
108 strvec_clear(&options
->args
);
111 int run_hooks_opt(const char *hook_name
, struct run_hooks_opt
*options
)
113 struct strbuf abs_path
= STRBUF_INIT
;
114 struct hook_cb_data cb_data
= {
116 .hook_name
= hook_name
,
119 const char *const hook_path
= find_hook(hook_name
);
124 BUG("a struct run_hooks_opt must be provided to run_hooks");
126 if (!hook_path
&& !options
->error_if_missing
)
130 ret
= error("cannot find a hook named %s", hook_name
);
134 cb_data
.hook_path
= hook_path
;
136 strbuf_add_absolute_path(&abs_path
, hook_path
);
137 cb_data
.hook_path
= abs_path
.buf
;
140 run_processes_parallel_tr2(jobs
,
142 notify_start_failure
,
143 notify_hook_finished
,
149 strbuf_release(&abs_path
);
150 run_hooks_opt_clear(options
);
154 int run_hooks(const char *hook_name
)
156 struct run_hooks_opt opt
= RUN_HOOKS_OPT_INIT
;
158 return run_hooks_opt(hook_name
, &opt
);
161 int run_hooks_l(const char *hook_name
, ...)
163 struct run_hooks_opt opt
= RUN_HOOKS_OPT_INIT
;
167 va_start(ap
, hook_name
);
168 while ((arg
= va_arg(ap
, const char *)))
169 strvec_push(&opt
.args
, arg
);
172 return run_hooks_opt(hook_name
, &opt
);