]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/EvCleanup.pm
ds: stop caring about event flags set by epoll/poll/kqueue
[public-inbox.git] / lib / PublicInbox / EvCleanup.pm
index 61837b89d05c4410334810da5cafd2d399dc090a..f76fb68159cb97530d0d7ea10b023dfcdd9daa4c 100644 (file)
@@ -1,22 +1,35 @@
-# Copyright (C) 2016 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2018 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
-# event cleanups (currently for Danga::Socket)
+# event cleanups (currently for PublicInbox::DS)
 package PublicInbox::EvCleanup;
 use strict;
 use warnings;
-use base qw(Danga::Socket);
-use fields qw(rd);
+use base qw(PublicInbox::DS);
+
+my $ENABLED;
+sub enabled { $ENABLED }
+sub enable { $ENABLED = 1 }
 my $singleton;
 my $asapq = [ [], undef ];
+my $nextq = [ [], undef ];
 my $laterq = [ [], undef ];
 
 sub once_init () {
        my $self = fields::new('PublicInbox::EvCleanup');
        my ($r, $w);
+
+       # This is a dummy pipe which is always writable so it can always
+       # fires in the next event loop iteration.
        pipe($r, $w) or die "pipe: $!";
+       fcntl($w, 1031, 4096) if $^O eq 'linux'; # 1031: F_SETPIPE_SZ
        $self->SUPER::new($w);
-       $self->{rd} = $r; # never read, since we never write..
+
+       # always writable, since PublicInbox::EvCleanup::event_write
+       # never drains wbuf.  We can avoid wasting a hash slot by
+       # stuffing the read-end of the pipe into the never-to-be-touched
+       # wbuf
+       push @{$self->{wbuf}}, $r;
        $self;
 }
 
@@ -29,10 +42,21 @@ sub _run_all ($) {
        $_->() foreach @$run;
 }
 
+# ensure PublicInbox::DS::ToClose processing after timers fire
+sub _asap_close () { $asapq->[1] ||= _asap_timer() }
+
 sub _run_asap () { _run_all($asapq) }
-sub _run_later () { _run_all($laterq) }
+sub _run_next () {
+       _run_all($nextq);
+       _asap_close();
+}
 
-# Called by Danga::Socket
+sub _run_later () {
+       _run_all($laterq);
+       _asap_close();
+}
+
+# Called by PublicInbox::DS
 sub event_write {
        my ($self) = @_;
        $self->watch_write(0);
@@ -51,15 +75,22 @@ sub asap ($) {
        $asapq->[1] ||= _asap_timer();
 }
 
+sub next_tick ($) {
+       my ($cb) = @_;
+       push @{$nextq->[0]}, $cb;
+       $nextq->[1] ||= PublicInbox::DS->AddTimer(0, *_run_next);
+}
+
 sub later ($) {
        my ($cb) = @_;
        push @{$laterq->[0]}, $cb;
-       $laterq->[1] ||= Danga::Socket->AddTimer(60, *_run_later);
+       $laterq->[1] ||= PublicInbox::DS->AddTimer(60, *_run_later);
 }
 
 END {
        _run_asap();
-       _run_later();
+       _run_all($nextq);
+       _run_all($laterq);
 }
 
 1;