home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / diagnostics.pm < prev    next >
Text File  |  2003-11-07  |  16KB  |  618 lines

  1. package diagnostics;
  2.  
  3. =head1 NAME
  4.  
  5. diagnostics - Perl compiler pragma to force verbose warning diagnostics
  6.  
  7. splain - filter to produce verbose descriptions of perl warning diagnostics
  8.  
  9. =head1 SYNOPSIS
  10.  
  11. As a pragma:
  12.  
  13.     use diagnostics;
  14.     use diagnostics -verbose;
  15.  
  16.     enable  diagnostics;
  17.     disable diagnostics;
  18.  
  19. As a program:
  20.  
  21.     perl program 2>diag.out
  22.     splain [-v] [-p] diag.out
  23.  
  24.  
  25. =head1 DESCRIPTION
  26.  
  27. =head2 The C<diagnostics> Pragma
  28.  
  29. This module extends the terse diagnostics normally emitted by both the
  30. perl compiler and the perl interpreter, augmenting them with the more
  31. explicative and endearing descriptions found in L<perldiag>.  Like the
  32. other pragmata, it affects the compilation phase of your program rather
  33. than merely the execution phase.
  34.  
  35. To use in your program as a pragma, merely invoke
  36.  
  37.     use diagnostics;
  38.  
  39. at the start (or near the start) of your program.  (Note 
  40. that this I<does> enable perl's B<-w> flag.)  Your whole
  41. compilation will then be subject(ed :-) to the enhanced diagnostics.
  42. These still go out B<STDERR>.
  43.  
  44. Due to the interaction between runtime and compiletime issues,
  45. and because it's probably not a very good idea anyway,
  46. you may not use C<no diagnostics> to turn them off at compiletime.
  47. However, you may control their behaviour at runtime using the 
  48. disable() and enable() methods to turn them off and on respectively.
  49.  
  50. The B<-verbose> flag first prints out the L<perldiag> introduction before
  51. any other diagnostics.  The $diagnostics::PRETTY variable can generate nicer
  52. escape sequences for pagers.
  53.  
  54. Warnings dispatched from perl itself (or more accurately, those that match
  55. descriptions found in L<perldiag>) are only displayed once (no duplicate
  56. descriptions).  User code generated warnings a la warn() are unaffected,
  57. allowing duplicate user messages to be displayed.
  58.  
  59. =head2 The I<splain> Program
  60.  
  61. While apparently a whole nuther program, I<splain> is actually nothing
  62. more than a link to the (executable) F<diagnostics.pm> module, as well as
  63. a link to the F<diagnostics.pod> documentation.  The B<-v> flag is like
  64. the C<use diagnostics -verbose> directive.
  65. The B<-p> flag is like the
  66. $diagnostics::PRETTY variable.  Since you're post-processing with 
  67. I<splain>, there's no sense in being able to enable() or disable() processing.
  68.  
  69. Output from I<splain> is directed to B<STDOUT>, unlike the pragma.
  70.  
  71. =head1 EXAMPLES
  72.  
  73. The following file is certain to trigger a few errors at both
  74. runtime and compiletime:
  75.  
  76.     use diagnostics;
  77.     print NOWHERE "nothing\n";
  78.     print STDERR "\n\tThis message should be unadorned.\n";
  79.     warn "\tThis is a user warning";
  80.     print "\nDIAGNOSTIC TESTER: Please enter a <CR> here: ";
  81.     my $a, $b = scalar <STDIN>;
  82.     print "\n";
  83.     print $x/$y;
  84.  
  85. If you prefer to run your program first and look at its problem
  86. afterwards, do this:
  87.  
  88.     perl -w test.pl 2>test.out
  89.     ./splain < test.out
  90.  
  91. Note that this is not in general possible in shells of more dubious heritage, 
  92. as the theoretical 
  93.  
  94.     (perl -w test.pl >/dev/tty) >& test.out
  95.     ./splain < test.out
  96.  
  97. Because you just moved the existing B<stdout> to somewhere else.
  98.  
  99. If you don't want to modify your source code, but still have on-the-fly
  100. warnings, do this:
  101.  
  102.     exec 3>&1; perl -w test.pl 2>&1 1>&3 3>&- | splain 1>&2 3>&- 
  103.  
  104. Nifty, eh?
  105.  
  106. If you want to control warnings on the fly, do something like this.
  107. Make sure you do the C<use> first, or you won't be able to get
  108. at the enable() or disable() methods.
  109.  
  110.     use diagnostics; # checks entire compilation phase 
  111.     print "\ntime for 1st bogus diags: SQUAWKINGS\n";
  112.     print BOGUS1 'nada';
  113.     print "done with 1st bogus\n";
  114.  
  115.     disable diagnostics; # only turns off runtime warnings
  116.     print "\ntime for 2nd bogus: (squelched)\n";
  117.     print BOGUS2 'nada';
  118.     print "done with 2nd bogus\n";
  119.  
  120.     enable diagnostics; # turns back on runtime warnings
  121.     print "\ntime for 3rd bogus: SQUAWKINGS\n";
  122.     print BOGUS3 'nada';
  123.     print "done with 3rd bogus\n";
  124.  
  125.     disable diagnostics;
  126.     print "\ntime for 4th bogus: (squelched)\n";
  127.     print BOGUS4 'nada';
  128.     print "done with 4th bogus\n";
  129.  
  130. =head1 INTERNALS
  131.  
  132. Diagnostic messages derive from the F<perldiag.pod> file when available at
  133. runtime.  Otherwise, they may be embedded in the file itself when the
  134. splain package is built.   See the F<Makefile> for details.
  135.  
  136. If an extant $SIG{__WARN__} handler is discovered, it will continue
  137. to be honored, but only after the diagnostics::splainthis() function 
  138. (the module's $SIG{__WARN__} interceptor) has had its way with your
  139. warnings.
  140.  
  141. There is a $diagnostics::DEBUG variable you may set if you're desperately
  142. curious what sorts of things are being intercepted.
  143.  
  144.     BEGIN { $diagnostics::DEBUG = 1 } 
  145.  
  146.  
  147. =head1 BUGS
  148.  
  149. Not being able to say "no diagnostics" is annoying, but may not be
  150. insurmountable.
  151.  
  152. The C<-pretty> directive is called too late to affect matters.
  153. You have to do this instead, and I<before> you load the module.
  154.  
  155.     BEGIN { $diagnostics::PRETTY = 1 } 
  156.  
  157. I could start up faster by delaying compilation until it should be
  158. needed, but this gets a "panic: top_level" when using the pragma form
  159. in Perl 5.001e.
  160.  
  161. While it's true that this documentation is somewhat subserious, if you use
  162. a program named I<splain>, you should expect a bit of whimsy.
  163.  
  164. =head1 AUTHOR
  165.  
  166. Tom Christiansen <F<tchrist@mox.perl.com>>, 25 June 1995.
  167.  
  168. =cut
  169.  
  170. use strict;
  171. use 5.006;
  172. use Carp;
  173.  
  174. our $VERSION = 1.11;
  175. our $DEBUG;
  176. our $VERBOSE;
  177. our $PRETTY;
  178.  
  179. use Config;
  180. my($privlib, $archlib) = @Config{qw(privlibexp archlibexp)};
  181. if ($^O eq 'VMS') {
  182.     require VMS::Filespec;
  183.     $privlib = VMS::Filespec::unixify($privlib);
  184.     $archlib = VMS::Filespec::unixify($archlib);
  185. }
  186. my @trypod = (
  187.        "$archlib/pod/perldiag.pod",
  188.        "$privlib/pod/perldiag-$Config{version}.pod",
  189.        "$privlib/pod/perldiag.pod",
  190.        "$archlib/pods/perldiag.pod",
  191.        "$privlib/pods/perldiag-$Config{version}.pod",
  192.        "$privlib/pods/perldiag.pod",
  193.       );
  194. # handy for development testing of new warnings etc
  195. unshift @trypod, "./pod/perldiag.pod" if -e "pod/perldiag.pod";
  196. (my $PODFILE) = ((grep { -e } @trypod), $trypod[$#trypod])[0];
  197.  
  198. if ($^O eq 'MacOS') {
  199.     # just updir one from each lib dir, we'll find it ...
  200.     ($PODFILE) = grep { -e } map { "$_:pod:perldiag.pod" } @INC;
  201. }
  202.  
  203.  
  204. $DEBUG ||= 0;
  205. my $WHOAMI = ref bless [];  # nobody's business, prolly not even mine
  206.  
  207. local $| = 1;
  208. local $_;
  209.  
  210. my $standalone;
  211. my(%HTML_2_Troff, %HTML_2_Latin_1, %HTML_2_ASCII_7);
  212.  
  213. CONFIG: {
  214.     our $opt_p = our $opt_d = our $opt_v = our $opt_f = '';
  215.  
  216.     unless (caller) {
  217.     $standalone++;
  218.     require Getopt::Std;
  219.     Getopt::Std::getopts('pdvf:')
  220.         or die "Usage: $0 [-v] [-p] [-f splainpod]";
  221.     $PODFILE = $opt_f if $opt_f;
  222.     $DEBUG = 2 if $opt_d;
  223.     $VERBOSE = $opt_v;
  224.     $PRETTY = $opt_p;
  225.     }
  226.  
  227.     if (open(POD_DIAG, $PODFILE)) {
  228.     warn "Happy happy podfile from real $PODFILE\n" if $DEBUG;
  229.     last CONFIG;
  230.     } 
  231.  
  232.     if (caller) {
  233.     INCPATH: {
  234.         for my $file ( (map { "$_/$WHOAMI.pm" } @INC), $0) {
  235.         warn "Checking $file\n" if $DEBUG;
  236.         if (open(POD_DIAG, $file)) {
  237.             while (<POD_DIAG>) {
  238.             next unless
  239.                 /^__END__\s*# wish diag dbase were more accessible/;
  240.             print STDERR "podfile is $file\n" if $DEBUG;
  241.             last INCPATH;
  242.             }
  243.         }
  244.         } 
  245.     }
  246.     } else { 
  247.     print STDERR "podfile is <DATA>\n" if $DEBUG;
  248.     *POD_DIAG = *main::DATA;
  249.     }
  250. }
  251. if (eof(POD_DIAG)) { 
  252.     die "couldn't find diagnostic data in $PODFILE @INC $0";
  253. }
  254.  
  255.  
  256. %HTML_2_Troff = (
  257.     'amp'    =>    '&',    #   ampersand
  258.     'lt'    =>    '<',    #   left chevron, less-than
  259.     'gt'    =>    '>',    #   right chevron, greater-than
  260.     'quot'    =>    '"',    #   double quote
  261.  
  262.     "Aacute"    =>    "A\\*'",    #   capital A, acute accent
  263.     # etc
  264.  
  265. );
  266.  
  267. %HTML_2_Latin_1 = (
  268.     'amp'    =>    '&',    #   ampersand
  269.     'lt'    =>    '<',    #   left chevron, less-than
  270.     'gt'    =>    '>',    #   right chevron, greater-than
  271.     'quot'    =>    '"',    #   double quote
  272.  
  273.     "Aacute"    =>    "\xC1"    #   capital A, acute accent
  274.  
  275.     # etc
  276. );
  277.  
  278. %HTML_2_ASCII_7 = (
  279.     'amp'    =>    '&',    #   ampersand
  280.     'lt'    =>    '<',    #   left chevron, less-than
  281.     'gt'    =>    '>',    #   right chevron, greater-than
  282.     'quot'    =>    '"',    #   double quote
  283.  
  284.     "Aacute"    =>    "A"    #   capital A, acute accent
  285.     # etc
  286. );
  287.  
  288. our %HTML_Escapes;
  289. *HTML_Escapes = do {
  290.     if ($standalone) {
  291.     $PRETTY ? \%HTML_2_Latin_1 : \%HTML_2_ASCII_7; 
  292.     } else {
  293.     \%HTML_2_Latin_1; 
  294.     }
  295. }; 
  296.  
  297. *THITHER = $standalone ? *STDOUT : *STDERR;
  298.  
  299. my %transfmt = (); 
  300. my $transmo = <<EOFUNC;
  301. sub transmo {
  302.     #local \$^W = 0;  # recursive warnings we do NOT need!
  303.     study;
  304. EOFUNC
  305.  
  306. my %msg;
  307. {
  308.     print STDERR "FINISHING COMPILATION for $_\n" if $DEBUG;
  309.     local $/ = '';
  310.     local $_;
  311.     my $header;
  312.     my $for_item;
  313.     while (<POD_DIAG>) {
  314.  
  315.     unescape();
  316.     if ($PRETTY) {
  317.         sub noop   { return $_[0] }  # spensive for a noop
  318.         sub bold   { my $str =$_[0];  $str =~ s/(.)/$1\b$1/g; return $str; } 
  319.         sub italic { my $str = $_[0]; $str =~ s/(.)/_\b$1/g;  return $str; } 
  320.         s/[BC]<(.*?)>/bold($1)/ges;
  321.         s/[LIF]<(.*?)>/italic($1)/ges;
  322.     } else {
  323.         s/[BC]<(.*?)>/$1/gs;
  324.         s/[LIF]<(.*?)>/$1/gs;
  325.     } 
  326.     unless (/^=/) {
  327.         if (defined $header) { 
  328.         if ( $header eq 'DESCRIPTION' && 
  329.             (   /Optional warnings are enabled/ 
  330.              || /Some of these messages are generic./
  331.             ) )
  332.         {
  333.             next;
  334.         }
  335.         s/^/    /gm;
  336.         $msg{$header} .= $_;
  337.          undef $for_item;    
  338.         }
  339.         next;
  340.     } 
  341.     unless ( s/=item (.*?)\s*\z//) {
  342.  
  343.         if ( s/=head1\sDESCRIPTION//) {
  344.         $msg{$header = 'DESCRIPTION'} = '';
  345.         undef $for_item;
  346.         }
  347.         elsif( s/^=for\s+diagnostics\s*\n(.*?)\s*\z// ) {
  348.         $for_item = $1;
  349.         } 
  350.         next;
  351.     }
  352.  
  353.     if( $for_item ) { $header = $for_item; undef $for_item } 
  354.     else {
  355.         $header = $1;
  356.         while( $header =~ /[;,]\z/ ) {
  357.         <POD_DIAG> =~ /^\s*(.*?)\s*\z/;
  358.         $header .= ' '.$1;
  359.         }
  360.     }
  361.  
  362.     # strip formatting directives from =item line
  363.     $header =~ s/[A-Z]<(.*?)>/$1/g;
  364.  
  365.         my @toks = split( /(%l?[dx]|%c|%(?:\.\d+)?s)/, $header );
  366.     if (@toks > 1) {
  367.             my $conlen = 0;
  368.             for my $i (0..$#toks){
  369.                 if( $i % 2 ){
  370.                     if(      $toks[$i] eq '%c' ){
  371.                         $toks[$i] = '.';
  372.                     } elsif( $toks[$i] eq '%d' ){
  373.                         $toks[$i] = '\d+';
  374.                     } elsif( $toks[$i] eq '%s' ){
  375.                         $toks[$i] = $i == $#toks ? '.*' : '.*?';
  376.                     } elsif( $toks[$i] =~ '%.(\d+)s' ){
  377.                         $toks[$i] = ".{$1}";
  378.                      } elsif( $toks[$i] =~ '^%l*x$' ){
  379.                         $toks[$i] = '[\da-f]+';
  380.                    }
  381.                 } elsif( length( $toks[$i] ) ){
  382.                     $toks[$i] =~ s/^.*$/\Q$&\E/;
  383.                     $conlen += length( $toks[$i] );
  384.                 }
  385.             }  
  386.             my $lhs = join( '', @toks );
  387.         $transfmt{$header}{pat} =
  388.               "    s{^$lhs}\n     {\Q$header\E}s\n\t&& return 1;\n";
  389.             $transfmt{$header}{len} = $conlen;
  390.     } else {
  391.             $transfmt{$header}{pat} =
  392.           "    m{^\Q$header\E} && return 1;\n";
  393.             $transfmt{$header}{len} = length( $header );
  394.     } 
  395.  
  396.     print STDERR "$WHOAMI: Duplicate entry: \"$header\"\n"
  397.         if $msg{$header};
  398.  
  399.     $msg{$header} = '';
  400.     } 
  401.  
  402.  
  403.     close POD_DIAG unless *main::DATA eq *POD_DIAG;
  404.  
  405.     die "No diagnostics?" unless %msg;
  406.  
  407.     # Apply patterns in order of decreasing sum of lengths of fixed parts
  408.     # Seems the best way of hitting the right one.
  409.     for my $hdr ( sort { $transfmt{$b}{len} <=> $transfmt{$a}{len} }
  410.                   keys %transfmt ){
  411.         $transmo .= $transfmt{$hdr}{pat};
  412.     }
  413.     $transmo .= "    return 0;\n}\n";
  414.     print STDERR $transmo if $DEBUG;
  415.     eval $transmo;
  416.     die $@ if $@;
  417. }
  418.  
  419. if ($standalone) {
  420.     if (!@ARGV and -t STDIN) { print STDERR "$0: Reading from STDIN\n" } 
  421.     while (defined (my $error = <>)) {
  422.     splainthis($error) || print THITHER $error;
  423.     } 
  424.     exit;
  425.  
  426. my $olddie;
  427. my $oldwarn;
  428.  
  429. sub import {
  430.     shift;
  431.     $^W = 1; # yup, clobbered the global variable; 
  432.          # tough, if you want diags, you want diags.
  433.     return if defined $SIG{__WARN__} && ($SIG{__WARN__} eq \&warn_trap);
  434.  
  435.     for (@_) {
  436.  
  437.     /^-d(ebug)?$/            && do {
  438.                     $DEBUG++;
  439.                     next;
  440.                    };
  441.  
  442.     /^-v(erbose)?$/     && do {
  443.                     $VERBOSE++;
  444.                     next;
  445.                    };
  446.  
  447.     /^-p(retty)?$/         && do {
  448.                     print STDERR "$0: I'm afraid it's too late for prettiness.\n";
  449.                     $PRETTY++;
  450.                     next;
  451.                    };
  452.  
  453.     warn "Unknown flag: $_";
  454.     } 
  455.  
  456.     $oldwarn = $SIG{__WARN__};
  457.     $olddie = $SIG{__DIE__};
  458.     $SIG{__WARN__} = \&warn_trap;
  459.     $SIG{__DIE__} = \&death_trap;
  460.  
  461. sub enable { &import }
  462.  
  463. sub disable {
  464.     shift;
  465.     return unless $SIG{__WARN__} eq \&warn_trap;
  466.     $SIG{__WARN__} = $oldwarn || '';
  467.     $SIG{__DIE__} = $olddie || '';
  468.  
  469. sub warn_trap {
  470.     my $warning = $_[0];
  471.     if (caller eq $WHOAMI or !splainthis($warning)) {
  472.     print STDERR $warning;
  473.     } 
  474.     &$oldwarn if defined $oldwarn and $oldwarn and $oldwarn ne \&warn_trap;
  475. };
  476.  
  477. sub death_trap {
  478.     my $exception = $_[0];
  479.  
  480.     # See if we are coming from anywhere within an eval. If so we don't
  481.     # want to explain the exception because it's going to get caught.
  482.     my $in_eval = 0;
  483.     my $i = 0;
  484.     while (1) {
  485.       my $caller = (caller($i++))[3] or last;
  486.       if ($caller eq '(eval)') {
  487.     $in_eval = 1;
  488.     last;
  489.       }
  490.     }
  491.  
  492.     splainthis($exception) unless $in_eval;
  493.     if (caller eq $WHOAMI) { print STDERR "INTERNAL EXCEPTION: $exception"; } 
  494.     &$olddie if defined $olddie and $olddie and $olddie ne \&death_trap;
  495.  
  496.     return if $in_eval;
  497.  
  498.     # We don't want to unset these if we're coming from an eval because
  499.     # then we've turned off diagnostics.
  500.  
  501.     # Switch off our die/warn handlers so we don't wind up in our own
  502.     # traps.
  503.     $SIG{__DIE__} = $SIG{__WARN__} = '';
  504.  
  505.     # Have carp skip over death_trap() when showing the stack trace.
  506.     local($Carp::CarpLevel) = 1;
  507.  
  508.     confess "Uncaught exception from user code:\n\t$exception";
  509.     # up we go; where we stop, nobody knows, but i think we die now
  510.     # but i'm deeply afraid of the &$olddie guy reraising and us getting
  511.     # into an indirect recursion loop
  512. };
  513.  
  514. my %exact_duplicate;
  515. my %old_diag;
  516. my $count;
  517. my $wantspace;
  518. sub splainthis {
  519.     local $_ = shift;
  520.     local $\;
  521.     ### &finish_compilation unless %msg;
  522.     s/\.?\n+$//;
  523.     my $orig = $_;
  524.     # return unless defined;
  525.  
  526.     # get rid of the where-are-we-in-input part
  527.     s/, <.*?> (?:line|chunk).*$//;
  528.  
  529.     # Discard 1st " at <file> line <no>" and all text beyond
  530.     # but be aware of messsages containing " at this-or-that"
  531.     my $real = 0;
  532.     my @secs = split( / at / );
  533.     $_ = $secs[0];
  534.     for my $i ( 1..$#secs ){
  535.         if( $secs[$i] =~ /.+? (?:line|chunk) \d+/ ){
  536.             $real = 1;
  537.             last;
  538.         } else {
  539.             $_ .= ' at ' . $secs[$i];
  540.     }
  541.     }
  542.     
  543.     # remove parenthesis occurring at the end of some messages 
  544.     s/^\((.*)\)$/$1/;
  545.  
  546.     if ($exact_duplicate{$orig}++) {
  547.     return &transmo;
  548.     } else {
  549.     return 0 unless &transmo;
  550.     }
  551.  
  552.     $orig = shorten($orig);
  553.     if ($old_diag{$_}) {
  554.     autodescribe();
  555.     print THITHER "$orig (#$old_diag{$_})\n";
  556.     $wantspace = 1;
  557.     } else {
  558.     autodescribe();
  559.     $old_diag{$_} = ++$count;
  560.     print THITHER "\n" if $wantspace;
  561.     $wantspace = 0;
  562.     print THITHER "$orig (#$old_diag{$_})\n";
  563.     if ($msg{$_}) {
  564.         print THITHER $msg{$_};
  565.     } else {
  566.         if (0 and $standalone) { 
  567.         print THITHER "    **** Error #$old_diag{$_} ",
  568.             ($real ? "is" : "appears to be"),
  569.             " an unknown diagnostic message.\n\n";
  570.         }
  571.         return 0;
  572.     } 
  573.     }
  574.     return 1;
  575.  
  576. sub autodescribe {
  577.     if ($VERBOSE and not $count) {
  578.     print THITHER &{$PRETTY ? \&bold : \&noop}("DESCRIPTION OF DIAGNOSTICS"),
  579.         "\n$msg{DESCRIPTION}\n";
  580.     } 
  581.  
  582. sub unescape { 
  583.     s {
  584.             E<  
  585.             ( [A-Za-z]+ )       
  586.             >   
  587.     } { 
  588.          do {   
  589.              exists $HTML_Escapes{$1}
  590.                 ? do { $HTML_Escapes{$1} }
  591.                 : do {
  592.                     warn "Unknown escape: E<$1> in $_";
  593.                     "E<$1>";
  594.                 } 
  595.          } 
  596.     }egx;
  597. }
  598.  
  599. sub shorten {
  600.     my $line = $_[0];
  601.     if (length($line) > 79 and index($line, "\n") == -1) {
  602.     my $space_place = rindex($line, ' ', 79);
  603.     if ($space_place != -1) {
  604.         substr($line, $space_place, 1) = "\n\t";
  605.     } 
  606.     } 
  607.     return $line;
  608.  
  609.  
  610. 1 unless $standalone;  # or it'll complain about itself
  611. __END__ # wish diag dbase were more accessible
  612.