App-Addex
view release on metacpan or search on metacpan
lib/App/Addex/Output/ToFile.pm view on Meta::CPAN
use strict;
use warnings;
package App::Addex::Output::ToFile 0.027;
# ABSTRACT: base class for output plugins that write to files
use parent 'App::Addex::Output';
use Carp ();
#pod =head1 DESCRIPTION
#pod
#pod This is a base class for output plugins that will write to files. The
#pod "filename" configuration parameter must be given, and must be the name of a
#pod file to which the user can write.
#pod
#pod =method new
#pod
#pod my $addex = App::Addex::Output::Subclass->new(\%arg);
#pod
#pod This method returns a new outputter. It should be subclassed to provide a
#pod C<process_entry> method.
#pod
#pod Valid arguments are:
#pod
#pod filename - the file to which to write configuration (required)
#pod
#pod =cut
sub new {
my ($class, $arg) = @_;
Carp::croak "no filename argument given for $class" unless $arg->{filename};
my $self = $class->SUPER::new;
open my $fh, '>', $arg->{filename}
or Carp::croak "couldn't open output file $arg->{filename}: $!";
binmode($fh, ':encoding(utf8)');
$self->{fh} = $fh;
return $self;
}
#pod =method output
#pod
#pod $outputter->output($string);
#pod
#pod This method appends the given string to the output file, adding a newline.
#pod
#pod =cut
sub output {
my ($self, $line) = @_;
print { $self->{fh} } "$line\n"
or Carp::croak "couldn't write to output file: $!";
}
sub finalize {
# We'll just delete this ref and let garbage collection cause closing if
# needed. -- rjbs, 2007-11-05
delete $_[0]->{fh};
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
App::Addex::Output::ToFile - base class for output plugins that write to files
=head1 VERSION
version 0.027
=head1 DESCRIPTION
This is a base class for output plugins that will write to files. The
"filename" configuration parameter must be given, and must be the name of a
file to which the user can write.
=head1 PERL VERSION SUPPORT
This module has the same support period as perl itself: it supports the two
most recent versions of perl. (That is, if the most recently released version
is v5.40, then this module should work on both v5.40 and v5.38.)
( run in 1.083 second using v1.01-cache-2.11-cpan-0bb4e1dffa6 )