]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Git.pm
git: move async_cat reference to PublicInbox::Git
[public-inbox.git] / lib / PublicInbox / Git.pm
index 057135efd0dccbf7ac69f7059f46518e72e951d3..60236afe7bfa83e85dbbe0fd2d0e65b4fb0c0f4e 100644 (file)
@@ -16,9 +16,11 @@ use PublicInbox::Spawn qw(popen_rd);
 use PublicInbox::Tmpfile;
 use base qw(Exporter);
 our @EXPORT_OK = qw(git_unquote git_quote);
+use Errno qw(EINTR);
+our $PIPE_BUFSIZ = 65536; # Linux default
 
 use constant MAX_INFLIGHT =>
-       ($^O eq 'linux' ? 4096 : POSIX::_POSIX_PIPE_BUF())
+       (($^O eq 'linux' ? 4096 : POSIX::_POSIX_PIPE_BUF()) * 3)
        /
        65; # SHA-256 hex size + "\n" in preparation for git using non-SHA1
 
@@ -125,48 +127,78 @@ sub _bidi_pipe {
        $self->{$in} = $in_r;
 }
 
-sub read_cat_in_full ($$) {
-       my ($self, $len) = @_;
-       ++$len; # for final "\n" added by git
-       read($self->{in}, my $buf, $len) == $len or fail($self, 'short read');
-       chop($buf) eq "\n" or fail($self, 'newline missing after blob');
-       \$buf;
+sub my_read ($$$) {
+       my ($fh, $rbuf, $len) = @_;
+       my $left = $len - length($$rbuf);
+       my $r;
+       while ($left > 0) {
+               $r = sysread($fh, $$rbuf, $PIPE_BUFSIZ, length($$rbuf));
+               if ($r) {
+                       $left -= $r;
+               } else {
+                       next if (!defined($r) && $! == EINTR);
+                       return $r;
+               }
+       }
+       \substr($$rbuf, 0, $len, '');
 }
 
-sub _cat_async_step ($$) {
-       my ($self, $inflight) = @_;
-       my $pair = shift @$inflight or die 'BUG: inflight empty';
-       my ($cb, $arg) = @$pair;
-       local $/ = "\n";
-       my $head = readline($self->{in});
-       $head =~ / missing$/ and return
-               eval { $cb->(undef, undef, undef, undef, $arg) };
+sub my_readline ($$) {
+       my ($fh, $rbuf) = @_;
+       while (1) {
+               if ((my $n = index($$rbuf, "\n")) >= 0) {
+                       return substr($$rbuf, 0, $n + 1, '');
+               }
+               my $r = sysread($fh, $$rbuf, $PIPE_BUFSIZ, length($$rbuf));
+               next if $r || (!defined($r) && $! == EINTR);
+               return defined($r) ? '' : undef; # EOF or error
+       }
+}
 
-       $head =~ /^([0-9a-f]{40}) (\S+) ([0-9]+)$/ or
+sub cat_async_step ($$) {
+       my ($self, $inflight) = @_;
+       die 'BUG: inflight empty or odd' if scalar(@$inflight) < 3;
+       my ($req, $cb, $arg) = splice(@$inflight, 0, 3);
+       my $rbuf = delete($self->{cat_rbuf}) // \(my $new = '');
+       my ($bref, $oid, $type, $size);
+       my $head = my_readline($self->{in}, $rbuf);
+       if ($head =~ /^([0-9a-f]{40}) (\S+) ([0-9]+)$/) {
+               ($oid, $type, $size) = ($1, $2, $3 + 0);
+               $bref = my_read($self->{in}, $rbuf, $size + 1) or
+                       fail($self, defined($bref) ? 'read EOF' : "read: $!");
+               chop($$bref) eq "\n" or fail($self, 'LF missing after blob');
+       } elsif ($head =~ / missing$/) {
+               $type = 'missing';
+               $oid = $req;
+       } else {
                fail($self, "Unexpected result from async git cat-file: $head");
-       my ($oid_hex, $type, $size) = ($1, $2, $3 + 0);
-       my $bref = read_cat_in_full($self, $size);
-       eval { $cb->($bref, $oid_hex, $type, $size, $arg) };
+       }
+       eval { $cb->($bref, $oid, $type, $size, $arg) };
+       $self->{cat_rbuf} = $rbuf if $$rbuf ne '';
+       warn "E: $oid: $@\n" if $@;
 }
 
 sub cat_async_wait ($) {
        my ($self) = @_;
        my $inflight = delete $self->{inflight} or return;
        while (scalar(@$inflight)) {
-               _cat_async_step($self, $inflight);
+               cat_async_step($self, $inflight);
        }
 }
 
+sub batch_prepare ($) {
+       _bidi_pipe($_[0], qw(--batch in out pid));
+}
+
 sub cat_file {
-       my ($self, $obj, $ref) = @_;
-       my ($retried, $head);
+       my ($self, $obj, $sizeref) = @_;
+       my ($retried, $head, $rbuf);
        cat_async_wait($self);
 again:
        batch_prepare($self);
+       $rbuf = delete($self->{cat_rbuf}) // \(my $new = '');
        print { $self->{out} } $obj, "\n" or fail($self, "write error: $!");
-
-       local $/ = "\n";
-       $head = readline($self->{in});
+       $head = my_readline($self->{in}, $rbuf);
        if ($head =~ / missing$/) {
                if (!$retried && alternates_changed($self)) {
                        $retried = 1;
@@ -178,19 +210,21 @@ again:
        $head =~ /^[0-9a-f]{40} \S+ ([0-9]+)$/ or
                fail($self, "Unexpected result from git cat-file: $head");
 
-       my $size = $1;
-       $$ref = $size if $ref;
-       read_cat_in_full($self, $size);
+       my $size = $1 + 0;
+       $$sizeref = $size if $sizeref;
+       my $ret = my_read($self->{in}, $rbuf, $size + 1);
+       $self->{cat_rbuf} = $rbuf if $$rbuf ne '';
+       fail($self, defined($ret) ? 'read EOF' : "read: $!") if !$ret;
+       chop($$ret) eq "\n" or fail($self, 'newline missing after blob');
+       $ret;
 }
 
-sub batch_prepare ($) { _bidi_pipe($_[0], qw(--batch in out pid)) }
-
 sub check {
        my ($self, $obj) = @_;
        _bidi_pipe($self, qw(--batch-check in_c out_c pid_c err_c));
        print { $self->{out_c} } $obj, "\n" or fail($self, "write error: $!");
-       local $/ = "\n";
-       chomp(my $line = readline($self->{in_c}));
+       my $rbuf = ''; # TODO: async + {chk_rbuf}
+       chomp(my $line = my_readline($self->{in_c}, \$rbuf));
        my ($hex, $type, $size) = split(' ', $line);
 
        # Future versions of git.git may show 'ambiguous', but for now,
@@ -200,9 +234,8 @@ sub check {
        return if $type eq 'missing' || $type eq 'ambiguous';
 
        if ($hex eq 'dangling' || $hex eq 'notdir' || $hex eq 'loop') {
-               $size = $type + length("\n");
-               my $r = read($self->{in_c}, my $buf, $size);
-               defined($r) or fail($self, "read failed: $!");
+               my $ret = my_read($self->{in_c}, \$rbuf, $type + 1);
+               fail($self, defined($ret) ? 'read EOF' : "read: $!") if !$ret;
                return;
        }
 
@@ -210,9 +243,9 @@ sub check {
 }
 
 sub _destroy {
-       my ($self, $in, $out, $pid, $err) = @_;
+       my ($self, $rbuf, $in, $out, $pid, $err) = @_;
        my $p = delete $self->{$pid} or return;
-       delete @$self{($in, $out)};
+       delete @$self{($rbuf, $in, $out)};
        delete $self->{$err} if $err; # `err_c'
 
        # PublicInbox::DS may not be loaded
@@ -250,8 +283,12 @@ sub qx {
 # returns true if there are pending "git cat-file" processes
 sub cleanup {
        my ($self) = @_;
-       _destroy($self, qw(in out pid));
-       _destroy($self, qw(in_c out_c pid_c err_c));
+       if (my $ac = $self->{async_cat}) {
+               $ac->close; # PublicInbox::GitAsyncCat::close -> EPOLL_CTL_DEL
+       }
+       cat_async_wait($self);
+       _destroy($self, qw(cat_rbuf in out pid));
+       _destroy($self, qw(chk_rbuf in_c out_c pid_c err_c));
        !!($self->{pid} || $self->{pid_c});
 }
 
@@ -307,13 +344,13 @@ sub cat_async_begin {
 
 sub cat_async ($$$;$) {
        my ($self, $oid, $cb, $arg) = @_;
-       my $inflight = $self->{inflight} or die 'BUG: not in async';
+       my $inflight = $self->{inflight} // cat_async_begin($self);
        if (scalar(@$inflight) >= MAX_INFLIGHT) {
-               _cat_async_step($self, $inflight);
+               cat_async_step($self, $inflight);
        }
 
        print { $self->{out} } $oid, "\n" or fail($self, "write error: $!");
-       push(@$inflight, [ $cb, $arg ]);
+       push(@$inflight, $oid, $cb, $arg);
 }
 
 sub extract_cmt_time {
@@ -331,7 +368,6 @@ sub modified ($) {
        my ($self) = @_;
        my $modified = 0;
        my $fh = popen($self, qw(rev-parse --branches));
-       cat_async_begin($self);
        local $/ = "\n";
        while (my $oid = <$fh>) {
                chomp $oid;