unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] git: fix unused code path for cat-file stderr reset
@ 2023-09-29 10:41 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2023-09-29 10:41 UTC (permalink / raw)
  To: meta

We haven't used _bidi_pipe idempotently in a while, so
the stderr was never getting reset on reads.
This isn't fully useful when using async eeeae20893a25956
(imap: use git-cat-file asynchronously, 2020-06-10)

So instead of truncating it on reads, we'll truncate
immediately after reading and rely on O_APPEND to keep
new writes at the end.

Fortunately, this stderrr error checking isn't used
outside of solver (which is synchronous).
---
 lib/PublicInbox/Git.pm | 23 +++++++++--------------
 1 file changed, 9 insertions(+), 14 deletions(-)

diff --git a/lib/PublicInbox/Git.pm b/lib/PublicInbox/Git.pm
index 53887e3d..eb88aa48 100644
--- a/lib/PublicInbox/Git.pm
+++ b/lib/PublicInbox/Git.pm
@@ -136,24 +136,20 @@ sub object_format {
 
 sub last_check_err {
 	my ($self) = @_;
-	my $fh = $self->{err_c} or return;
-	sysseek($fh, 0, 0) or $self->fail("sysseek failed: $!");
-	defined(sysread($fh, my $buf, -s $fh)) or
-			$self->fail("sysread failed: $!");
+	my $fh = $self->{err_c} or return '';
+	sysseek($fh, 0, 0) or $self->fail("sysseek: $!");
+	my $size = -s $fh or return '';
+	sysread($fh, my $buf, $size) // $self->fail("sysread: $!");
+	truncate($fh, 0) or $self->fail("truncate: $!");
 	$buf;
 }
 
 sub _bidi_pipe {
 	my ($self, $batch, $in, $out, $pid, $err) = @_;
-	if ($self->{$pid}) {
-		if (defined $err) { # "err_c"
-			my $fh = $self->{$err};
-			sysseek($fh, 0, 0) or $self->fail("sysseek failed: $!");
-			truncate($fh, 0) or $self->fail("truncate failed: $!");
-		}
+	if (defined $self->{$pid}) {
+		Carp::cluck("BUG: self->{$pid} exists unexpectedly");
 		return;
 	}
-
 	pipe(my ($out_r, $out_w)) or $self->fail("pipe failed: $!");
 	my $rdr = { 0 => $out_r, pgid => 0 };
 	my $gd = $self->{git_dir};
@@ -169,9 +165,8 @@ sub _bidi_pipe {
 			'cat-file', "--$batch");
 	if ($err) {
 		my $id = "git.$self->{git_dir}.$batch.err";
-		my $fh = tmpfile($id) or $self->fail("tmpfile($id): $!");
-		$self->{$err} = $fh;
-		$rdr->{2} = $fh;
+		$self->{$err} = $rdr->{2} = tmpfile($id, undef, 1) or
+						$self->fail("tmpfile($id): $!");
 	}
 	# see lib/PublicInbox/ProcessPipe.pm for why we don't use that here
 	my ($in_r, $p) = popen_rd(\@cmd, undef, $rdr);

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2023-09-29 10:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-29 10:41 [PATCH] git: fix unused code path for cat-file stderr reset Eric Wong

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 read-only IMAP folder(s) and NNTP newsgroup(s).