public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob 5ea675bfc0eb6f2c8e51f50e1171c1b55395c17f 977 bytes (raw)
$ git show HEAD:lib/PublicInbox/CidxLogP.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
 
# Copyright (C) all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
#
# Waits for initial `git log -p' output for PublicInbox::CodeSearchIdx.
# The initial output from `git log -p' can take a while to generate,
# CodeSearchIdx can process prune work while it's happening.  Once
# `git log -p' starts generating output, it should be able to keep
# up with Xapian indexing, so we still rely on blocking reads to simplify
# cidx_read_log_p
package PublicInbox::CidxLogP;
use v5.12;
use parent qw(PublicInbox::DS);
use PublicInbox::Syscall qw(EPOLLIN EPOLLONESHOT);

sub new {
	my ($cls, $rd, $cidx, $git, $roots) = @_;
	my $self = bless { cidx => $cidx, git => $git, roots => $roots }, $cls;
	$self->SUPER::new($rd, EPOLLIN|EPOLLONESHOT);
}

sub event_step {
	my ($self) = @_;
	my $rd = $self->{sock} // return warn('BUG?: no {sock}');
	$self->close; # EPOLL_CTL_DEL
	delete($self->{cidx})->cidx_read_log_p($self, $rd);
}

1;

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