Directory-Scanner
view release on metacpan or search on metacpan
lib/Directory/Scanner/Stream/Application.pm view on Meta::CPAN
package Directory::Scanner::Stream::Application;
# ABSTRACT: Apply function to streaming directory iterator
use strict;
use warnings;
use Carp ();
use Scalar::Util ();
our $VERSION = '0.04';
our $AUTHORITY = 'cpan:STEVAN';
use constant DEBUG => $ENV{DIR_SCANNER_STREAM_APPLICATION_DEBUG} // 0;
## ...
use parent 'UNIVERSAL::Object';
use roles 'Directory::Scanner::API::Stream';
use slots (
stream => sub {},
function => sub {},
);
## ...
sub BUILD {
my $self = $_[0];
my $stream = $self->{stream};
my $f = $self->{function};
(Scalar::Util::blessed($stream) && $stream->roles::DOES('Directory::Scanner::API::Stream'))
|| Carp::confess 'You must supply a directory stream';
(defined $f)
|| Carp::confess 'You must supply a `function` value';
(ref $f eq 'CODE')
|| Carp::confess 'The `function` value supplied must be a CODE reference';
}
sub clone {
my ($self, $dir) = @_;
return $self->new(
stream => $self->{stream}->clone( $dir ),
function => $self->{function}
);
}
## delegate
sub head { $_[0]->{stream}->head }
sub is_done { $_[0]->{stream}->is_done }
sub is_closed { $_[0]->{stream}->is_closed }
sub close { $_[0]->{stream}->close }
sub next {
my $self = $_[0];
my $next = $self->{stream}->next;
# this means the stream is likely exhausted
return unless defined $next;
# apply the function ...
local $_ = $next;
$self->{function}->( $next );
# return the next value
return $next;
}
1;
__END__
=pod
=head1 NAME
Directory::Scanner::Stream::Application - Apply function to streaming directory iterator
=head1 VERSION
version 0.04
=head1 DESCRIPTION
This is provides a stream that will apply a function to each item
using the given C<function> CODE ref.
=head1 METHODS
This object conforms to the C<Directory::Scanner::API::Stream> API.
=head1 AUTHOR
Stevan Little <stevan@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2017, 2018 by Stevan Little.
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
( run in 0.485 second using v1.01-cache-2.11-cpan-39bf76dae61 )