]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/InboxIdle.pm
508007d7efe1bf743a561980c38b85ba628b2020
[public-inbox.git] / lib / PublicInbox / InboxIdle.pm
1 # Copyright (C) 2020 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # fields:
5 # inot: Linux::Inotify2-like object
6 # pathmap => { inboxdir => [ ibx, watch1, watch2, watch3... ] } mapping
7 package PublicInbox::InboxIdle;
8 use strict;
9 use parent qw(PublicInbox::DS);
10 use PublicInbox::Syscall qw(EPOLLIN EPOLLET);
11 my $IN_MODIFY = 0x02; # match Linux inotify
12 my $ino_cls;
13 if ($^O eq 'linux' && eval { require Linux::Inotify2; 1 }) {
14         $IN_MODIFY = Linux::Inotify2::IN_MODIFY();
15         $ino_cls = 'Linux::Inotify2';
16 } elsif (eval { require PublicInbox::KQNotify }) {
17         $IN_MODIFY = PublicInbox::KQNotify::NOTE_WRITE();
18         $ino_cls = 'PublicInbox::KQNotify';
19 }
20 require PublicInbox::In2Tie if $ino_cls;
21
22 sub in2_arm ($$) { # PublicInbox::Config::each_inbox callback
23         my ($ibx, $self) = @_;
24         my $dir = $ibx->{inboxdir};
25         my $inot = $self->{inot};
26         my $cur = $self->{pathmap}->{$dir} //= [];
27         my $lock = "$dir/".($ibx->version >= 2 ? 'inbox.lock' : 'ssoma.lock');
28
29         # transfer old subscriptions to the current inbox, cancel the old watch
30         my $old_ibx = $cur->[0];
31         $cur->[0] = $ibx;
32         if ($old_ibx) {
33                 $ibx->{unlock_subs} and
34                         die "BUG: $dir->{unlock_subs} should not exist";
35                 $ibx->{unlock_subs} = $old_ibx->{unlock_subs};
36
37                 # Linux::Inotify2::Watch::name matches if watches are the
38                 # same, no point in replacing a watch of the same name
39                 if ($cur->[1]->name eq $lock) {
40                         $self->{on_unlock}->{$lock} = $ibx;
41                         return;
42                 }
43                 # rare, name changed (v1 inbox converted to v2)
44                 $cur->[1]->cancel; # Linux::Inotify2::Watch::cancel
45         }
46
47         if (my $w = $cur->[1] = $inot->watch($lock, $IN_MODIFY)) {
48                 $self->{on_unlock}->{$w->name} = $ibx;
49         } else {
50                 warn "E: ".ref($inot)."->watch($lock, IN_MODIFY) failed: $!\n";
51                 if ($!{ENOSPC} && $^O eq 'linux') {
52                         warn <<"";
53 I: consider increasing /proc/sys/fs/inotify/max_user_watches
54
55                 }
56         }
57
58         # TODO: detect deleted packs (and possibly other files)
59 }
60
61 sub refresh {
62         my ($self, $pi_cfg) = @_;
63         $pi_cfg->each_inbox(\&in2_arm, $self);
64 }
65
66 sub new {
67         my ($class, $pi_cfg) = @_;
68         my $self = bless {}, $class;
69         my $inot;
70         if ($ino_cls) {
71                 $inot = $ino_cls->new or die "E: $ino_cls->new: $!";
72                 my $io = PublicInbox::In2Tie::io($inot);
73                 $self->SUPER::new($io, EPOLLIN | EPOLLET);
74         } else {
75                 require PublicInbox::FakeInotify;
76                 $inot = PublicInbox::FakeInotify->new;
77         }
78         $self->{inot} = $inot;
79         $self->{pathmap} = {}; # inboxdir => [ ibx, watch1, watch2, watch3...]
80         $self->{on_unlock} = {}; # lock path => ibx
81         refresh($self, $pi_cfg);
82         PublicInbox::FakeInotify::poll_once($self) if !$ino_cls;
83         $self;
84 }
85
86 sub event_step {
87         my ($self) = @_;
88         eval {
89                 my @events = $self->{inot}->read; # Linux::Inotify2::read
90                 my $on_unlock = $self->{on_unlock};
91                 for my $ev (@events) {
92                         if (my $ibx = $on_unlock->{$ev->fullname}) {
93                                 $ibx->on_unlock;
94                         }
95                 }
96         };
97         warn "{inot}->read err: $@\n" if $@;
98 }
99
100 # for graceful shutdown in PublicInbox::Daemon,
101 # just ensure the FD gets closed ASAP and subscribers
102 sub busy { 0 }
103
104 1;