X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lib%2FPerl%2FTidy%2FLineSink.pm;h=6516a9877e3c56d80c213f70bc40e59ac8d719f4;hb=6d131c770b3b54ee74e0d0b9179114d28dfcec27;hp=0bc48be92b1370494e1f4017ab64b53e39fe0882;hpb=d1c03e1606c180175e5c7d91f0aa78d64ae6ac27;p=perltidy.git diff --git a/lib/Perl/Tidy/LineSink.pm b/lib/Perl/Tidy/LineSink.pm index 0bc48be..6516a98 100644 --- a/lib/Perl/Tidy/LineSink.pm +++ b/lib/Perl/Tidy/LineSink.pm @@ -8,110 +8,86 @@ package Perl::Tidy::LineSink; use strict; use warnings; -our $VERSION = '20181120'; +our $VERSION = '20230309'; + +sub AUTOLOAD { + + # Catch any undefined sub calls so that we are sure to get + # some diagnostic information. This sub should never be called + # except for a programming error. + our $AUTOLOAD; + return if ( $AUTOLOAD =~ /\bDESTROY$/ ); + my ( $pkg, $fname, $lno ) = caller(); + my $my_package = __PACKAGE__; + print STDERR < undef, + line_separator => undef, + is_encoded_data => undef, + ); + my %args = ( %defaults, @args ); - if ( $rOpts->{'format'} eq 'tidy' ) { - ( $fh, $output_file ) = Perl::Tidy::streamhandle( $output_file, 'w' ); - unless ($fh) { Perl::Tidy::Die("Cannot write to output stream\n"); } - $output_file_open = 1; - if ($binmode) { - if ( $rOpts->{'character-encoding'} - && $rOpts->{'character-encoding'} eq 'utf8' ) - { - if ( ref($fh) eq 'IO::File' ) { - $fh->binmode(":encoding(UTF-8)"); - } - elsif ( $output_file eq '-' ) { - binmode STDOUT, ":encoding(UTF-8)"; - } - } - - # Patch for RT 122030 - elsif ( ref($fh) eq 'IO::File' ) { $fh->binmode(); } - - elsif ( $output_file eq '-' ) { binmode STDOUT } - } - } + my $output_file = $args{output_file}; + my $line_separator = $args{line_separator}; + my $is_encoded_data = $args{is_encoded_data}; - # in order to check output syntax when standard output is used, - # or when it is an object, we have to make a copy of the file - if ( $output_file eq '-' || ref $output_file ) { - if ( $rOpts->{'check-syntax'} ) { - - # Turning off syntax check when standard output is used. - # The reason is that temporary files cause problems on - # on many systems. - $rOpts->{'check-syntax'} = 0; - ${$rpending_logfile_message} .= < $fh, - _fh_tee => $fh_tee, _output_file => $output_file, _output_file_open => $output_file_open, - _tee_flag => 0, - _tee_file => $tee_file, - _tee_file_opened => 0, _line_separator => $line_separator, - _binmode => $binmode, + _is_encoded_data => $is_encoded_data, }, $class; } +sub set_line_separator { + my ( $self, $val ) = @_; + $self->{_line_separator} = $val; + return; +} + sub write_line { my ( $self, $line ) = @_; my $fh = $self->{_fh}; - my $output_file_open = $self->{_output_file_open}; - chomp $line; - $line .= $self->{_line_separator}; - - $fh->print($line) if ( $self->{_output_file_open} ); - - if ( $self->{_tee_flag} ) { - unless ( $self->{_tee_file_opened} ) { $self->really_open_tee_file() } - my $fh_tee = $self->{_fh_tee}; - print $fh_tee $line; + my $line_separator = $self->{_line_separator}; + if ( defined($line_separator) ) { + chomp $line; + $line .= $line_separator; } - return; -} - -sub tee_on { - my $self = shift; - $self->{_tee_flag} = 1; - return; -} -sub tee_off { - my $self = shift; - $self->{_tee_flag} = 0; - return; -} + $fh->print($line) if ( $self->{_output_file_open} ); -sub really_open_tee_file { - my $self = shift; - my $tee_file = $self->{_tee_file}; - my $fh_tee; - $fh_tee = IO::File->new(">$tee_file") - or Perl::Tidy::Die("couldn't open TEE file $tee_file: $!\n"); - binmode $fh_tee if $self->{_binmode}; - $self->{_tee_file_opened} = 1; - $self->{_fh_tee} = $fh_tee; return; } @@ -121,25 +97,9 @@ sub close_output_file { # Only close physical files, not STDOUT and other objects my $output_file = $self->{_output_file}; if ( $output_file ne '-' && !ref $output_file ) { - eval { $self->{_fh}->close() } if $self->{_output_file_open}; - } - $self->close_tee_file(); - return; -} - -sub close_tee_file { - my $self = shift; - - # Only close physical files, not STDOUT and other objects - if ( $self->{_tee_file_opened} ) { - my $tee_file = $self->{_tee_file}; - if ( $tee_file ne '-' && !ref $tee_file ) { - eval { $self->{_fh_tee}->close() }; - $self->{_tee_file_opened} = 0; - } + $self->{_fh}->close() if $self->{_output_file_open}; } return; } 1; -