]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/PktOp.pm
www_stream: extra link to mirroring information in the footer
[public-inbox.git] / lib / PublicInbox / PktOp.pm
index 5d8e78ea78635211885271cb650f1ed48d76696e..10942dd19b6880335fb465d9de4e3f3113755597 100644 (file)
@@ -8,40 +8,30 @@
 package PublicInbox::PktOp;
 use strict;
 use v5.10.1;
-use parent qw(PublicInbox::DS Exporter);
+use parent qw(PublicInbox::DS);
 use Errno qw(EAGAIN EINTR);
 use PublicInbox::Syscall qw(EPOLLIN EPOLLET);
 use Socket qw(AF_UNIX MSG_EOR SOCK_SEQPACKET);
 use PublicInbox::IPC qw(ipc_freeze ipc_thaw);
-our @EXPORT_OK = qw(pkt_do);
 
 sub new {
-       my ($cls, $r, $ops) = @_;
-       my $self = bless { sock => $r, ops => $ops }, $cls;
-       if ($PublicInbox::DS::in_loop) { # iff using DS->EventLoop
-               $r->blocking(0);
-               $self->SUPER::new($r, EPOLLIN|EPOLLET);
-       }
-       $self;
+       my ($cls, $r) = @_;
+       my $self = bless { sock => $r }, $cls;
+       $r->blocking(0);
+       $self->SUPER::new($r, EPOLLIN|EPOLLET);
 }
 
-# returns a blessed object as the consumer, and a GLOB/IO for the producer
+# returns a blessed objects as the consumer and producer
 sub pair {
-       my ($cls, $ops) = @_;
+       my ($cls) = @_;
        my ($c, $p);
        socketpair($c, $p, AF_UNIX, SOCK_SEQPACKET, 0) or die "socketpair: $!";
-       (new($cls, $c, $ops), $p);
+       (new($cls, $c), bless { op_p => $p }, $cls);
 }
 
 sub pkt_do { # for the producer to trigger event_step in consumer
-       my ($producer, $cmd, @args) = @_;
-       send($producer, @args ? "$cmd\0".ipc_freeze(\@args) : $cmd, MSG_EOR);
-}
-
-sub close {
-       my ($self) = @_;
-       my $c = $self->{sock} or return;
-       $c->blocking ? delete($self->{sock}) : $self->SUPER::close;
+       my ($self, $cmd, @args) = @_;
+       send($self->{op_p}, @args ? "$cmd\0".ipc_freeze(\@args) : $cmd, MSG_EOR)
 }
 
 sub event_step {
@@ -66,9 +56,12 @@ sub event_step {
                        ($cmd, @pargs) = split(/ /, $msg);
                }
                my $op = $self->{ops}->{$cmd //= $msg};
-               die "BUG: unknown message: `$cmd'" unless $op;
-               my ($sub, @args) = @$op;
-               $sub->(@args, @pargs);
+               if ($op) {
+                       my ($sub, @args) = @$op;
+                       $sub->(@args, @pargs);
+               } elsif ($msg ne '') {
+                       die "BUG: unknown message: `$cmd'";
+               }
                return $self->close if $msg eq ''; # close on EOF
        }
 }