#!/usr/bin/perl package Vi::QuickFix; use 5.008_000; use strict; use warnings; # use Carp; our $VERSION; BEGIN { $VERSION = ('$Revision: 1.134 $' =~ /(\d+.\d+)/)[ 0]; } unless ( caller ) { # process <> if called as an executable exec_mode(1); # signal fact ( to END processing) require Getopt::Std; Getopt::Std::getopts( 'q:f:v', \ my %opt); print "$0 version $VERSION\n" and exit 0 if $opt{ v}; err_open( $opt{ q} || $opt{ f}); print && err_out( $_) while <>; exit; } ########################################################################### # keywords for ->import use constant KEYWORDS => qw(silent sig tie fork); # environment variable(s) use constant VAR_SOURCEFILE => 'VI_QUICKFIX_SOURCEFILE'; BEGIN {{ # space for private variables my $relay = ''; # method of transfer to error file: "sig" or "tie" my %invocation; # from where was import() called? sub import { my $class = shift; my %keywords; @keywords{ KEYWORDS()} = (); $keywords{ shift()} = 1 while @_ and exists $keywords{ $_[ 0]}; my $filename = shift; make_silent() if $keywords{ silent}; my ( $wanted_relay) = grep $keywords{ $_}, qw( sig tie fork); $relay = $wanted_relay || default_relay(); if ( my $reason = relay_obstacle( $relay) ) { croak( "Cannot use '$relay' method: $reason"); } err_open($filename) unless $relay eq 'fork'; # happens in background if ( $relay eq 'tie' ) { # if tied, it's tied to ourselves (otherwise obstacle) tie *STDERR, 'Vi::QuickFix::Tee', '>&STDERR' unless tied *STDERR; } elsif ( $relay eq 'sig' ) { $SIG{ $_} = Vi::QuickFix::SigHandler->new( $_) for qw( __WARN__ __DIE__); } elsif ( $relay eq 'fork' ) { *STDERR = fork_relay($filename); } # save invocation for obligate message (undef, @invocation{qw(file line)}) = caller; } # internal variables { my $exec_mode; # set if lib file is run as a script sub exec_mode { $exec_mode = shift if @_; $exec_mode; } my $silent = 0; # switch off otherwise obligatory warning sub make_silent { $silent = 1 } sub is_silent { $silent } my $errfile = 'errors.err'; # name of error file my $errhandle; # write formatted errors here # open the given file (or default), set $errfile and $errhandle sub err_open { $errfile = shift || 'errors.err'; $errhandle = IO::File->new( $errfile, '>') or warn( "Can't create error file '$errfile': $!" ); $errhandle->autoflush if $errhandle; } sub err_print { print $errhandle @_ if $errhandle; } sub err_clean { my $unlink = shift; close $errhandle if $errhandle; unlink $errfile if $errfile and $unlink and not -s $errfile; } } sub err_out { # handle multiple, possibly multi-line messages (though usually # there will be only one) for ( map split( /\n+/), @_ ) { my $out; if ( /.+:\d+:/ ) { # already in QuickFix format, pass on err_print("$_\n"); } else { for ( parse_perl_msg($_) ) { my ( $message, $file, $line, $rest) = @$_ or next; $message .= $rest if $rest =~ s/^,//; $file eq '-' and defined and $file = $_ for $ENV{ VAR_SOURCEFILE()}; err_print("$file:$line:$message\n"); } } } } # use constant PERL_MSG => qr/^(.*?) at (.*?) line (\d+)(\.?|,.*)$/; sub parse_perl_msg { my @coll; for ( shift ) { while ( m/ at /g ) { my $text = substr($_, 0, $-[0]); my $pos = pos; while ( m/ line (\d+)(\.?|,.*)$/g ) { my $file = substr($_, $pos, $-[0] - $pos); my $line = $1; my $rest = $2; push @coll, [$text, $file, $line, $rest]; } pos = $pos; } } return @coll if @coll <= 1; my @existing = grep -e $_->[1], @coll; return @existing if @existing; return @coll; } # issue warning, erase error file my $end_entiteled = $$; END { # issue warning (only original process, and not in exec mode) unless ( is_silent or exec_mode() or $$ != $end_entiteled ) { my $invocation_at = "at $invocation{file} line $invocation{line}"; warn "QuickFix ($relay) active $invocation_at\n"; } # silently remove objects make_silent(); if ( $relay eq 'tie' ) { untie *STDERR; } elsif ( $relay eq 'sig' ) { $SIG{ $_} = 'DEFAULT' for qw( __WARN__ __DIE__); } elsif ( $relay eq 'fork' ) { close STDERR; wait_kid(); } # remove file if created by us and empty err_clean($$ == $end_entiteled); } }} use constant MINVERS => 5.008001; # minimum perl version for tie method sub relay_obstacle { my $relay = shift || ''; return '' unless $relay eq 'tie'; if ( $] < MINVERS ) { return "perl version is $], must be >= @{[ MINVERS]}"; } if ( my $tie_ob = tied *STDERR ) { my $tieclass = ref $tie_ob; return "STDERR already tied to '$tieclass'" unless $tieclass eq 'Vi::QuickFix::Tee'; } return ''; } sub default_relay { relay_obstacle( 'tie') ? 'sig' : 'tie' } { use Carp; my ($read, $write, $kid); sub fork_relay { my $filename = shift; my $parent = $$; pipe $read, $write; if ( $kid = fork ) { # parent close $read; return $write; } else { Carp::croak "Can't fork: $!" unless defined $kid; # kid close $write; err_open($filename); while ( <$read> ) { print STDERR $_; err_out($_); } err_clean(1); exit; } } use POSIX ":sys_wait_h"; sub wait_kid { my $x; do { $x = waitpid -1, WNOHANG } while $x > 0; } } # common destructor method package Vi::QuickFix::Destructor; use Carp qw( shortmess); BEGIN { our @CARP_NOT = qw( Vi::QuickFix) } sub DESTROY { my $ob = shift; return if Vi::QuickFix::is_silent or $^C; # it's a mess under -c my $id = $ob->id; my $msg = shortmess( "QuickFix $id processing interrupted"); # simulate intact QuickFix processing Vi::QuickFix::err_out( $msg); warn "$msg"; } # Class to associate a DESTROY method with sig handlers package Vi::QuickFix::SigHandler; use base qw( Vi::QuickFix::Destructor); # return a chaining handler for __WARN__ or __DIE__ sub new { my $class = shift; my $sig = shift; my $prev_handler = $SIG{ $sig}; my $sub = sub { return $sig unless @_; # backdoor Vi::QuickFix::err_out( @_) unless $sig eq '__DIE__' and _in_eval(); my $code; # resolve string at call time if ( $prev_handler ) { $code = ref $prev_handler ? $prev_handler : \ &{ 'main::' . $prev_handler}; } goto &$code if $code; die @_ if $sig eq '__DIE__'; warn @_; }; bless $sub, $class; # so we can have a destructor } sub _in_eval { my $i = -1; # first call with 0 while ( defined(my $sub = (caller ++ $i)[3]) ) { return 1 if $sub =~ /^\(eval/; } return 0; } sub id { my $handler = shift; $handler->(); # call without args returns __WARN__ or __DIE__ } # tie class to tee re-formatted output to an error file package Vi::QuickFix::Tee; use IO::File; use Tie::Handle; use base qw( Tie::StdHandle Vi::QuickFix::Destructor); sub WRITE { my $fh = shift; my ( $scalar, $length) = @_; Vi::QuickFix::err_out( $scalar); $fh->Tie::StdHandle::WRITE( @_); } sub id { 'STDERR' } 1; __END__ =head1 NAME Vi::QuickFix - Support for vim's QuickFix mode =head1 SYNOPSIS use Vi::QuickFix; use Vi::QuickFix ; use Vi::QuickFix ; use Vi::QuickFix ; where CoptionsE> is one or more of C, C, C, and C. =head1 DESCRIPTION When C is active, Perl logs errors and warnings to an I named, by default, C. This file is picked up when you type C<:cf> in a running vim editor. Vim will jump to the location of the first error recorded in the error file. C<:cn> takes you to the next error, switching files if necessary. There are more QuickFix commands in vim. Type C<:help quickfix> for a description. To activate QuickFix support for a Perl source, add use Vi::QuickFix; or, specifying an error file use Vi::QuickFix '/my/errorfile'; early in the main program, before other C statements. To leave the program file unaltered, Vi::QuickFix can be invoked from the command line as perl -MVi::QuickFix program or perl -MVi::QuickFix=/my/errorfile program C is meant to be used as a development tool, not to remain in a distributed product. When the program ends, a warning is issued, indicating that C was active. This has the side effect that there is always an entry in the error file which points to the source file where C was invoked, normally the main program. C<:cf> will take you there when other error entries don't point it elsewhere. Use the C option with C to suppress this warning. When the error file cannot be opened, a warning is issued and the program continues running without QuickFix support. If the error file is empty after the run (can only happen with C), it is removed. =head1 ENVIRONMENT C recognizes the environment variable C When Perl reads its source from C, error messages and warnings will contain the string "-" where the source file name would otherwise appear. The environment variable C can be set to a filename, which will replace "-" in those messages. If no "-" appears as a file name, setting the variable has no effect. This somewhat peculiar behavior can be useful if you call perl (with C) from within a vim run, as in C<:w !perl -MVi::QickFix>. When you set the environment variable C to the name of the file you are editing, this fools vim into doing the right thing when it encounters the modified messages. This is an experimental feature, the behavior may change in future releases. =head1 USAGE The module file .../Vi/QuickFix.pm can also be called as an executable. In that mode, it behaves basically like the C command, but also monitors the stream and logs Perl warnings and error messages to the error file. The error file can be set through the switches C<-f> or C<-q>. No warning about QuickFix activity is issued in this mode. Called with -v, it prints the version and exits. =head1 IMPLEMENTATION For a debugging tool, an implementation note is in order. Perl offers three obvious ways to watch and capture its error output. One is through the (pseudo-) signal handlers C<$SIG{__WARN__}> and C<$SIG{__DIE__}>. The other is through C-ing the C file handle. A third method involves forking a child process for the capturing and redirect C to there. C can use these three methods to create the error file. As it turns out, the ability to tie C is relatively new with Perl, as of version 5.8.1. With Versions 5.8.0 and earlier, a number of internal errors and warnings don't respect tie, so this method cannot be used. With Perl versions ealier than 5.8.1, C uses %SIG handlers to catch messages. With newer versions, C ties C so that it (additionally) writes to the error file. The forking method can be used with any version of Perl. A specific method can be requested through the options C, C and C, as in use Vi::QuickFix qw(sig); use Vi::QuickFix qw(tie); use Vi::QuickFix qw(fork); The forking method appears to work well in practice, but a race condition exists that intermittently leads to failing tests. It is not tested in the standard test suite and must be considered experimental. Requesting C with a Perl version that can't handle it is a fatal error, so the only option that does anything useful is C with a new-ish Perl. It can be useful when C-ing C conflicts with the surrounding code. =head1 CONFLICTS Similar conflicts can occur with the C method as well, and it can happen in two ways. Either C already finds a resource (a C<%SIG> handler or a tie on C) occupied at C time, or the surrounding code commandeers the resource after the fact. However, if C is already tied when C is Cd, it cannot employ the C method, and by default reverts to C. If the C method is specifically requested, a fatal error results. If the C method finds one of the handlers (C<__WARN__> and C<__DIE__>) already occupied, it chains to the previous handler after doing its thing, so that is not considered an obstacle. "Chaining" file ties is harder, and has not been attempted. If C is already active, the surrounding code may later occupy a resource it is using. There is little that can be done when that happens, except issue a warning which is also logged to the error file. This can help in finding the source of the conflict. In C mode, no such warning is given. The warning is triggered when the corresponding resource is overwritten, except when the overwriting program keeps a copy of it. It is then assumed that the program will keep it functioning. Since we're still talking implementation -- it is actually triggered through a DESTROY method when the corresponding object goes out of scope. C<%SIG> handlers are code objects just for this reason. =head1 VERSION This document pertains to C version 1.134 =head1 BUGS C has no effect =head1 AUTHOR Anno Siegel CPAN ID: ANNO siegel@zrz.tu-berlin.de http://www.tu-berlin.de/~siegel =head1 COPYRIGHT This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. =head1 SEE ALSO perl(1), vim(1).