]> Sergey Matveev's repositories - public-inbox.git/commitdiff
lei: fix error reporting from lei/store -> lei-daemon
authorEric Wong <e@80x24.org>
Tue, 31 Aug 2021 11:21:25 +0000 (11:21 +0000)
committerEric Wong <e@80x24.org>
Tue, 31 Aug 2021 11:29:13 +0000 (11:29 +0000)
We must set autoflush to ensure timely notification of clients;
and lei-daemon must not block when waiting on reads in case of
spurious wakeups.

Finally, if no clients are connected to lei-daemon, write to
syslog to ensure the error is visible.

lib/PublicInbox/LeiStore.pm
lib/PublicInbox/LeiStoreErr.pm

index 5a48c064dc05e03651275e28165b3092d810ddd5..0652137e8f06d5ffc0272ae8d356486d60bb6021 100644 (file)
@@ -28,6 +28,7 @@ use PublicInbox::Spawn qw(spawn);
 use List::Util qw(max);
 use File::Temp ();
 use POSIX ();
+use IO::Handle (); # ->autoflush
 
 sub new {
        my (undef, $dir, $opt) = @_;
@@ -514,6 +515,7 @@ sub write_prepare {
                $self->ipc_lock_init("$dir/ipc.lock");
                substr($dir, -length('/lei/store'), 10, '');
                pipe(my ($r, $w)) or die "pipe: $!";
+               $w->autoflush(1);
                # Mail we import into lei are private, so headers filtered out
                # by -mda for public mail are not appropriate
                local @PublicInbox::MDA::BAD_HEADERS = ();
index 68ce96d61d05e396aaecbfa06e6c736480a75b3a..5f9ba24d45d2ebfd859f14ad7530cfa161b1651a 100644 (file)
@@ -8,22 +8,32 @@ use strict;
 use v5.10.1;
 use parent qw(PublicInbox::DS);
 use PublicInbox::Syscall qw(EPOLLIN EPOLLONESHOT);
+use Sys::Syslog qw(openlog syslog closelog);
+use IO::Handle (); # ->blocking
 
 sub new {
        my ($cls, $rd, $lei) = @_;
        my $self = bless { sock => $rd, store_path => $lei->store_path }, $cls;
+       $rd->blocking(0);
        $self->SUPER::new($rd, EPOLLIN | EPOLLONESHOT);
 }
 
 sub event_step {
        my ($self) = @_;
-       $self->do_read(\(my $rbuf), 4096) or return;
+       my $rbuf = $self->{rbuf} // \(my $x = '');
+       $self->do_read($rbuf, 8192, length($$rbuf)) or return;
        my $cb;
+       my $printed;
        for my $lei (values %PublicInbox::DS::DescriptorMap) {
                $cb = $lei->can('store_path') // next;
                next if $cb->($lei) ne $self->{store_path};
                my $err = $lei->{2} // next;
-               print $err $rbuf;
+               print $err $$rbuf and $printed = 1;
+       }
+       if (!$printed) {
+               openlog('lei-store', 'pid,nowait,nofatal,ndelay', 'user');
+               for my $l (split(/\n/, $$rbuf)) { syslog('warning', '%s', $l) }
+               closelog(); # don't share across fork
        }
 }