summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ebcb5d1)
raw | patch | inline | side by side (parent: ebcb5d1)
author | Shawn O. Pearce <spearce@spearce.org> | |
Sat, 10 Mar 2007 08:28:08 +0000 (03:28 -0500) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Mon, 12 Mar 2007 05:49:40 +0000 (22:49 -0700) |
Sometimes callers trying to use run_command to execute a child
process will want to setup a pipe or file descriptor to redirect
into the child's stdin.
This idea is completely stolen from builtin-bundle's fork_with_pipe,
written by Johannes Schindelin. All credit (and blame) should lie
with Dscho. ;-)
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
process will want to setup a pipe or file descriptor to redirect
into the child's stdin.
This idea is completely stolen from builtin-bundle's fork_with_pipe,
written by Johannes Schindelin. All credit (and blame) should lie
with Dscho. ;-)
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
run-command.c | patch | blob | history | |
run-command.h | patch | blob | history |
diff --git a/run-command.c b/run-command.c
index a866a0669426f0f1c94bee92d3b78d191209c28b..03ff7bcac2a812bfa049255b499f25fdc14a0fd4 100644 (file)
--- a/run-command.c
+++ b/run-command.c
int start_command(struct child_process *cmd)
{
+ int need_in = !cmd->no_stdin && cmd->in < 0;
+ int fdin[2];
+
+ if (need_in) {
+ if (pipe(fdin) < 0)
+ return -ERR_RUN_COMMAND_PIPE;
+ cmd->in = fdin[1];
+ cmd->close_in = 1;
+ }
+
cmd->pid = fork();
- if (cmd->pid < 0)
+ if (cmd->pid < 0) {
+ if (need_in) {
+ close(fdin[0]);
+ close(fdin[1]);
+ }
return -ERR_RUN_COMMAND_FORK;
+ }
+
if (!cmd->pid) {
if (cmd->no_stdin) {
int fd = open("/dev/null", O_RDWR);
dup2(fd, 0);
close(fd);
+ } else if (need_in) {
+ dup2(fdin[0], 0);
+ close(fdin[0]);
+ close(fdin[1]);
+ } else if (cmd->in) {
+ dup2(cmd->in, 0);
+ close(cmd->in);
}
+
if (cmd->stdout_to_stderr)
dup2(2, 1);
if (cmd->git_cmd) {
}
die("exec %s failed.", cmd->argv[0]);
}
+
+ if (need_in)
+ close(fdin[0]);
+ else if (cmd->in)
+ close(cmd->in);
+
return 0;
}
int finish_command(struct child_process *cmd)
{
+ if (cmd->close_in)
+ close(cmd->in);
+
for (;;) {
int status, code;
pid_t waiting = waitpid(cmd->pid, &status, 0);
diff --git a/run-command.h b/run-command.h
index 24cdb4eb190b6bea844e7c674ea4caf32462caa0..ff090679a6fecd66bda4fba804a8ab6555571aa9 100644 (file)
--- a/run-command.h
+++ b/run-command.h
enum {
ERR_RUN_COMMAND_FORK = 10000,
ERR_RUN_COMMAND_EXEC,
+ ERR_RUN_COMMAND_PIPE,
ERR_RUN_COMMAND_WAITPID,
ERR_RUN_COMMAND_WAITPID_WRONG_PID,
ERR_RUN_COMMAND_WAITPID_SIGNAL,
struct child_process {
const char **argv;
pid_t pid;
+ int in;
+ unsigned close_in:1;
unsigned no_stdin:1;
unsigned git_cmd:1; /* if this is to be git sub-command */
unsigned stdout_to_stderr:1;