]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/IPC.pm
lei q: parallelize Maildir and mbox writing
[public-inbox.git] / lib / PublicInbox / IPC.pm
index 8a3120c9d47e762efd452c93fa7bb44659e893f4..8fec2e62a4373f4b81507403ba64245e623808b5 100644 (file)
@@ -12,6 +12,7 @@ use POSIX qw(WNOHANG);
 use Socket qw(AF_UNIX MSG_EOR);
 my $SEQPACKET = eval { Socket::SOCK_SEQPACKET() }; # portable enough?
 use constant PIPE_BUF => $^O eq 'linux' ? 4096 : POSIX::_POSIX_PIPE_BUF();
+my $WQ_MAX_WORKERS = 4096;
 my ($enc, $dec);
 # ->imports at BEGIN turns sereal_*_with_object into custom ops on 5.14+
 # and eliminate method call overhead
@@ -41,12 +42,13 @@ my $send_cmd = PublicInbox::Spawn->can('send_cmd4') // do {
        require PublicInbox::CmdIPC4;
        $recv_cmd //= PublicInbox::CmdIPC4->can('recv_cmd4');
        PublicInbox::CmdIPC4->can('send_cmd4');
-} // do {
-       require PublicInbox::CmdIPC1;
-       $recv_cmd = PublicInbox::CmdIPC1->can('recv_cmd1');
-       PublicInbox::CmdIPC1->can('send_cmd1');
 };
 
