git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Redirect stderr to a pipe before redirecting stdout to stderr
@ 2008-03-03  7:21 Christian Couder
  2008-03-03  7:33 ` Shawn O. Pearce
  2008-03-03  8:07 ` Johannes Sixt
  0 siblings, 2 replies; 4+ messages in thread
From: Christian Couder @ 2008-03-03  7:21 UTC (permalink / raw)
  To: Junio C Hamano, Xavier Maillard; +Cc: git, nanako3, pascal

With this patch, in the 'start_command' function after forking
we now take care of stderr in the child process before stdout.

This way if 'start_command' is called with a 'child_process'
argument like this:

	.err = -1;
	.stdout_to_stderr = 1;

then stderr will be redirected to a pipe before stdout is
redirected to stderr. So we can now get the process' stdout
from the pipe (as well as its stderr).

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
---
 run-command.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

	This patch should make my previous patch:

	[PATCH 1/2] help: add "man.viewer" config var to use "woman" or "konqueror"

	work as expected (at least with Emacs 21 and 22).

diff --git a/run-command.c b/run-command.c
index 743757c..44100a7 100644
--- a/run-command.c
+++ b/run-command.c
@@ -91,6 +91,13 @@ int start_command(struct child_process *cmd)
 			close(cmd->in);
 		}
 
+		if (cmd->no_stderr)
+			dup_devnull(2);
+		else if (need_err) {
+			dup2(fderr[1], 2);
+			close_pair(fderr);
+		}
+
 		if (cmd->no_stdout)
 			dup_devnull(1);
 		else if (cmd->stdout_to_stderr)
@@ -103,13 +110,6 @@ int start_command(struct child_process *cmd)
 			close(cmd->out);
 		}
 
-		if (cmd->no_stderr)
-			dup_devnull(2);
-		else if (need_err) {
-			dup2(fderr[1], 2);
-			close_pair(fderr);
-		}

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Redirect stderr to a pipe before redirecting stdout to stderr
  2008-03-03  7:21 [PATCH] Redirect stderr to a pipe before redirecting stdout to stderr Christian Couder
@ 2008-03-03  7:33 ` Shawn O. Pearce
  2008-03-03  7:52   ` Christian Couder
  2008-03-03  8:07 ` Johannes Sixt
  1 sibling, 1 reply; 4+ messages in thread
From: Shawn O. Pearce @ 2008-03-03  7:33 UTC (permalink / raw)
  To: Christian Couder; +Cc: Junio C Hamano, Xavier Maillard, git, nanako3, pascal

Christian Couder <chriscool@tuxfamily.org> wrote:
> With this patch, in the 'start_command' function after forking
> we now take care of stderr in the child process before stdout.
> 
> This way if 'start_command' is called with a 'child_process'
> argument like this:
> 
> 	.err = -1;
> 	.stdout_to_stderr = 1;
> 
> then stderr will be redirected to a pipe before stdout is
> redirected to stderr. So we can now get the process' stdout
> from the pipe (as well as its stderr).

I'm in favor of this patch.  My series to add sideband support
to send-pack/receive-pack (aka push) needed it for the hooks.

-- 
Shawn.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Redirect stderr to a pipe before redirecting stdout to stderr
  2008-03-03  7:33 ` Shawn O. Pearce
@ 2008-03-03  7:52   ` Christian Couder
  0 siblings, 0 replies; 4+ messages in thread
From: Christian Couder @ 2008-03-03  7:52 UTC (permalink / raw)
  To: Shawn O. Pearce; +Cc: Junio C Hamano, Xavier Maillard, git, nanako3, pascal

Le lundi 3 mars 2008, Shawn O. Pearce a écrit :
> Christian Couder <chriscool@tuxfamily.org> wrote:
> > With this patch, in the 'start_command' function after forking
> > we now take care of stderr in the child process before stdout.
> >
> > This way if 'start_command' is called with a 'child_process'
> > argument like this:
> >
> > 	.err = -1;
> > 	.stdout_to_stderr = 1;
> >
> > then stderr will be redirected to a pipe before stdout is
> > redirected to stderr. So we can now get the process' stdout
> > from the pipe (as well as its stderr).
>
> I'm in favor of this patch.  My series to add sideband support
> to send-pack/receive-pack (aka push) needed it for the hooks.

Now that you say it, I remember having seen your patch, so please take 
ownership of this patch.

Thanks,
Christian.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Redirect stderr to a pipe before redirecting stdout to stderr
  2008-03-03  7:21 [PATCH] Redirect stderr to a pipe before redirecting stdout to stderr Christian Couder
  2008-03-03  7:33 ` Shawn O. Pearce
@ 2008-03-03  8:07 ` Johannes Sixt
  1 sibling, 0 replies; 4+ messages in thread
From: Johannes Sixt @ 2008-03-03  8:07 UTC (permalink / raw)
  To: Christian Couder; +Cc: Junio C Hamano, Xavier Maillard, git, nanako3, pascal

Christian Couder schrieb:
> With this patch, in the 'start_command' function after forking
> we now take care of stderr in the child process before stdout.
> 
> This way if 'start_command' is called with a 'child_process'
> argument like this:
> 
> 	.err = -1;
> 	.stdout_to_stderr = 1;
> 
> then stderr will be redirected to a pipe before stdout is
> redirected to stderr. So we can now get the process' stdout
> from the pipe (as well as its stderr).

Makes sense. All current users of .stdout_to_stderr don't modify the
stderr channel, so this patch should not make a difference.

But please also adjust Documentation/technical/api-run-command.txt because
it documents the behavior that you are modifying.

-- Hannes

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-03-03  8:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-03  7:21 [PATCH] Redirect stderr to a pipe before redirecting stdout to stderr Christian Couder
2008-03-03  7:33 ` Shawn O. Pearce
2008-03-03  7:52   ` Christian Couder
2008-03-03  8:07 ` Johannes Sixt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).