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_to_clean
*next
;
26 static struct child_to_clean
*children_to_clean
;
27 static int installed_child_cleanup_handler
;
29 static void cleanup_children(int sig
, int in_signal
)
31 while (children_to_clean
) {
32 struct child_to_clean
*p
= children_to_clean
;
33 children_to_clean
= p
->next
;
40 static void cleanup_children_on_signal(int sig
)
42 cleanup_children(sig
, 1);
47 static void cleanup_children_on_exit(void)
49 cleanup_children(SIGTERM
, 0);
52 static void mark_child_for_cleanup(pid_t pid
)
54 struct child_to_clean
*p
= xmalloc(sizeof(*p
));
56 p
->next
= children_to_clean
;
57 children_to_clean
= p
;
59 if (!installed_child_cleanup_handler
) {
60 atexit(cleanup_children_on_exit
);
61 sigchain_push_common(cleanup_children_on_signal
);
62 installed_child_cleanup_handler
= 1;
66 static void clear_child_for_cleanup(pid_t pid
)
68 struct child_to_clean
**pp
;
70 for (pp
= &children_to_clean
; *pp
; pp
= &(*pp
)->next
) {
71 struct child_to_clean
*clean_me
= *pp
;
73 if (clean_me
->pid
== pid
) {
81 static inline void close_pair(int fd
[2])
87 #ifndef GIT_WINDOWS_NATIVE
88 static inline void dup_devnull(int to
)
90 int fd
= open("/dev/null", O_RDWR
);
92 die_errno(_("open /dev/null failed"));
94 die_errno(_("dup2(%d,%d) failed"), fd
, to
);
99 static char *locate_in_PATH(const char *file
)
101 const char *p
= getenv("PATH");
102 struct strbuf buf
= STRBUF_INIT
;
108 const char *end
= strchrnul(p
, ':');
112 /* POSIX specifies an empty entry as the current directory. */
114 strbuf_add(&buf
, p
, end
- p
);
115 strbuf_addch(&buf
, '/');
117 strbuf_addstr(&buf
, file
);
119 if (!access(buf
.buf
, F_OK
))
120 return strbuf_detach(&buf
, NULL
);
127 strbuf_release(&buf
);
131 static int exists_in_PATH(const char *file
)
133 char *r
= locate_in_PATH(file
);
138 int sane_execvp(const char *file
, char * const argv
[])
140 if (!execvp(file
, argv
))
141 return 0; /* cannot happen ;-) */
144 * When a command can't be found because one of the directories
145 * listed in $PATH is unsearchable, execvp reports EACCES, but
146 * careful usability testing (read: analysis of occasional bug
147 * reports) reveals that "No such file or directory" is more
150 * We avoid commands with "/", because execvp will not do $PATH
151 * lookups in that case.
153 * The reassignment of EACCES to errno looks like a no-op below,
154 * but we need to protect against exists_in_PATH overwriting errno.
156 if (errno
== EACCES
&& !strchr(file
, '/'))
157 errno
= exists_in_PATH(file
) ? EACCES
: ENOENT
;
158 else if (errno
== ENOTDIR
&& !strchr(file
, '/'))
163 static const char **prepare_shell_cmd(struct argv_array
*out
, const char **argv
)
166 die("BUG: shell command is empty");
168 if (strcspn(argv
[0], "|&;<>()$`\\\"' \t\n*?[#~=%") != strlen(argv
[0])) {
169 #ifndef GIT_WINDOWS_NATIVE
170 argv_array_push(out
, SHELL_PATH
);
172 argv_array_push(out
, "sh");
174 argv_array_push(out
, "-c");
177 * If we have no extra arguments, we do not even need to
178 * bother with the "$@" magic.
181 argv_array_push(out
, argv
[0]);
183 argv_array_pushf(out
, "%s \"$@\"", argv
[0]);
186 argv_array_pushv(out
, argv
);
190 #ifndef GIT_WINDOWS_NATIVE
191 static int execv_shell_cmd(const char **argv
)
193 struct argv_array nargv
= ARGV_ARRAY_INIT
;
194 prepare_shell_cmd(&nargv
, argv
);
195 trace_argv_printf(nargv
.argv
, "trace: exec:");
196 sane_execvp(nargv
.argv
[0], (char **)nargv
.argv
);
197 argv_array_clear(&nargv
);
202 #ifndef GIT_WINDOWS_NATIVE
203 static int child_notifier
= -1;
205 static void notify_parent(void)
208 * execvp failed. If possible, we'd like to let start_command
209 * know, so failures like ENOENT can be handled right away; but
210 * otherwise, finish_command will still report the error.
212 xwrite(child_notifier
, "", 1);
216 static inline void set_cloexec(int fd
)
218 int flags
= fcntl(fd
, F_GETFD
);
220 fcntl(fd
, F_SETFD
, flags
| FD_CLOEXEC
);
223 static int wait_or_whine(pid_t pid
, const char *argv0
, int in_signal
)
225 int status
, code
= -1;
227 int failed_errno
= 0;
229 while ((waiting
= waitpid(pid
, &status
, 0)) < 0 && errno
== EINTR
)
235 failed_errno
= errno
;
236 error("waitpid for %s failed: %s", argv0
, strerror(errno
));
237 } else if (waiting
!= pid
) {
238 error("waitpid is confused (%s)", argv0
);
239 } else if (WIFSIGNALED(status
)) {
240 code
= WTERMSIG(status
);
241 if (code
!= SIGINT
&& code
!= SIGQUIT
&& code
!= SIGPIPE
)
242 error("%s died of signal %d", argv0
, code
);
244 * This return value is chosen so that code & 0xff
245 * mimics the exit code that a POSIX shell would report for
246 * a program that died from this signal.
249 } else if (WIFEXITED(status
)) {
250 code
= WEXITSTATUS(status
);
252 * Convert special exit code when execvp failed.
256 failed_errno
= ENOENT
;
259 error("waitpid is confused (%s)", argv0
);
262 clear_child_for_cleanup(pid
);
264 errno
= failed_errno
;
268 int start_command(struct child_process
*cmd
)
270 int need_in
, need_out
, need_err
;
271 int fdin
[2], fdout
[2], fderr
[2];
276 cmd
->argv
= cmd
->args
.argv
;
278 cmd
->env
= cmd
->env_array
.argv
;
281 * In case of errors we must keep the promise to close FDs
282 * that have been passed in via ->in and ->out.
285 need_in
= !cmd
->no_stdin
&& cmd
->in
< 0;
287 if (pipe(fdin
) < 0) {
288 failed_errno
= errno
;
291 str
= "standard input";
297 need_out
= !cmd
->no_stdout
298 && !cmd
->stdout_to_stderr
301 if (pipe(fdout
) < 0) {
302 failed_errno
= errno
;
307 str
= "standard output";
313 need_err
= !cmd
->no_stderr
&& cmd
->err
< 0;
315 if (pipe(fderr
) < 0) {
316 failed_errno
= errno
;
325 str
= "standard error";
327 error("cannot create %s pipe for %s: %s",
328 str
, cmd
->argv
[0], strerror(failed_errno
));
329 child_process_clear(cmd
);
330 errno
= failed_errno
;
336 trace_argv_printf(cmd
->argv
, "trace: run_command:");
339 #ifndef GIT_WINDOWS_NATIVE
342 if (pipe(notify_pipe
))
343 notify_pipe
[0] = notify_pipe
[1] = -1;
346 failed_errno
= errno
;
349 * Redirect the channel to write syscall error messages to
350 * before redirecting the process's stderr so that all die()
351 * in subsequent call paths use the parent's stderr.
353 if (cmd
->no_stderr
|| need_err
) {
354 int child_err
= dup(2);
355 set_cloexec(child_err
);
356 set_error_handle(fdopen(child_err
, "w"));
359 close(notify_pipe
[0]);
360 set_cloexec(notify_pipe
[1]);
361 child_notifier
= notify_pipe
[1];
362 atexit(notify_parent
);
369 } else if (cmd
->in
) {
379 } else if (cmd
->err
> 1) {
386 else if (cmd
->stdout_to_stderr
)
391 } else if (cmd
->out
> 1) {
396 if (cmd
->dir
&& chdir(cmd
->dir
))
397 die_errno("exec '%s': cd to '%s' failed", cmd
->argv
[0],
400 for (; *cmd
->env
; cmd
->env
++) {
401 if (strchr(*cmd
->env
, '='))
402 putenv((char *)*cmd
->env
);
408 execv_git_cmd(cmd
->argv
);
409 else if (cmd
->use_shell
)
410 execv_shell_cmd(cmd
->argv
);
412 sane_execvp(cmd
->argv
[0], (char *const*) cmd
->argv
);
413 if (errno
== ENOENT
) {
414 if (!cmd
->silent_exec_failure
)
415 error("cannot run %s: %s", cmd
->argv
[0],
419 die_errno("cannot exec '%s'", cmd
->argv
[0]);
423 error("cannot fork() for %s: %s", cmd
->argv
[0],
425 else if (cmd
->clean_on_exit
)
426 mark_child_for_cleanup(cmd
->pid
);
429 * Wait for child's execvp. If the execvp succeeds (or if fork()
430 * failed), EOF is seen immediately by the parent. Otherwise, the
431 * child process sends a single byte.
432 * Note that use of this infrastructure is completely advisory,
433 * therefore, we keep error checks minimal.
435 close(notify_pipe
[1]);
436 if (read(notify_pipe
[0], ¬ify_pipe
[1], 1) == 1) {
438 * At this point we know that fork() succeeded, but execvp()
439 * failed. Errors have been reported to our stderr.
441 wait_or_whine(cmd
->pid
, cmd
->argv
[0], 0);
442 failed_errno
= errno
;
445 close(notify_pipe
[0]);
449 int fhin
= 0, fhout
= 1, fherr
= 2;
450 const char **sargv
= cmd
->argv
;
451 struct argv_array nargv
= ARGV_ARRAY_INIT
;
454 fhin
= open("/dev/null", O_RDWR
);
461 fherr
= open("/dev/null", O_RDWR
);
463 fherr
= dup(fderr
[1]);
464 else if (cmd
->err
> 2)
465 fherr
= dup(cmd
->err
);
468 fhout
= open("/dev/null", O_RDWR
);
469 else if (cmd
->stdout_to_stderr
)
472 fhout
= dup(fdout
[1]);
473 else if (cmd
->out
> 1)
474 fhout
= dup(cmd
->out
);
477 cmd
->argv
= prepare_git_cmd(&nargv
, cmd
->argv
);
478 else if (cmd
->use_shell
)
479 cmd
->argv
= prepare_shell_cmd(&nargv
, cmd
->argv
);
481 cmd
->pid
= mingw_spawnvpe(cmd
->argv
[0], cmd
->argv
, (char**) cmd
->env
,
482 cmd
->dir
, fhin
, fhout
, fherr
);
483 failed_errno
= errno
;
484 if (cmd
->pid
< 0 && (!cmd
->silent_exec_failure
|| errno
!= ENOENT
))
485 error("cannot spawn %s: %s", cmd
->argv
[0], strerror(errno
));
486 if (cmd
->clean_on_exit
&& cmd
->pid
>= 0)
487 mark_child_for_cleanup(cmd
->pid
);
489 argv_array_clear(&nargv
);
513 child_process_clear(cmd
);
514 errno
= failed_errno
;
536 int finish_command(struct child_process
*cmd
)
538 int ret
= wait_or_whine(cmd
->pid
, cmd
->argv
[0], 0);
539 child_process_clear(cmd
);
543 int finish_command_in_signal(struct child_process
*cmd
)
545 return wait_or_whine(cmd
->pid
, cmd
->argv
[0], 1);
549 int run_command(struct child_process
*cmd
)
553 if (cmd
->out
< 0 || cmd
->err
< 0)
554 die("BUG: run_command with a pipe can cause deadlock");
556 code
= start_command(cmd
);
559 return finish_command(cmd
);
562 int run_command_v_opt(const char **argv
, int opt
)
564 return run_command_v_opt_cd_env(argv
, opt
, NULL
, NULL
);
567 int run_command_v_opt_cd_env(const char **argv
, int opt
, const char *dir
, const char *const *env
)
569 struct child_process cmd
= CHILD_PROCESS_INIT
;
571 cmd
.no_stdin
= opt
& RUN_COMMAND_NO_STDIN
? 1 : 0;
572 cmd
.git_cmd
= opt
& RUN_GIT_CMD
? 1 : 0;
573 cmd
.stdout_to_stderr
= opt
& RUN_COMMAND_STDOUT_TO_STDERR
? 1 : 0;
574 cmd
.silent_exec_failure
= opt
& RUN_SILENT_EXEC_FAILURE
? 1 : 0;
575 cmd
.use_shell
= opt
& RUN_USING_SHELL
? 1 : 0;
576 cmd
.clean_on_exit
= opt
& RUN_CLEAN_ON_EXIT
? 1 : 0;
579 return run_command(&cmd
);
583 static pthread_t main_thread
;
584 static int main_thread_set
;
585 static pthread_key_t async_key
;
586 static pthread_key_t async_die_counter
;
588 static void *run_thread(void *data
)
590 struct async
*async
= data
;
593 if (async
->isolate_sigpipe
) {
596 sigaddset(&mask
, SIGPIPE
);
597 if (pthread_sigmask(SIG_BLOCK
, &mask
, NULL
) < 0) {
598 ret
= error("unable to block SIGPIPE in async thread");
603 pthread_setspecific(async_key
, async
);
604 ret
= async
->proc(async
->proc_in
, async
->proc_out
, async
->data
);
608 static NORETURN
void die_async(const char *err
, va_list params
)
610 vreportf("fatal: ", err
, params
);
613 struct async
*async
= pthread_getspecific(async_key
);
614 if (async
->proc_in
>= 0)
615 close(async
->proc_in
);
616 if (async
->proc_out
>= 0)
617 close(async
->proc_out
);
618 pthread_exit((void *)128);
624 static int async_die_is_recursing(void)
626 void *ret
= pthread_getspecific(async_die_counter
);
627 pthread_setspecific(async_die_counter
, (void *)1);
633 if (!main_thread_set
)
634 return 0; /* no asyncs started yet */
635 return !pthread_equal(main_thread
, pthread_self());
638 void NORETURN
async_exit(int code
)
640 pthread_exit((void *)(intptr_t)code
);
646 void (**handlers
)(void);
651 static int git_atexit_installed
;
653 static void git_atexit_dispatch(void)
657 for (i
=git_atexit_hdlrs
.nr
; i
; i
--)
658 git_atexit_hdlrs
.handlers
[i
-1]();
661 static void git_atexit_clear(void)
663 free(git_atexit_hdlrs
.handlers
);
664 memset(&git_atexit_hdlrs
, 0, sizeof(git_atexit_hdlrs
));
665 git_atexit_installed
= 0;
669 int git_atexit(void (*handler
)(void))
671 ALLOC_GROW(git_atexit_hdlrs
.handlers
, git_atexit_hdlrs
.nr
+ 1, git_atexit_hdlrs
.alloc
);
672 git_atexit_hdlrs
.handlers
[git_atexit_hdlrs
.nr
++] = handler
;
673 if (!git_atexit_installed
) {
674 if (atexit(&git_atexit_dispatch
))
676 git_atexit_installed
= 1;
680 #define atexit git_atexit
682 static int process_is_async
;
685 return process_is_async
;
688 void NORETURN
async_exit(int code
)
695 int start_async(struct async
*async
)
697 int need_in
, need_out
;
698 int fdin
[2], fdout
[2];
699 int proc_in
, proc_out
;
701 need_in
= async
->in
< 0;
703 if (pipe(fdin
) < 0) {
706 return error("cannot create pipe: %s", strerror(errno
));
711 need_out
= async
->out
< 0;
713 if (pipe(fdout
) < 0) {
718 return error("cannot create pipe: %s", strerror(errno
));
720 async
->out
= fdout
[0];
733 proc_out
= async
->out
;
738 /* Flush stdio before fork() to avoid cloning buffers */
742 if (async
->pid
< 0) {
743 error("fork (async) failed: %s", strerror(errno
));
752 process_is_async
= 1;
753 exit(!!async
->proc(proc_in
, proc_out
, async
->data
));
756 mark_child_for_cleanup(async
->pid
);
768 if (!main_thread_set
) {
770 * We assume that the first time that start_async is called
771 * it is from the main thread.
774 main_thread
= pthread_self();
775 pthread_key_create(&async_key
, NULL
);
776 pthread_key_create(&async_die_counter
, NULL
);
777 set_die_routine(die_async
);
778 set_die_is_recursing_routine(async_die_is_recursing
);
782 set_cloexec(proc_in
);
784 set_cloexec(proc_out
);
785 async
->proc_in
= proc_in
;
786 async
->proc_out
= proc_out
;
788 int err
= pthread_create(&async
->tid
, NULL
, run_thread
, async
);
790 error("cannot create thread: %s", strerror(err
));
810 int finish_async(struct async
*async
)
813 return wait_or_whine(async
->pid
, "child process", 0);
815 void *ret
= (void *)(intptr_t)(-1);
817 if (pthread_join(async
->tid
, &ret
))
818 error("pthread_join failed");
819 return (int)(intptr_t)ret
;
823 const char *find_hook(const char *name
)
825 static struct strbuf path
= STRBUF_INIT
;
828 strbuf_git_path(&path
, "hooks/%s", name
);
829 if (access(path
.buf
, X_OK
) < 0)
834 int run_hook_ve(const char *const *env
, const char *name
, va_list args
)
836 struct child_process hook
= CHILD_PROCESS_INIT
;
843 argv_array_push(&hook
.args
, p
);
844 while ((p
= va_arg(args
, const char *)))
845 argv_array_push(&hook
.args
, p
);
848 hook
.stdout_to_stderr
= 1;
850 return run_command(&hook
);
853 int run_hook_le(const char *const *env
, const char *name
, ...)
858 va_start(args
, name
);
859 ret
= run_hook_ve(env
, name
, args
);
865 int capture_command(struct child_process
*cmd
, struct strbuf
*buf
, size_t hint
)
868 if (start_command(cmd
) < 0)
871 if (strbuf_read(buf
, cmd
->out
, hint
) < 0) {
873 finish_command(cmd
); /* throw away exit code */
878 return finish_command(cmd
);
887 struct parallel_processes
{
893 get_next_task_fn get_next_task
;
894 start_failure_fn start_failure
;
895 task_finished_fn task_finished
;
898 enum child_state state
;
899 struct child_process process
;
904 * The struct pollfd is logically part of *children,
905 * but the system call expects it as its own array.
909 unsigned shutdown
: 1;
912 struct strbuf buffered_output
; /* of finished children */
915 static int default_start_failure(struct strbuf
*err
,
922 static int default_task_finished(int result
,
930 static void kill_children(struct parallel_processes
*pp
, int signo
)
932 int i
, n
= pp
->max_processes
;
934 for (i
= 0; i
< n
; i
++)
935 if (pp
->children
[i
].state
== GIT_CP_WORKING
)
936 kill(pp
->children
[i
].process
.pid
, signo
);
939 static struct parallel_processes
*pp_for_signal
;
941 static void handle_children_on_signal(int signo
)
943 kill_children(pp_for_signal
, signo
);
948 static void pp_init(struct parallel_processes
*pp
,
950 get_next_task_fn get_next_task
,
951 start_failure_fn start_failure
,
952 task_finished_fn task_finished
,
960 pp
->max_processes
= n
;
962 trace_printf("run_processes_parallel: preparing to run up to %d tasks", n
);
966 die("BUG: you need to specify a get_next_task function");
967 pp
->get_next_task
= get_next_task
;
969 pp
->start_failure
= start_failure
? start_failure
: default_start_failure
;
970 pp
->task_finished
= task_finished
? task_finished
: default_task_finished
;
972 pp
->nr_processes
= 0;
973 pp
->output_owner
= 0;
975 pp
->children
= xcalloc(n
, sizeof(*pp
->children
));
976 pp
->pfd
= xcalloc(n
, sizeof(*pp
->pfd
));
977 strbuf_init(&pp
->buffered_output
, 0);
979 for (i
= 0; i
< n
; i
++) {
980 strbuf_init(&pp
->children
[i
].err
, 0);
981 child_process_init(&pp
->children
[i
].process
);
982 pp
->pfd
[i
].events
= POLLIN
| POLLHUP
;
987 sigchain_push_common(handle_children_on_signal
);
990 static void pp_cleanup(struct parallel_processes
*pp
)
994 trace_printf("run_processes_parallel: done");
995 for (i
= 0; i
< pp
->max_processes
; i
++) {
996 strbuf_release(&pp
->children
[i
].err
);
997 child_process_clear(&pp
->children
[i
].process
);
1004 * When get_next_task added messages to the buffer in its last
1005 * iteration, the buffered output is non empty.
1007 fputs(pp
->buffered_output
.buf
, stderr
);
1008 strbuf_release(&pp
->buffered_output
);
1010 sigchain_pop_common();
1014 * 0 if a new task was started.
1015 * 1 if no new jobs was started (get_next_task ran out of work, non critical
1016 * problem with starting a new command)
1017 * <0 no new job was started, user wishes to shutdown early. Use negative code
1018 * to signal the children.
1020 static int pp_start_one(struct parallel_processes
*pp
)
1024 for (i
= 0; i
< pp
->max_processes
; i
++)
1025 if (pp
->children
[i
].state
== GIT_CP_FREE
)
1027 if (i
== pp
->max_processes
)
1028 die("BUG: bookkeeping is hard");
1030 code
= pp
->get_next_task(&pp
->children
[i
].process
,
1031 &pp
->children
[i
].err
,
1033 &pp
->children
[i
].data
);
1035 strbuf_addbuf(&pp
->buffered_output
, &pp
->children
[i
].err
);
1036 strbuf_reset(&pp
->children
[i
].err
);
1039 pp
->children
[i
].process
.err
= -1;
1040 pp
->children
[i
].process
.stdout_to_stderr
= 1;
1041 pp
->children
[i
].process
.no_stdin
= 1;
1043 if (start_command(&pp
->children
[i
].process
)) {
1044 code
= pp
->start_failure(&pp
->children
[i
].err
,
1046 &pp
->children
[i
].data
);
1047 strbuf_addbuf(&pp
->buffered_output
, &pp
->children
[i
].err
);
1048 strbuf_reset(&pp
->children
[i
].err
);
1055 pp
->children
[i
].state
= GIT_CP_WORKING
;
1056 pp
->pfd
[i
].fd
= pp
->children
[i
].process
.err
;
1060 static void pp_buffer_stderr(struct parallel_processes
*pp
, int output_timeout
)
1064 while ((i
= poll(pp
->pfd
, pp
->max_processes
, output_timeout
)) < 0) {
1071 /* Buffer output from all pipes. */
1072 for (i
= 0; i
< pp
->max_processes
; i
++) {
1073 if (pp
->children
[i
].state
== GIT_CP_WORKING
&&
1074 pp
->pfd
[i
].revents
& (POLLIN
| POLLHUP
)) {
1075 int n
= strbuf_read_once(&pp
->children
[i
].err
,
1076 pp
->children
[i
].process
.err
, 0);
1078 close(pp
->children
[i
].process
.err
);
1079 pp
->children
[i
].state
= GIT_CP_WAIT_CLEANUP
;
1081 if (errno
!= EAGAIN
)
1087 static void pp_output(struct parallel_processes
*pp
)
1089 int i
= pp
->output_owner
;
1090 if (pp
->children
[i
].state
== GIT_CP_WORKING
&&
1091 pp
->children
[i
].err
.len
) {
1092 fputs(pp
->children
[i
].err
.buf
, stderr
);
1093 strbuf_reset(&pp
->children
[i
].err
);
1097 static int pp_collect_finished(struct parallel_processes
*pp
)
1100 int n
= pp
->max_processes
;
1103 while (pp
->nr_processes
> 0) {
1104 for (i
= 0; i
< pp
->max_processes
; i
++)
1105 if (pp
->children
[i
].state
== GIT_CP_WAIT_CLEANUP
)
1107 if (i
== pp
->max_processes
)
1110 code
= finish_command(&pp
->children
[i
].process
);
1112 code
= pp
->task_finished(code
,
1113 &pp
->children
[i
].err
, pp
->data
,
1114 &pp
->children
[i
].data
);
1122 pp
->children
[i
].state
= GIT_CP_FREE
;
1124 child_process_init(&pp
->children
[i
].process
);
1126 if (i
!= pp
->output_owner
) {
1127 strbuf_addbuf(&pp
->buffered_output
, &pp
->children
[i
].err
);
1128 strbuf_reset(&pp
->children
[i
].err
);
1130 fputs(pp
->children
[i
].err
.buf
, stderr
);
1131 strbuf_reset(&pp
->children
[i
].err
);
1133 /* Output all other finished child processes */
1134 fputs(pp
->buffered_output
.buf
, stderr
);
1135 strbuf_reset(&pp
->buffered_output
);
1138 * Pick next process to output live.
1140 * For now we pick it randomly by doing a round
1141 * robin. Later we may want to pick the one with
1142 * the most output or the longest or shortest
1143 * running process time.
1145 for (i
= 0; i
< n
; i
++)
1146 if (pp
->children
[(pp
->output_owner
+ i
) % n
].state
== GIT_CP_WORKING
)
1148 pp
->output_owner
= (pp
->output_owner
+ i
) % n
;
1154 int run_processes_parallel(int n
,
1155 get_next_task_fn get_next_task
,
1156 start_failure_fn start_failure
,
1157 task_finished_fn task_finished
,
1161 int output_timeout
= 100;
1163 struct parallel_processes pp
;
1165 pp_init(&pp
, n
, get_next_task
, start_failure
, task_finished
, pp_cb
);
1168 i
< spawn_cap
&& !pp
.shutdown
&&
1169 pp
.nr_processes
< pp
.max_processes
;
1171 code
= pp_start_one(&pp
);
1176 kill_children(&pp
, -code
);
1180 if (!pp
.nr_processes
)
1182 pp_buffer_stderr(&pp
, output_timeout
);
1184 code
= pp_collect_finished(&pp
);
1188 kill_children(&pp
, -code
);