home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / perl4036.zip / emacs / perldb.pl < prev    next >
Perl Script  |  1993-02-08  |  15KB  |  566 lines

  1. package DB;
  2.  
  3. # modified Perl debugger, to be run from Emacs in perldb-mode
  4. # Ray Lischner (uunet!mntgfx!lisch) as of 5 Nov 1990
  5.  
  6. $header = '$Header: perldb.pl,v 4.0 91/03/20 01:18:58 lwall Locked $';
  7. #
  8. # This file is automatically included if you do perl -d.
  9. # It's probably not useful to include this yourself.
  10. #
  11. # Perl supplies the values for @line and %sub.  It effectively inserts
  12. # a do DB'DB(<linenum>); in front of every place that can
  13. # have a breakpoint.  It also inserts a do 'perldb.pl' before the first line.
  14. #
  15. # $Log:    perldb.pl,v $
  16. # Revision 4.0  91/03/20  01:18:58  lwall
  17. # 4.0 baseline.
  18. # Revision 3.0.1.6  91/01/11  18:08:58  lwall
  19. # patch42: @_ couldn't be accessed from debugger
  20. # Revision 3.0.1.5  90/11/10  01:40:26  lwall
  21. # patch38: the debugger wouldn't stop correctly or do action routines
  22. # Revision 3.0.1.4  90/10/15  17:40:38  lwall
  23. # patch29: added caller
  24. # patch29: the debugger now understands packages and evals
  25. # patch29: scripts now run at almost full speed under the debugger
  26. # patch29: more variables are settable from debugger
  27. # Revision 3.0.1.3  90/08/09  04:00:58  lwall
  28. # patch19: debugger now allows continuation lines
  29. # patch19: debugger can now dump lists of variables
  30. # patch19: debugger can now add aliases easily from prompt
  31. # Revision 3.0.1.2  90/03/12  16:39:39  lwall
  32. # patch13: perl -d didn't format stack traces of *foo right
  33. # patch13: perl -d wiped out scalar return values of subroutines
  34. # Revision 3.0.1.1  89/10/26  23:14:02  lwall
  35. # patch1: RCS expanded an unintended $Header in lib/perldb.pl
  36. # Revision 3.0  89/10/18  15:19:46  lwall
  37. # 3.0 baseline
  38. # Revision 2.0  88/06/05  00:09:45  root
  39. # Baseline version 2.0.
  40. #
  41.  
  42. open(IN, "</dev/tty") || open(IN,  "<&STDIN");    # so we don't dingle stdin
  43. open(OUT,">/dev/tty") || open(OUT, ">&STDOUT");    # so we don't dongle stdout
  44. select(OUT);
  45. $| = 1;                # for DB'OUT
  46. select(STDOUT);
  47. $| = 1;                # for real STDOUT
  48. $sub = '';
  49.  
  50. # Is Perl being run from Emacs?
  51. $emacs = $main'ARGV[$[] eq '-emacs';
  52. shift(@main'ARGV) if $emacs;
  53.  
  54. $header =~ s/.Header: ([^,]+),v(\s+\S+\s+\S+).*$/$1$2/;
  55. print OUT "\nLoading DB routines from $header\n\nEnter h for help.\n\n";
  56.  
  57. sub DB {
  58.     &save;
  59.     ($package, $filename, $line) = caller;
  60.     $usercontext = '($@, $!, $[, $,, $/, $\) = @saved;' .
  61.     "package $package;";        # this won't let them modify, alas
  62.     local(*dbline) = "_<$filename";
  63.     $max = $#dbline;
  64.     if (($stop,$action) = split(/\0/,$dbline{$line})) {
  65.     if ($stop eq '1') {
  66.         $signal |= 1;
  67.     }
  68.     else {
  69.         $evalarg = "\$DB'signal |= do {$stop;}"; &eval;
  70.         $dbline{$line} =~ s/;9($|\0)/$1/;
  71.     }
  72.     }
  73.     if ($single || $trace || $signal) {
  74.     if ($emacs) {
  75.         print OUT "\032\032$filename:$line:0\n";
  76.     } else {
  77.         print OUT "$package'" unless $sub =~ /'/;
  78.         print OUT "$sub($filename:$line):\t",$dbline[$line];
  79.         for ($i = $line + 1; $i <= $max && $dbline[$i] == 0; ++$i) {
  80.         last if $dbline[$i] =~ /^\s*(}|#|\n)/;
  81.         print OUT "$sub($filename:$i):\t",$dbline[$i];
  82.         }
  83.     }
  84.     }
  85.     $evalarg = $action, &eval if $action;
  86.     if ($single || $signal) {
  87.     $evalarg = $pre, &eval if $pre;
  88.     print OUT $#stack . " levels deep in subroutine calls!\n"
  89.         if $single & 4;
  90.     $start = $line;
  91.     while ((print OUT "  DB<", $#hist+1, "> "), $cmd=&gets) {
  92.         $single = 0;
  93.         $signal = 0;
  94.         $cmd eq '' && exit 0;
  95.         chop($cmd);
  96.         $cmd =~ s/\\$// && do {
  97.         print OUT "  cont: ";
  98.         $cmd .= &gets;
  99.         redo;
  100.         };
  101.         $cmd =~ /^q$/ && exit 0;
  102.         $cmd =~ /^$/ && ($cmd = $laststep);
  103.         push(@hist,$cmd) if length($cmd) > 1;
  104.         ($i) = split(/\s+/,$cmd);
  105.         eval "\$cmd =~ $alias{$i}", print OUT $@ if $alias{$i};
  106.         $cmd =~ /^h$/ && do {
  107.         print OUT "
  108. T        Stack trace.
  109. s        Single step.
  110. n        Next, steps over subroutine calls.
  111. r        Return from current subroutine.
  112. c [line]    Continue; optionally inserts a one-time-only breakpoint 
  113.         at the specified line.
  114. <CR>        Repeat last n or s.
  115. l min+incr    List incr+1 lines starting at min.
  116. l min-max    List lines.
  117. l line        List line;
  118. l        List next window.
  119. -        List previous window.
  120. w line        List window around line.
  121. l subname    List subroutine.
  122. f filename    Switch to filename.
  123. /pattern/    Search forwards for pattern; final / is optional.
  124. ?pattern?    Search backwards for pattern.
  125. L        List breakpoints and actions.
  126. S        List subroutine names.
  127. t        Toggle trace mode.
  128. b [line] [condition]
  129.         Set breakpoint; line defaults to the current execution line; 
  130.         condition breaks if it evaluates to true, defaults to \'1\'.
  131. b subname [condition]
  132.         Set breakpoint at first line of subroutine.
  133. d [line]    Delete breakpoint.
  134. D        Delete all breakpoints.
  135. a [line] command
  136.         Set an action to be done before the line is executed.
  137.         Sequence is: check for breakpoint, print line if necessary,
  138.         do action, prompt user if breakpoint or step, evaluate line.
  139. A        Delete all actions.
  140. V [pkg [vars]]    List some (default all) variables in package (default current).
  141. X [vars]    Same as \"V currentpackage [vars]\".
  142. < command    Define command before prompt.
  143. | command    Define command after prompt.
  144. ! number    Redo command (default previous command).
  145. ! -number    Redo number\'th to last command.
  146. H -number    Display last number commands (default all).
  147. q or ^D        Quit.
  148. p expr        Same as \"print DB'OUT expr\" in current package.
  149. = [alias value]    Define a command alias, or list current aliases.
  150. command        Execute as a perl statement in current package.
  151.  
  152. ";
  153.         next; };
  154.         $cmd =~ /^t$/ && do {
  155.         $trace = !$trace;
  156.         print OUT "Trace = ".($trace?"on":"off")."\n";
  157.         next; };
  158.         $cmd =~ /^S$/ && do {
  159.         foreach $subname (sort(keys %sub)) {
  160.             print OUT $subname,"\n";
  161.         }
  162.         next; };
  163.         $cmd =~ s/^X\b/V $package/;
  164.         $cmd =~ /^V$/ && do {
  165.         $cmd = 'V $package'; };
  166.         $cmd =~ /^V\s*(\S+)\s*(.*)/ && do {
  167.         $packname = $1;
  168.         @vars = split(' ',$2);
  169.         do 'dumpvar.pl' unless defined &main'dumpvar;
  170.         if (defined &main'dumpvar) {
  171.             &main'dumpvar($packname,@vars);
  172.         }
  173.         else {
  174.             print DB'OUT "dumpvar.pl not available.\n";
  175.         }
  176.         next; };
  177.         $cmd =~ /^f\s*(.*)/ && do {
  178.         $file = $1;
  179.         if (!$file) {
  180.             print OUT "The old f command is now the r command.\n";
  181.             print OUT "The new f command switches filenames.\n";
  182.             next;
  183.         }
  184.         if (!defined $_main{'_<' . $file}) {
  185.             if (($try) = grep(m#^_<.*$file#, keys %_main)) {
  186.             $file = substr($try,2);
  187.             print "\n$file:\n";
  188.             }
  189.         }
  190.         if (!defined $_main{'_<' . $file}) {
  191.             print OUT "There's no code here anything matching $file.\n";
  192.             next;
  193.         }
  194.         elsif ($file ne $filename) {
  195.             *dbline = "_<$file";
  196.             $max = $#dbline;
  197.             $filename = $file;
  198.             $start = 1;
  199.             $cmd = "l";
  200.         } };
  201.         $cmd =~ /^l\s*(['A-Za-z_]['\w]*)/ && do {
  202.         $subname = $1;
  203.         $subname = "main'" . $subname unless $subname =~ /'/;
  204.         $subname = "main" . $subname if substr($subname,0,1) eq "'";
  205.         ($file,$subrange) = split(/:/,$sub{$subname});
  206.         if ($file ne $filename) {
  207.             *dbline = "_<$file";
  208.             $max = $#dbline;
  209.             $filename = $file;
  210.         }
  211.         if ($subrange) {
  212.             if (eval($subrange) < -$window) {
  213.             $subrange =~ s/-.*/+/;
  214.             }
  215.             $cmd = "l $subrange";
  216.         } else {
  217.             print OUT "Subroutine $1 not found.\n";
  218.             next;
  219.         } };
  220.         $cmd =~ /^w\s*(\d*)$/ && do {
  221.         $incr = $window - 1;
  222.         $start = $1 if $1;
  223.         $start -= $preview;
  224.         $cmd = 'l ' . $start . '-' . ($start + $incr); };
  225.         $cmd =~ /^-$/ && do {
  226.         $incr = $window - 1;
  227.         $cmd = 'l ' . ($start-$window*2) . '+'; };
  228.         $cmd =~ /^l$/ && do {
  229.         $incr = $window - 1;
  230.         $cmd = 'l ' . $start . '-' . ($start + $incr); };
  231.         $cmd =~ /^l\s*(\d*)\+(\d*)$/ && do {
  232.         $start = $1 if $1;
  233.         $incr = $2;
  234.         $incr = $window - 1 unless $incr;
  235.         $cmd = 'l ' . $start . '-' . ($start + $incr); };
  236.         $cmd =~ /^l\s*(([\d\$\.]+)([-,]([\d\$\.]+))?)?/ && do {
  237.         $end = (!$2) ? $max : ($4 ? $4 : $2);
  238.         $end = $max if $end > $max;
  239.         $i = $2;
  240.         $i = $line if $i eq '.';
  241.         $i = 1 if $i < 1;
  242.         if ($emacs) {
  243.             print OUT "\032\032$filename:$i:0\n";
  244.             $i = $end;
  245.         } else {
  246.             for (; $i <= $end; $i++) {
  247.             print OUT "$i:\t", $dbline[$i];
  248.             last if $signal;
  249.             }
  250.         }
  251.         $start = $i;    # remember in case they want more
  252.         $start = $max if $start > $max;
  253.         next; };
  254.         $cmd =~ /^D$/ && do {
  255.         print OUT "Deleting all breakpoints...\n";
  256.         for ($i = 1; $i <= $max ; $i++) {
  257.             if (defined $dbline{$i}) {
  258.             $dbline{$i} =~ s/^[^\0]+//;
  259.             if ($dbline{$i} =~ s/^\0?$//) {
  260.                 delete $dbline{$i};
  261.             }
  262.             }
  263.         }
  264.         next; };
  265.         $cmd =~ /^L$/ && do {
  266.         for ($i = 1; $i <= $max; $i++) {
  267.             if (defined $dbline{$i}) {
  268.             print OUT "$i:\t", $dbline[$i];
  269.             ($stop,$action) = split(/\0/, $dbline{$i});
  270.             print OUT "  break if (", $stop, ")\n" 
  271.                 if $stop;
  272.             print OUT "  action:  ", $action, "\n" 
  273.                 if $action;
  274.             last if $signal;
  275.             }
  276.         }
  277.         next; };
  278.         $cmd =~ /^b\s*(['A-Za-z_]['\w]*)\s*(.*)/ && do {
  279.         $subname = $1;
  280.         $cond = $2 || '1';
  281.         $subname = "$package'" . $subname unless $subname =~ /'/;
  282.         $subname = "main" . $subname if substr($subname,0,1) eq "'";
  283.         ($filename,$i) = split(/[:-]/, $sub{$subname});
  284.         if ($i) {
  285.             *dbline = "_<$filename";
  286.             ++$i while $dbline[$i] == 0 && $i < $#dbline;
  287.             $dbline{$i} =~ s/^[^\0]*/$cond/;
  288.         } else {
  289.             print OUT "Subroutine $subname not found.\n";
  290.         }
  291.         next; };
  292.         $cmd =~ /^b\s*(\d*)\s*(.*)/ && do {
  293.         $i = ($1?$1:$line);
  294.         $cond = $2 || '1';
  295.         if ($dbline[$i] == 0) {
  296.             print OUT "Line $i not breakable.\n";
  297.         } else {
  298.             $dbline{$i} =~ s/^[^\0]*/$cond/;
  299.         }
  300.         next; };
  301.         $cmd =~ /^d\s*(\d+)?/ && do {
  302.         $i = ($1?$1:$line);
  303.         $dbline{$i} =~ s/^[^\0]*//;
  304.         delete $dbline{$i} if $dbline{$i} eq '';
  305.         next; };
  306.         $cmd =~ /^A$/ && do {
  307.         for ($i = 1; $i <= $max ; $i++) {
  308.             if (defined $dbline{$i}) {
  309.             $dbline{$i} =~ s/\0[^\0]*//;
  310.             delete $dbline{$i} if $dbline{$i} eq '';
  311.             }
  312.         }
  313.         next; };
  314.         $cmd =~ /^<\s*(.*)/ && do {
  315.         $pre = do action($1);
  316.         next; };
  317.         $cmd =~ /^>\s*(.*)/ && do {
  318.         $post = do action($1);
  319.         next; };
  320.         $cmd =~ /^a\s*(\d+)(\s+(.*))?/ && do {
  321.         $i = $1;
  322.         if ($dbline[$i] == 0) {
  323.             print OUT "Line $i may not have an action.\n";
  324.         } else {
  325.             $dbline{$i} =~ s/\0[^\0]*//;
  326.             $dbline{$i} .= "\0" . do action($3);
  327.         }
  328.         next; };
  329.         $cmd =~ /^n$/ && do {
  330.         $single = 2;
  331.         $laststep = $cmd;
  332.         last; };
  333.         $cmd =~ /^s$/ && do {
  334.         $single = 1;
  335.         $laststep = $cmd;
  336.         last; };
  337.         $cmd =~ /^c\s*(\d*)\s*$/ && do {
  338.         $i = $1;
  339.         if ($i) {
  340.             if ($dbline[$i] == 0) {
  341.                 print OUT "Line $i not breakable.\n";
  342.             next;
  343.             }
  344.             $dbline{$i} =~ s/(\0|$)/;9$1/;    # add one-time-only b.p.
  345.         }
  346.         for ($i=0; $i <= $#stack; ) {
  347.             $stack[$i++] &= ~1;
  348.         }
  349.         last; };
  350.         $cmd =~ /^r$/ && do {
  351.         $stack[$#stack] |= 2;
  352.         last; };
  353.         $cmd =~ /^T$/ && do {
  354.         local($p,$f,$l,$s,$h,$a,@a,@sub);
  355.         for ($i = 1; ($p,$f,$l,$s,$h,$w) = caller($i); $i++) {
  356.             @a = @args;
  357.             for (@a) {
  358.             if (/^StB\000/ && length($_) == length($_main{'_main'})) {
  359.                 $_ = sprintf("%s",$_);
  360.             }
  361.             else {
  362.                 s/'/\\'/g;
  363.                 s/([^\0]*)/'$1'/ unless /^-?[\d.]+$/;
  364.                 s/([\200-\377])/sprintf("M-%c",ord($1)&0177)/eg;
  365.                 s/([\0-\37\177])/sprintf("^%c",ord($1)^64)/eg;
  366.             }
  367.             }
  368.             $w = $w ? '@ = ' : '$ = ';
  369.             $a = $h ? '(' . join(', ', @a) . ')' : '';
  370.             push(@sub, "$w&$s$a from file $f line $l\n");
  371.             last if $signal;
  372.         }
  373.         for ($i=0; $i <= $#sub; $i++) {
  374.             last if $signal;
  375.             print OUT $sub[$i];
  376.         }
  377.             next; };
  378.         $cmd =~ /^\/(.*)$/ && do {
  379.         $inpat = $1;
  380.         $inpat =~ s:([^\\])/$:$1:;
  381.         if ($inpat ne "") {
  382.             eval '$inpat =~ m'."\n$inpat\n";    
  383.             if ($@ ne "") {
  384.                 print OUT "$@";
  385.                 next;
  386.             }
  387.             $pat = $inpat;
  388.         }
  389.         $end = $start;
  390.         eval '
  391.         for (;;) {
  392.             ++$start;
  393.             $start = 1 if ($start > $max);
  394.             last if ($start == $end);
  395.             if ($dbline[$start] =~ m'."\n$pat\n".'i) {
  396.             if ($emacs) {
  397.                 print OUT "\032\032$filename:$start:0\n";
  398.             } else {
  399.                 print OUT "$start:\t", $dbline[$start], "\n";
  400.             }
  401.             last;
  402.             }
  403.         } ';
  404.         print OUT "/$pat/: not found\n" if ($start == $end);
  405.         next; };
  406.         $cmd =~ /^\?(.*)$/ && do {
  407.         $inpat = $1;
  408.         $inpat =~ s:([^\\])\?$:$1:;
  409.         if ($inpat ne "") {
  410.             eval '$inpat =~ m'."\n$inpat\n";    
  411.             if ($@ ne "") {
  412.                 print OUT "$@";
  413.                 next;
  414.             }
  415.             $pat = $inpat;
  416.         }
  417.         $end = $start;
  418.         eval '
  419.         for (;;) {
  420.             --$start;
  421.             $start = $max if ($start <= 0);
  422.             last if ($start == $end);
  423.             if ($dbline[$start] =~ m'."\n$pat\n".'i) {
  424.             if ($emacs) {
  425.                 print OUT "\032\032$filename:$start:0\n";
  426.             } else {
  427.                 print OUT "$start:\t", $dbline[$start], "\n";
  428.             }
  429.             last;
  430.             }
  431.         } ';
  432.         print OUT "?$pat?: not found\n" if ($start == $end);
  433.         next; };
  434.         $cmd =~ /^!+\s*(-)?(\d+)?$/ && do {
  435.         pop(@hist) if length($cmd) > 1;
  436.         $i = ($1?($#hist-($2?$2:1)):($2?$2:$#hist));
  437.         $cmd = $hist[$i] . "\n";
  438.         print OUT $cmd;
  439.         redo; };
  440.         $cmd =~ /^!(.+)$/ && do {
  441.         $pat = "^$1";
  442.         pop(@hist) if length($cmd) > 1;
  443.         for ($i = $#hist; $i; --$i) {
  444.             last if $hist[$i] =~ $pat;
  445.         }
  446.         if (!$i) {
  447.             print OUT "No such command!\n\n";
  448.             next;
  449.         }
  450.         $cmd = $hist[$i] . "\n";
  451.         print OUT $cmd;
  452.         redo; };
  453.         $cmd =~ /^H\s*(-(\d+))?/ && do {
  454.         $end = $2?($#hist-$2):0;
  455.         $hist = 0 if $hist < 0;
  456.         for ($i=$#hist; $i>$end; $i--) {
  457.             print OUT "$i: ",$hist[$i],"\n"
  458.             unless $hist[$i] =~ /^.?$/;
  459.         };
  460.         next; };
  461.         $cmd =~ s/^p( .*)?$/print DB'OUT$1/;
  462.         $cmd =~ /^=/ && do {
  463.         if (local($k,$v) = ($cmd =~ /^=\s*(\S+)\s+(.*)/)) {
  464.             $alias{$k}="s~$k~$v~";
  465.             print OUT "$k = $v\n";
  466.         } elsif ($cmd =~ /^=\s*$/) {
  467.             foreach $k (sort keys(%alias)) {
  468.             if (($v = $alias{$k}) =~ s~^s\~$k\~(.*)\~$~$1~) {
  469.                 print OUT "$k = $v\n";
  470.             } else {
  471.                 print OUT "$k\t$alias{$k}\n";
  472.             };
  473.             };
  474.         };
  475.         next; };
  476.         $evalarg = $cmd; &eval;
  477.         print OUT "\n";
  478.     }
  479.     if ($post) {
  480.         $evalarg = $post; &eval;
  481.     }
  482.     }
  483.     ($@, $!, $[, $,, $/, $\) = @saved;
  484. }
  485.  
  486. sub save {
  487.     @saved = ($@, $!, $[, $,, $/, $\);
  488.     $[ = 0; $, = ""; $/ = "\n"; $\ = "";
  489. }
  490.  
  491. # The following takes its argument via $evalarg to preserve current @_
  492.  
  493. sub eval {
  494.     eval "$usercontext $evalarg; &DB'save";
  495.     print OUT $@;
  496. }
  497.  
  498. sub action {
  499.     local($action) = @_;
  500.     while ($action =~ s/\\$//) {
  501.     print OUT "+ ";
  502.     $action .= &gets;
  503.     }
  504.     $action;
  505. }
  506.  
  507. sub gets {
  508.     local($.);
  509.     <IN>;
  510. }
  511.  
  512. sub catch {
  513.     $signal = 1;
  514. }
  515.  
  516. sub sub {
  517.     push(@stack, $single);
  518.     $single &= 1;
  519.     $single |= 4 if $#stack == $deep;
  520.     if (wantarray) {
  521.     @i = &$sub;
  522.     $single |= pop(@stack);
  523.     @i;
  524.     }
  525.     else {
  526.     $i = &$sub;
  527.     $single |= pop(@stack);
  528.     $i;
  529.     }
  530. }
  531.  
  532. $single = 1;            # so it stops on first executable statement
  533. @hist = ('?');
  534. $SIG{'INT'} = "DB'catch";
  535. $deep = 100;        # warning if stack gets this deep
  536. $window = 10;
  537. $preview = 3;
  538.  
  539. @stack = (0);
  540. @ARGS = @ARGV;
  541. for (@args) {
  542.     s/'/\\'/g;
  543.     s/(.*)/'$1'/ unless /^-?[\d.]+$/;
  544. }
  545.  
  546. if (-f '.perldb') {
  547.     do './.perldb';
  548. }
  549. elsif (-f "$ENV{'LOGDIR'}/.perldb") {
  550.     do "$ENV{'LOGDIR'}/.perldb";
  551. }
  552. elsif (-f "$ENV{'HOME'}/.perldb") {
  553.     do "$ENV{'HOME'}/.perldb";
  554. }
  555.  
  556. 1;
  557.