about summary refs log tree commit homepage
path: root/lib/PublicInbox/Git.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-10-17 08:04:24 +0000
committerEric Wong <e@80x24.org>2020-10-17 19:52:50 +0000
commit2686f6e69245aa32f9c2a286475ed91db776b065 (patch)
tree5cdf184c4d738d18ddfbcf5c1042f52001b83742 /lib/PublicInbox/Git.pm
parentc51b6340a05cf11f7b0b3bb978288ade2f930c4a (diff)
downloadpublic-inbox-2686f6e69245aa32f9c2a286475ed91db776b065.tar.gz
->cat_async and ->check_async may trigger each other (in future
callers) while waiting, so we need a unified method to ensure
both complete.  This doesn't affect current code, but allows us
to slightly simplify existing callers.
Diffstat (limited to 'lib/PublicInbox/Git.pm')
-rw-r--r--lib/PublicInbox/Git.pm14
1 files changed, 12 insertions, 2 deletions
diff --git a/lib/PublicInbox/Git.pm b/lib/PublicInbox/Git.pm
index e3a2bcb8..86343ac9 100644
--- a/lib/PublicInbox/Git.pm
+++ b/lib/PublicInbox/Git.pm
@@ -352,13 +352,23 @@ sub qx {
         <$fh>
 }
 
+# check_async and cat_async may trigger the other, so ensure they're
+# both completely done by using this:
+sub async_wait_all ($) {
+        my ($self) = @_;
+        while (scalar(@{$self->{inflight_c} // []}) ||
+                        scalar(@{$self->{inflight} // []})) {
+                $self->check_async_wait;
+                $self->cat_async_wait;
+        }
+}
+
 # returns true if there are pending "git cat-file" processes
 sub cleanup {
         my ($self) = @_;
         local $in_cleanup = 1;
         delete $self->{async_cat};
-        check_async_wait($self);
-        cat_async_wait($self);
+        async_wait_all($self);
         delete $self->{inflight};
         delete $self->{inflight_c};
         _destroy($self, qw(cat_rbuf in out pid));