X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FParentPipe.pm;h=538b5632c623851aebaed6662238ac3406a9b220;hb=823dbcacf7829fd0f42748ae7712a76fa4c64a76;hp=d2d054ce31f7ca12a16ca848a4f40490c6ce199b;hpb=9da6fcbb3e6d720a4b575a48063ecf3240a44022;p=public-inbox.git diff --git a/lib/PublicInbox/ParentPipe.pm b/lib/PublicInbox/ParentPipe.pm index d2d054ce..538b5632 100644 --- a/lib/PublicInbox/ParentPipe.pm +++ b/lib/PublicInbox/ParentPipe.pm @@ -1,21 +1,23 @@ -# Copyright (C) 2016 all contributors +# Copyright (C) 2016-2020 all contributors # License: AGPL-3.0+ -# only for PublicInbox::Daemon + +# only for PublicInbox::Daemon, allows worker processes to be +# notified if the master process dies. package PublicInbox::ParentPipe; use strict; -use warnings; -use base qw(Danga::Socket); -use fields qw(cb); +use parent qw(PublicInbox::DS); +use PublicInbox::Syscall qw(EPOLLIN EPOLLONESHOT); sub new ($$$) { - my ($class, $pipe, $cb) = @_; - my $self = fields::new($class); - $self->SUPER::new($pipe); - $self->{cb} = $cb; - $self->watch_read(1); - $self; + my ($class, $pipe, $worker_quit) = @_; + my $self = bless { cb => $worker_quit }, $class; + $self->SUPER::new($pipe, EPOLLIN|EPOLLONESHOT); } -sub event_read { $_[0]->{cb}->($_[0]) } +# master process died, time to call worker_quit ourselves +sub event_step { + $_[0]->close; # PublicInbox::DS::close + $_[0]->{cb}->(); +} 1;