public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob 9bcd42edd1d104b6fbd4fbfb61411a118b5acd78 1795 bytes (raw)
$ git show HEAD:script/public-inbox-watch	# shows this blob on the CLI

 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
55
56
57
58
59
60
61
62
 
#!/usr/bin/perl -w
# Copyright (C) all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
my $help = <<EOF;
usage: public-inbox-watch

See public-inbox-watch(1) man page for full documentation.
EOF

use strict;
use Getopt::Long qw(:config gnu_getopt no_ignore_case auto_abbrev);
use IO::Handle; # ->autoflush
use PublicInbox::Watch;
use PublicInbox::Import;
local $PublicInbox::Import::DROP_UNIQUE_UNSUB;
use PublicInbox::Config;
use PublicInbox::DS;
my $do_scan = 1;
GetOptions('scan!' => \$do_scan, # undocumented, testing only
	'help|h' => \(my $show_help)) or do { print STDERR $help; exit 1 };
if ($show_help) { print $help; exit 0 };
PublicInbox::DS::block_signals();
STDOUT->autoflush(1);
STDERR->autoflush(1);
local $0 = $0; # local since this script may be eval-ed
my $watch = PublicInbox::Watch->new(PublicInbox::Config->new);
my $reload = sub {
	my $prev = $watch or return; # SIGQUIT issued
	$watch->quit;
	$watch = PublicInbox::Watch->new(PublicInbox::Config->new);
	if ($watch) {
		$watch->{sig} = $prev->{sig}; # prevent redundant signalfd
		warn "# reloaded\n";
	} else {
		warn("E: reloading failed\n");
		$watch = $prev;
	}
};

if ($watch) {
	my $scan = sub {
		return if !$watch;
		warn "# scanning\n";
		$watch->trigger_scan('full');
	};
	my $quit = sub { # may be called in IMAP/NNTP children
		$watch->quit if $watch;
		$watch = undef;
		$0 .= ' quitting';
	};
	my $sig = {
		HUP => $reload,
		USR1 => $scan,
		CHLD => \&PublicInbox::DS::enqueue_reap,
	};
	$sig->{QUIT} = $sig->{TERM} = $sig->{INT} = $quit;
	local @SIG{keys %$sig} = values(%$sig); # for non-signalfd/kqueue

	# --no-scan is only intended for testing atm, undocumented.
	PublicInbox::DS::requeue($scan) if $do_scan;
	$watch->watch($sig) while ($watch);
}

git clone https://public-inbox.org/public-inbox.git
git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git