]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/WatchMaildir.pm
watch: don't burn CPU on IDLE failures
[public-inbox.git] / lib / PublicInbox / WatchMaildir.pm
index b89462de679e31158f03d79921057ef0cc1fbc8b..7547f6e4761f20008486d2642fd458a186917885 100644 (file)
@@ -12,6 +12,8 @@ use PublicInbox::Filter::Base qw(REJECT);
 use PublicInbox::Spamcheck;
 use PublicInbox::Sigfd;
 use PublicInbox::DS qw(now);
+use PublicInbox::MID qw(mids);
+use PublicInbox::ContentHash qw(content_hash);
 use POSIX qw(_exit);
 *mime_from_path = \&PublicInbox::InboxWritable::mime_from_path;
 
@@ -121,9 +123,9 @@ sub new {
 
 sub _done_for_now {
        my ($self) = @_;
-       my $importers = $self->{importers};
-       foreach my $im (values %$importers) {
-               $im->done;
+       local $PublicInbox::DS::in_loop = 0; # waitpid() synchronously
+       for (values %{$self->{importers}}) {
+               $_->done if $_; # $_ may be undef during cleanup
        }
 }
 
@@ -186,33 +188,41 @@ sub _try_path {
                warn "unmappable dir: $1\n";
                return;
        }
-       if (!ref($inboxes) && $inboxes eq 'watchspam') {
-               return _remove_spam($self, $path);
-       }
-
        my $warn_cb = $SIG{__WARN__} || sub { print STDERR @_ };
        local $SIG{__WARN__} = sub {
                $warn_cb->("path: $path\n");
                $warn_cb->(@_);
        };
+       if (!ref($inboxes) && $inboxes eq 'watchspam') {
+               return _remove_spam($self, $path);
+       }
        foreach my $ibx (@$inboxes) {
                my $eml = mime_from_path($path) or next;
                import_eml($self, $ibx, $eml);
        }
 }
 
+sub quit_done ($) {
+       my ($self) = @_;
+       return unless $self->{quit};
+
+       # don't have reliable wakeups, keep signalling
+       my $done = 1;
+       for (qw(idle_pids poll_pids)) {
+               my $pids = $self->{$_} or next;
+               for (keys %$pids) {
+                       $done = undef if kill('QUIT', $_);
+               }
+       }
+       $done;
+}
+
 sub quit {
        my ($self) = @_;
        $self->{quit} = 1;
        %{$self->{opendirs}} = ();
        _done_for_now($self);
-       if (my $imap_pid = $self->{-imap_pid}) {
-               kill('QUIT', $imap_pid);
-       }
-       for (qw(idle_pids poll_pids)) {
-               my $pids = $self->{$_} or next;
-               kill('QUIT', $_) for (keys %$pids);
-       }
+       quit_done($self);
        if (my $idle_mic = $self->{idle_mic}) {
                eval { $idle_mic->done };
                if ($@) {
@@ -317,11 +327,12 @@ sub mic_for ($$$) { # mic = Mail::IMAPClient
                password => $uri->password,
        }, 'PublicInbox::GitCredential';
        my $common = $mic_args->{uri_section($uri)} // {};
+       # IMAPClient and Net::Netrc both mishandles `0', so we pass `127.0.0.1'
        my $host = $cred->{host};
+       $host = '127.0.0.1' if $host eq '0';
        my $mic_arg = {
                Port => $uri->port,
-               # IMAPClient mishandles `0', so we pass `127.0.0.1'
-               Server => $host eq '0' ? '127.0.0.1' : $host,
+               Server => $host,
                Ssl => $uri->scheme eq 'imaps',
                Keepalive => 1, # SO_KEEPALIVE
                %$common, # may set Starttls, Compress, Debug ....
@@ -343,6 +354,7 @@ sub mic_for ($$$) { # mic = Mail::IMAPClient
                $cred = undef;
        }
        if ($cred) {
+               $cred->check_netrc unless defined $cred->{password};
                $cred->fill; # may prompt user here
                $mic->User($mic_arg->{User} = $cred->{username});
                $mic->Password($mic_arg->{Password} = $cred->{password});
@@ -485,7 +497,8 @@ sub imap_idle_once ($$$$) {
        }
        $self->{idle_mic} = $mic; # for ->quit
        my @res;
-       until ($self->{quit} || grep(/^\* [0-9]+ EXISTS/, @res) || $i <= 0) {
+       until ($self->{quit} || !$mic->IsConnected ||
+                       grep(/^\* [0-9]+ EXISTS/, @res) || $i <= 0) {
                @res = $mic->idle_data($i);
                $i = $end - now();
        }
@@ -507,10 +520,14 @@ sub watch_imap_idle_1 ($$$) {
        my $mic;
        local $0 = $uri->mailbox." $sec";
        until ($self->{quit}) {
-               $mic //= delete($self->{mics}->{$sec}) //
-                               PublicInbox::IMAPClient->new(%$mic_arg);
-               my $err = imap_fetch_all($self, $mic, $url);
-               $err //= imap_idle_once($self, $mic, $intvl, $url);
+               $mic //= PublicInbox::IMAPClient->new(%$mic_arg);
+               my $err;
+               if ($mic && $mic->IsConnected) {
+                       $err = imap_fetch_all($self, $mic, $url);
+                       $err //= imap_idle_once($self, $mic, $intvl, $url);
+               } else {
+                       $err = "not connected: $!";
+               }
                if ($err && !$self->{quit}) {
                        warn $err, "\n";
                        $mic = undef;
@@ -525,14 +542,20 @@ sub watch_atfork_child ($) {
        delete $self->{poll_pids};
        delete $self->{opendirs};
        PublicInbox::DS->Reset;
+       %SIG = (%SIG, %{$self->{sig}}, CHLD => 'DEFAULT');
        PublicInbox::Sigfd::sig_setmask($self->{oldset});
-       %SIG = (%SIG, %{$self->{sig}});
 }
 
 sub watch_atfork_parent ($) {
        my ($self) = @_;
        _done_for_now($self);
-       $self->{mics} = {}; # going to be forking, so disconnect
+}
+
+sub imap_idle_requeue ($) { # DS::add_timer callback
+       my ($self, $url_intvl) = @{$_[0]};
+       return if $self->{quit};
+       push @{$self->{idle_todo}}, $url_intvl;
+       event_step($self);
 }
 
 sub imap_idle_reap { # PublicInbox::DS::dwaitpid callback
@@ -543,8 +566,8 @@ sub imap_idle_reap { # PublicInbox::DS::dwaitpid callback
        my ($url, $intvl) = @$url_intvl;
        return if $self->{quit};
        warn "W: PID=$pid on $url died: \$?=$?\n" if $?;
-       push @{$self->{idle_todo}}, $url_intvl;
-       PubicInbox::DS::requeue($self); # call ->event_step to respawn
+       PublicInbox::DS::add_timer(60,
+                               \&imap_idle_requeue, [ $self, $url_intvl ]);
 }
 
 sub imap_idle_fork ($$) {
@@ -650,8 +673,8 @@ sub poll_fetch_reap { # PublicInbox::DS::dwaitpid callback
                                        [$self, $intvl, $urls]);
 }
 
-sub watch_imap_init ($) {
-       my ($self) = @_;
+sub watch_imap_init ($$) {
+       my ($self, $poll) = @_;
        eval { require PublicInbox::IMAPClient } or
                die "Mail::IMAPClient is required for IMAP:\n$@\n";
        eval { require PublicInbox::IMAPTracker } or
@@ -661,14 +684,13 @@ sub watch_imap_init ($) {
 
        # make sure we can connect and cache the credentials in memory
        $self->{mic_arg} = {}; # schema://authority => IMAPClient->new args
-       my $mics = $self->{mics} = {}; # schema://authority => IMAPClient obj
+       my $mics = {}; # schema://authority => IMAPClient obj
        for my $url (sort keys %{$self->{imap}}) {
                my $uri = PublicInbox::URIimap->new($url);
                $mics->{uri_section($uri)} //= mic_for($self, $url, $mic_args);
        }
 
        my $idle = []; # [ [ url1, intvl1 ], [url2, intvl2] ]
-       my $poll = {}; # intvl_seconds => [ url1, url2 ]
        for my $url (keys %{$self->{imap}}) {
                my $uri = PublicInbox::URIimap->new($url);
                my $sec = uri_section($uri);
@@ -682,18 +704,9 @@ sub watch_imap_init ($) {
                }
        }
        if (scalar @$idle) {
-               $self->{idle_pids} = {};
                $self->{idle_todo} = $idle;
                PublicInbox::DS::requeue($self); # ->event_step to fork
        }
-       return unless scalar keys %$poll;
-       $self->{poll_pids} //= {};
-
-       # poll all URLs for a given interval sequentially
-       while (my ($intvl, $urls) = each %$poll) {
-               PublicInbox::DS::add_timer(0, \&poll_fetch_fork,
-                                               [$self, $intvl, $urls]);
-       }
 }
 
 # flesh out common NNTP-specific data structures
@@ -768,6 +781,9 @@ sub nn_for ($$$) { # nn = Net::NNTP
        my $uri = uri_new($url);
        my $sec = uri_section($uri);
        my $nntp_opt = $self->{nntp_opt}->{$sec} //= {};
+       my $host = $uri->host;
+       # Net::NNTP and Net::Netrc both mishandle `0', so we pass `127.0.0.1'
+       $host = '127.0.0.1' if $host eq '0';
        my $cred;
        my ($u, $p);
        if (defined(my $ui = $uri->userinfo)) {
@@ -775,16 +791,16 @@ sub nn_for ($$$) { # nn = Net::NNTP
                $cred = bless {
                        url => $sec,
                        protocol => uri_scheme($uri),
-                       host => $uri->host,
+                       host => $host,
                }, 'PublicInbox::GitCredential';
                ($u, $p) = split(/:/, $ui, 2);
                ($cred->{username}, $cred->{password}) = ($u, $p);
+               $cred->check_netrc unless defined $p;
        }
        my $common = $nn_args->{$sec} // {};
        my $nn_arg = {
                Port => $uri->port,
-               # Net::NNTP mishandles `0', so we pass `127.0.0.1'
-               Host => $uri->host eq '0' ? '127.0.0.1' : $uri->host,
+               Host => $host,
                SSL => $uri->secure, # snews == nntps
                %$common, # may Debug ....
        };
@@ -892,8 +908,8 @@ sub nntp_fetch_all ($$$) {
        $err;
 }
 
-sub watch_nntp_init ($) {
-       my ($self) = @_;
+sub watch_nntp_init ($$) {
+       my ($self, $poll) = @_;
        eval { require Net::NNTP } or
                die "Net::NNTP is required for NNTP:\n$@\n";
        eval { require PublicInbox::IMAPTracker } or
@@ -906,31 +922,29 @@ sub watch_nntp_init ($) {
        for my $url (sort keys %{$self->{nntp}}) {
                nn_for($self, $url, $nn_args);
        }
-       my $poll = {}; # intvl_seconds => [ url1, url2 ]
        for my $url (keys %{$self->{nntp}}) {
                my $uri = uri_new($url);
                my $sec = uri_section($uri);
                my $intvl = $self->{nntp_opt}->{$sec}->{pollInterval};
                push @{$poll->{$intvl || 120}}, $url;
        }
-       $self->{poll_pids} //= {};
-
-       # poll all URLs for a given interval sequentially
-       while (my ($intvl, $urls) = each %$poll) {
-               PublicInbox::DS::add_timer(0, \&poll_fetch_fork,
-                                               [$self, $intvl, $urls]);
-       }
 }
 
 sub watch {
        my ($self, $sig, $oldset) = @_;
        $self->{oldset} = $oldset;
        $self->{sig} = $sig;
-       watch_imap_init($self) if $self->{imap};
-       watch_nntp_init($self) if $self->{nntp};
+       my $poll = {}; # intvl_seconds => [ url1, url2 ]
+       watch_imap_init($self, $poll) if $self->{imap};
+       watch_nntp_init($self, $poll) if $self->{nntp};
+       while (my ($intvl, $urls) = each %$poll) {
+               # poll all URLs for a given interval sequentially
+               PublicInbox::DS::add_timer(0, \&poll_fetch_fork,
+                                               [$self, $intvl, $urls]);
+       }
        watch_fs_init($self) if $self->{mdre};
-       PublicInbox::DS->SetPostLoopCallback(sub {});
-       PublicInbox::DS->EventLoop until $self->{quit};
+       PublicInbox::DS->SetPostLoopCallback(sub { !$self->quit_done });
+       PublicInbox::DS->EventLoop;
        _done_for_now($self);
 }
 
@@ -944,6 +958,7 @@ sub fs_scan_step {
        my ($self) = @_;
        return if $self->{quit};
        my $op = shift @{$self->{ops}};
+       local $PublicInbox::DS::in_loop = 0; # waitpid() synchronously
 
        # continue existing scan
        my $max = 10;
@@ -997,10 +1012,27 @@ sub _importer_for {
        $importers->{"$ibx"} = $im;
 }
 
+# XXX consider sharing with V2Writable, this only requires read-only access
+sub content_exists ($$) {
+       my ($ibx, $eml) = @_;
+       my $over = $ibx->over or return;
+       my $mids = mids($eml);
+       my $chash = content_hash($eml);
+       my ($id, $prev);
+       for my $mid (@$mids) {
+               while (my $smsg = $over->next_by_mid($mid, \$id, \$prev)) {
+                       my $cmp = $ibx->smsg_eml($smsg) or return;
+                       return 1 if $chash eq content_hash($cmp);
+               }
+       }
+       undef;
+}
+
 sub _spamcheck_cb {
        my ($sc) = @_;
        sub {
-               my ($mime) = @_;
+               my ($mime, $ibx) = @_;
+               return if content_exists($ibx, $mime);
                my $tmp = '';
                if ($sc->spamcheck($mime, \$tmp)) {
                        return PublicInbox::Eml->new(\$tmp);