blob: ad207daced7912c2d9b7069583f551a046278fe4 [file] [log] [blame]
Josef Weidendorferb1bf95b2005-07-31 21:17:43 +02001#ifndef RUN_COMMAND_H
2#define RUN_COMMAND_H
3
Nguyễn Thái Ngọc Duy10bc2322018-11-03 09:48:38 +01004#include "thread-utils.h"
Johannes Sixt200a76b2010-03-06 16:40:42 +01005
Jeff Kingdbbcd442020-07-28 16:23:39 -04006#include "strvec.h"
Jeff Kingc460c0e2014-05-15 04:33:26 -04007
Heba Waly4c4066d2019-11-17 21:04:55 +00008/**
9 * The run-command API offers a versatile tool to run sub-processes with
10 * redirected input and output as well as with a modified environment
11 * and an alternate current directory.
12 *
13 * A similar API offers the capability to run a function asynchronously,
14 * which is primarily used to capture the output that the function
15 * produces in the caller in order to process it.
16 */
17
18
19/**
20 * This describes the arguments, redirections, and environment of a
21 * command to run in a sub-process.
22 *
23 * The caller:
24 *
25 * 1. allocates and clears (using child_process_init() or
26 * CHILD_PROCESS_INIT) a struct child_process variable;
27 * 2. initializes the members;
28 * 3. calls start_command();
29 * 4. processes the data;
30 * 5. closes file descriptors (if necessary; see below);
31 * 6. calls finish_command().
32 *
33 * Special forms of redirection are available by setting these members
34 * to 1:
35 *
36 * .no_stdin, .no_stdout, .no_stderr: The respective channel is
37 * redirected to /dev/null.
38 *
39 * .stdout_to_stderr: stdout of the child is redirected to its
40 * stderr. This happens after stderr is itself redirected.
41 * So stdout will follow stderr to wherever it is
42 * redirected.
43 */
Shawn O. Pearcef1000892007-03-10 03:28:00 -050044struct child_process {
Heba Waly4c4066d2019-11-17 21:04:55 +000045
46 /**
47 * The .argv member is set up as an array of string pointers (NULL
48 * terminated), of which .argv[0] is the program name to run (usually
49 * without a path). If the command to run is a git command, set argv[0] to
50 * the command name without the 'git-' prefix and set .git_cmd = 1.
51 *
52 * Note that the ownership of the memory pointed to by .argv stays with the
53 * caller, but it should survive until `finish_command` completes. If the
54 * .argv member is NULL, `start_command` will point it at the .args
Jeff Kingc972bf42020-07-28 16:25:12 -040055 * `strvec` (so you may use one or the other, but you must use exactly
Heba Waly4c4066d2019-11-17 21:04:55 +000056 * one). The memory in .args will be cleaned up automatically during
57 * `finish_command` (or during `start_command` when it is unsuccessful).
58 *
59 */
Shawn O. Pearcef1000892007-03-10 03:28:00 -050060 const char **argv;
Heba Waly4c4066d2019-11-17 21:04:55 +000061
Jeff Kingc972bf42020-07-28 16:25:12 -040062 struct strvec args;
63 struct strvec env_array;
Shawn O. Pearceebcb5d12007-03-10 03:28:05 -050064 pid_t pid;
Jeff Hostetleree4512e2019-02-22 14:25:01 -080065
66 int trace2_child_id;
67 uint64_t trace2_child_us_start;
68 const char *trace2_child_class;
69 const char *trace2_hook_name;
70
Johannes Sixtc20181e2008-02-21 23:42:56 +010071 /*
72 * Using .in, .out, .err:
Heba Waly4c4066d2019-11-17 21:04:55 +000073 * - Specify 0 for no redirections. No new file descriptor is allocated.
74 * (child inherits stdin, stdout, stderr from parent).
Johannes Sixtc20181e2008-02-21 23:42:56 +010075 * - Specify -1 to have a pipe allocated as follows:
76 * .in: returns the writable pipe end; parent writes to it,
77 * the readable pipe end becomes child's stdin
78 * .out, .err: returns the readable pipe end; parent reads from
79 * it, the writable pipe end becomes child's stdout/stderr
80 * The caller of start_command() must close the returned FDs
81 * after it has completed reading from/writing to it!
82 * - Specify > 0 to set a channel to a particular FD as follows:
83 * .in: a readable FD, becomes child's stdin
84 * .out: a writable FD, becomes child's stdout/stderr
Shawn O. Pearce4f41b612010-02-05 12:57:37 -080085 * .err: a writable FD, becomes child's stderr
Johannes Sixtc20181e2008-02-21 23:42:56 +010086 * The specified FD is closed by start_command(), even in case
87 * of errors!
88 */
Shawn O. Pearce4919bf02007-03-10 03:28:08 -050089 int in;
Shawn O. Pearcef4bba252007-03-12 14:37:45 -040090 int out;
Johannes Sixtf3b33f12007-10-19 21:47:58 +020091 int err;
Heba Waly4c4066d2019-11-17 21:04:55 +000092
93 /**
94 * To specify a new initial working directory for the sub-process,
95 * specify it in the .dir member.
96 */
Alex Riesen1568fea2007-05-22 23:48:23 +020097 const char *dir;
Heba Waly4c4066d2019-11-17 21:04:55 +000098
99 /**
100 * To modify the environment of the sub-process, specify an array of
101 * string pointers (NULL terminated) in .env:
102 *
103 * - If the string is of the form "VAR=value", i.e. it contains '='
104 * the variable is added to the child process's environment.
105 *
106 * - If the string does not contain '=', it names an environment
107 * variable that will be removed from the child process's environment.
108 *
109 * If the .env member is NULL, `start_command` will point it at the
Jeff Kingc972bf42020-07-28 16:25:12 -0400110 * .env_array `strvec` (so you may use one or the other, but not both).
Heba Waly4c4066d2019-11-17 21:04:55 +0000111 * The memory in .env_array will be cleaned up automatically during
112 * `finish_command` (or during `start_command` when it is unsuccessful).
113 */
Alex Riesenee493142007-05-22 23:48:47 +0200114 const char *const *env;
Heba Waly4c4066d2019-11-17 21:04:55 +0000115
Shawn O. Pearcef1000892007-03-10 03:28:00 -0500116 unsigned no_stdin:1;
Shawn O. Pearcee4507ae2007-03-12 14:37:55 -0400117 unsigned no_stdout:1;
Shawn O. Pearceb73a4392007-11-11 02:29:37 -0500118 unsigned no_stderr:1;
Jeff King539052f2020-02-20 21:56:37 -0500119 unsigned git_cmd:1; /* if this is to be git sub-command */
Heba Waly4c4066d2019-11-17 21:04:55 +0000120
121 /**
122 * If the program cannot be found, the functions return -1 and set
123 * errno to ENOENT. Normally, an error message is printed, but if
124 * .silent_exec_failure is set to 1, no message is printed for this
125 * special error condition.
126 */
Johannes Sixtc024beb2009-07-04 21:26:42 +0200127 unsigned silent_exec_failure:1;
Heba Waly4c4066d2019-11-17 21:04:55 +0000128
Jeff Kingee4e2252021-01-22 16:03:33 -0500129 /**
130 * Run the command from argv[0] using a shell (but note that we may
131 * still optimize out the shell call if the command contains no
132 * metacharacters). Note that further arguments to the command in
133 * argv[1], etc, do not need to be shell-quoted.
134 */
Jeff King8dba1e62009-12-30 05:53:16 -0500135 unsigned use_shell:1;
Jeff Kingee4e2252021-01-22 16:03:33 -0500136
Johannes Schindelin28d04e12021-09-09 09:47:06 +0000137 /**
138 * Release any open file handles to the object store before running
139 * the command; This is necessary e.g. when the spawned process may
140 * want to repack because that would delete `.pack` files (and on
141 * Windows, you cannot delete files that are still in use).
142 */
143 unsigned close_object_store:1;
144
Jeff Kingee4e2252021-01-22 16:03:33 -0500145 unsigned stdout_to_stderr:1;
Jeff Kingafe19ff2012-01-07 12:42:43 +0100146 unsigned clean_on_exit:1;
Jeff King46df6902017-01-06 20:22:23 -0500147 unsigned wait_after_clean:1;
Lars Schneiderac2fbaa2016-10-16 16:20:28 -0700148 void (*clean_on_exit_handler)(struct child_process *process);
149 void *clean_on_exit_handler_cbdata;
Shawn O. Pearcef1000892007-03-10 03:28:00 -0500150};
151
Ævar Arnfjörð Bjarmason3d97ea42021-07-01 12:51:25 +0200152#define CHILD_PROCESS_INIT { \
153 .args = STRVEC_INIT, \
154 .env_array = STRVEC_INIT, \
155}
Heba Waly4c4066d2019-11-17 21:04:55 +0000156
157/**
158 * The functions: child_process_init, start_command, finish_command,
159 * run_command, run_command_v_opt, run_command_v_opt_cd_env, child_process_clear
160 * do the following:
161 *
162 * - If a system call failed, errno is set and -1 is returned. A diagnostic
163 * is printed.
164 *
165 * - If the program was not found, then -1 is returned and errno is set to
166 * ENOENT; a diagnostic is printed only if .silent_exec_failure is 0.
167 *
168 * - Otherwise, the program is run. If it terminates regularly, its exit
169 * code is returned. No diagnostic is printed, even if the exit code is
170 * non-zero.
171 *
172 * - If the program terminated due to a signal, then the return value is the
173 * signal number + 128, ie. the same value that a POSIX shell's $? would
174 * report. A diagnostic is printed.
175 *
176 */
177
178/**
179 * Initialize a struct child_process variable.
180 */
René Scharfe483bbd42014-08-19 21:10:48 +0200181void child_process_init(struct child_process *);
Heba Waly4c4066d2019-11-17 21:04:55 +0000182
183/**
184 * Release the memory associated with the struct child_process.
185 * Most users of the run-command API don't need to call this
186 * function explicitly because `start_command` invokes it on
187 * failure and `finish_command` calls it automatically already.
188 */
René Scharfe2d716082015-10-24 14:11:27 +0200189void child_process_clear(struct child_process *);
Heba Waly4c4066d2019-11-17 21:04:55 +0000190
Denton Liu55454422019-04-29 04:28:14 -0400191int is_executable(const char *name);
René Scharfed3180272014-08-19 21:09:35 +0200192
Heba Waly4c4066d2019-11-17 21:04:55 +0000193/**
194 * Start a sub-process. Takes a pointer to a `struct child_process`
195 * that specifies the details and returns pipe FDs (if requested).
196 * See below for details.
197 */
Shawn O. Pearceebcb5d12007-03-10 03:28:05 -0500198int start_command(struct child_process *);
Heba Waly4c4066d2019-11-17 21:04:55 +0000199
200/**
201 * Wait for the completion of a sub-process that was started with
202 * start_command().
203 */
Shawn O. Pearceebcb5d12007-03-10 03:28:05 -0500204int finish_command(struct child_process *);
Heba Waly4c4066d2019-11-17 21:04:55 +0000205
Takashi Iwai507d7802015-09-04 11:35:57 +0200206int finish_command_in_signal(struct child_process *);
Heba Waly4c4066d2019-11-17 21:04:55 +0000207
208/**
209 * A convenience function that encapsulates a sequence of
210 * start_command() followed by finish_command(). Takes a pointer
211 * to a `struct child_process` that specifies the details.
212 */
Shawn O. Pearcef1000892007-03-10 03:28:00 -0500213int run_command(struct child_process *);
214
Jeff King03f2c772015-08-10 05:37:45 -0400215/*
216 * Returns the path to the hook file, or NULL if the hook is missing
217 * or disabled. Note that this points to static storage that will be
218 * overwritten by further calls to find_hook and run_hook_*.
219 */
Denton Liu55454422019-04-29 04:28:14 -0400220const char *find_hook(const char *name);
Heba Waly4c4066d2019-11-17 21:04:55 +0000221
222/**
223 * Run a hook.
224 * The first argument is a pathname to an index file, or NULL
225 * if the hook uses the default index file or no index is needed.
226 * The second argument is the name of the hook.
227 * The further arguments correspond to the hook arguments.
228 * The last argument has to be NULL to terminate the arguments list.
229 * If the hook does not exist or is not executable, the return
230 * value will be zero.
231 * If it is executable, the hook will be executed and the exit
232 * status of the hook is returned.
233 * On execution, .stdout_to_stderr and .no_stdin will be set.
234 */
Ramsay Jones9fe3edc2013-07-18 21:02:12 +0100235LAST_ARG_MUST_BE_NULL
Denton Liub199d712019-04-29 04:28:20 -0400236int run_hook_le(const char *const *env, const char *name, ...);
Denton Liu55454422019-04-29 04:28:14 -0400237int run_hook_ve(const char *const *env, const char *name, va_list args);
Benoit Pierre15048f82014-03-18 11:00:53 +0100238
Junio C Hamano850b6ed2020-05-06 13:18:29 -0700239/*
240 * Trigger an auto-gc
241 */
Derrick Stoleea95ce122020-09-17 18:11:44 +0000242int run_auto_maintenance(int quiet);
Junio C Hamano850b6ed2020-05-06 13:18:29 -0700243
Johannes Schindelin3322a9d2021-09-09 09:47:05 +0000244#define RUN_COMMAND_NO_STDIN (1<<0)
245#define RUN_GIT_CMD (1<<1)
246#define RUN_COMMAND_STDOUT_TO_STDERR (1<<2)
247#define RUN_SILENT_EXEC_FAILURE (1<<3)
248#define RUN_USING_SHELL (1<<4)
249#define RUN_CLEAN_ON_EXIT (1<<5)
250#define RUN_WAIT_AFTER_CLEAN (1<<6)
Johannes Schindelin28d04e12021-09-09 09:47:06 +0000251#define RUN_CLOSE_OBJECT_STORE (1<<7)
Heba Waly4c4066d2019-11-17 21:04:55 +0000252
253/**
254 * Convenience functions that encapsulate a sequence of
255 * start_command() followed by finish_command(). The argument argv
256 * specifies the program and its arguments. The argument opt is zero
257 * or more of the flags `RUN_COMMAND_NO_STDIN`, `RUN_GIT_CMD`,
258 * `RUN_COMMAND_STDOUT_TO_STDERR`, or `RUN_SILENT_EXEC_FAILURE`
259 * that correspond to the members .no_stdin, .git_cmd,
260 * .stdout_to_stderr, .silent_exec_failure of `struct child_process`.
261 * The argument dir corresponds the member .dir. The argument env
262 * corresponds to the member .env.
263 */
Shawn O. Pearce9b0b5092006-12-30 21:55:15 -0500264int run_command_v_opt(const char **argv, int opt);
Jeff Hostetleree4512e2019-02-22 14:25:01 -0800265int run_command_v_opt_tr2(const char **argv, int opt, const char *tr2_class);
Alex Riesen3427b372007-05-23 22:21:39 +0200266/*
267 * env (the environment) is to be formatted like environ: "VAR=VALUE".
268 * To unset an environment variable use just "VAR".
269 */
Alex Riesenee493142007-05-22 23:48:47 +0200270int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env);
Jeff Hostetleree4512e2019-02-22 14:25:01 -0800271int run_command_v_opt_cd_env_tr2(const char **argv, int opt, const char *dir,
272 const char *const *env, const char *tr2_class);
Josef Weidendorferb1bf95b2005-07-31 21:17:43 +0200273
Jeff King911ec992015-03-22 23:53:43 -0400274/**
Jeff King96335bc2016-06-17 19:38:47 -0400275 * Execute the given command, sending "in" to its stdin, and capturing its
276 * stdout and stderr in the "out" and "err" strbufs. Any of the three may
277 * be NULL to skip processing.
278 *
Jeff King911ec992015-03-22 23:53:43 -0400279 * Returns -1 if starting the command fails or reading fails, and otherwise
Jeff King96335bc2016-06-17 19:38:47 -0400280 * returns the exit code of the command. Any output collected in the
281 * buffers is kept even if the command returns a non-zero exit. The hint fields
282 * gives starting sizes for the strbuf allocations.
Jeff King911ec992015-03-22 23:53:43 -0400283 *
284 * The fields of "cmd" should be set up as they would for a normal run_command
Jeff King96335bc2016-06-17 19:38:47 -0400285 * invocation. But note that there is no need to set the in, out, or err
286 * fields; pipe_command handles that automatically.
Jeff King911ec992015-03-22 23:53:43 -0400287 */
Jeff King96335bc2016-06-17 19:38:47 -0400288int pipe_command(struct child_process *cmd,
289 const char *in, size_t in_len,
290 struct strbuf *out, size_t out_hint,
291 struct strbuf *err, size_t err_hint);
292
293/**
294 * Convenience wrapper around pipe_command for the common case
295 * of capturing only stdout.
296 */
297static inline int capture_command(struct child_process *cmd,
298 struct strbuf *out,
299 size_t hint)
300{
301 return pipe_command(cmd, NULL, 0, out, hint, NULL, 0);
302}
Jeff King911ec992015-03-22 23:53:43 -0400303
Johannes Sixt2d22c202007-10-19 21:48:00 +0200304/*
305 * The purpose of the following functions is to feed a pipe by running
306 * a function asynchronously and providing output that the caller reads.
307 *
308 * It is expected that no synchronization and mutual exclusion between
309 * the caller and the feed function is necessary so that the function
310 * can run in a thread without interfering with the caller.
Heba Waly4c4066d2019-11-17 21:04:55 +0000311 *
312 * The caller:
313 *
314 * 1. allocates and clears (memset(&asy, 0, sizeof(asy));) a
315 * struct async variable;
316 * 2. initializes .proc and .data;
317 * 3. calls start_async();
318 * 4. processes communicates with proc through .in and .out;
319 * 5. closes .in and .out;
320 * 6. calls finish_async().
321 *
322 * There are serious restrictions on what the asynchronous function can do
323 * because this facility is implemented by a thread in the same address
324 * space on most platforms (when pthreads is available), but by a pipe to
325 * a forked process otherwise:
326 *
327 * - It cannot change the program's state (global variables, environment,
328 * etc.) in a way that the caller notices; in other words, .in and .out
329 * are the only communication channels to the caller.
330 *
331 * - It must not change the program's state that the caller of the
332 * facility also uses.
333 *
Johannes Sixt2d22c202007-10-19 21:48:00 +0200334 */
335struct async {
Heba Waly4c4066d2019-11-17 21:04:55 +0000336
337 /**
338 * The function pointer in .proc has the following signature:
339 *
340 * int proc(int in, int out, void *data);
341 *
342 * - in, out specifies a set of file descriptors to which the function
343 * must read/write the data that it needs/produces. The function
344 * *must* close these descriptors before it returns. A descriptor
345 * may be -1 if the caller did not configure a descriptor for that
346 * direction.
347 *
348 * - data is the value that the caller has specified in the .data member
349 * of struct async.
350 *
351 * - The return value of the function is 0 on success and non-zero
352 * on failure. If the function indicates failure, finish_async() will
353 * report failure as well.
354 *
Johannes Sixt2d22c202007-10-19 21:48:00 +0200355 */
Erik Faye-Lundae6a5602010-02-05 12:57:38 -0800356 int (*proc)(int in, int out, void *data);
Heba Waly4c4066d2019-11-17 21:04:55 +0000357
Johannes Sixt2d22c202007-10-19 21:48:00 +0200358 void *data;
Heba Waly4c4066d2019-11-17 21:04:55 +0000359
360 /**
361 * The members .in, .out are used to provide a set of fd's for
362 * communication between the caller and the callee as follows:
363 *
364 * - Specify 0 to have no file descriptor passed. The callee will
365 * receive -1 in the corresponding argument.
366 *
367 * - Specify < 0 to have a pipe allocated; start_async() replaces
368 * with the pipe FD in the following way:
369 *
370 * .in: Returns the writable pipe end into which the caller
371 * writes; the readable end of the pipe becomes the function's
372 * in argument.
373 *
374 * .out: Returns the readable pipe end from which the caller
375 * reads; the writable end of the pipe becomes the function's
376 * out argument.
377 *
378 * The caller of start_async() must close the returned FDs after it
379 * has completed reading from/writing from them.
380 *
381 * - Specify a file descriptor > 0 to be used by the function:
382 *
383 * .in: The FD must be readable; it becomes the function's in.
384 * .out: The FD must be writable; it becomes the function's out.
385 *
386 * The specified FD is closed by start_async(), even if it fails to
387 * run the function.
388 */
Erik Faye-Lundae6a5602010-02-05 12:57:38 -0800389 int in; /* caller writes here and closes it */
Johannes Sixt2d22c202007-10-19 21:48:00 +0200390 int out; /* caller reads from here and closes it */
Johannes Sixtf6b60982010-03-09 21:00:36 +0100391#ifdef NO_PTHREADS
Johannes Sixt2d22c202007-10-19 21:48:00 +0200392 pid_t pid;
Johannes Sixt618ebe92007-12-08 22:19:14 +0100393#else
Johannes Sixt200a76b2010-03-06 16:40:42 +0100394 pthread_t tid;
Erik Faye-Lundae6a5602010-02-05 12:57:38 -0800395 int proc_in;
396 int proc_out;
Johannes Sixt618ebe92007-12-08 22:19:14 +0100397#endif
Jeff Kingc792d7b2016-04-19 18:49:41 -0400398 int isolate_sigpipe;
Johannes Sixt2d22c202007-10-19 21:48:00 +0200399};
400
Heba Waly4c4066d2019-11-17 21:04:55 +0000401/**
402 * Run a function asynchronously. Takes a pointer to a `struct
403 * async` that specifies the details and returns a set of pipe FDs
404 * for communication with the function. See below for details.
405 */
Johannes Sixt2d22c202007-10-19 21:48:00 +0200406int start_async(struct async *async);
Heba Waly4c4066d2019-11-17 21:04:55 +0000407
408/**
409 * Wait for the completion of an asynchronous function that was
410 * started with start_async().
411 */
Johannes Sixt2d22c202007-10-19 21:48:00 +0200412int finish_async(struct async *async);
Heba Waly4c4066d2019-11-17 21:04:55 +0000413
Jeff King661a8cf2015-09-01 16:22:43 -0400414int in_async(void);
Nguyễn Thái Ngọc Duyc0e40a22018-11-03 09:48:39 +0100415int async_with_fork(void);
Lars Schneiderb992fe12016-10-16 16:20:27 -0700416void check_pipe(int err);
Johannes Sixt2d22c202007-10-19 21:48:00 +0200417
Stefan Bellerc553c722015-12-15 16:04:10 -0800418/**
419 * This callback should initialize the child process and preload the
420 * error channel if desired. The preloading of is useful if you want to
421 * have a message printed directly before the output of the child process.
422 * pp_cb is the callback cookie as passed to run_processes_parallel.
423 * You can store a child process specific callback cookie in pp_task_cb.
424 *
425 * Even after returning 0 to indicate that there are no more processes,
426 * this function will be called again until there are no more running
427 * child processes.
428 *
429 * Return 1 if the next child is ready to run.
430 * Return 0 if there are currently no more tasks to be processed.
431 * To send a signal to other child processes for abortion,
432 * return the negative signal number.
433 */
434typedef int (*get_next_task_fn)(struct child_process *cp,
Stefan Belleraa710492016-02-29 18:07:16 -0800435 struct strbuf *out,
Stefan Bellerc553c722015-12-15 16:04:10 -0800436 void *pp_cb,
437 void **pp_task_cb);
438
439/**
440 * This callback is called whenever there are problems starting
441 * a new process.
442 *
443 * You must not write to stdout or stderr in this function. Add your
Stefan Belleraa710492016-02-29 18:07:16 -0800444 * message to the strbuf out instead, which will be printed without
Stefan Bellerc553c722015-12-15 16:04:10 -0800445 * messing up the output of the other parallel processes.
446 *
447 * pp_cb is the callback cookie as passed into run_processes_parallel,
448 * pp_task_cb is the callback cookie as passed into get_next_task_fn.
449 *
450 * Return 0 to continue the parallel processing. To abort return non zero.
451 * To send a signal to other child processes for abortion, return
452 * the negative signal number.
453 */
Stefan Belleraa710492016-02-29 18:07:16 -0800454typedef int (*start_failure_fn)(struct strbuf *out,
Stefan Bellerc553c722015-12-15 16:04:10 -0800455 void *pp_cb,
456 void *pp_task_cb);
457
458/**
459 * This callback is called on every child process that finished processing.
460 *
461 * You must not write to stdout or stderr in this function. Add your
Stefan Belleraa710492016-02-29 18:07:16 -0800462 * message to the strbuf out instead, which will be printed without
Stefan Bellerc553c722015-12-15 16:04:10 -0800463 * messing up the output of the other parallel processes.
464 *
465 * pp_cb is the callback cookie as passed into run_processes_parallel,
466 * pp_task_cb is the callback cookie as passed into get_next_task_fn.
467 *
468 * Return 0 to continue the parallel processing. To abort return non zero.
469 * To send a signal to other child processes for abortion, return
470 * the negative signal number.
471 */
472typedef int (*task_finished_fn)(int result,
Stefan Belleraa710492016-02-29 18:07:16 -0800473 struct strbuf *out,
Stefan Bellerc553c722015-12-15 16:04:10 -0800474 void *pp_cb,
475 void *pp_task_cb);
476
477/**
478 * Runs up to n processes at the same time. Whenever a process can be
479 * started, the callback get_next_task_fn is called to obtain the data
480 * required to start another child process.
481 *
482 * The children started via this function run in parallel. Their output
483 * (both stdout and stderr) is routed to stderr in a manner that output
484 * from different tasks does not interleave.
485 *
Stefan Beller2a73b3d2016-02-29 13:57:06 -0800486 * start_failure_fn and task_finished_fn can be NULL to omit any
487 * special handling.
Stefan Bellerc553c722015-12-15 16:04:10 -0800488 */
489int run_processes_parallel(int n,
490 get_next_task_fn,
491 start_failure_fn,
492 task_finished_fn,
493 void *pp_cb);
Jeff Hostetleree4512e2019-02-22 14:25:01 -0800494int run_processes_parallel_tr2(int n, get_next_task_fn, start_failure_fn,
495 task_finished_fn, void *pp_cb,
496 const char *tr2_category, const char *tr2_label);
Stefan Bellerc553c722015-12-15 16:04:10 -0800497
Jonathan Tand1fa9432021-06-17 10:13:25 -0700498/**
499 * Convenience function which prepares env_array for a command to be run in a
500 * new repo. This adds all GIT_* environment variables to env_array with the
501 * exception of GIT_CONFIG_PARAMETERS and GIT_CONFIG_COUNT (which cause the
502 * corresponding environment variables to be unset in the subprocess) and adds
503 * an environment variable pointing to new_git_dir. See local_repo_env in
504 * cache.h for more information.
505 */
506void prepare_other_repo_env(struct strvec *env_array, const char *new_git_dir);
507
Josef Weidendorferb1bf95b2005-07-31 21:17:43 +0200508#endif