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
|
package Crypt::Random::Source::Base::Handle;
# ABSTRACT: L<IO::Handle> based random data sources
our $VERSION = '0.14';
use Moo;
use Types::Standard qw(Bool);
use Errno;
use Carp qw(croak);
use IO::Handle;
use namespace::clean;
extends qw(Crypt::Random::Source::Base);
has allow_under_read => (
isa => Bool,
is => "rw",
default => 0,
);
has reread_attempts => (
is => "rw",
default => 1,
);
has handle => (
is => "rw",
lazy => 1,
builder => 1,
predicate => "has_handle",
clearer => "clear_handle",
);
sub blocking { shift->handle->blocking(@_) }
sub read { shift->handle->read(@_) }
sub opened { shift->handle->opened(@_) }
sub DEMOLISH {
my $self = shift;
$self->close;
}
sub _build_handle {
my ( $self, @args ) = @_;
$self->open_handle;
}
sub open_handle {
die "open_handle is an abstract method";
}
sub get {
my ( $self, $n, @args ) = @_;
croak "How many bytes would you like to read?" unless $n;
return $self->_read($self->handle, $n, @args);
}
sub _read {
my ( $self, $handle, $n, @args) = @_;
my $buf;
my $got = $self->read($buf, $n);
if ( defined($got) && $got == $n || $!{EWOULDBLOCK} || $!{EAGAIN} ) {
return $buf;
} else {
croak "read error: $!" unless defined $got;
return $self->_read_too_short($buf, $got, $n, @args);
}
}
sub _read_too_short {
my ( $self, $buf, $got, $req, %args ) = @_;
if ( $self->allow_under_read ) {
return $buf;
} else {
if ( ($self->reread_attempts || 0) >= ($args{reread_attempt} || 0) ) {
croak "Source failed to read enough bytes (requested $req, got $got)";
} else {
return $buf . $self->_read( $req - $got, reread_attempt => 1 + ( $args{reread_attempt} || 0 ) );
}
}
}
sub close {
my $self = shift;
# During global destruction, $self->handle can be undef already,
# so we need to also check if it is defined.
if ( $self->has_handle and $self->handle ) {
$self->handle->close; # or die "close: $!"; # open "-|" returns exit status on close
$self->clear_handle;
}
}
1;
=pod
=encoding UTF-8
=head1 NAME
Crypt::Random::Source::Base::Handle - L<IO::Handle> based random data sources
=head1 VERSION
version 0.14
=head1 SYNOPSIS
use Moo;
extends qw(Crypt::Random::Source::Base::Handle);
sub open_handle {
# invoked as needed
}
# this class can also be used directly
Crypt::Random::Source::Base::Handle->new( handle => $file_handle );
# it supports some standard methods:
$p->blocking(0);
$p->read( my $buf, $n ); # no error handling here
=head1 DESCRIPTION
This is a concrete base class for all L<IO::Handle> based random data sources.
It implements error handling
=head1 ATTRIBUTES
=head2 handle
An L<IO::Handle> or file handle to read from.
=head2 blocking
This is actually handled by C<handle>, and is documented in L<IO::Handle>.
=head2 allow_under_read
Whether or not under reading is considered an error.
Defaults to false.
=head2 reread_attempts
The number of attempts to make at rereading if the handle did not provide
enough bytes on the first attempt.
Defaults to 1.
Only used if C<allow_under_read> is enabled.
=head1 METHODS
=head2 get
See L<Crypt::Random::Source::Base/get>.
When C<blocking> or C<allow_under_read> are set to a true value this method may
return fewer bytes than requested.
=head2 read
This delegates directly to C<handle>.
It B<DOES NOT> provide the same validation as C<get> would have, so no checking
for underreads is done.
=head2 close
Close the handle and clear it.
=head2 _read
C<< $self->handle->read >> but with additional error checking and different
calling conventions.
=head2 _read_too_short
Called by C<_read> when not enough data was read from the handle. Normally it
will either die with an error or attempt to reread. When C<allow_under_read> is
true it will just return the partial buffer.
=head2 open_handle
Abstract method, should return an L<IO::Handle> to use.
=head1 SUPPORT
Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=Crypt-Random-Source>
(or L<bug-Crypt-Random-Source@rt.cpan.org|mailto:bug-Crypt-Random-Source@rt.cpan.org>).
=head1 AUTHOR
יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2008 by Yuval Kogman.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
__END__
# ex: set sw=4 et:
|