]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/LeiImport.pm
lei: share common *done_wait callbacks
[public-inbox.git] / lib / PublicInbox / LeiImport.pm
1 # Copyright (C) 2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # front-end for the "lei import" sub-command
5 package PublicInbox::LeiImport;
6 use strict;
7 use v5.10.1;
8 use parent qw(PublicInbox::IPC PublicInbox::LeiInput);
9
10 # /^input_/ subs are used by (or override) PublicInbox::LeiInput superclass
11
12 sub input_eml_cb { # used by PublicInbox::LeiInput::input_fh
13         my ($self, $eml, $vmd) = @_;
14         my $xoids = $self->{lei}->{ale}->xoids_for($eml);
15         $self->{lei}->{sto}->ipc_do('set_eml', $eml, $vmd, $xoids);
16 }
17
18 sub input_mbox_cb { # MboxReader callback
19         my ($eml, $self) = @_;
20         my $vmd;
21         if ($self->{-import_kw}) {
22                 my $kw = PublicInbox::MboxReader::mbox_keywords($eml);
23                 $vmd = { kw => $kw } if scalar(@$kw);
24         }
25         input_eml_cb($self, $eml, $vmd);
26 }
27
28 sub input_maildir_cb { # maildir_each_eml cb
29         my ($f, $kw, $eml, $self) = @_;
30         input_eml_cb($self, $eml, $self->{-import_kw} ? { kw => $kw } : undef);
31 }
32
33 sub input_net_cb { # imap_each, nntp_each cb
34         my ($url, $uid, $kw, $eml, $self) = @_;
35         input_eml_cb($self, $eml, $self->{-import_kw} ? { kw => $kw } : undef);
36 }
37
38 sub import_done { # EOF callback for main daemon
39         my ($lei) = @_;
40         my $imp = delete $lei->{imp} // return $lei->fail('BUG: {imp} gone');
41         $imp->wq_wait_old($lei->can('wq_done_wait'), $lei, 'non-fatal');
42 }
43
44 sub net_merge_complete { # callback used by LeiAuth
45         my ($self) = @_;
46         $self->wq_io_do('process_inputs');
47         $self->wq_close(1);
48 }
49
50 sub lei_import { # the main "lei import" method
51         my ($lei, @inputs) = @_;
52         my $sto = $lei->_lei_store(1);
53         $sto->write_prepare($lei);
54         my $self = bless {}, __PACKAGE__;
55         $self->{-import_kw} = $lei->{opt}->{kw} // 1;
56         $self->prepare_inputs($lei, \@inputs) or return;
57         $lei->ale; # initialize for workers to read
58         my $j = $lei->{opt}->{jobs} // scalar(@{$self->{inputs}}) || 1;
59         if (my $net = $lei->{net}) {
60                 # $j = $net->net_concurrency($j); TODO
61         } else {
62                 my $nproc = $self->detect_nproc;
63                 $j = $nproc if $j > $nproc;
64         }
65         my $ops = { '' => [ \&import_done, $lei ] };
66         $lei->{auth}->op_merge($ops, $self) if $lei->{auth};
67         $self->{-wq_nr_workers} = $j // 1; # locked
68         (my $op_c, $ops) = $lei->workers_start($self, 'lei_import', $j, $ops);
69         $lei->{imp} = $self;
70         net_merge_complete($self) unless $lei->{auth};
71         $op_c->op_wait_event($ops);
72 }
73
74 no warnings 'once';
75 *ipc_atfork_child = \&PublicInbox::LeiInput::input_only_atfork_child;
76
77 # the following works even when LeiAuth is lazy-loaded
78 *net_merge_all = \&PublicInbox::LeiAuth::net_merge_all;
79 1;