+sub wq_set_recv_modes {
+       my ($self, @modes) = @_;
+       $self->{-wq_recv_modes} = \@modes;
+}
+
 sub _get_rec ($) {
        my ($r) = @_;
        defined(my $len = <$r>) or return;
@@ -102,11 +104,11 @@ sub ipc_worker_spawn {
        pipe(my ($r_req, $w_req)) or die "pipe: $!";
        pipe(my ($r_res, $w_res)) or die "pipe: $!";
        my $sigset = $oldset // PublicInbox::DS::block_signals();
-       my $parent = $$;
-       $self->ipc_atfork_parent;
+       $self->ipc_atfork_prepare;
        defined(my $pid = fork) or die "fork: $!";
        if ($pid == 0) {
                eval { PublicInbox::DS->Reset };
+               delete @$self{qw(-wq_s1 -wq_workers -wq_ppid)};
                $w_req = $r_res = undef;
                $w_res->autoflush(1);
                $SIG{$_} = 'IGNORE' for (qw(TERM INT QUIT));
@@ -128,12 +130,19 @@ sub ipc_worker_spawn {
 
 sub ipc_worker_reap { # dwaitpid callback
        my ($self, $pid) = @_;
-       warn "PID:$pid died with \$?=$?\n" if $?;
+       # SIGTERM (15) is our default exit signal
+       warn "PID:$pid died with \$?=$?\n" if $? && ($? & 127) != 15;
 }
 
 # for base class, override in sub classes
-sub ipc_atfork_parent {}
-sub ipc_atfork_child {}
+sub ipc_atfork_prepare {}
+
+sub ipc_atfork_child {
+       my ($self) = @_;
+       my $io = delete($self->{-ipc_atfork_child_close}) or return;
+       close($_) for @$io;
+       undef;
+}
 
 # idempotent, can be called regardless of whether worker is active or not
 sub ipc_worker_stop {
@@ -230,43 +239,42 @@ sub ipc_sibling_atfork_child {
 
 sub wq_worker_loop ($) {
        my ($self) = @_;
-       my $buf;
        my $len = $self->{wq_req_len} // (4096 * 33);
-       my ($rec, $sub, @args);
        my $s2 = $self->{-wq_s2} // die 'BUG: no -wq_s2';
-       until ($self->{-wq_quit}) {
-               my (@fds) = $recv_cmd->($s2, $buf, $len) or return; # EOF
-               my $i = 0;
-               my @m = @{$self->{wq_open_modes} // [qw( +<&= >&= >&= )]};
+       while (1) {
+               my @fds = $recv_cmd->($s2, my $buf, $len) or return; # EOF
+               my @m = @{$self->{-wq_recv_modes} // [qw( +<&= >&= >&= )]};
+               my $nfd = 0;
                for my $fd (@fds) {
                        my $mode = shift(@m);
-                       if (open(my $fh, $mode, $fd)) {
-                               $self->{$i++} = $fh;
+                       if (open(my $cmdfh, $mode, $fd)) {
+                               $self->{$nfd++} = $cmdfh;
+                               $cmdfh->autoflush(1);
                        } else {
-                               die "$$ open($mode$fd) (FD:$i): $!";
+                               die "$$ open($mode$fd) (FD:$nfd): $!";
                        }
                }
-               # Sereal dies, Storable returns undef
-               $rec = thaw($buf) //
+               # Sereal dies on truncated data, Storable returns undef
+               my $args = thaw($buf) //
                        die "thaw error on buffer of size:".length($buf);
-               ($sub, @args) = @$rec;
-               eval { $self->$sub(@args) };
-               warn "$$ wq_worker: $@" if $@;
-               delete @$self{0, 1, 2};
+               my $sub = shift @$args;
+               eval { $self->$sub(@$args) };
+               warn "$$ wq_worker: $@" if $@ &&
+                                       ref($@) ne 'PublicInbox::SIGPIPE';
+               delete @$self{0..($nfd-1)};
        }
 }
 
 sub wq_do { # always async
-       my ($self, $sub, $in, $out, $err, @args) = @_;
+       my ($self, $sub, $ios, @args) = @_;
        if (my $s1 = $self->{-wq_s1}) { # run in worker
-               $_ = fileno($_) for ($in, $out, $err);
-               $send_cmd->($s1, $in, $out, $err,
-                               freeze([$sub, @args]), MSG_EOR);
+               my $fds = [ map { fileno($_) } @$ios ];
+               $send_cmd->($s1, $fds, freeze([$sub, @args]), MSG_EOR);
        } else {
-               @$self{0, 1, 2} = ($in, $out, $err);
+               @$self{0..$#$ios} = @$ios;
                eval { $self->$sub(@args) };
-               warn "wq_do: $@" if $@;
-               delete @$self{0, 1, 2};
+               warn "wq_do: $@" if $@ && ref($@) ne 'PublicInbox::SIGPIPE';
+               delete @$self{0..$#$ios}; # don't close
        }
 }
 
@@ -275,17 +283,18 @@ sub _wq_worker_start ($$) {
        my $pid = fork // die "fork: $!";
        if ($pid == 0) {
                eval { PublicInbox::DS->Reset };
-               close(delete $self->{-wq_s1});
-               delete $self->{qw(-wq_workers -wq_quit -wq_ppid)};
-               my $quit = sub { $self->{-wq_quit} = 1 };
-               $SIG{$_} = $quit for (qw(TERM INT QUIT));
-               $SIG{$_} = 'IGNORE' for (qw(TTOU TTIN));
+               delete @$self{qw(-wq_s1 -wq_workers -wq_ppid)};
+               $SIG{$_} = 'IGNORE' for (qw(PIPE TTOU TTIN));
+               $SIG{$_} = 'DEFAULT' for (qw(TERM QUIT INT CHLD));
                local $0 = $self->{-wq_ident};
                PublicInbox::DS::sig_setmask($oldset);
+               # ensure we properly exit even if warn() dies:
+               my $end = PublicInbox::OnDestroy->new($$, sub { exit(!!$@) });
                my $on_destroy = $self->ipc_atfork_child;
                eval { wq_worker_loop($self) };
-               die "worker $self->{-wq_ident} PID:$$ died: $@\n" if $@;
-               exit;
+               warn "worker $self->{-wq_ident} PID:$$ died: $@" if $@;
+               undef $on_destroy;
+               undef $end; # trigger exit
        } else {
                $self->{-wq_workers}->{$pid} = \undef;
        }
@@ -296,15 +305,15 @@ sub wq_workers_start {
        my ($self, $ident, $nr_workers, $oldset) = @_;
        ($enc && $send_cmd && $recv_cmd && defined($SEQPACKET)) or return;
        return if $self->{-wq_s1}; # idempotent
-       my ($s1, $s2);
-       socketpair($s1, $s2, AF_UNIX, $SEQPACKET, 0) or die "socketpair: $!";
-       $self->ipc_atfork_parent;
+       $self->{-wq_s1} = $self->{-wq_s2} = undef;
+       socketpair($self->{-wq_s1}, $self->{-wq_s2}, AF_UNIX, $SEQPACKET, 0) or
+               die "socketpair: $!";
+       $self->ipc_atfork_prepare;
        $nr_workers //= 4;
+       $nr_workers = $WQ_MAX_WORKERS if $nr_workers > $WQ_MAX_WORKERS;
        my $sigset = $oldset // PublicInbox::DS::block_signals();
        $self->{-wq_workers} = {};
        $self->{-wq_ident} = $ident;
-       $self->{-wq_s1} = $s1;
-       $self->{-wq_s2} = $s2;
        _wq_worker_start($self, $sigset) for (1..$nr_workers);
        PublicInbox::DS::sig_setmask($sigset) unless $oldset;
        $self->{-wq_ppid} = $$;
@@ -313,7 +322,8 @@ sub wq_workers_start {
 sub wq_worker_incr { # SIGTTIN handler
        my ($self, $oldset) = @_;
        $self->{-wq_s2} or return;
-       $self->ipc_atfork_parent;
+       return if wq_workers($self) >= $WQ_MAX_WORKERS;
+       $self->ipc_atfork_prepare;
        my $sigset = $oldset // PublicInbox::DS::block_signals();
        _wq_worker_start($self, $sigset);
        PublicInbox::DS::sig_setmask($sigset) unless $oldset;
@@ -326,10 +336,9 @@ sub wq_exit { # wakes up wq_worker_decr_wait
 
 sub wq_worker_decr { # SIGTTOU handler, kills first idle worker
        my ($self) = @_;
-       my $workers = $self->{-wq_workers} or return;
+       return unless wq_workers($self);
        my $s2 = $self->{-wq_s2} // die 'BUG: no wq_s2';
-       $self->wq_do('wq_exit', $s2, $s2, $s2);
-       $self->{-wq_exit_pending}++;
+       $self->wq_do('wq_exit', [ $s2, $s2, $s2 ]);
        # caller must call wq_worker_decr_wait in main loop
 }
 
@@ -343,7 +352,6 @@ sub wq_worker_decr_wait {
        recv($s1, my $pid, 64, 0) // croak "recv: $!";
        my $workers = $self->{-wq_workers} // croak 'BUG: no wq_workers';
        delete $workers->{$pid} // croak "BUG: PID:$pid invalid";
-       $self->{-wq_exit_pending}--;
        dwaitpid($pid, \&ipc_worker_reap, $self);
 }
 
@@ -367,14 +375,29 @@ sub wq_close {
        my $ppid = delete $self->{-wq_ppid} or return;
        my $workers = delete $self->{-wq_workers} // die 'BUG: no wq_workers';
        return if $ppid != $$; # can't reap siblings or parents
+       return (keys %$workers) if wantarray; # caller will reap
        for my $pid (keys %$workers) {
                dwaitpid($pid, \&ipc_worker_reap, $self);
        }
 }
 
+sub wq_kill {
+       my ($self, $sig) = @_;
+       my $workers = $self->{-wq_workers} or return;
+       kill($sig // 'TERM', keys %$workers);
+}
+
+sub WQ_MAX_WORKERS { $WQ_MAX_WORKERS }
+
 sub DESTROY {
-       wq_close($_[0]);
-       ipc_worker_stop($_[0]);
+       my ($self) = @_;
+       my $ppid = $self->{-wq_ppid};
+       wq_kill($self) if $ppid && $ppid == $$;
+       wq_close($self);
+       ipc_worker_stop($self);
 }
 
+# Sereal doesn't have dclone
+sub deep_clone { thaw(freeze($_[-1])) }
+
 1;