2 #include "run-command.h"
5 #include "argv-array.h"
6 #include "thread-utils.h"
9 void child_process_init(struct child_process *child)
11 memset(child, 0, sizeof(*child));
12 argv_array_init(&child->args);
13 argv_array_init(&child->env_array);
16 void child_process_clear(struct child_process *child)
18 argv_array_clear(&child->args);
19 argv_array_clear(&child->env_array);
22 struct child_to_clean {
24 struct child_process *process;
25 struct child_to_clean *next;
27 static struct child_to_clean *children_to_clean;
28 static int installed_child_cleanup_handler;
30 static void cleanup_children(int sig, int in_signal)
32 while (children_to_clean) {
33 struct child_to_clean *p = children_to_clean;
34 children_to_clean = p->next;
36 if (p->process && !in_signal) {
37 struct child_process *process = p->process;
38 if (process->clean_on_exit_handler) {
40 "trace: run_command: running exit handler for pid %"
41 PRIuMAX, (uintmax_t)p->pid
43 process->clean_on_exit_handler(process);
53 static void cleanup_children_on_signal(int sig)
55 cleanup_children(sig, 1);
60 static void cleanup_children_on_exit(void)
62 cleanup_children(SIGTERM, 0);
65 static void mark_child_for_cleanup(pid_t pid, struct child_process *process)
67 struct child_to_clean *p = xmalloc(sizeof(*p));
70 p->next = children_to_clean;
71 children_to_clean = p;
73 if (!installed_child_cleanup_handler) {
74 atexit(cleanup_children_on_exit);
75 sigchain_push_common(cleanup_children_on_signal);
76 installed_child_cleanup_handler = 1;
80 static void clear_child_for_cleanup(pid_t pid)
82 struct child_to_clean **pp;
84 for (pp = &children_to_clean; *pp; pp = &(*pp)->next) {
85 struct child_to_clean *clean_me = *pp;
87 if (clean_me->pid == pid) {
95 static inline void close_pair(int fd[2])
101 #ifndef GIT_WINDOWS_NATIVE
102 static inline void dup_devnull(int to)
104 int fd = open("/dev/null", O_RDWR);
106 die_errno(_("open /dev/null failed"));
107 if (dup2(fd, to) < 0)
108 die_errno(_("dup2(%d,%d) failed"), fd, to);
113 static char *locate_in_PATH(const char *file)
115 const char *p = getenv("PATH");
116 struct strbuf buf = STRBUF_INIT;
122 const char *end = strchrnul(p, ':');
126 /* POSIX specifies an empty entry as the current directory. */
128 strbuf_add(&buf, p, end - p);
129 strbuf_addch(&buf, '/');
131 strbuf_addstr(&buf, file);
133 if (!access(buf.buf, F_OK))
134 return strbuf_detach(&buf, NULL);
141 strbuf_release(&buf);
145 static int exists_in_PATH(const char *file)
147 char *r = locate_in_PATH(file);
152 int sane_execvp(const char *file, char * const argv[])
154 if (!execvp(file, argv))
155 return 0; /* cannot happen ;-) */
158 * When a command can't be found because one of the directories
159 * listed in $PATH is unsearchable, execvp reports EACCES, but
160 * careful usability testing (read: analysis of occasional bug
161 * reports) reveals that "No such file or directory" is more
164 * We avoid commands with "/", because execvp will not do $PATH
165 * lookups in that case.
167 * The reassignment of EACCES to errno looks like a no-op below,
168 * but we need to protect against exists_in_PATH overwriting errno.
170 if (errno == EACCES && !strchr(file, '/'))
171 errno = exists_in_PATH(file) ? EACCES : ENOENT;
172 else if (errno == ENOTDIR && !strchr(file, '/'))
177 static const char **prepare_shell_cmd(struct argv_array *out, const char **argv)
180 die("BUG: shell command is empty");
182 if (strcspn(argv[0], "|&;<>()$`\\\"' \t\n*?[#~=%") != strlen(argv[0])) {
183 #ifndef GIT_WINDOWS_NATIVE
184 argv_array_push(out, SHELL_PATH);
186 argv_array_push(out, "sh");
188 argv_array_push(out, "-c");
191 * If we have no extra arguments, we do not even need to
192 * bother with the "$@" magic.
195 argv_array_push(out, argv[0]);
197 argv_array_pushf(out, "%s \"$@\"", argv[0]);
200 argv_array_pushv(out, argv);
204 #ifndef GIT_WINDOWS_NATIVE
205 static int execv_shell_cmd(const char **argv)
207 struct argv_array nargv = ARGV_ARRAY_INIT;
208 prepare_shell_cmd(&nargv, argv);
209 trace_argv_printf(nargv.argv, "trace: exec:");
210 sane_execvp(nargv.argv[0], (char **)nargv.argv);
211 argv_array_clear(&nargv);
216 #ifndef GIT_WINDOWS_NATIVE
217 static int child_notifier = -1;
219 static void notify_parent(void)
222 * execvp failed. If possible, we'd like to let start_command
223 * know, so failures like ENOENT can be handled right away; but
224 * otherwise, finish_command will still report the error.
226 xwrite(child_notifier, "", 1);
230 static inline void set_cloexec(int fd)
232 int flags = fcntl(fd, F_GETFD);
234 fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
237 static int wait_or_whine(pid_t pid, const char *argv0, int in_signal)
239 int status, code = -1;
241 int failed_errno = 0;
243 while ((waiting = waitpid(pid, &status, 0)) < 0 && errno == EINTR)
249 failed_errno = errno;
250 error_errno("waitpid for %s failed", argv0);
251 } else if (waiting != pid) {
252 error("waitpid is confused (%s)", argv0);
253 } else if (WIFSIGNALED(status)) {
254 code = WTERMSIG(status);
255 if (code != SIGINT && code != SIGQUIT && code != SIGPIPE)
256 error("%s died of signal %d", argv0, code);
258 * This return value is chosen so that code & 0xff
259 * mimics the exit code that a POSIX shell would report for
260 * a program that died from this signal.
263 } else if (WIFEXITED(status)) {
264 code = WEXITSTATUS(status);
266 * Convert special exit code when execvp failed.
270 failed_errno = ENOENT;
273 error("waitpid is confused (%s)", argv0);
276 clear_child_for_cleanup(pid);
278 errno = failed_errno;
282 int start_command(struct child_process *cmd)
284 int need_in, need_out, need_err;
285 int fdin[2], fdout[2], fderr[2];
290 cmd->argv = cmd->args.argv;
292 cmd->env = cmd->env_array.argv;
295 * In case of errors we must keep the promise to close FDs
296 * that have been passed in via ->in and ->out.
299 need_in = !cmd->no_stdin && cmd->in < 0;
301 if (pipe(fdin) < 0) {
302 failed_errno = errno;
305 str = "standard input";
311 need_out = !cmd->no_stdout
312 && !cmd->stdout_to_stderr
315 if (pipe(fdout) < 0) {
316 failed_errno = errno;
321 str = "standard output";
327 need_err = !cmd->no_stderr && cmd->err < 0;
329 if (pipe(fderr) < 0) {
330 failed_errno = errno;
339 str = "standard error";
341 error("cannot create %s pipe for %s: %s",
342 str, cmd->argv[0], strerror(failed_errno));
343 child_process_clear(cmd);
344 errno = failed_errno;
350 trace_argv_printf(cmd->argv, "trace: run_command:");
353 #ifndef GIT_WINDOWS_NATIVE
356 if (pipe(notify_pipe))
357 notify_pipe[0] = notify_pipe[1] = -1;
360 failed_errno = errno;
363 * Redirect the channel to write syscall error messages to
364 * before redirecting the process's stderr so that all die()
365 * in subsequent call paths use the parent's stderr.
367 if (cmd->no_stderr || need_err) {
368 int child_err = dup(2);
369 set_cloexec(child_err);
370 set_error_handle(fdopen(child_err, "w"));
373 close(notify_pipe[0]);
374 set_cloexec(notify_pipe[1]);
375 child_notifier = notify_pipe[1];
376 atexit(notify_parent);
383 } else if (cmd->in) {
393 } else if (cmd->err > 1) {
400 else if (cmd->stdout_to_stderr)
405 } else if (cmd->out > 1) {
410 if (cmd->dir && chdir(cmd->dir))
411 die_errno("exec '%s': cd to '%s' failed", cmd->argv[0],
414 for (; *cmd->env; cmd->env++) {
415 if (strchr(*cmd->env, '='))
416 putenv((char *)*cmd->env);
422 execv_git_cmd(cmd->argv);
423 else if (cmd->use_shell)
424 execv_shell_cmd(cmd->argv);
426 sane_execvp(cmd->argv[0], (char *const*) cmd->argv);
427 if (errno == ENOENT) {
428 if (!cmd->silent_exec_failure)
429 error("cannot run %s: %s", cmd->argv[0],
433 die_errno("cannot exec '%s'", cmd->argv[0]);
437 error_errno("cannot fork() for %s", cmd->argv[0]);
438 else if (cmd->clean_on_exit)
439 mark_child_for_cleanup(cmd->pid, cmd);
442 * Wait for child's execvp. If the execvp succeeds (or if fork()
443 * failed), EOF is seen immediately by the parent. Otherwise, the
444 * child process sends a single byte.
445 * Note that use of this infrastructure is completely advisory,
446 * therefore, we keep error checks minimal.
448 close(notify_pipe[1]);
449 if (read(notify_pipe[0], ¬ify_pipe[1], 1) == 1) {
451 * At this point we know that fork() succeeded, but execvp()
452 * failed. Errors have been reported to our stderr.
454 wait_or_whine(cmd->pid, cmd->argv[0], 0);
455 failed_errno = errno;
458 close(notify_pipe[0]);
462 int fhin = 0, fhout = 1, fherr = 2;
463 const char **sargv = cmd->argv;
464 struct argv_array nargv = ARGV_ARRAY_INIT;
467 fhin = open("/dev/null", O_RDWR);
474 fherr = open("/dev/null", O_RDWR);
476 fherr = dup(fderr[1]);
477 else if (cmd->err > 2)
478 fherr = dup(cmd->err);
481 fhout = open("/dev/null", O_RDWR);
482 else if (cmd->stdout_to_stderr)
485 fhout = dup(fdout[1]);
486 else if (cmd->out > 1)
487 fhout = dup(cmd->out);
490 cmd->argv = prepare_git_cmd(&nargv, cmd->argv);
491 else if (cmd->use_shell)
492 cmd->argv = prepare_shell_cmd(&nargv, cmd->argv);
494 cmd->pid = mingw_spawnvpe(cmd->argv[0], cmd->argv, (char**) cmd->env,
495 cmd->dir, fhin, fhout, fherr);
496 failed_errno = errno;
497 if (cmd->pid < 0 && (!cmd->silent_exec_failure || errno != ENOENT))
498 error_errno("cannot spawn %s", cmd->argv[0]);
499 if (cmd->clean_on_exit && cmd->pid >= 0)
500 mark_child_for_cleanup(cmd->pid, cmd);
502 argv_array_clear(&nargv);
526 child_process_clear(cmd);
527 errno = failed_errno;
549 int finish_command(struct child_process *cmd)
551 int ret = wait_or_whine(cmd->pid, cmd->argv[0], 0);
552 child_process_clear(cmd);
556 int finish_command_in_signal(struct child_process *cmd)
558 return wait_or_whine(cmd->pid, cmd->argv[0], 1);
562 int run_command(struct child_process *cmd)
566 if (cmd->out < 0 || cmd->err < 0)
567 die("BUG: run_command with a pipe can cause deadlock");
569 code = start_command(cmd);
572 return finish_command(cmd);
575 int run_command_v_opt(const char **argv, int opt)
577 return run_command_v_opt_cd_env(argv, opt, NULL, NULL);
580 int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env)
582 struct child_process cmd = CHILD_PROCESS_INIT;
584 cmd.no_stdin = opt & RUN_COMMAND_NO_STDIN ? 1 : 0;
585 cmd.git_cmd = opt & RUN_GIT_CMD ? 1 : 0;
586 cmd.stdout_to_stderr = opt & RUN_COMMAND_STDOUT_TO_STDERR ? 1 : 0;
587 cmd.silent_exec_failure = opt & RUN_SILENT_EXEC_FAILURE ? 1 : 0;
588 cmd.use_shell = opt & RUN_USING_SHELL ? 1 : 0;
589 cmd.clean_on_exit = opt & RUN_CLEAN_ON_EXIT ? 1 : 0;
592 return run_command(&cmd);
596 static pthread_t main_thread;
597 static int main_thread_set;
598 static pthread_key_t async_key;
599 static pthread_key_t async_die_counter;
601 static void *run_thread(void *data)
603 struct async *async = data;
606 if (async->isolate_sigpipe) {
609 sigaddset(&mask, SIGPIPE);
610 if (pthread_sigmask(SIG_BLOCK, &mask, NULL) < 0) {
611 ret = error("unable to block SIGPIPE in async thread");
616 pthread_setspecific(async_key, async);
617 ret = async->proc(async->proc_in, async->proc_out, async->data);
621 static NORETURN void die_async(const char *err, va_list params)
623 vreportf("fatal: ", err, params);
626 struct async *async = pthread_getspecific(async_key);
627 if (async->proc_in >= 0)
628 close(async->proc_in);
629 if (async->proc_out >= 0)
630 close(async->proc_out);
631 pthread_exit((void *)128);
637 static int async_die_is_recursing(void)
639 void *ret = pthread_getspecific(async_die_counter);
640 pthread_setspecific(async_die_counter, (void *)1);
646 if (!main_thread_set)
647 return 0; /* no asyncs started yet */
648 return !pthread_equal(main_thread, pthread_self());
651 static void NORETURN async_exit(int code)
653 pthread_exit((void *)(intptr_t)code);
659 void (**handlers)(void);
664 static int git_atexit_installed;
666 static void git_atexit_dispatch(void)
670 for (i=git_atexit_hdlrs.nr ; i ; i--)
671 git_atexit_hdlrs.handlers[i-1]();
674 static void git_atexit_clear(void)
676 free(git_atexit_hdlrs.handlers);
677 memset(&git_atexit_hdlrs, 0, sizeof(git_atexit_hdlrs));
678 git_atexit_installed = 0;
682 int git_atexit(void (*handler)(void))
684 ALLOC_GROW(git_atexit_hdlrs.handlers, git_atexit_hdlrs.nr + 1, git_atexit_hdlrs.alloc);
685 git_atexit_hdlrs.handlers[git_atexit_hdlrs.nr++] = handler;
686 if (!git_atexit_installed) {
687 if (atexit(&git_atexit_dispatch))
689 git_atexit_installed = 1;
693 #define atexit git_atexit
695 static int process_is_async;
698 return process_is_async;
701 static void NORETURN async_exit(int code)
708 void check_pipe(int err)
714 signal(SIGPIPE, SIG_DFL);
716 /* Should never happen, but just in case... */
721 int start_async(struct async *async)
723 int need_in, need_out;
724 int fdin[2], fdout[2];
725 int proc_in, proc_out;
727 need_in = async->in < 0;
729 if (pipe(fdin) < 0) {
732 return error_errno("cannot create pipe");
737 need_out = async->out < 0;
739 if (pipe(fdout) < 0) {
744 return error_errno("cannot create pipe");
746 async->out = fdout[0];
759 proc_out = async->out;
764 /* Flush stdio before fork() to avoid cloning buffers */
768 if (async->pid < 0) {
769 error_errno("fork (async) failed");
778 process_is_async = 1;
779 exit(!!async->proc(proc_in, proc_out, async->data));
782 mark_child_for_cleanup(async->pid, NULL);
794 if (!main_thread_set) {
796 * We assume that the first time that start_async is called
797 * it is from the main thread.
800 main_thread = pthread_self();
801 pthread_key_create(&async_key, NULL);
802 pthread_key_create(&async_die_counter, NULL);
803 set_die_routine(die_async);
804 set_die_is_recursing_routine(async_die_is_recursing);
808 set_cloexec(proc_in);
810 set_cloexec(proc_out);
811 async->proc_in = proc_in;
812 async->proc_out = proc_out;
814 int err = pthread_create(&async->tid, NULL, run_thread, async);
816 error_errno("cannot create thread");
836 int finish_async(struct async *async)
839 return wait_or_whine(async->pid, "child process", 0);
841 void *ret = (void *)(intptr_t)(-1);
843 if (pthread_join(async->tid, &ret))
844 error("pthread_join failed");
845 return (int)(intptr_t)ret;
849 const char *find_hook(const char *name)
851 static struct strbuf path = STRBUF_INIT;
854 strbuf_git_path(&path, "hooks/%s", name);
855 if (access(path.buf, X_OK) < 0)
860 int run_hook_ve(const char *const *env, const char *name, va_list args)
862 struct child_process hook = CHILD_PROCESS_INIT;
869 argv_array_push(&hook.args, p);
870 while ((p = va_arg(args, const char *)))
871 argv_array_push(&hook.args, p);
874 hook.stdout_to_stderr = 1;
876 return run_command(&hook);
879 int run_hook_le(const char *const *env, const char *name, ...)
884 va_start(args, name);
885 ret = run_hook_ve(env, name, args);
892 /* initialized by caller */
894 int type; /* POLLOUT or POLLIN */
906 /* returned by pump_io */
907 int error; /* 0 for success, otherwise errno */
913 static int pump_io_round(struct io_pump *slots, int nr, struct pollfd *pfd)
918 for (i = 0; i < nr; i++) {
919 struct io_pump *io = &slots[i];
922 pfd[pollsize].fd = io->fd;
923 pfd[pollsize].events = io->type;
924 io->pfd = &pfd[pollsize++];
930 if (poll(pfd, pollsize, -1) < 0) {
933 die_errno("poll failed");
936 for (i = 0; i < nr; i++) {
937 struct io_pump *io = &slots[i];
942 if (!(io->pfd->revents & (POLLOUT|POLLIN|POLLHUP|POLLERR|POLLNVAL)))
945 if (io->type == POLLOUT) {
946 ssize_t len = xwrite(io->fd,
947 io->u.out.buf, io->u.out.len);
953 io->u.out.buf += len;
954 io->u.out.len -= len;
955 if (!io->u.out.len) {
962 if (io->type == POLLIN) {
963 ssize_t len = strbuf_read_once(io->u.in.buf,
964 io->fd, io->u.in.hint);
977 static int pump_io(struct io_pump *slots, int nr)
982 for (i = 0; i < nr; i++)
985 ALLOC_ARRAY(pfd, nr);
986 while (pump_io_round(slots, nr, pfd))
990 /* There may be multiple errno values, so just pick the first. */
991 for (i = 0; i < nr; i++) {
992 if (slots[i].error) {
993 errno = slots[i].error;
1001 int pipe_command(struct child_process *cmd,
1002 const char *in, size_t in_len,
1003 struct strbuf *out, size_t out_hint,
1004 struct strbuf *err, size_t err_hint)
1006 struct io_pump io[3];
1016 if (start_command(cmd) < 0)
1020 io[nr].fd = cmd->in;
1021 io[nr].type = POLLOUT;
1022 io[nr].u.out.buf = in;
1023 io[nr].u.out.len = in_len;
1027 io[nr].fd = cmd->out;
1028 io[nr].type = POLLIN;
1029 io[nr].u.in.buf = out;
1030 io[nr].u.in.hint = out_hint;
1034 io[nr].fd = cmd->err;
1035 io[nr].type = POLLIN;
1036 io[nr].u.in.buf = err;
1037 io[nr].u.in.hint = err_hint;
1041 if (pump_io(io, nr) < 0) {
1042 finish_command(cmd); /* throw away exit code */
1046 return finish_command(cmd);
1052 GIT_CP_WAIT_CLEANUP,
1055 struct parallel_processes {
1061 get_next_task_fn get_next_task;
1062 start_failure_fn start_failure;
1063 task_finished_fn task_finished;
1066 enum child_state state;
1067 struct child_process process;
1072 * The struct pollfd is logically part of *children,
1073 * but the system call expects it as its own array.
1077 unsigned shutdown : 1;
1080 struct strbuf buffered_output; /* of finished children */
1083 static int default_start_failure(struct strbuf *out,
1090 static int default_task_finished(int result,
1098 static void kill_children(struct parallel_processes *pp, int signo)
1100 int i, n = pp->max_processes;
1102 for (i = 0; i < n; i++)
1103 if (pp->children[i].state == GIT_CP_WORKING)
1104 kill(pp->children[i].process.pid, signo);
1107 static struct parallel_processes *pp_for_signal;
1109 static void handle_children_on_signal(int signo)
1111 kill_children(pp_for_signal, signo);
1112 sigchain_pop(signo);
1116 static void pp_init(struct parallel_processes *pp,
1118 get_next_task_fn get_next_task,
1119 start_failure_fn start_failure,
1120 task_finished_fn task_finished,
1128 pp->max_processes = n;
1130 trace_printf("run_processes_parallel: preparing to run up to %d tasks", n);
1134 die("BUG: you need to specify a get_next_task function");
1135 pp->get_next_task = get_next_task;
1137 pp->start_failure = start_failure ? start_failure : default_start_failure;
1138 pp->task_finished = task_finished ? task_finished : default_task_finished;
1140 pp->nr_processes = 0;
1141 pp->output_owner = 0;
1143 pp->children = xcalloc(n, sizeof(*pp->children));
1144 pp->pfd = xcalloc(n, sizeof(*pp->pfd));
1145 strbuf_init(&pp->buffered_output, 0);
1147 for (i = 0; i < n; i++) {
1148 strbuf_init(&pp->children[i].err, 0);
1149 child_process_init(&pp->children[i].process);
1150 pp->pfd[i].events = POLLIN | POLLHUP;
1155 sigchain_push_common(handle_children_on_signal);
1158 static void pp_cleanup(struct parallel_processes *pp)
1162 trace_printf("run_processes_parallel: done");
1163 for (i = 0; i < pp->max_processes; i++) {
1164 strbuf_release(&pp->children[i].err);
1165 child_process_clear(&pp->children[i].process);
1172 * When get_next_task added messages to the buffer in its last
1173 * iteration, the buffered output is non empty.
1175 strbuf_write(&pp->buffered_output, stderr);
1176 strbuf_release(&pp->buffered_output);
1178 sigchain_pop_common();
1182 * 0 if a new task was started.
1183 * 1 if no new jobs was started (get_next_task ran out of work, non critical
1184 * problem with starting a new command)
1185 * <0 no new job was started, user wishes to shutdown early. Use negative code
1186 * to signal the children.
1188 static int pp_start_one(struct parallel_processes *pp)
1192 for (i = 0; i < pp->max_processes; i++)
1193 if (pp->children[i].state == GIT_CP_FREE)
1195 if (i == pp->max_processes)
1196 die("BUG: bookkeeping is hard");
1198 code = pp->get_next_task(&pp->children[i].process,
1199 &pp->children[i].err,
1201 &pp->children[i].data);
1203 strbuf_addbuf(&pp->buffered_output, &pp->children[i].err);
1204 strbuf_reset(&pp->children[i].err);
1207 pp->children[i].process.err = -1;
1208 pp->children[i].process.stdout_to_stderr = 1;
1209 pp->children[i].process.no_stdin = 1;
1211 if (start_command(&pp->children[i].process)) {
1212 code = pp->start_failure(&pp->children[i].err,
1214 &pp->children[i].data);
1215 strbuf_addbuf(&pp->buffered_output, &pp->children[i].err);
1216 strbuf_reset(&pp->children[i].err);
1223 pp->children[i].state = GIT_CP_WORKING;
1224 pp->pfd[i].fd = pp->children[i].process.err;
1228 static void pp_buffer_stderr(struct parallel_processes *pp, int output_timeout)
1232 while ((i = poll(pp->pfd, pp->max_processes, output_timeout)) < 0) {
1239 /* Buffer output from all pipes. */
1240 for (i = 0; i < pp->max_processes; i++) {
1241 if (pp->children[i].state == GIT_CP_WORKING &&
1242 pp->pfd[i].revents & (POLLIN | POLLHUP)) {
1243 int n = strbuf_read_once(&pp->children[i].err,
1244 pp->children[i].process.err, 0);
1246 close(pp->children[i].process.err);
1247 pp->children[i].state = GIT_CP_WAIT_CLEANUP;
1249 if (errno != EAGAIN)
1255 static void pp_output(struct parallel_processes *pp)
1257 int i = pp->output_owner;
1258 if (pp->children[i].state == GIT_CP_WORKING &&
1259 pp->children[i].err.len) {
1260 strbuf_write(&pp->children[i].err, stderr);
1261 strbuf_reset(&pp->children[i].err);
1265 static int pp_collect_finished(struct parallel_processes *pp)
1268 int n = pp->max_processes;
1271 while (pp->nr_processes > 0) {
1272 for (i = 0; i < pp->max_processes; i++)
1273 if (pp->children[i].state == GIT_CP_WAIT_CLEANUP)
1275 if (i == pp->max_processes)
1278 code = finish_command(&pp->children[i].process);
1280 code = pp->task_finished(code,
1281 &pp->children[i].err, pp->data,
1282 &pp->children[i].data);
1290 pp->children[i].state = GIT_CP_FREE;
1292 child_process_init(&pp->children[i].process);
1294 if (i != pp->output_owner) {
1295 strbuf_addbuf(&pp->buffered_output, &pp->children[i].err);
1296 strbuf_reset(&pp->children[i].err);
1298 strbuf_write(&pp->children[i].err, stderr);
1299 strbuf_reset(&pp->children[i].err);
1301 /* Output all other finished child processes */
1302 strbuf_write(&pp->buffered_output, stderr);
1303 strbuf_reset(&pp->buffered_output);
1306 * Pick next process to output live.
1308 * For now we pick it randomly by doing a round
1309 * robin. Later we may want to pick the one with
1310 * the most output or the longest or shortest
1311 * running process time.
1313 for (i = 0; i < n; i++)
1314 if (pp->children[(pp->output_owner + i) % n].state == GIT_CP_WORKING)
1316 pp->output_owner = (pp->output_owner + i) % n;
1322 int run_processes_parallel(int n,
1323 get_next_task_fn get_next_task,
1324 start_failure_fn start_failure,
1325 task_finished_fn task_finished,
1329 int output_timeout = 100;
1331 struct parallel_processes pp;
1333 pp_init(&pp, n, get_next_task, start_failure, task_finished, pp_cb);
1336 i < spawn_cap && !pp.shutdown &&
1337 pp.nr_processes < pp.max_processes;
1339 code = pp_start_one(&pp);
1344 kill_children(&pp, -code);
1348 if (!pp.nr_processes)
1350 pp_buffer_stderr(&pp, output_timeout);
1352 code = pp_collect_finished(&pp);
1356 kill_children(&pp, -code);