home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _545d53d65e9b87dddaa072fb7802b01e < prev    next >
Text File  |  2000-03-24  |  16KB  |  568 lines

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