The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
use v5.12.5;
our $VERSION = '1.16.0'; # VERSION
sub new {
my $that = shift;
my $proto = ref($that) || $that;
my $self = $proto->SUPER::new(@_);
bless( $self, $proto );
return $self;
}
sub open {
my ( $self, $mode, $file ) = @_;
Rex::Logger::debug("Opening $file with mode: $mode");
open( $self->{fh}, $mode, $file ) or return;
return 1;
}
sub read {
my ( $self, $len ) = @_;
my $buf;
read( $self->{fh}, $buf, $len );
return $buf;
}
sub write {
my ( $self, $buf ) = @_;
utf8::encode($buf)
if Rex::Config->get_write_utf8_files && utf8::is_utf8($buf);
my $fh = $self->{fh};
print $fh $buf;
}
sub seek {
my ( $self, $pos ) = @_;
my $fh = $self->{fh};
seek( $fh, $pos, 0 );
}
sub close {
my ($self) = @_;
my $fh = $self->{fh};
close $fh if $fh;
$self->{fh} = undef;
$self = undef;
}
1;