From cd50d183273c105a7f08b1875ba6f7a51d9f8e9a Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Fri, 3 May 2019 10:34:08 +0000 Subject: bundle Danga::Socket and Sys::Syscall These modules are unmaintained upstream at the moment, but I'll be able to help with the intended maintainer once/if CPAN ownership is transferred. OTOH, we've been waiting for that transfer for several years, now... Changes I intend to make: * EPOLLEXCLUSIVE for Linux * remove unused fields wasting memory * kqueue bugfixes e.g. https://rt.cpan.org/Ticket/Display.html?id=116615 * accept4 support And some lower priority experiments: * switch to EV_ONESHOT / EPOLLONESHOT (incompatible changes) * nginx-style buffering to tmpfile instead of string array * sendfile off tmpfile buffers * io_uring maybe? --- lib/PublicInbox/EvCleanup.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/PublicInbox/EvCleanup.pm') diff --git a/lib/PublicInbox/EvCleanup.pm b/lib/PublicInbox/EvCleanup.pm index 1a2bdb29..b2f8c088 100644 --- a/lib/PublicInbox/EvCleanup.pm +++ b/lib/PublicInbox/EvCleanup.pm @@ -1,11 +1,11 @@ # Copyright (C) 2016-2018 all contributors # License: AGPL-3.0+ -# 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 base qw(PublicInbox::DS); use fields qw(rd); my $ENABLED; @@ -38,7 +38,7 @@ sub _run_all ($) { $_->() foreach @$run; } -# ensure Danga::Socket::ToClose fires after timers fire +# ensure PublicInbox::DS::ToClose fires after timers fire sub _asap_close () { $asapq->[1] ||= _asap_timer() } sub _run_asap () { _run_all($asapq) } @@ -52,7 +52,7 @@ sub _run_later () { _asap_close(); } -# Called by Danga::Socket +# Called by PublicInbox::DS sub event_write { my ($self) = @_; $self->watch_write(0); @@ -74,13 +74,13 @@ sub asap ($) { sub next_tick ($) { my ($cb) = @_; push @{$nextq->[0]}, $cb; - $nextq->[1] ||= Danga::Socket->AddTimer(0, *_run_next); + $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 { -- cgit v1.2.3-24-ge0c7