public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob f57e03364d6c5fa3c3dfc8775817502eeba62a10 1734 bytes (raw)
$ git show HEAD:lib/PublicInbox/GitAsyncCat.pm	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
 
# Copyright (C) all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
package PublicInbox::GitAsyncCat;
use v5.12;
use parent qw(Exporter);
our @EXPORT = qw(ibx_async_cat ibx_async_prefetch async_check);

our $GCF2C; # singleton PublicInbox::Gcf2Client

sub ibx_async_cat ($$$$) {
	my ($ibx, $oid, $cb, $arg) = @_;
	my $isrch = $ibx->{isrch};
	my $git = $isrch ? $isrch->{es}->git : ($ibx->{git} // $ibx->git);
	# {topdir} means ExtSearch (likely [extindex "all"]) with potentially
	# 100K alternates.  git v2.33+ can handle 100k alternates fairly well.
	if (!$isrch && !defined($ibx->{topdir}) && !defined($git->{-tmp}) &&
		($GCF2C //= eval {
		require PublicInbox::Gcf2Client;
		PublicInbox::Gcf2Client::new();
	} // 0)) { # 0: do not retry if libgit2 or Inline::C are missing
		$GCF2C->gcf2_async("$oid $git->{git_dir}\n", $cb, $arg);
		\undef;
	} else { # read-only end of git-cat-file pipe
		$git->cat_async($oid, $cb, $arg);
		$git->watch_async;
	}
}

sub async_check ($$$$) {
	my ($ibx, $oidish, $cb, $arg) = @_; # $ibx may be $ctx
	my $git = $ibx->{git} // $ibx->git;
	$git->check_async($oidish, $cb, $arg);
	($git->{ck} // $git)->watch_async;
}

# this is safe to call inside $cb, but not guaranteed to enqueue
# returns true if successful, undef if not.  For fairness, we only
# prefetch if there's no in-flight requests.
sub ibx_async_prefetch {
	my ($ibx, $oid, $cb, $arg) = @_;
	my $git = $ibx->git;
	if (!defined($ibx->{topdir}) && $GCF2C) {
		if (!@{$GCF2C->gcf_inflight // []}) {
			$oid .= " $git->{git_dir}\n";
			return $GCF2C->gcf2_async($oid, $cb, $arg); # true
		}
	} elsif ($git->{epwatch}) {
		return $git->async_prefetch($oid, $cb, $arg);
	}
	undef;
}

1;

git clone https://public-inbox.org/public-inbox.git
git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git