* [PATCH] mingw: work around stat-limitation
@ 2012-02-23 20:25 Erik Faye-Lund
2012-02-23 21:26 ` [msysGit] " Johannes Schindelin
0 siblings, 1 reply; 4+ messages in thread
From: Erik Faye-Lund @ 2012-02-23 20:25 UTC (permalink / raw)
To: git; +Cc: gitster, j6t, msysgit
Our stat implementation for Windows always sets st_ino to 0. This
means that checking if isatty(0) and comparing the reported inodes
of stdout and stdin is not sufficient to detect that both are
pointing to the same TTY.
Luckily, there's only one console on Windows, so adding a check for
isatty(1) should do the trick. For platforms where inodes are
reported correctly, this should still be correct.
Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
---
Here's a proper patch for this glitch.
builtin/merge.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/builtin/merge.c b/builtin/merge.c
index ed0f959..bef01e3 100644
--- a/builtin/merge.c
+++ b/builtin/merge.c
@@ -1130,6 +1130,7 @@ static int default_edit_option(void)
return (!fstat(0, &st_stdin) &&
!fstat(1, &st_stdout) &&
isatty(0) &&
+ isatty(1) &&
st_stdin.st_dev == st_stdout.st_dev &&
st_stdin.st_ino == st_stdout.st_ino &&
st_stdin.st_mode == st_stdout.st_mode);
--
1.7.9
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [msysGit] [PATCH] mingw: work around stat-limitation
2012-02-23 20:25 [PATCH] mingw: work around stat-limitation Erik Faye-Lund
@ 2012-02-23 21:26 ` Johannes Schindelin
2012-02-23 21:36 ` Erik Faye-Lund
0 siblings, 1 reply; 4+ messages in thread
From: Johannes Schindelin @ 2012-02-23 21:26 UTC (permalink / raw)
To: Erik Faye-Lund; +Cc: git, gitster, j6t, msysgit
Hi,
On Thu, 23 Feb 2012, Erik Faye-Lund wrote:
> Our stat implementation for Windows always sets st_ino to 0. This
> means that checking if isatty(0) and comparing the reported inodes
> of stdout and stdin is not sufficient to detect that both are
> pointing to the same TTY.
>
> Luckily, there's only one console on Windows, so adding a check for
> isatty(1) should do the trick. For platforms where inodes are
> reported correctly, this should still be correct.
Sorry to ask so stupidly, but why does isatty(1) work and isatty(0) does
not? Should they not access the very same console object?
Thanks,
Dscho
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [msysGit] [PATCH] mingw: work around stat-limitation
2012-02-23 21:26 ` [msysGit] " Johannes Schindelin
@ 2012-02-23 21:36 ` Erik Faye-Lund
2012-02-23 22:37 ` Johannes Schindelin
0 siblings, 1 reply; 4+ messages in thread
From: Erik Faye-Lund @ 2012-02-23 21:36 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: git, gitster, j6t, msysgit
On Thu, Feb 23, 2012 at 10:26 PM, Johannes Schindelin
<Johannes.Schindelin@gmx.de> wrote:
> Hi,
>
> On Thu, 23 Feb 2012, Erik Faye-Lund wrote:
>
>> Our stat implementation for Windows always sets st_ino to 0. This
>> means that checking if isatty(0) and comparing the reported inodes
>> of stdout and stdin is not sufficient to detect that both are
>> pointing to the same TTY.
>>
>> Luckily, there's only one console on Windows, so adding a check for
>> isatty(1) should do the trick. For platforms where inodes are
>> reported correctly, this should still be correct.
>
> Sorry to ask so stupidly, but why does isatty(1) work and isatty(0) does
> not? Should they not access the very same console object?
>
The point is that they might not. The old test would draw the wrong
conclusion if isatty(0) was true, but isatty(1) was not because it
used st_ino to verify that stdin and stdout pointed to the same
terminal. The reason it did that was to catch cases where stdin and
stdout pointed to different terminals, AFAICT. Not checking isatty(1)
was simply an optimization, which works when st_ino is filled out
correctly.
On Windows there is only one terminal, so it's sufficient to check if
both are connected.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [msysGit] [PATCH] mingw: work around stat-limitation
2012-02-23 21:36 ` Erik Faye-Lund
@ 2012-02-23 22:37 ` Johannes Schindelin
0 siblings, 0 replies; 4+ messages in thread
From: Johannes Schindelin @ 2012-02-23 22:37 UTC (permalink / raw)
To: Erik Faye-Lund; +Cc: git, gitster, j6t, msysgit
Hi kusma,
On Thu, 23 Feb 2012, Erik Faye-Lund wrote:
> On Thu, Feb 23, 2012 at 10:26 PM, Johannes Schindelin
> <Johannes.Schindelin@gmx.de> wrote:
> >
> > On Thu, 23 Feb 2012, Erik Faye-Lund wrote:
> >
> >> Our stat implementation for Windows always sets st_ino to 0. This
> >> means that checking if isatty(0) and comparing the reported inodes
> >> of stdout and stdin is not sufficient to detect that both are
> >> pointing to the same TTY.
> >>
> >> Luckily, there's only one console on Windows, so adding a check for
> >> isatty(1) should do the trick. For platforms where inodes are
> >> reported correctly, this should still be correct.
> >
> > Sorry to ask so stupidly, but why does isatty(1) work and isatty(0) does
> > not? Should they not access the very same console object?
> >
>
> The point is that they might not. The old test would draw the wrong
> conclusion if isatty(0) was true, but isatty(1) was not because it
> used st_ino to verify that stdin and stdout pointed to the same
> terminal. The reason it did that was to catch cases where stdin and
> stdout pointed to different terminals, AFAICT. Not checking isatty(1)
> was simply an optimization, which works when st_ino is filled out
> correctly.
>
> On Windows there is only one terminal, so it's sufficient to check if
> both are connected.
Ah, okay. Thanks for answering so patiently!
ACK.
Ciao,
Dscho
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-02-23 22:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-23 20:25 [PATCH] mingw: work around stat-limitation Erik Faye-Lund
2012-02-23 21:26 ` [msysGit] " Johannes Schindelin
2012-02-23 21:36 ` Erik Faye-Lund
2012-02-23 22:37 ` Johannes Schindelin
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).