user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
blob 2915fd6e2dad251c40cd77c2d0bce1b622750ece 1526 bytes (raw)
name: lib/PublicInbox/DirIdle.pm 	 # note: path name is non-authoritative(*)

 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
 
# Copyright (C) 2020 all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>

# Used by public-inbox-watch for Maildir (and possibly MH in the future)
package PublicInbox::DirIdle;
use strict;
use parent 'PublicInbox::DS';
use PublicInbox::Syscall qw(EPOLLIN EPOLLET);
use PublicInbox::In2Tie;

my ($MAIL_IN, $ino_cls);
if ($^O eq 'linux' && eval { require Linux::Inotify2; 1 }) {
	$MAIL_IN = Linux::Inotify2::IN_MOVED_TO() |
		Linux::Inotify2::IN_CREATE();
	$ino_cls = 'Linux::Inotify2';
} elsif (eval { require PublicInbox::KQNotify }) {
	$MAIL_IN = PublicInbox::KQNotify::MOVED_TO_OR_CREATE();
	$ino_cls = 'PublicInbox::KQNotify';
} else {
	require PublicInbox::FakeInotify;
	$MAIL_IN = PublicInbox::FakeInotify::MOVED_TO_OR_CREATE();
}

sub new {
	my ($class, $dirs, $cb) = @_;
	my $self = bless { cb => $cb }, $class;
	my $inot;
	if ($ino_cls) {
		$inot = $ino_cls->new or die "E: $ino_cls->new: $!";
		my $io = PublicInbox::In2Tie::io($inot);
		$self->SUPER::new($io, EPOLLIN | EPOLLET);
	} else {
		require PublicInbox::FakeInotify;
		$inot = PublicInbox::FakeInotify->new; # starts timer
	}

	# Linux::Inotify2->watch or similar
	$inot->watch($_, $MAIL_IN) for @$dirs;
	$self->{inot} = $inot;
	PublicInbox::FakeInotify::poll_once($self) if !$ino_cls;
	$self;
}

sub event_step {
	my ($self) = @_;
	my $cb = $self->{cb};
	eval {
		my @events = $self->{inot}->read; # Linux::Inotify2::poll
		$cb->($_) for @events;
	};
	warn "$self->{inot}->read err: $@\n" if $@;
}

1;

debug log:

solving 2915fd6e ...
found 2915fd6e in https://public-inbox.org/meta/20200702033256.15643-1-e@yhbt.net/
found fbbc9531a20 in https://80x24.org/public-inbox.git
preparing index
index prepared:
100644 fbbc9531a20a4971c23090ed306f4d34681bd2bb	lib/PublicInbox/DirIdle.pm

applying [1/1] https://public-inbox.org/meta/20200702033256.15643-1-e@yhbt.net/
diff --git a/lib/PublicInbox/DirIdle.pm b/lib/PublicInbox/DirIdle.pm
index fbbc9531a20..2915fd6e2da 100644

Checking patch lib/PublicInbox/DirIdle.pm...
Applied patch lib/PublicInbox/DirIdle.pm cleanly.

index at:
100644 2915fd6e2dad251c40cd77c2d0bce1b622750ece	lib/PublicInbox/DirIdle.pm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).