1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
# You may distribute under the terms of either the GNU General Public License
# or the Artistic License (the same terms as Perl itself)
#
# (C) Paul Evans, 2019-2021 -- leonerd@leonerd.org.uk
package Future::IO::ImplBase 0.16;
use v5.14;
use warnings;
use Errno qw( EAGAIN EWOULDBLOCK EINPROGRESS );
use Socket qw( SOL_SOCKET SO_ERROR );
# connect() yields EWOULDBLOCK on MSWin32
use constant CONNECT_EWOULDBLOCK => ( $^O eq "MSWin32" );
use constant HAVE_MULTIPLE_FILEHANDLES => 1;
=head1 NAME
C<Future::IO::ImplBase> - base class for C<Future::IO> implementations
=head1 DESCRIPTION
This package provides a few utility methods that may help writing actual
L<Future::IO> implementation classes. It is entirely optional; implementations
are not required to use it.
=cut
=head1 CLASS METHODS
=cut
=head2 APPLY
__PACKAGE__->APPLY;
Attempts to set the value of the C<$Future::IO::IMPL> variable to the name of
the calling package.
=cut
sub APPLY
{
my $pkg = shift;
no warnings 'once';
( $Future::IO::IMPL //= $pkg ) eq $pkg or
warn "Unable to set Future::IO implementation to $pkg".
" as it is already $Future::IO::IMPL\n";
}
=head1 DEFAULT METHODS
These methods are provided based on lower-level functionality that the
implementing class should provide.
=cut
=head2 accept
Implemented by wrapping C<ready_for_read>, as L</sysread> uses.
=cut
sub accept
{
my $self = shift;
my ( $fh ) = @_;
return $self->ready_for_read( $fh )->then( sub {
my $accepted = $fh->accept;
if( $accepted ) {
return Future->done( $accepted );
}
else {
return Future->fail( "accept: $!\n", accept => $fh, $! );
}
} );
}
=head2 alarm
Implemented by wrapping C<sleep>.
=cut
sub alarm
{
my $self = shift;
my ( $time ) = @_;
return $self->sleep( $time - Time::HiRes::time() );
}
=head2 connect
Implemented by wrapping C<ready_for_write>, as L</syswrite> uses.
=cut
sub connect
{
my $self = shift;
my ( $fh, $name ) = @_;
# We can't use IO::Socket->connect here because
# https://github.com/Perl/perl5/issues/19326
my $ret = CORE::connect( $fh, $name );
my $errno = $!;
if( $ret ) {
return Future->done;
}
elsif( $errno != EINPROGRESS and !CONNECT_EWOULDBLOCK || $errno != EWOULDBLOCK ) {
return Future->fail( "connect: $errno\n", connect => $fh, $errno );
}
# not synchronous result
return $self->ready_for_write( $fh )->then( sub {
$errno = $fh->getsockopt( SOL_SOCKET, SO_ERROR );
if( $errno ) {
$! = $errno;
return Future->fail( "connect: $!\n", connect => $fh, $! );
}
return Future->done;
} );
}
=head2 sysread
Requires a lower-level method
$f = $class->ready_for_read( $fh );
which should return a Future that completes when the given filehandle may be
ready for reading.
=cut
sub _sysread1
{
my $self = shift;
my ( $f, $fh, $length ) = @_;
my $waitf = $self->ready_for_read( $fh )->on_done( sub {
my $ret = $fh->sysread( my $buf, $length );
if( $ret ) {
$f->done( $buf );
}
elsif( defined $ret ) {
# EOF
$f->done();
}
elsif( $! == EAGAIN or $! == EWOULDBLOCK ) {
# Try again
$self->_sysread1( $f, $fh, $length );
}
else {
$f->fail( "sysread: $!\n", sysread => $fh, $! );
}
});
$f //= $waitf->new;
$f->on_cancel( $waitf );
return $f;
}
sub sysread
{
my $self = shift;
return $self->_sysread1( undef, @_ );
}
=head2 syswrite
Requires a lower-level method
$f = $class->ready_for_write( $fh );
which should return a Future that completes when the given filehandle may be
ready for writing.
=cut
sub _syswrite1
{
my $self = shift;
my ( $f, $fh, $data ) = @_;
my $waitf = $self->ready_for_write( $fh )->on_done( sub {
my $len = $fh->syswrite( $data );
if( defined $len ) {
$f->done( $len );
}
elsif( $! == EAGAIN or $! == EWOULDBLOCK ) {
# Try again
$self->_syswrite1( $f, $fh, $data );
}
else {
$f->fail( "syswrite: $!\n", syswrite => $fh, $! );
}
});
$f //= $waitf->new;
$f->on_cancel( $waitf );
return $f;
}
sub syswrite
{
my $self = shift;
return $self->_syswrite1( undef, @_ );
}
=head1 AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
=cut
0x55AA;
|