]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/DirIdle.pm
dir_idle: do not add watches in ->new
[public-inbox.git] / lib / PublicInbox / DirIdle.pm
1 # Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # Used by public-inbox-watch for Maildir (and possibly MH in the future)
5 package PublicInbox::DirIdle;
6 use strict;
7 use parent 'PublicInbox::DS';
8 use PublicInbox::Syscall qw(EPOLLIN);
9 use PublicInbox::In2Tie;
10
11 my ($MAIL_IN, $MAIL_GONE, $ino_cls);
12 if ($^O eq 'linux' && eval { require Linux::Inotify2; 1 }) {
13         $MAIL_IN = Linux::Inotify2::IN_MOVED_TO() |
14                 Linux::Inotify2::IN_CREATE();
15         $MAIL_GONE = Linux::Inotify2::IN_DELETE() |
16                         Linux::Inotify2::IN_DELETE_SELF() |
17                         Linux::Inotify2::IN_MOVE_SELF();
18         $ino_cls = 'Linux::Inotify2';
19 # Perl 5.22+ is needed for fileno(DIRHANDLE) support:
20 } elsif ($^V ge v5.22 && eval { require PublicInbox::KQNotify }) {
21         $MAIL_IN = PublicInbox::KQNotify::MOVED_TO_OR_CREATE();
22         $MAIL_GONE = PublicInbox::KQNotify::NOTE_DELETE() |
23                 PublicInbox::KQNotify::NOTE_REVOKE() |
24                 PublicInbox::KQNotify::NOTE_RENAME();
25         $ino_cls = 'PublicInbox::KQNotify';
26 } else {
27         require PublicInbox::FakeInotify;
28         $MAIL_IN = PublicInbox::FakeInotify::MOVED_TO_OR_CREATE();
29         $MAIL_GONE = PublicInbox::FakeInotify::IN_DELETE() |
30                         PublicInbox::FakeInotify::IN_DELETE_SELF() |
31                         PublicInbox::FakeInotify::IN_MOVE_SELF();
32 }
33
34 sub new {
35         my ($class, $cb) = @_;
36         my $self = bless { cb => $cb }, $class;
37         my $inot;
38         if ($ino_cls) {
39                 $inot = $ino_cls->new or die "E: $ino_cls->new: $!";
40                 my $io = PublicInbox::In2Tie::io($inot);
41                 $self->SUPER::new($io, EPOLLIN);
42         } else {
43                 require PublicInbox::FakeInotify;
44                 $inot = PublicInbox::FakeInotify->new; # starts timer
45         }
46         $self->{inot} = $inot;
47         $self;
48 }
49
50 sub add_watches {
51         my ($self, $dirs, $gone) = @_;
52         my $fl = $MAIL_IN | ($gone ? $MAIL_GONE : 0);
53         my @ret;
54         for my $d (@$dirs) {
55                 my $w = $self->{inot}->watch($d, $fl) or next;
56                 push @ret, $w;
57         }
58         PublicInbox::FakeInotify::poll_once($self) if !$ino_cls;
59         @ret
60 }
61
62 sub rm_watches {
63         my ($self, $dir) = @_;
64         my $inot = $self->{inot};
65         if (my $cb = $inot->can('rm_watches')) { # TODO for fake watchers
66                 $cb->($inot, $dir);
67         }
68 }
69
70 sub event_step {
71         my ($self) = @_;
72         my $cb = $self->{cb};
73         local $PublicInbox::DS::in_loop = 0; # waitpid() synchronously
74         eval {
75                 my @events = $self->{inot}->read; # Linux::Inotify2->read
76                 $cb->($_) for @events;
77         };
78         warn "$self->{inot}->read err: $@\n" if $@;
79 }
80
81 sub force_close {
82         my ($self) = @_;
83         my $inot = delete $self->{inot} // return;
84         if ($inot->can('fh')) { # Linux::Inotify2 2.3+
85                 close($inot->fh) or warn "CLOSE ERROR: $!";
86         } elsif ($inot->isa('Linux::Inotify2')) {
87                 require PublicInbox::LI2Wrap;
88                 PublicInbox::LI2Wrap::wrapclose($inot);
89         }
90 }
91
92 1;