mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-02 18:19:33 +01:00
88 lines
2.3 KiB
Perl
88 lines
2.3 KiB
Perl
# File: SelectHandler.pm
|
|
#
|
|
# Purpose: Adds/removes file handles to/from PBot::IRC's select loop
|
|
# and contains handlers for select events.
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package PBot::SelectHandler;
|
|
use parent 'PBot::Class';
|
|
|
|
use PBot::Imports;
|
|
|
|
sub initialize {
|
|
# nothing to initialize
|
|
}
|
|
|
|
sub add_reader {
|
|
my ($self, $handle, $subref) = @_;
|
|
|
|
# add file handle to PBot::IRC's select loop
|
|
$self->{pbot}->{irc}->addfh($handle, sub { $self->on_select_read($handle, $subref) }, 'r');
|
|
|
|
# create read buffer for this handle
|
|
$self->{buffers}->{$handle} = '';
|
|
}
|
|
|
|
sub remove_reader {
|
|
my ($self, $handle) = @_;
|
|
|
|
# remove file handle from PBot::IRC's select loop
|
|
$self->{pbot}->{irc}->removefh($handle);
|
|
|
|
# delete this handle's read buffer
|
|
delete $self->{buffers}->{$handle};
|
|
}
|
|
|
|
sub on_select_read {
|
|
my ($self, $handle, $subref) = @_;
|
|
|
|
# maximum read length
|
|
my $length = 8192;
|
|
|
|
# read from handle
|
|
my $ret = sysread($handle, my $buf, $length);
|
|
|
|
# error reading
|
|
if (not defined $ret) {
|
|
$self->{pbot}->{logger}->log("SelectHandler: Error reading $handle: $!\n");
|
|
$self->remove_reader($handle);
|
|
return;
|
|
}
|
|
|
|
# reader closed
|
|
if ($ret == 0) {
|
|
# is there anything in reader's buffer?
|
|
if (length $self->{buffers}->{$handle}) {
|
|
# send buffer to reader's consumer subref
|
|
$subref->($self->{buffers}->{$handle});
|
|
}
|
|
|
|
# remove reader
|
|
$self->remove_reader($handle);
|
|
return;
|
|
}
|
|
|
|
# accumulate input into reader's buffer
|
|
$self->{buffers}->{$handle} .= $buf;
|
|
|
|
# if we read less than max length bytes then this is probably
|
|
# a complete message so send it to reader now, otherwise we'll
|
|
# continue to accumulate input into reader's buffer and then send
|
|
# the buffer when reader closes.
|
|
#
|
|
# FIXME: this should be line-based or some protocol.
|
|
|
|
if ($ret < $length) {
|
|
# send reader's buffer to reader's consumer subref
|
|
$subref->($self->{buffers}->{$handle});
|
|
|
|
# clear out reader's buffer
|
|
$self->{buffers}->{$handle} = '';
|
|
}
|
|
}
|
|
|
|
1;
|