]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/DS.pm
2b04886ab50e171c57187ee80ec01977e207c497
[public-inbox.git] / lib / PublicInbox / DS.pm
1 # This library is free software; you can redistribute it and/or modify
2 # it under the same terms as Perl itself.
3 #
4 # This license differs from the rest of public-inbox
5 #
6 # This is a fork of the (for now) unmaintained Danga::Socket 1.61.
7 # Unused features will be removed, and updates will be made to take
8 # advantage of newer kernels.
9 #
10 # API changes to diverge from Danga::Socket will happen to better
11 # accomodate new features and improve scalability.  Do not expect
12 # this to be a stable API like Danga::Socket.
13 # Bugs encountered (and likely fixed) are reported to
14 # bug-Danga-Socket@rt.cpan.org and visible at:
15 # https://rt.cpan.org/Public/Dist/Display.html?Name=Danga-Socket
16 package PublicInbox::DS;
17 use strict;
18 use bytes;
19 use POSIX ();
20 use Time::HiRes ();
21 use IO::Handle qw();
22 use Fcntl qw(FD_CLOEXEC F_SETFD F_GETFD);
23
24 use warnings;
25
26 use PublicInbox::Syscall qw(:epoll);
27
28 use fields ('sock',              # underlying socket
29             'wbuf',              # arrayref of scalars, scalarrefs, or coderefs to write
30             'wbuf_off',  # offset into first element of wbuf to start writing at
31             'closed',            # bool: socket is closed
32             'event_watch',       # bitmask of events the client is interested in (POLLIN,OUT,etc.)
33             );
34
35 use Errno  qw(EAGAIN EINVAL);
36 use Carp   qw(croak confess);
37
38 use constant DebugLevel => 0;
39
40 use constant POLLIN        => 1;
41 use constant POLLOUT       => 4;
42 use constant POLLERR       => 8;
43 use constant POLLHUP       => 16;
44 use constant POLLNVAL      => 32;
45
46 our $HAVE_KQUEUE = eval { require IO::KQueue; 1 };
47
48 our (
49      $HaveEpoll,                 # Flag -- is epoll available?  initially undefined.
50      $HaveKQueue,
51      %DescriptorMap,             # fd (num) -> PublicInbox::DS object
52      $Epoll,                     # Global epoll fd (for epoll mode only)
53      $KQueue,                    # Global kqueue fd ref (for kqueue mode only)
54      $_io,                       # IO::Handle for Epoll
55      @ToClose,                   # sockets to close when event loop is done
56
57      $PostLoopCallback,          # subref to call at the end of each loop, if defined (global)
58
59      $LoopTimeout,               # timeout of event loop in milliseconds
60      $DoneInit,                  # if we've done the one-time module init yet
61      @Timers,                    # timers
62      );
63
64 # this may be set to zero with old kernels
65 our $EPOLLEXCLUSIVE = EPOLLEXCLUSIVE;
66 Reset();
67
68 #####################################################################
69 ### C L A S S   M E T H O D S
70 #####################################################################
71
72 =head2 C<< CLASS->Reset() >>
73
74 Reset all state
75
76 =cut
77 sub Reset {
78     %DescriptorMap = ();
79     @ToClose = ();
80     $LoopTimeout = -1;  # no timeout by default
81     @Timers = ();
82
83     $PostLoopCallback = undef;
84     $DoneInit = 0;
85
86     # NOTE kqueue is close-on-fork, and we don't account for it, yet
87     # OTOH, we (public-inbox) don't need this sub outside of tests...
88     POSIX::close($$KQueue) if !$_io && $KQueue && $$KQueue >= 0;
89     $KQueue = undef;
90
91     $_io = undef; # close $Epoll
92     $Epoll = undef;
93
94     *EventLoop = *FirstTimeEventLoop;
95 }
96
97 =head2 C<< CLASS->SetLoopTimeout( $timeout ) >>
98
99 Set the loop timeout for the event loop to some value in milliseconds.
100
101 A timeout of 0 (zero) means poll forever. A timeout of -1 means poll and return
102 immediately.
103
104 =cut
105 sub SetLoopTimeout {
106     return $LoopTimeout = $_[1] + 0;
107 }
108
109 =head2 C<< CLASS->DebugMsg( $format, @args ) >>
110
111 Print the debugging message specified by the C<sprintf>-style I<format> and
112 I<args>
113
114 =cut
115 sub DebugMsg {
116     my ( $class, $fmt, @args ) = @_;
117     chomp $fmt;
118     printf STDERR ">>> $fmt\n", @args;
119 }
120
121 =head2 C<< CLASS->AddTimer( $seconds, $coderef ) >>
122
123 Add a timer to occur $seconds from now. $seconds may be fractional, but timers
124 are not guaranteed to fire at the exact time you ask for.
125
126 Returns a timer object which you can call C<< $timer->cancel >> on if you need to.
127
128 =cut
129 sub AddTimer {
130     my $class = shift;
131     my ($secs, $coderef) = @_;
132
133     my $fire_time = Time::HiRes::time() + $secs;
134
135     my $timer = bless [$fire_time, $coderef], "PublicInbox::DS::Timer";
136
137     if (!@Timers || $fire_time >= $Timers[-1][0]) {
138         push @Timers, $timer;
139         return $timer;
140     }
141
142     # Now, where do we insert?  (NOTE: this appears slow, algorithm-wise,
143     # but it was compared against calendar queues, heaps, naive push/sort,
144     # and a bunch of other versions, and found to be fastest with a large
145     # variety of datasets.)
146     for (my $i = 0; $i < @Timers; $i++) {
147         if ($Timers[$i][0] > $fire_time) {
148             splice(@Timers, $i, 0, $timer);
149             return $timer;
150         }
151     }
152
153     die "Shouldn't get here.";
154 }
155
156 # keeping this around in case we support other FD types for now,
157 # epoll_create1(EPOLL_CLOEXEC) requires Linux 2.6.27+...
158 sub set_cloexec ($) {
159     my ($fd) = @_;
160
161     $_io = IO::Handle->new_from_fd($fd, 'r+') or return;
162     defined(my $fl = fcntl($_io, F_GETFD, 0)) or return;
163     fcntl($_io, F_SETFD, $fl | FD_CLOEXEC);
164 }
165
166 sub _InitPoller
167 {
168     return if $DoneInit;
169     $DoneInit = 1;
170
171     if ($HAVE_KQUEUE) {
172         $KQueue = IO::KQueue->new();
173         $HaveKQueue = defined $KQueue;
174         if ($HaveKQueue) {
175             *EventLoop = *KQueueEventLoop;
176         }
177     }
178     elsif (PublicInbox::Syscall::epoll_defined()) {
179         $Epoll = eval { epoll_create(1024); };
180         $HaveEpoll = defined $Epoll && $Epoll >= 0;
181         if ($HaveEpoll) {
182             set_cloexec($Epoll);
183             *EventLoop = *EpollEventLoop;
184         }
185     }
186
187     if (!$HaveEpoll && !$HaveKQueue) {
188         require IO::Poll;
189         *EventLoop = *PollEventLoop;
190     }
191 }
192
193 =head2 C<< CLASS->EventLoop() >>
194
195 Start processing IO events. In most daemon programs this never exits. See
196 C<PostLoopCallback> below for how to exit the loop.
197
198 =cut
199 sub FirstTimeEventLoop {
200     my $class = shift;
201
202     _InitPoller();
203
204     if ($HaveEpoll) {
205         EpollEventLoop($class);
206     } elsif ($HaveKQueue) {
207         KQueueEventLoop($class);
208     } else {
209         PollEventLoop($class);
210     }
211 }
212
213 # runs timers and returns milliseconds for next one, or next event loop
214 sub RunTimers {
215     return $LoopTimeout unless @Timers;
216
217     my $now = Time::HiRes::time();
218
219     # Run expired timers
220     while (@Timers && $Timers[0][0] <= $now) {
221         my $to_run = shift(@Timers);
222         $to_run->[1]->($now) if $to_run->[1];
223     }
224
225     return $LoopTimeout unless @Timers;
226
227     # convert time to an even number of milliseconds, adding 1
228     # extra, otherwise floating point fun can occur and we'll
229     # call RunTimers like 20-30 times, each returning a timeout
230     # of 0.0000212 seconds
231     my $timeout = int(($Timers[0][0] - $now) * 1000) + 1;
232
233     # -1 is an infinite timeout, so prefer a real timeout
234     return $timeout     if $LoopTimeout == -1;
235
236     # otherwise pick the lower of our regular timeout and time until
237     # the next timer
238     return $LoopTimeout if $LoopTimeout < $timeout;
239     return $timeout;
240 }
241
242 ### The epoll-based event loop. Gets installed as EventLoop if IO::Epoll loads
243 ### okay.
244 sub EpollEventLoop {
245     my $class = shift;
246
247     while (1) {
248         my @events;
249         my $i;
250         my $timeout = RunTimers();
251
252         # get up to 1000 events
253         my $evcount = epoll_wait($Epoll, 1000, $timeout, \@events);
254         for ($i=0; $i<$evcount; $i++) {
255             # it's possible epoll_wait returned many events, including some at the end
256             # that ones in the front triggered unregister-interest actions.  if we
257             # can't find the %sock entry, it's because we're no longer interested
258             # in that event.
259             $DescriptorMap{$events[$i]->[0]}->event_step;
260         }
261         return unless PostEventLoop();
262     }
263     exit 0;
264 }
265
266 ### The fallback IO::Poll-based event loop. Gets installed as EventLoop if
267 ### IO::Epoll fails to load.
268 sub PollEventLoop {
269     my $class = shift;
270
271     my PublicInbox::DS $pob;
272
273     while (1) {
274         my $timeout = RunTimers();
275
276         # the following sets up @poll as a series of ($poll,$event_mask)
277         # items, then uses IO::Poll::_poll, implemented in XS, which
278         # modifies the array in place with the even elements being
279         # replaced with the event masks that occured.
280         my @poll;
281         while ( my ($fd, $sock) = each %DescriptorMap ) {
282             push @poll, $fd, $sock->{event_watch};
283         }
284
285         # if nothing to poll, either end immediately (if no timeout)
286         # or just keep calling the callback
287         unless (@poll) {
288             select undef, undef, undef, ($timeout / 1000);
289             return unless PostEventLoop();
290             next;
291         }
292
293         my $count = IO::Poll::_poll($timeout, @poll);
294         unless ($count >= 0) {
295             return unless PostEventLoop();
296             next;
297         }
298
299         # Fetch handles with read events
300         while (@poll) {
301             my ($fd, $state) = splice(@poll, 0, 2);
302             $DescriptorMap{$fd}->event_step if $state;
303         }
304
305         return unless PostEventLoop();
306     }
307
308     exit 0;
309 }
310
311 ### The kqueue-based event loop. Gets installed as EventLoop if IO::KQueue works
312 ### okay.
313 sub KQueueEventLoop {
314     my $class = shift;
315
316     while (1) {
317         my $timeout = RunTimers();
318         my @ret = eval { $KQueue->kevent($timeout) };
319         if (my $err = $@) {
320             # workaround https://rt.cpan.org/Ticket/Display.html?id=116615
321             if ($err =~ /Interrupted system call/) {
322                 @ret = ();
323             } else {
324                 die $err;
325             }
326         }
327
328         foreach my $kev (@ret) {
329             $DescriptorMap{$kev->[0]}->event_step;
330         }
331         return unless PostEventLoop();
332     }
333
334     exit(0);
335 }
336
337 =head2 C<< CLASS->SetPostLoopCallback( CODEREF ) >>
338
339 Sets post loop callback function.  Pass a subref and it will be
340 called every time the event loop finishes.
341
342 Return 1 (or any true value) from the sub to make the loop continue, 0 or false
343 and it will exit.
344
345 The callback function will be passed two parameters: \%DescriptorMap
346
347 =cut
348 sub SetPostLoopCallback {
349     my ($class, $ref) = @_;
350
351     # global callback
352     $PostLoopCallback = (defined $ref && ref $ref eq 'CODE') ? $ref : undef;
353 }
354
355 # Internal function: run the post-event callback, send read events
356 # for pushed-back data, and close pending connections.  returns 1
357 # if event loop should continue, or 0 to shut it all down.
358 sub PostEventLoop {
359     # now we can close sockets that wanted to close during our event processing.
360     # (we didn't want to close them during the loop, as we didn't want fd numbers
361     #  being reused and confused during the event loop)
362     while (my $sock = shift @ToClose) {
363         my $fd = fileno($sock);
364
365         # close the socket.  (not a PublicInbox::DS close)
366         $sock->close;
367
368         # and now we can finally remove the fd from the map.  see
369         # comment above in _cleanup.
370         delete $DescriptorMap{$fd};
371     }
372
373
374     # by default we keep running, unless a postloop callback (either per-object
375     # or global) cancels it
376     my $keep_running = 1;
377
378     # now we're at the very end, call callback if defined
379     if (defined $PostLoopCallback) {
380         $keep_running &&= $PostLoopCallback->(\%DescriptorMap);
381     }
382
383     return $keep_running;
384 }
385
386 #####################################################################
387 ### PublicInbox::DS-the-object code
388 #####################################################################
389
390 =head2 OBJECT METHODS
391
392 =head2 C<< CLASS->new( $socket ) >>
393
394 Create a new PublicInbox::DS subclass object for the given I<socket> which will
395 react to events on it during the C<EventLoop>.
396
397 This is normally (always?) called from your subclass via:
398
399   $class->SUPER::new($socket);
400
401 =cut
402 sub new {
403     my ($self, $sock, $exclusive) = @_;
404     $self = fields::new($self) unless ref $self;
405
406     $self->{sock} = $sock;
407     my $fd = fileno($sock);
408
409     Carp::cluck("undef sock and/or fd in PublicInbox::DS->new.  sock=" . ($sock || "") . ", fd=" . ($fd || ""))
410         unless $sock && $fd;
411
412     $self->{wbuf} = [];
413     $self->{wbuf_off} = 0;
414     $self->{closed} = 0;
415
416     my $ev = $self->{event_watch} = POLLERR|POLLHUP|POLLNVAL;
417
418     _InitPoller();
419
420     if ($HaveEpoll) {
421         if ($exclusive) {
422             $ev = $self->{event_watch} = EPOLLIN|EPOLLERR|EPOLLHUP|$EPOLLEXCLUSIVE;
423         }
424 retry:
425         if (epoll_ctl($Epoll, EPOLL_CTL_ADD, $fd, $ev)) {
426             if ($! == EINVAL && ($ev & $EPOLLEXCLUSIVE)) {
427                 $EPOLLEXCLUSIVE = 0; # old kernel
428                 $ev = $self->{event_watch} = EPOLLIN|EPOLLERR|EPOLLHUP;
429                 goto retry;
430             }
431             die "couldn't add epoll watch for $fd: $!\n";
432         }
433     }
434     elsif ($HaveKQueue) {
435         # Add them to the queue but disabled for now
436         $KQueue->EV_SET($fd, IO::KQueue::EVFILT_READ(),
437                         IO::KQueue::EV_ADD() | IO::KQueue::EV_DISABLE());
438         $KQueue->EV_SET($fd, IO::KQueue::EVFILT_WRITE(),
439                         IO::KQueue::EV_ADD() | IO::KQueue::EV_DISABLE());
440     }
441
442     Carp::cluck("PublicInbox::DS::new blowing away existing descriptor map for fd=$fd ($DescriptorMap{$fd})")
443         if $DescriptorMap{$fd};
444
445     $DescriptorMap{$fd} = $self;
446     return $self;
447 }
448
449
450 #####################################################################
451 ### I N S T A N C E   M E T H O D S
452 #####################################################################
453
454 =head2 C<< $obj->close >>
455
456 Close the socket.
457
458 =cut
459 sub close {
460     my PublicInbox::DS $self = $_[0];
461     return if $self->{closed};
462
463     # this does most of the work of closing us
464     $self->_cleanup();
465
466     # defer closing the actual socket until the event loop is done
467     # processing this round of events.  (otherwise we might reuse fds)
468     if (my $sock = delete $self->{sock}) {
469         push @ToClose, $sock;
470     }
471
472     return 0;
473 }
474
475 ### METHOD: _cleanup()
476 ### Called by our closers so we can clean internal data structures.
477 sub _cleanup {
478     my PublicInbox::DS $self = $_[0];
479
480     # we're effectively closed; we have no fd and sock when we leave here
481     $self->{closed} = 1;
482
483     # we need to flush our write buffer, as there may
484     # be self-referential closures (sub { $client->close })
485     # preventing the object from being destroyed
486     @{$self->{wbuf}} = ();
487
488     # if we're using epoll, we have to remove this from our epoll fd so we stop getting
489     # notifications about it
490     if ($HaveEpoll && $self->{sock}) {
491         my $fd = fileno($self->{sock});
492         epoll_ctl($Epoll, EPOLL_CTL_DEL, $fd, $self->{event_watch}) and
493             confess("EPOLL_CTL_DEL: $!");
494     }
495
496     # we explicitly don't delete from DescriptorMap here until we
497     # actually close the socket, as we might be in the middle of
498     # processing an epoll_wait/etc that returned hundreds of fds, one
499     # of which is not yet processed and is what we're closing.  if we
500     # keep it in DescriptorMap, then the event harnesses can just
501     # looked at $pob->{closed} and ignore it.  but if it's an
502     # un-accounted for fd, then it (understandably) freak out a bit
503     # and emit warnings, thinking their state got off.
504 }
505
506 =head2 C<< $obj->sock() >>
507
508 Returns the underlying IO::Handle for the object.
509
510 =cut
511 sub sock {
512     my PublicInbox::DS $self = shift;
513     return $self->{sock};
514 }
515
516 =head2 C<< $obj->write( $data ) >>
517
518 Write the specified data to the underlying handle.  I<data> may be scalar,
519 scalar ref, code ref (to run when there), or undef just to kick-start.
520 Returns 1 if writes all went through, or 0 if there are writes in queue. If
521 it returns 1, caller should stop waiting for 'writable' events)
522
523 =cut
524 sub write {
525     my PublicInbox::DS $self;
526     my $data;
527     ($self, $data) = @_;
528
529     # nobody should be writing to closed sockets, but caller code can
530     # do two writes within an event, have the first fail and
531     # disconnect the other side (whose destructor then closes the
532     # calling object, but it's still in a method), and then the
533     # now-dead object does its second write.  that is this case.  we
534     # just lie and say it worked.  it'll be dead soon and won't be
535     # hurt by this lie.
536     return 1 if $self->{closed};
537
538     my $bref;
539
540     # just queue data if there's already a wait
541     my $need_queue;
542     my $wbuf = $self->{wbuf};
543
544     if (defined $data) {
545         $bref = ref $data ? $data : \$data;
546         if (scalar @$wbuf) {
547             push @$wbuf, $bref;
548             return 0;
549         }
550
551         # this flag says we're bypassing the queue system, knowing we're the
552         # only outstanding write, and hoping we don't ever need to use it.
553         # if so later, though, we'll need to queue
554         $need_queue = 1;
555     }
556
557   WRITE:
558     while (1) {
559         return 1 unless $bref ||= $wbuf->[0];
560
561         my $len;
562         eval {
563             $len = length($$bref); # this will die if $bref is a code ref, caught below
564         };
565         if ($@) {
566             if (UNIVERSAL::isa($bref, "CODE")) {
567                 unless ($need_queue) {
568                     shift @$wbuf;
569                 }
570                 $bref->();
571
572                 # code refs are just run and never get reenqueued
573                 # (they're one-shot), so turn off the flag indicating the
574                 # outstanding data needs queueing.
575                 $need_queue = 0;
576
577                 undef $bref;
578                 next WRITE;
579             }
580             die "Write error: $@ <$bref>";
581         }
582
583         my $to_write = $len - $self->{wbuf_off};
584         my $written = syswrite($self->{sock}, $$bref, $to_write,
585                                $self->{wbuf_off});
586
587         if (! defined $written) {
588             if ($! == EAGAIN) {
589                 # since connection has stuff to write, it should now be
590                 # interested in pending writes:
591                 if ($need_queue) {
592                     push @$wbuf, $bref;
593                 }
594                 $self->watch_write(1);
595                 return 0;
596             }
597
598             return $self->close;
599         } elsif ($written != $to_write) {
600             if ($need_queue) {
601                 push @$wbuf, $bref;
602             }
603             # since connection has stuff to write, it should now be
604             # interested in pending writes:
605             $self->{wbuf_off} += $written;
606             $self->on_incomplete_write;
607             return 0;
608         } elsif ($written == $to_write) {
609             $self->{wbuf_off} = 0;
610             $self->watch_write(0);
611
612             # this was our only write, so we can return immediately
613             # since we avoided incrementing the buffer size or
614             # putting it in the buffer.  we also know there
615             # can't be anything else to write.
616             return 1 if $need_queue;
617
618             shift @$wbuf;
619             undef $bref;
620             next WRITE;
621         }
622     }
623 }
624
625 sub on_incomplete_write {
626     my PublicInbox::DS $self = shift;
627     $self->watch_write(1);
628 }
629
630 =head2 C<< $obj->watch_read( $boolean ) >>
631
632 Turn 'readable' event notification on or off.
633
634 =cut
635 sub watch_read {
636     my PublicInbox::DS $self = shift;
637     return if $self->{closed} || !$self->{sock};
638
639     my $val = shift;
640     my $event = $self->{event_watch};
641
642     $event &= ~POLLIN if ! $val;
643     $event |=  POLLIN if   $val;
644
645     my $fd = fileno($self->{sock});
646     # If it changed, set it
647     if ($event != $self->{event_watch}) {
648         if ($HaveKQueue) {
649             $KQueue->EV_SET($fd, IO::KQueue::EVFILT_READ(),
650                             $val ? IO::KQueue::EV_ENABLE() : IO::KQueue::EV_DISABLE());
651         }
652         elsif ($HaveEpoll) {
653             epoll_ctl($Epoll, EPOLL_CTL_MOD, $fd, $event) and
654                 confess("EPOLL_CTL_MOD: $!");
655         }
656         $self->{event_watch} = $event;
657     }
658 }
659
660 =head2 C<< $obj->watch_write( $boolean ) >>
661
662 Turn 'writable' event notification on or off.
663
664 =cut
665 sub watch_write {
666     my PublicInbox::DS $self = shift;
667     return if $self->{closed} || !$self->{sock};
668
669     my $val = shift;
670     my $event = $self->{event_watch};
671
672     $event &= ~POLLOUT if ! $val;
673     $event |=  POLLOUT if   $val;
674     my $fd = fileno($self->{sock});
675
676     # If it changed, set it
677     if ($event != $self->{event_watch}) {
678         if ($HaveKQueue) {
679             $KQueue->EV_SET($fd, IO::KQueue::EVFILT_WRITE(),
680                             $val ? IO::KQueue::EV_ENABLE() : IO::KQueue::EV_DISABLE());
681         }
682         elsif ($HaveEpoll) {
683             epoll_ctl($Epoll, EPOLL_CTL_MOD, $fd, $event) and
684                     confess "EPOLL_CTL_MOD: $!";
685         }
686         $self->{event_watch} = $event;
687     }
688 }
689
690 =head2 C<< $obj->dump_error( $message ) >>
691
692 Prints to STDERR a backtrace with information about this socket and what lead
693 up to the dump_error call.
694
695 =cut
696 sub dump_error {
697     my $i = 0;
698     my @list;
699     while (my ($file, $line, $sub) = (caller($i++))[1..3]) {
700         push @list, "\t$file:$line called $sub\n";
701     }
702
703     warn "ERROR: $_[1]\n" .
704         "\t$_[0] = " . $_[0]->as_string . "\n" .
705         join('', @list);
706 }
707
708 =head2 C<< $obj->debugmsg( $format, @args ) >>
709
710 Print the debugging message specified by the C<sprintf>-style I<format> and
711 I<args>.
712
713 =cut
714 sub debugmsg {
715     my ( $self, $fmt, @args ) = @_;
716     confess "Not an object" unless ref $self;
717
718     chomp $fmt;
719     printf STDERR ">>> $fmt\n", @args;
720 }
721
722 =head2 C<< $obj->as_string() >>
723
724 Returns a string describing this socket.
725
726 =cut
727 sub as_string {
728     my PublicInbox::DS $self = shift;
729     my $rw = "(" . ($self->{event_watch} & POLLIN ? 'R' : '') .
730                    ($self->{event_watch} & POLLOUT ? 'W' : '') . ")";
731     my $ret = ref($self) . "$rw: " . ($self->{closed} ? "closed" : "open");
732     return $ret;
733 }
734
735 package PublicInbox::DS::Timer;
736 # [$abs_float_firetime, $coderef];
737 sub cancel {
738     $_[0][1] = undef;
739 }
740
741 1;
742
743 =head1 AUTHORS (Danga::Socket)
744
745 Brad Fitzpatrick <brad@danga.com> - author
746
747 Michael Granger <ged@danga.com> - docs, testing
748
749 Mark Smith <junior@danga.com> - contributor, heavy user, testing
750
751 Matt Sergeant <matt@sergeant.org> - kqueue support, docs, timers, other bits