3 # Debugger for Perl 5.00x; perl5db.pl patch level:
6 $header = "perl5db.pl version $VERSION";
9 # This file is automatically included if you do perl -d.
10 # It's probably not useful to include this yourself.
12 # Perl supplies the values for %sub. It effectively inserts
13 # a &DB'DB(); in front of every place that can have a
14 # breakpoint. Instead of a subroutine call it calls &DB::sub with
15 # $DB::sub being the called subroutine. It also inserts a BEGIN
16 # {require 'perl5db.pl'} before the first line.
18 # After each `require'd file is compiled, but before it is executed, a
19 # call to DB::postponed($main::{'_<'.$filename}) is emulated. Here the
20 # $filename is the expanded name of the `require'd file (as found as
23 # Additional services from Perl interpreter:
25 # if caller() is called from the package DB, it provides some
28 # The array @{$main::{'_<'.$filename}} is the line-by-line contents of
31 # The hash %{'_<'.$filename} contains breakpoints and action (it is
32 # keyed by line number), and individual entries are settable (as
33 # opposed to the whole hash). Only true/false is important to the
34 # interpreter, though the values used by perl5db.pl have the form
35 # "$break_condition\0$action". Values are magical in numeric context.
37 # The scalar ${'_<'.$filename} contains $filename.
39 # Note that no subroutine call is possible until &DB::sub is defined
40 # (for subroutines defined outside of the package DB). In fact the same is
41 # true if $deep is not defined.
46 # At start reads $rcfile that may set important options. This file
47 # may define a subroutine &afterinit that will be executed after the
48 # debugger is initialized.
50 # After $rcfile is read reads environment variable PERLDB_OPTS and parses
51 # it as a rest of `O ...' line in debugger prompt.
53 # The options that can be specified only at startup:
54 # [To set in $rcfile, call &parse_options("optionName=new_value").]
56 # TTY - the TTY to use for debugging i/o.
58 # noTTY - if set, goes in NonStop mode. On interrupt if TTY is not set
59 # uses the value of noTTY or "/tmp/perldbtty$$" to find TTY using
60 # Term::Rendezvous. Current variant is to have the name of TTY in this
63 # ReadLine - If false, dummy ReadLine is used, so you can debug
64 # ReadLine applications.
66 # NonStop - if true, no i/o is performed until interrupt.
68 # LineInfo - file or pipe to print line number info to. If it is a
69 # pipe, a short "emacs like" message is used.
71 # RemotePort - host:port to connect to on remote host for remote debugging.
73 # Example $rcfile: (delete leading hashes!)
75 # &parse_options("NonStop=1 LineInfo=db.out");
76 # sub afterinit { $trace = 1; }
78 # The script will run without human intervention, putting trace
79 # information into db.out. (If you interrupt it, you would better
80 # reset LineInfo to something "interactive"!)
82 ##################################################################
84 # Enhanced by ilya@math.ohio-state.edu (Ilya Zakharevich)
85 # Latest version available: ftp://ftp.math.ohio-state.edu/pub/users/ilya/perl
87 # modified Perl debugger, to be run from Emacs in perldb-mode
88 # Ray Lischner (uunet!mntgfx!lisch) as of 5 Nov 1990
89 # Johan Vromans -- upgrade to 4.0 pl 10
90 # Ilya Zakharevich -- patches after 5.001 (and some before ;-)
94 # A lot of things changed after 0.94. First of all, core now informs
95 # debugger about entry into XSUBs, overloaded operators, tied operations,
96 # BEGIN and END. Handy with `O f=2'.
98 # This can make debugger a little bit too verbose, please be patient
99 # and report your problems promptly.
101 # Now the option frame has 3 values: 0,1,2.
103 # Note that if DESTROY returns a reference to the object (or object),
104 # the deletion of data may be postponed until the next function call,
105 # due to the need to examine the return value.
107 # Changes: 0.95: `v' command shows versions.
108 # Changes: 0.96: `v' command shows version of readline.
109 # primitive completion works (dynamic variables, subs for `b' and `l',
110 # options). Can `p %var'
111 # Better help (`h <' now works). New commands <<, >>, {, {{.
112 # {dump|print}_trace() coded (to be able to do it from <<cmd).
113 # `c sub' documented.
114 # At last enough magic combined to stop after the end of debuggee.
115 # !! should work now (thanks to Emacs bracket matching an extra
116 # `]' in a regexp is caught).
117 # `L', `D' and `A' span files now (as documented).
118 # Breakpoints in `require'd code are possible (used in `R').
119 # Some additional words on internal work of debugger.
120 # `b load filename' implemented.
121 # `b postpone subr' implemented.
122 # now only `q' exits debugger (overwriteable on $inhibit_exit).
123 # When restarting debugger breakpoints/actions persist.
124 # Buglet: When restarting debugger only one breakpoint/action per
125 # autoloaded function persists.
126 # Changes: 0.97: NonStop will not stop in at_exit().
127 # Option AutoTrace implemented.
128 # Trace printed differently if frames are printed too.
129 # new `inhibitExit' option.
130 # printing of a very long statement interruptible.
131 # Changes: 0.98: New command `m' for printing possible methods
132 # 'l -' is a synonim for `-'.
133 # Cosmetic bugs in printing stack trace.
134 # `frame' & 8 to print "expanded args" in stack trace.
135 # Can list/break in imported subs.
136 # new `maxTraceLen' option.
137 # frame & 4 and frame & 8 granted.
139 # nonstoppable lines do not have `:' near the line number.
140 # `b compile subname' implemented.
141 # Will not use $` any more.
142 # `-' behaves sane now.
143 # Changes: 0.99: Completion for `f', `m'.
144 # `m' will remove duplicate names instead of duplicate functions.
145 # `b load' strips trailing whitespace.
146 # completion ignores leading `|'; takes into account current package
147 # when completing a subroutine name (same for `l').
148 # Changes: 1.07: Many fixed by tchrist 13-March-2000
150 # + Added bare mimimal security checks on perldb rc files, plus
151 # comments on what else is needed.
152 # + Fixed the ornaments that made "|h" completely unusable.
153 # They are not used in print_help if they will hurt. Strip pod
154 # if we're paging to less.
155 # + Fixed mis-formatting of help messages caused by ornaments
156 # to restore Larry's original formatting.
157 # + Fixed many other formatting errors. The code is still suboptimal,
158 # and needs a lot of work at restructuing. It's also misindented
160 # + Fixed bug where trying to look at an option like your pager
162 # + Fixed some $? processing. Note: if you use csh or tcsh, you will
163 # lose. You should consider shell escapes not using their shell,
164 # or else not caring about detailed status. This should really be
165 # unified into one place, too.
166 # + Fixed bug where invisible trailing whitespace on commands hoses you,
167 # tricking Perl into thinking you wern't calling a debugger command!
168 # + Fixed bug where leading whitespace on commands hoses you. (One
169 # suggests a leading semicolon or any other irrelevant non-whitespace
170 # to indicate literal Perl code.)
171 # + Fixed bugs that ate warnings due to wrong selected handle.
172 # + Fixed a precedence bug on signal stuff.
173 # + Fixed some unseemly wording.
174 # + Fixed bug in help command trying to call perl method code.
175 # + Fixed to call dumpvar from exception handler. SIGPIPE killed us.
177 # + Added some comments. This code is still nasty spaghetti.
178 # + Added message if you clear your pre/post command stacks which was
179 # very easy to do if you just typed a bare >, <, or {. (A command
180 # without an argument should *never* be a destructive action; this
181 # API is fundamentally screwed up; likewise option setting, which
182 # is equally buggered.)
183 # + Added command stack dump on argument of "?" for >, <, or {.
184 # + Added a semi-built-in doc viewer command that calls man with the
185 # proper %Config::Config path (and thus gets caching, man -k, etc),
186 # or else perldoc on obstreperous platforms.
187 # + Added to and rearranged the help information.
188 # + Detected apparent misuse of { ... } to declare a block; this used
189 # to work but now is a command, and mysteriously gave no complaint.
191 ####################################################################
193 # Needed for the statement after exec():
195 BEGIN { $ini_warn = $^W
; $^W
= 0 } # Switch compilation warnings off until another BEGIN.
196 local($^W
) = 0; # Switch run-time warnings off during init.
199 $dumpvar::arrayDepth
,
200 $dumpvar::dumpDBFiles
,
201 $dumpvar::dumpPackages
,
202 $dumpvar::quoteHighBit
,
203 $dumpvar::printUndef
,
212 # Command-line + PERLLIB:
215 # $prevwarn = $prevdie = $prevbus = $prevsegv = ''; # Does not help?!
217 $trace = $signal = $single = 0; # Uninitialized warning suppression
218 # (local $^W cannot help - other packages!).
219 $inhibit_exit = $option{PrintRet
} = 1;
221 @options = qw(hashDepth arrayDepth DumpDBFiles DumpPackages DumpReused
222 compactDump veryCompact quote HighBit undefPrint
223 globPrint PrintRet UsageOnly frame AutoTrace
224 TTY noTTY ReadLine NonStop LineInfo maxTraceLen
225 recallCommand ShellBang pager tkRunning ornaments
226 signalLevel warnLevel dieLevel inhibit_exit
227 ImmediateStop bareStringify
231 hashDepth
=> \
$dumpvar::hashDepth
,
232 arrayDepth
=> \
$dumpvar::arrayDepth
,
233 DumpDBFiles
=> \
$dumpvar::dumpDBFiles
,
234 DumpPackages
=> \
$dumpvar::dumpPackages
,
235 DumpReused
=> \
$dumpvar::dumpReused
,
236 HighBit
=> \
$dumpvar::quoteHighBit
,
237 undefPrint
=> \
$dumpvar::printUndef
,
238 globPrint
=> \
$dumpvar::globPrint
,
239 UsageOnly
=> \
$dumpvar::usageOnly
,
240 bareStringify
=> \
$dumpvar::bareStringify
,
242 AutoTrace
=> \
$trace,
243 inhibit_exit
=> \
$inhibit_exit,
244 maxTraceLen
=> \
$maxtrace,
245 ImmediateStop
=> \
$ImmediateStop,
246 RemotePort
=> \
$remoteport,
250 compactDump
=> \
&dumpvar
::compactDump
,
251 veryCompact
=> \
&dumpvar
::veryCompact
,
252 quote
=> \
&dumpvar
::quote
,
255 ReadLine
=> \
&ReadLine
,
256 NonStop
=> \
&NonStop
,
257 LineInfo
=> \
&LineInfo
,
258 recallCommand
=> \
&recallCommand
,
259 ShellBang
=> \
&shellBang
,
261 signalLevel
=> \
&signalLevel
,
262 warnLevel
=> \
&warnLevel
,
263 dieLevel
=> \
&dieLevel
,
264 tkRunning
=> \
&tkRunning
,
265 ornaments
=> \
&ornaments
,
266 RemotePort
=> \
&RemotePort
,
270 compactDump
=> 'dumpvar.pl',
271 veryCompact
=> 'dumpvar.pl',
272 quote
=> 'dumpvar.pl',
275 # These guys may be defined in $ENV{PERL5DB} :
276 $rl = 1 unless defined $rl;
277 $warnLevel = 0 unless defined $warnLevel;
278 $dieLevel = 0 unless defined $dieLevel;
279 $signalLevel = 1 unless defined $signalLevel;
280 $pre = [] unless defined $pre;
281 $post = [] unless defined $post;
282 $pretype = [] unless defined $pretype;
284 warnLevel
($warnLevel);
286 signalLevel
($signalLevel);
289 (defined($ENV{PAGER
})
293 : 'more'))) unless defined $pager;
295 &recallCommand
("!") unless defined $prc;
296 &shellBang
("!") unless defined $psh;
297 $maxtrace = 400 unless defined $maxtrace;
299 if (-e
"/dev/tty") { # this is the wrong metric!
302 $rcfile="perldb.ini";
305 # This isn't really safe, because there's a race
306 # between checking and opening. The solution is to
307 # open and fstat the handle, but then you have to read and
308 # eval the contents. But then the silly thing gets
309 # your lexical scope, which is unfortunately at best.
313 # Just exactly what part of the word "CORE::" don't you understand?
314 local $SIG{__WARN__
};
317 unless (is_safe_file
($file)) {
318 CORE
::warn <<EO_GRIPE;
319 perldb: Must not source insecure rcfile $file.
320 You or the superuser must be the owner, and it must not
321 be writable by anyone but its owner.
327 CORE::warn("perldb: couldn't parse $file: $@") if $@;
331 # Verifies that owner is either real user or superuser and that no
332 # one but owner may write to it. This function is of limited use
333 # when called on a path instead of upon a handle, because there are
334 # no guarantees that filename (by dirent) whose file (by ino) is
335 # eventually accessed is the same as the one tested.
336 # Assumes that the file's existence is not in doubt.
339 stat($path) || return; # mysteriously vaporized
340 my($dev,$ino,$mode,$nlink,$uid,$gid) = stat(_);
342 return 0 if $uid != 0 && $uid != $<;
343 return 0 if $mode & 022;
348 safe_do("./$rcfile");
350 elsif (defined $ENV{HOME} && -f "$ENV{HOME}/$rcfile") {
351 safe_do("$ENV{HOME}/$rcfile");
353 elsif (defined $ENV{LOGDIR} && -f "$ENV{LOGDIR}/$rcfile") {
354 safe_do("$ENV{LOGDIR}/$rcfile");
357 if (defined $ENV{PERLDB_OPTS}) {
358 parse_options($ENV{PERLDB_OPTS});
361 # Here begin the unreadable code. It needs fixing.
363 if (exists $ENV{PERLDB_RESTART}) {
364 delete $ENV{PERLDB_RESTART};
366 @hist = get_list('PERLDB_HIST');
367 %break_on_load = get_list("PERLDB_ON_LOAD");
368 %postponed = get_list("PERLDB_POSTPONE");
369 my @had_breakpoints= get_list("PERLDB_VISITED");
370 for (0 .. $#had_breakpoints) {
371 my %pf = get_list("PERLDB_FILE_$_");
372 $postponed_file{$had_breakpoints[$_]} = \%pf if %pf;
374 my %opt = get_list("PERLDB_OPT");
376 while (($opt,$val) = each %opt) {
377 $val =~ s/[\\\']/\\$1/g;
378 parse_options("$opt'$val'");
380 @INC = get_list("PERLDB_INC");
382 $pretype = [get_list("PERLDB_PRETYPE")];
383 $pre = [get_list("PERLDB_PRE")];
384 $post = [get_list("PERLDB_POST")];
385 @typeahead = get_list("PERLDB_TYPEAHEAD", @typeahead);
391 # Is Perl being run from a slave editor or graphical debugger?
392 $slave_editor = ((defined $main::ARGV[0]) and ($main::ARGV[0] eq '-emacs'));
393 $rl = 0, shift(@main::ARGV) if $slave_editor;
395 #require Term::ReadLine;
397 if ($^O eq 'cygwin' || $^O eq 'msys') {
398 # /dev/tty is binary. use stdin for textmode
400 } elsif (-e "/dev/tty") {
401 $console = "/dev/tty";
402 } elsif ($^O eq 'dos' or -e "con" or $^O eq 'MSWin32') {
404 } elsif ($^O eq 'MacOS') {
405 if ($MacPerl::Version !~ /MPW/) {
406 $console = "Dev:Console:Perl Debug"; # Separate window for application
408 $console = "Dev:Console";
411 $console = "sys\$command";
414 if (($^O eq 'MSWin32') and ($slave_editor or defined $ENV{EMACS})) {
419 if (defined $ENV{OS2_SHELL} and ($slave_editor or $ENV{WINDOWID})) { # In OS/2
427 $console = $tty if defined $tty;
429 if (defined $remoteport) {
431 $OUT = new IO::Socket::INET( Timeout => '10',
432 PeerAddr => $remoteport,
435 if (!$OUT) { die "Unable to connect to remote host: $remoteport\n"; }
439 if (defined $console) {
440 open(IN,"+<$console") || open(IN,"<$console") || open(IN,"<&STDIN");
441 open(OUT,"+>$console") || open(OUT,">$console") || open(OUT,">&STDERR")
442 || open(OUT,">&STDOUT"); # so we don't dongle stdout
445 open(OUT,">&STDERR") || open(OUT,">&STDOUT"); # so we don't dongle stdout
446 $console = 'STDIN/OUT';
448 # so open("|more") can read from STDOUT and so we don't dingle stdin
454 $| = 1; # for DB::OUT
457 $LINEINFO = $OUT unless defined $LINEINFO;
458 $lineinfo = $console unless defined $lineinfo;
460 $| = 1; # for real STDOUT
462 $header =~ s/.Header: ([^,]+),v(\s+\S+\s+\S+).*$/$1$2/;
463 unless ($runnonstop) {
464 print $OUT "\nLoading DB routines from $header\n";
465 print $OUT ("Editor support ",
466 $slave_editor ? "enabled" : "available",
468 print $OUT "\nEnter h or `h h' for help, or `$doccmd perldebug' for more help.\n\n";
475 s/(.*)/'$1'/ unless /^-?[\d.]+$/;
478 if (defined &afterinit) { # May be defined in $rcfile
484 ############################################################ Subroutines
487 # _After_ the perl program is compiled, $single is set to 1:
488 if ($single and not $second_time++) {
489 if ($runnonstop) { # Disable until signal
490 for ($i=0; $i <= $stack_depth; ) {
494 # return; # Would not print trace!
495 } elsif ($ImmediateStop) {
500 $runnonstop = 0 if $single or $signal; # Disable it if interactive.
502 ($package, $filename, $line) = caller;
503 $filename_ini = $filename;
504 $usercontext = '($@, $!, $^E, $,, $/, $\, $^W) = @saved;' .
505 "package $package;"; # this won't let them modify, alas
506 local(*dbline) = $main::{'_<' . $filename};
508 if (($stop,$action) = split(/\0/,$dbline{$line})) {
512 $evalarg = "\$DB::signal |= 1 if do {$stop}"; &eval;
513 $dbline{$line} =~ s/;9($|\0)/$1/;
516 my $was_signal = $signal;
518 for (my $n = 0; $n <= $#to_watch; $n++) {
519 $evalarg = $to_watch[$n];
520 local $onetimeDump; # Do not output results
521 my ($val) = &eval; # Fix context (&eval is doing array)?
522 $val = ( (defined $val) ? "'$val'" : 'undef' );
523 if ($val ne $old_watch[$n]) {
526 Watchpoint $n:\t$to_watch[$n] changed:
527 old value:\t$old_watch[$n]
530 $old_watch[$n] = $val;
534 if ($trace & 4) { # User-installed watch
535 return if watchfunction
($package, $filename, $line)
536 and not $single and not $was_signal and not ($trace & ~4);
538 $was_signal = $signal;
540 if ($single || ($trace & 1) || $was_signal) {
542 $position = "\032\032$filename:$line:0\n";
543 print $LINEINFO $position;
544 } elsif ($package eq 'DB::fake') {
547 Debugged program terminated. Use B<q> to quit or B<R> to restart,
548 use B<O> I<inhibit_exit> to avoid stopping after program termination,
549 B<h q>, B<h R> or B<h O> to get additional info.
552 $usercontext = '($@, $!, $^E, $,, $/, $\, $^W) = @saved;' .
553 "package $package;"; # this won't let them modify, alas
556 $prefix = $sub =~ /::/ ?
"" : "${'package'}::";
557 $prefix .= "$sub($filename:";
558 $after = ($dbline[$line] =~ /\n$/ ?
'' : "\n");
559 if (length($prefix) > 30) {
560 $position = "$prefix$line):\n$line:\t$dbline[$line]$after";
565 $position = "$prefix$line$infix$dbline[$line]$after";
568 print $LINEINFO ' ' x
$stack_depth, "$line:\t$dbline[$line]$after";
570 print $LINEINFO $position;
572 for ($i = $line + 1; $i <= $max && $dbline[$i] == 0; ++$i) { #{ vi
573 last if $dbline[$i] =~ /^\s*[\;\}\#\n]/;
575 $after = ($dbline[$i] =~ /\n$/ ?
'' : "\n");
576 $incr_pos = "$prefix$i$infix$dbline[$i]$after";
577 $position .= $incr_pos;
579 print $LINEINFO ' ' x
$stack_depth, "$i:\t$dbline[$i]$after";
581 print $LINEINFO $incr_pos;
586 $evalarg = $action, &eval if $action;
587 if ($single || $was_signal) {
588 local $level = $level + 1;
589 foreach $evalarg (@
$pre) {
592 print $OUT $stack_depth . " levels deep in subroutine calls!\n"
595 $incr = -1; # for backward motion.
596 @typeahead = (@
$pretype, @typeahead);
598 while (($term || &setterm
),
599 ($term_pid == $$ or &resetterm
),
600 defined ($cmd=&readline(" DB" . ('<' x
$level) .
601 ($#hist+1) . ('>' x
$level) .
606 $cmd =~ s/\\$/\n/ && do {
607 $cmd .= &readline(" cont: ");
610 $cmd =~ /^$/ && ($cmd = $laststep);
611 push(@hist,$cmd) if length($cmd) > 1;
613 $cmd =~ s/^\s+//s; # trim annoying leading whitespace
614 $cmd =~ s/\s+$//s; # trim annoying trailing whitespace
615 ($i) = split(/\s+/,$cmd);
617 # squelch the sigmangler
619 local $SIG{__WARN__
};
620 eval "\$cmd =~ $alias{$i}";
622 print $OUT "Couldn't evaluate `$i' alias: $@";
626 $cmd =~ /^q$/ && ($fall_off_end = 1) && exit $?
;
627 $cmd =~ /^h$/ && do {
630 $cmd =~ /^h\s+h$/ && do {
631 print_help
($summary);
633 # support long commands; otherwise bogus errors
634 # happen when you ask for h on <CR> for example
635 $cmd =~ /^h\s+(\S.*)$/ && do {
636 my $asked = $1; # for proper errmsg
637 my $qasked = quotemeta($asked); # for searching
638 # XXX: finds CR but not <CR>
639 if ($help =~ /^<?(?:[IB]<)$qasked/m) {
640 while ($help =~ /^(<?(?:[IB]<)$qasked([\s\S]*?)\n)(?!\s)/mg) {
644 print_help
("B<$asked> is not a debugger command.\n");
647 $cmd =~ /^t$/ && do {
649 print $OUT "Trace = " .
650 (($trace & 1) ?
"on" : "off" ) . "\n";
652 $cmd =~ /^S(\s+(!)?(.+))?$/ && do {
653 $Srev = defined $2; $Spatt = $3; $Snocheck = ! defined $1;
654 foreach $subname (sort(keys %sub)) {
655 if ($Snocheck or $Srev^($subname =~ /$Spatt/)) {
656 print $OUT $subname,"\n";
660 $cmd =~ /^v$/ && do {
661 list_versions
(); next CMD
};
662 $cmd =~ s/^X\b/V $package/;
663 $cmd =~ /^V$/ && do {
664 $cmd = "V $package"; };
665 $cmd =~ /^V\b\s*(\S+)\s*(.*)/ && do {
666 local ($savout) = select($OUT);
668 @vars = split(' ',$2);
669 do 'dumpvar.pl' unless defined &main
::dumpvar
;
670 if (defined &main
::dumpvar
) {
673 # must detect sigpipe failures
674 eval { &main
::dumpvar
($packname,@vars) };
676 die unless $@
=~ /dumpvar print failed/;
679 print $OUT "dumpvar.pl not available.\n";
683 $cmd =~ s/^x\b/ / && do { # So that will be evaled
684 $onetimeDump = 'dump'; };
685 $cmd =~ s/^m\s+([\w:]+)\s*$/ / && do {
686 methods
($1); next CMD
};
687 $cmd =~ s/^m\b/ / && do { # So this will be evaled
688 $onetimeDump = 'methods'; };
689 $cmd =~ /^f\b\s*(.*)/ && do {
693 print $OUT "The old f command is now the r command.\n";
694 print $OUT "The new f command switches filenames.\n";
697 if (!defined $main::{'_<' . $file}) {
698 if (($try) = grep(m
#^_<.*$file#, keys %main::)) {{
699 $try = substr($try,2);
700 print $OUT "Choosing $try matching `$file':\n";
704 if (!defined $main::{'_<' . $file}) {
705 print $OUT "No file matching `$file' is loaded.\n";
707 } elsif ($file ne $filename) {
708 *dbline
= $main::{'_<' . $file};
714 print $OUT "Already in $file.\n";
718 $cmd =~ s/^l\s+-\s*$/-/;
719 $cmd =~ /^([lb])\b\s*(\$.*)/s && do {
722 print($OUT "Error: $@\n"), next CMD
if $@
;
724 print($OUT "Interpreted as: $1 $s\n");
727 $cmd =~ /^l\b\s*([\':A-Za-z_][\':\w]*(\[.*\])?)/s && do {
729 $subname =~ s/\'/::/;
730 $subname = $package."::".$subname
731 unless $subname =~ /::/;
732 $subname = "main".$subname if substr($subname,0,2) eq "::";
733 @pieces = split(/:/,find_sub
($subname) || $sub{$subname});
734 $subrange = pop @pieces;
735 $file = join(':', @pieces);
736 if ($file ne $filename) {
737 print $OUT "Switching to file '$file'.\n"
738 unless $slave_editor;
739 *dbline
= $main::{'_<' . $file};
744 if (eval($subrange) < -$window) {
745 $subrange =~ s/-.*/+/;
747 $cmd = "l $subrange";
749 print $OUT "Subroutine $subname not found.\n";
752 $cmd =~ /^\.$/ && do {
753 $incr = -1; # for backward motion.
755 $filename = $filename_ini;
756 *dbline
= $main::{'_<' . $filename};
758 print $LINEINFO $position;
760 $cmd =~ /^w\b\s*(\d*)$/ && do {
764 #print $OUT 'l ' . $start . '-' . ($start + $incr);
765 $cmd = 'l ' . $start . '-' . ($start + $incr); };
766 $cmd =~ /^-$/ && do {
767 $start -= $incr + $window + 1;
768 $start = 1 if $start <= 0;
770 $cmd = 'l ' . ($start) . '+'; };
771 $cmd =~ /^l$/ && do {
773 $cmd = 'l ' . $start . '-' . ($start + $incr); };
774 $cmd =~ /^l\b\s*(\d*)\+(\d*)$/ && do {
777 $incr = $window - 1 unless $incr;
778 $cmd = 'l ' . $start . '-' . ($start + $incr); };
779 $cmd =~ /^l\b\s*((-?[\d\$\.]+)([-,]([\d\$\.]+))?)?/ && do {
780 $end = (!defined $2) ?
$max : ($4 ?
$4 : $2);
781 $end = $max if $end > $max;
783 $i = $line if $i eq '.';
787 print $OUT "\032\032$filename:$i:0\n";
790 for (; $i <= $end; $i++) {
791 ($stop,$action) = split(/\0/, $dbline{$i});
793 and $filename eq $filename_ini)
795 : ($dbline[$i]+0 ?
':' : ' ') ;
796 $arrow .= 'b' if $stop;
797 $arrow .= 'a' if $action;
798 print $OUT "$i$arrow\t", $dbline[$i];
799 $i++, last if $signal;
801 print $OUT "\n" unless $dbline[$i-1] =~ /\n$/;
803 $start = $i; # remember in case they want more
804 $start = $max if $start > $max;
806 $cmd =~ /^D$/ && do {
807 print $OUT "Deleting all breakpoints...\n";
809 for $file (keys %had_breakpoints) {
810 local *dbline
= $main::{'_<' . $file};
814 for ($i = 1; $i <= $max ; $i++) {
815 if (defined $dbline{$i}) {
816 $dbline{$i} =~ s/^[^\0]+//;
817 if ($dbline{$i} =~ s/^\0?$//) {
823 if (not $had_breakpoints{$file} &= ~1) {
824 delete $had_breakpoints{$file};
828 undef %postponed_file;
829 undef %break_on_load;
831 $cmd =~ /^L$/ && do {
833 for $file (keys %had_breakpoints) {
834 local *dbline
= $main::{'_<' . $file};
838 for ($i = 1; $i <= $max; $i++) {
839 if (defined $dbline{$i}) {
840 print $OUT "$file:\n" unless $was++;
841 print $OUT " $i:\t", $dbline[$i];
842 ($stop,$action) = split(/\0/, $dbline{$i});
843 print $OUT " break if (", $stop, ")\n"
845 print $OUT " action: ", $action, "\n"
852 print $OUT "Postponed breakpoints in subroutines:\n";
854 for $subname (keys %postponed) {
855 print $OUT " $subname\t$postponed{$subname}\n";
859 my @have = map { # Combined keys
860 keys %{$postponed_file{$_}}
861 } keys %postponed_file;
863 print $OUT "Postponed breakpoints in files:\n";
865 for $file (keys %postponed_file) {
866 my $db = $postponed_file{$file};
867 print $OUT " $file:\n";
868 for $line (sort {$a <=> $b} keys %$db) {
869 print $OUT " $line:\n";
870 my ($stop,$action) = split(/\0/, $$db{$line});
871 print $OUT " break if (", $stop, ")\n"
873 print $OUT " action: ", $action, "\n"
880 if (%break_on_load) {
881 print $OUT "Breakpoints on load:\n";
883 for $file (keys %break_on_load) {
884 print $OUT " $file\n";
889 print $OUT "Watch-expressions:\n";
891 for $expr (@to_watch) {
892 print $OUT " $expr\n";
897 $cmd =~ /^b\b\s*load\b\s*(.*)/ && do {
898 my $file = $1; $file =~ s/\s+$//;
900 $break_on_load{$file} = 1;
901 $break_on_load{$::INC
{$file}} = 1 if $::INC
{$file};
902 $file .= '.pm', redo unless $file =~ /\./;
904 $had_breakpoints{$file} |= 1;
905 print $OUT "Will stop on load of `@{[join '\', `', sort keys %break_on_load]}'.\n";
907 $cmd =~ /^b\b\s*(postpone|compile)\b\s*([':A-Za-z_][':\w]*)\s*(.*)/ && do {
908 my $cond = length $3 ?
$3 : '1';
909 my ($subname, $break) = ($2, $1 eq 'postpone');
910 $subname =~ s/\'/::/g;
911 $subname = "${'package'}::" . $subname
912 unless $subname =~ /::/;
913 $subname = "main".$subname if substr($subname,0,2) eq "::";
914 $postponed{$subname} = $break
915 ?
"break +0 if $cond" : "compile";
917 $cmd =~ /^b\b\s*([':A-Za-z_][':\w]*(?:\[.*\])?)\s*(.*)/ && do {
919 $cond = length $2 ?
$2 : '1';
920 $subname =~ s/\'/::/g;
921 $subname = "${'package'}::" . $subname
922 unless $subname =~ /::/;
923 $subname = "main".$subname if substr($subname,0,2) eq "::";
924 # Filename below can contain ':'
925 ($file,$i) = (find_sub
($subname) =~ /^(.*):(.*)$/);
928 local $filename = $file;
929 local *dbline
= $main::{'_<' . $filename};
930 $had_breakpoints{$filename} |= 1;
932 ++$i while $dbline[$i] == 0 && $i < $max;
933 $dbline{$i} =~ s/^[^\0]*/$cond/;
935 print $OUT "Subroutine $subname not found.\n";
938 $cmd =~ /^b\b\s*(\d*)\s*(.*)/ && do {
940 $cond = length $2 ?
$2 : '1';
941 if ($dbline[$i] == 0) {
942 print $OUT "Line $i not breakable.\n";
944 $had_breakpoints{$filename} |= 1;
945 $dbline{$i} =~ s/^[^\0]*/$cond/;
948 $cmd =~ /^d\b\s*(\d*)/ && do {
950 if ($dbline[$i] == 0) {
951 print $OUT "Line $i not breakable.\n";
953 $dbline{$i} =~ s/^[^\0]*//;
954 delete $dbline{$i} if $dbline{$i} eq '';
957 $cmd =~ /^A$/ && do {
958 print $OUT "Deleting all actions...\n";
960 for $file (keys %had_breakpoints) {
961 local *dbline
= $main::{'_<' . $file};
965 for ($i = 1; $i <= $max ; $i++) {
966 if (defined $dbline{$i}) {
967 $dbline{$i} =~ s/\0[^\0]*//;
968 delete $dbline{$i} if $dbline{$i} eq '';
972 unless ($had_breakpoints{$file} &= ~2) {
973 delete $had_breakpoints{$file};
977 $cmd =~ /^O\s*$/ && do {
982 $cmd =~ /^O\s*(\S.*)/ && do {
985 $cmd =~ /^\<\<\s*(.*)/ && do { # \<\< for CPerl sake: not HERE
986 push @
$pre, action
($1);
988 $cmd =~ /^>>\s*(.*)/ && do {
989 push @
$post, action
($1);
991 $cmd =~ /^<\s*(.*)/ && do {
993 print $OUT "All < actions cleared.\n";
999 print $OUT "No pre-prompt Perl actions.\n";
1002 print $OUT "Perl commands run before each prompt:\n";
1003 for my $action ( @
$pre ) {
1004 print $OUT "\t< -- $action\n";
1008 $pre = [action
($1)];
1010 $cmd =~ /^>\s*(.*)/ && do {
1012 print $OUT "All > actions cleared.\n";
1018 print $OUT "No post-prompt Perl actions.\n";
1021 print $OUT "Perl commands run after each prompt:\n";
1022 for my $action ( @
$post ) {
1023 print $OUT "\t> -- $action\n";
1027 $post = [action
($1)];
1029 $cmd =~ /^\{\{\s*(.*)/ && do {
1030 if ($cmd =~ /^\{.*\}$/ && unbalanced
(substr($cmd,2))) {
1031 print $OUT "{{ is now a debugger command\n",
1032 "use `;{{' if you mean Perl code\n";
1038 $cmd =~ /^\{\s*(.*)/ && do {
1040 print $OUT "All { actions cleared.\n";
1045 unless (@
$pretype) {
1046 print $OUT "No pre-prompt debugger actions.\n";
1049 print $OUT "Debugger commands run before each prompt:\n";
1050 for my $action ( @
$pretype ) {
1051 print $OUT "\t{ -- $action\n";
1055 if ($cmd =~ /^\{.*\}$/ && unbalanced
(substr($cmd,1))) {
1056 print $OUT "{ is now a debugger command\n",
1057 "use `;{' if you mean Perl code\n";
1063 $cmd =~ /^a\b\s*(\d*)\s*(.*)/ && do {
1064 $i = $1 || $line; $j = $2;
1066 if ($dbline[$i] == 0) {
1067 print $OUT "Line $i may not have an action.\n";
1069 $had_breakpoints{$filename} |= 2;
1070 $dbline{$i} =~ s/\0[^\0]*//;
1071 $dbline{$i} .= "\0" . action
($j);
1074 $dbline{$i} =~ s/\0[^\0]*//;
1075 delete $dbline{$i} if $dbline{$i} eq '';
1078 $cmd =~ /^n$/ && do {
1079 end_report
(), next CMD
if $finished and $level <= 1;
1083 $cmd =~ /^s$/ && do {
1084 end_report
(), next CMD
if $finished and $level <= 1;
1088 $cmd =~ /^c\b\s*([\w:]*)\s*$/ && do {
1089 end_report
(), next CMD
if $finished and $level <= 1;
1091 # Probably not needed, since we finish an interactive
1092 # sub-session anyway...
1093 # local $filename = $filename;
1094 # local *dbline = *dbline; # XXX Would this work?!
1095 if ($i =~ /\D/) { # subroutine name
1096 $subname = $package."::".$subname
1097 unless $subname =~ /::/;
1098 ($file,$i) = (find_sub
($subname) =~ /^(.*):(.*)$/);
1102 *dbline
= $main::{'_<' . $filename};
1103 $had_breakpoints{$filename} |= 1;
1105 ++$i while $dbline[$i] == 0 && $i < $max;
1107 print $OUT "Subroutine $subname not found.\n";
1112 if ($dbline[$i] == 0) {
1113 print $OUT "Line $i not breakable.\n";
1116 $dbline{$i} =~ s/($|\0)/;9$1/; # add one-time-only b.p.
1118 for ($i=0; $i <= $stack_depth; ) {
1122 $cmd =~ /^r$/ && do {
1123 end_report
(), next CMD
if $finished and $level <= 1;
1124 $stack[$stack_depth] |= 1;
1125 $doret = $option{PrintRet
} ?
$stack_depth - 1 : -2;
1127 $cmd =~ /^R$/ && do {
1128 print $OUT "Warning: some settings and command-line options may be lost!\n";
1129 my (@script, @flags, $cl);
1130 push @flags, '-w' if $ini_warn;
1131 # Put all the old includes at the start to get
1132 # the same debugger.
1134 push @flags, '-I', $_;
1136 # Arrange for setting the old INC:
1137 set_list
("PERLDB_INC", @ini_INC);
1139 for (1..$#{'::_<-e'}) { # The first line is PERL5DB
1140 chomp ($cl = ${'::_<-e'}[$_]);
1141 push @script, '-e', $cl;
1146 set_list
("PERLDB_HIST",
1147 $term->Features->{getHistory
}
1148 ?
$term->GetHistory : @hist);
1149 my @had_breakpoints = keys %had_breakpoints;
1150 set_list
("PERLDB_VISITED", @had_breakpoints);
1151 set_list
("PERLDB_OPT", %option);
1152 set_list
("PERLDB_ON_LOAD", %break_on_load);
1154 for (0 .. $#had_breakpoints) {
1155 my $file = $had_breakpoints[$_];
1156 *dbline
= $main::{'_<' . $file};
1157 next unless %dbline or $postponed_file{$file};
1158 (push @hard, $file), next
1159 if $file =~ /^\(eval \d+\)$/;
1161 @add = %{$postponed_file{$file}}
1162 if $postponed_file{$file};
1163 set_list
("PERLDB_FILE_$_", %dbline, @add);
1165 for (@hard) { # Yes, really-really...
1166 # Find the subroutines in this eval
1167 *dbline
= $main::{'_<' . $_};
1168 my ($quoted, $sub, %subs, $line) = quotemeta $_;
1169 for $sub (keys %sub) {
1170 next unless $sub{$sub} =~ /^$quoted:(\d+)-(\d+)$/;
1171 $subs{$sub} = [$1, $2];
1175 "No subroutines in $_, ignoring breakpoints.\n";
1178 LINES
: for $line (keys %dbline) {
1179 # One breakpoint per sub only:
1180 my ($offset, $sub, $found);
1181 SUBS
: for $sub (keys %subs) {
1182 if ($subs{$sub}->[1] >= $line # Not after the subroutine
1183 and (not defined $offset # Not caught
1184 or $offset < 0 )) { # or badly caught
1186 $offset = $line - $subs{$sub}->[0];
1187 $offset = "+$offset", last SUBS
if $offset >= 0;
1190 if (defined $offset) {
1191 $postponed{$found} =
1192 "break $offset if $dbline{$line}";
1194 print $OUT "Breakpoint in $_:$line ignored: after all the subroutines.\n";
1198 set_list
("PERLDB_POSTPONE", %postponed);
1199 set_list
("PERLDB_PRETYPE", @
$pretype);
1200 set_list
("PERLDB_PRE", @
$pre);
1201 set_list
("PERLDB_POST", @
$post);
1202 set_list
("PERLDB_TYPEAHEAD", @typeahead);
1203 $ENV{PERLDB_RESTART
} = 1;
1204 #print "$^X, '-d', @flags, @script, ($slave_editor ? '-emacs' : ()), @ARGS";
1205 exec $^X
, '-d', @flags, @script, ($slave_editor ?
'-emacs' : ()), @ARGS;
1206 print $OUT "exec failed: $!\n";
1208 $cmd =~ /^T$/ && do {
1209 print_trace
($OUT, 1); # skip DB
1211 $cmd =~ /^W\s*$/ && do {
1213 @to_watch = @old_watch = ();
1215 $cmd =~ /^W\b\s*(.*)/s && do {
1219 $val = (defined $val) ?
"'$val'" : 'undef' ;
1220 push @old_watch, $val;
1223 $cmd =~ /^\/(.*)$/ && do {
1225 $inpat =~ s
:([^\\])/$:$1:;
1227 # squelch the sigmangler
1228 local $SIG{__DIE__
};
1229 local $SIG{__WARN__
};
1230 eval '$inpat =~ m'."\a$inpat\a";
1242 $start = 1 if ($start > $max);
1243 last if ($start == $end);
1244 if ($dbline[$start] =~ m' . "\a$pat\a" . 'i) {
1245 if ($slave_editor) {
1246 print $OUT "\032\032$filename:$start:0\n";
1248 print $OUT "$start:\t", $dbline[$start], "\n";
1253 print $OUT "/$pat/: not found\n" if ($start == $end);
1255 $cmd =~ /^\?(.*)$/ && do {
1257 $inpat =~ s
:([^\\])\?$:$1:;
1259 # squelch the sigmangler
1260 local $SIG{__DIE__
};
1261 local $SIG{__WARN__
};
1262 eval '$inpat =~ m'."\a$inpat\a";
1274 $start = $max if ($start <= 0);
1275 last if ($start == $end);
1276 if ($dbline[$start] =~ m' . "\a$pat\a" . 'i) {
1277 if ($slave_editor) {
1278 print $OUT "\032\032$filename:$start:0\n";
1280 print $OUT "$start:\t", $dbline[$start], "\n";
1285 print $OUT "?$pat?: not found\n" if ($start == $end);
1287 $cmd =~ /^$rc+\s*(-)?(\d+)?$/ && do {
1288 pop(@hist) if length($cmd) > 1;
1289 $i = $1 ?
($#hist-($2||1)) : ($2||$#hist);
1291 print $OUT $cmd, "\n";
1293 $cmd =~ /^$sh$sh\s*([\x00-\xff]*)/ && do {
1296 $cmd =~ /^$rc([^$rc].*)$/ && do {
1298 pop(@hist) if length($cmd) > 1;
1299 for ($i = $#hist; $i; --$i) {
1300 last if $hist[$i] =~ /$pat/;
1303 print $OUT "No such command!\n\n";
1307 print $OUT $cmd, "\n";
1309 $cmd =~ /^$sh$/ && do {
1310 &system($ENV{SHELL
}||"/bin/sh");
1312 $cmd =~ /^$sh\s*([\x00-\xff]*)/ && do {
1313 # XXX: using csh or tcsh destroys sigint retvals!
1314 #&system($1); # use this instead
1315 &system($ENV{SHELL
}||"/bin/sh","-c",$1);
1317 $cmd =~ /^H\b\s*(-(\d+))?/ && do {
1318 $end = $2 ?
($#hist-$2) : 0;
1319 $hist = 0 if $hist < 0;
1320 for ($i=$#hist; $i>$end; $i--) {
1321 print $OUT "$i: ",$hist[$i],"\n"
1322 unless $hist[$i] =~ /^.?$/;
1325 $cmd =~ /^(?:man|(?:perl)?doc)\b(?:\s+([^(]*))?$/ && do {
1328 $cmd =~ s/^p$/print {\$DB::OUT} \$_/;
1329 $cmd =~ s/^p\b/print {\$DB::OUT} /;
1330 $cmd =~ s/^=\s*// && do {
1332 if (length $cmd == 0) {
1333 @keys = sort keys %alias;
1335 elsif (my($k,$v) = ($cmd =~ /^(\S+)\s+(\S.*)/)) {
1336 # can't use $_ or kill //g state
1337 for my $x ($k, $v) { $x =~ s/\a/\\a/g }
1338 $alias{$k} = "s\a$k\a$v\a";
1339 # squelch the sigmangler
1340 local $SIG{__DIE__
};
1341 local $SIG{__WARN__
};
1342 unless (eval "sub { s\a$k\a$v\a }; 1") {
1343 print $OUT "Can't alias $k to $v: $@\n";
1353 if ((my $v = $alias{$k}) =~ s
\as
\a$k\a(.*)\a$\a1\a) {
1354 print $OUT "$k\t= $1\n";
1356 elsif (defined $alias{$k}) {
1357 print $OUT "$k\t$alias{$k}\n";
1360 print "No alias for $k\n";
1364 $cmd =~ /^\|\|?\s*[^|]/ && do {
1365 if ($pager =~ /^\|/) {
1366 open(SAVEOUT
,">&STDOUT") || &warn("Can't save STDOUT");
1367 open(STDOUT
,">&OUT") || &warn("Can't redirect STDOUT");
1369 open(SAVEOUT
,">&OUT") || &warn("Can't save DB::OUT");
1372 unless ($piped=open(OUT
,$pager)) {
1373 &warn("Can't pipe output to `$pager'");
1374 if ($pager =~ /^\|/) {
1375 open(OUT
,">&STDOUT") # XXX: lost message
1376 || &warn("Can't restore DB::OUT");
1377 open(STDOUT
,">&SAVEOUT")
1378 || &warn("Can't restore STDOUT");
1381 open(OUT
,">&STDOUT") # XXX: lost message
1382 || &warn("Can't restore DB::OUT");
1386 $SIG{PIPE
}= \
&DB
::catch
if $pager =~ /^\|/
1387 && ("" eq $SIG{PIPE
} || "DEFAULT" eq $SIG{PIPE
});
1388 $selected= select(OUT
);
1390 select( $selected ), $selected= "" unless $cmd =~ /^\|\|/;
1391 $cmd =~ s/^\|+\s*//;
1394 # XXX Local variants do not work!
1395 $cmd =~ s/^t\s/\$DB::trace |= 1;\n/;
1396 $cmd =~ s/^s\s/\$DB::single = 1;\n/ && do {$laststep = 's'};
1397 $cmd =~ s/^n\s/\$DB::single = 2;\n/ && do {$laststep = 'n'};
1399 $evalarg = "\$^D = \$^D | \$DB::db_stop;\n$cmd"; &eval;
1401 $onetimeDump = undef;
1402 } elsif ($term_pid == $$) {
1407 if ($pager =~ /^\|/) {
1409 # we cannot warn here: the handle is missing --tchrist
1410 close(OUT
) || print SAVEOUT
"\nCan't close DB::OUT\n";
1412 # most of the $? crud was coping with broken cshisms
1414 print SAVEOUT
"Pager `$pager' failed: ";
1416 print SAVEOUT
"shell returned -1\n";
1419 ( $?
& 127 ) ?
" (SIG#".($?
&127).")" : "",
1420 ( $?
& 128 ) ?
" -- core dumped" : "", "\n";
1422 print SAVEOUT
"status ", ($?
>> 8), "\n";
1426 open(OUT
,">&STDOUT") || &warn("Can't restore DB::OUT");
1427 open(STDOUT
,">&SAVEOUT") || &warn("Can't restore STDOUT");
1428 $SIG{PIPE
} = "DEFAULT" if $SIG{PIPE
} eq \
&DB
::catch
;
1429 # Will stop ignoring SIGPIPE if done like nohup(1)
1430 # does SIGINT but Perl doesn't give us a choice.
1432 open(OUT
,">&SAVEOUT") || &warn("Can't restore DB::OUT");
1435 select($selected), $selected= "" unless $selected eq "";
1439 $fall_off_end = 1 unless defined $cmd; # Emulate `q' on EOF
1440 foreach $evalarg (@
$post) {
1443 } # if ($single || $signal)
1444 ($@
, $!, $^E
, $,, $/, $\
, $^W
) = @saved;
1448 # The following code may be executed now:
1452 my ($al, $ret, @ret) = "";
1453 if (length($sub) > 10 && substr($sub, -10, 10) eq '::AUTOLOAD') {
1456 local $stack_depth = $stack_depth + 1; # Protect from non-local exits
1457 $#stack = $stack_depth;
1458 $stack[-1] = $single;
1460 $single |= 4 if $stack_depth == $deep;
1462 ?
( (print $LINEINFO ' ' x
($stack_depth - 1), "in "),
1463 # Why -1? But it works! :-(
1464 print_trace
($LINEINFO, -1, 1, 1, "$sub$al") )
1465 : print $LINEINFO ' ' x
($stack_depth - 1), "entering $sub$al\n") if $frame;
1468 $single |= $stack[$stack_depth--];
1470 ?
( (print $LINEINFO ' ' x
$stack_depth, "out "),
1471 print_trace
($LINEINFO, -1, 1, 1, "$sub$al") )
1472 : print $LINEINFO ' ' x
$stack_depth, "exited $sub$al\n") if $frame & 2;
1473 if ($doret eq $stack_depth or $frame & 16) {
1474 my $fh = ($doret eq $stack_depth ?
$OUT : $LINEINFO);
1475 print $fh ' ' x
$stack_depth if $frame & 16;
1476 print $fh "list context return from $sub:\n";
1477 dumpit
($fh, \
@ret );
1482 if (defined wantarray) {
1487 $single |= $stack[$stack_depth--];
1489 ?
( (print $LINEINFO ' ' x
$stack_depth, "out "),
1490 print_trace
($LINEINFO, -1, 1, 1, "$sub$al") )
1491 : print $LINEINFO ' ' x
$stack_depth, "exited $sub$al\n") if $frame & 2;
1492 if ($doret eq $stack_depth or $frame & 16 and defined wantarray) {
1493 my $fh = ($doret eq $stack_depth ?
$OUT : $LINEINFO);
1494 print $fh (' ' x
$stack_depth) if $frame & 16;
1495 print $fh (defined wantarray
1496 ?
"scalar context return from $sub: "
1497 : "void context return from $sub\n");
1498 dumpit
( $fh, $ret ) if defined wantarray;
1506 @saved = ($@
, $!, $^E
, $,, $/, $\
, $^W
);
1507 $, = ""; $/ = "\n"; $\
= ""; $^W
= 0;
1510 # The following takes its argument via $evalarg to preserve current @_
1513 # 'my' would make it visible from user code
1514 # but so does local! --tchrist
1517 local $otrace = $trace;
1518 local $osingle = $single;
1520 { ($evalarg) = $evalarg =~ /(.*)/s; }
1521 @res = eval "$usercontext $evalarg;\n"; # '\n' for nice recursive debug
1527 local $saved[0]; # Preserve the old value of $@
1531 } elsif ($onetimeDump eq 'dump') {
1532 dumpit
($OUT, \
@res);
1533 } elsif ($onetimeDump eq 'methods') {
1540 my $subname = shift;
1541 if ($postponed{$subname} =~ s/^break\s([+-]?\d+)\s+if\s//) {
1542 my $offset = $1 || 0;
1543 # Filename below can contain ':'
1544 my ($file,$i) = (find_sub
($subname) =~ /^(.*):(\d+)-.*$/);
1547 local *dbline
= $main::{'_<' . $file};
1548 local $^W
= 0; # != 0 is magical below
1549 $had_breakpoints{$file} |= 1;
1551 ++$i until $dbline[$i] != 0 or $i >= $max;
1552 $dbline{$i} = delete $postponed{$subname};
1554 print $OUT "Subroutine $subname not found.\n";
1558 elsif ($postponed{$subname} eq 'compile') { $signal = 1 }
1559 #print $OUT "In postponed_sub for `$subname'.\n";
1563 if ($ImmediateStop) {
1567 return &postponed_sub
1568 unless ref \
$_[0] eq 'GLOB'; # A subroutine is compiled.
1569 # Cannot be done before the file is compiled
1570 local *dbline
= shift;
1571 my $filename = $dbline;
1572 $filename =~ s/^_<//;
1573 $signal = 1, print $OUT "'$filename' loaded...\n"
1574 if $break_on_load{$filename};
1575 print $LINEINFO ' ' x
$stack_depth, "Package $filename.\n" if $frame;
1576 return unless $postponed_file{$filename};
1577 $had_breakpoints{$filename} |= 1;
1578 #%dbline = %{$postponed_file{$filename}}; # Cannot be done: unsufficient magic
1580 for $key (keys %{$postponed_file{$filename}}) {
1581 $dbline{$key} = ${$postponed_file{$filename}}{$key};
1583 delete $postponed_file{$filename};
1587 local ($savout) = select(shift);
1588 my $osingle = $single;
1589 my $otrace = $trace;
1590 $single = $trace = 0;
1593 unless (defined &main
::dumpValue
) {
1596 if (defined &main
::dumpValue
) {
1597 &main
::dumpValue
(shift);
1599 print $OUT "dumpvar.pl not available.\n";
1606 # Tied method do not create a context, so may get wrong message:
1610 my @sub = dump_trace
($_[0] + 1, $_[1]);
1611 my $short = $_[2]; # Print short report, next one for sub name
1613 for ($i=0; $i <= $#sub; $i++) {
1616 my $args = defined $sub[$i]{args}
1617 ? "(@
{ $sub[$i]{args
} })"
1619 $args = (substr $args, 0, $maxtrace - 3) . '...'
1620 if length $args > $maxtrace;
1621 my $file = $sub[$i]{file};
1622 $file = $file eq '-e' ? $file : "file
`$file'" unless $short;
1624 $s = (substr $s, 0, $maxtrace - 3) . '...' if length $s > $maxtrace;
1626 my $sub = @_ >= 4 ? $_[3] : $s;
1627 print $fh "$sub[$i]{context}=$sub$args from $file:$sub[$i]{line}\n";
1629 print $fh "$sub[$i]{context} = $s$args" .
1630 " called from $file" .
1631 " line $sub[$i]{line}\n";
1638 my $count = shift || 1e9;
1641 my ($p,$file,$line,$sub,$h,$args,$e,$r,@a,@sub,$context);
1642 my $nothard = not $frame & 8;
1643 local $frame = 0; # Do not want to trace this.
1644 my $otrace = $trace;
1647 $i < $count and ($p,$file,$line,$sub,$h,$context,$e,$r) = caller($i);
1652 if (not defined $arg) {
1654 } elsif ($nothard and tied $arg) {
1656 } elsif ($nothard and $type = ref $arg) {
1657 push @a, "ref($type)";
1659 local $_ = "$arg"; # Safe to stringify now - should not call f().
1662 unless /^(?: -?[\d.]+ | \*[\w:]* )$/x;
1663 s/([\200-\377])/sprintf("M-%c",ord($1)&0177)/eg;
1664 s/([\0-\37\177])/sprintf("^%c",ord($1)^64)/eg;
1668 $context = $context ? '@' : (defined $context ? "\$" : '.');
1669 $args = $h ? [@a] : undef;
1670 $e =~ s/\n\s*\;\s*\Z// if $e;
1671 $e =~ s/([\\\'])/\\$1/g if $e;
1673 $sub = "require '$e'";
1674 } elsif (defined $r) {
1676 } elsif ($sub eq '(eval)') {
1677 $sub = "eval {...}";
1679 push(@sub, {context => $context, sub => $sub, args => $args,
1680 file => $file, line => $line});
1689 while ($action =~ s/\\$//) {
1698 # i hate using globals!
1699 $balanced_brace_re ||= qr{
1702 (?> [^{}] + ) # Non-parens without backtracking
1704 (??{ $balanced_brace_re }) # Group with matching parens
1708 return $_[0] !~ m/$balanced_brace_re/;
1712 &readline("cont: ");
1716 # We save, change, then restore STDIN and STDOUT to avoid fork() since
1717 # some non-Unix systems can do system() but have problems with fork().
1718 open(SAVEIN,"<&STDIN") || &warn("Can't save STDIN");
1719 open(SAVEOUT,">&STDOUT") || &warn("Can't save STDOUT");
1720 open(STDIN,"<&IN") || &warn("Can't redirect STDIN");
1721 open(STDOUT,">&OUT") || &warn("Can't redirect STDOUT");
1723 # XXX: using csh or tcsh destroys sigint retvals!
1725 open(STDIN,"<&SAVEIN") || &warn("Can't restore STDIN");
1726 open(STDOUT,">&SAVEOUT") || &warn("Can't restore STDOUT");
1731 # most of the $? crud was coping with broken cshisms
1733 &warn("(Command exited ", ($? >> 8), ")\n");
1735 &warn( "(Command died of SIG#", ($? & 127),
1736 (($? & 128) ? " -- core dumped" : "") , ")", "\n");
1746 eval { require Term::ReadLine } or die $@;
1749 open(IN,"<$tty") or die "Cannot open TTY `$TTY' for read: $!";
1750 open(OUT,">$tty") or die "Cannot open TTY `$TTY' for write: $!";
1753 my $sel = select($OUT);
1757 eval "require Term
::Rendezvous
;" or die;
1758 my $rv = $ENV{PERLDB_NOTTY} || "/tmp/perldbtty
$$";
1759 my $term_rv = new Term::Rendezvous $rv;
1761 $OUT = $term_rv->OUT;
1765 $term = new Term::ReadLine::Stub 'perldb', $IN, $OUT;
1767 $term = new Term::ReadLine 'perldb', $IN, $OUT;
1769 $rl_attribs = $term->Attribs;
1770 $rl_attribs->{basic_word_break_characters} .= '-:+/*,[])}'
1771 if defined $rl_attribs->{basic_word_break_characters}
1772 and index($rl_attribs->{basic_word_break_characters}, ":") == -1;
1773 $rl_attribs->{special_prefixes} = '$@&%';
1774 $rl_attribs->{completer_word_break_characters} .= '$@&%';
1775 $rl_attribs->{completion_function} = \&db_complete;
1777 $LINEINFO = $OUT unless defined $LINEINFO;
1778 $lineinfo = $console unless defined $lineinfo;
1780 if ($term->Features->{setHistory} and "@hist" ne "?
") {
1781 $term->SetHistory(@hist);
1783 ornaments($ornaments) if defined $ornaments;
1787 sub resetterm { # We forked, so we need a different TTY
1789 if (defined &get_fork_TTY) {
1791 } elsif (not defined $fork_TTY
1792 and defined $ENV{TERM} and $ENV{TERM} eq 'xterm'
1793 and defined $ENV{WINDOWID} and defined $ENV{DISPLAY}) {
1794 # Possibly _inside_ XTERM
1795 open XT, q[3>&1 xterm -title 'Forked Perl debugger' -e sh -c 'tty 1>&3;\
1800 if (defined $fork_TTY) {
1805 I<#########> Forked, but do not know how to change a B<TTY>. I<#########>
1806 Define B<\$DB::fork_TTY>
1807 - or a function B<DB::get_fork_TTY()> which will set B<\$DB::fork_TTY>.
1808 The value of B<\$DB::fork_TTY> should be the name of I<TTY> to use.
1809 On I<UNIX>-like systems one can get the name of a I<TTY> for the given window
1810 by typing B<tty>, and disconnect the I<shell> from I<TTY> by B<sleep 1000000>.
1818 my $left = @typeahead;
1819 my $got = shift @typeahead;
1820 print $OUT "auto(-$left)", shift, $got, "\n";
1821 $term->AddHistory($got)
1822 if length($got) > 1 and defined $term->Features->{addHistory
};
1827 if (ref $OUT and UNIVERSAL
::isa
($OUT, 'IO::Socket::INET')) {
1828 $OUT->write(join('', @_));
1830 $IN->recv( $stuff, 2048 ); # XXX: what's wrong with sysread?
1834 $term->readline(@_);
1839 my ($opt, $val)= @_;
1840 $val = option_val
($opt,'N/A');
1841 $val =~ s/([\\\'])/\\$1/g;
1842 printf $OUT "%20s = '%s'\n", $opt, $val;
1846 my ($opt, $default)= @_;
1848 if (defined $optionVars{$opt}
1849 and defined ${$optionVars{$opt}}) {
1850 $val = ${$optionVars{$opt}};
1851 } elsif (defined $optionAction{$opt}
1852 and defined &{$optionAction{$opt}}) {
1853 $val = &{$optionAction{$opt}}();
1854 } elsif (defined $optionAction{$opt}
1855 and not defined $option{$opt}
1856 or defined $optionVars{$opt}
1857 and not defined ${$optionVars{$opt}}) {
1860 $val = $option{$opt};
1867 # too dangerous to let intuitive usage overwrite important things
1868 # defaultion should never be the default
1869 my %opt_needs_val = map { ( $_ => 1 ) } qw{
1870 arrayDepth hashDepth LineInfo maxTraceLen ornaments
1871 pager quote ReadLine recallCommand RemotePort ShellBang TTY
1876 s/^(\w+)(\W?)// or print($OUT "Invalid option `$_'\n"), last;
1877 my ($opt,$sep) = ($1,$2);
1880 print($OUT "Option query `$opt?' followed by non-space `$_'\n"), last
1882 #&dump_option($opt);
1883 } elsif ($sep !~ /\S/) {
1885 $val = "1"; # this is an evil default; make 'em set it!
1886 } elsif ($sep eq "=") {
1888 if (s/ (["']) ( (?: \\. | (?! \1 ) [^\\] )* ) \1 //x) {
1890 ($val = $2) =~ s/\\([$quote\\])/$1/g;
1894 print OUT
qq(Option better cleared using
$opt=""\n)
1898 } else { #{ to "let some poor schmuck bounce on the % key in B<vi>."
1899 my ($end) = "\\" . substr( ")]>}$sep", index("([<{",$sep), 1 ); #}
1900 s/^(([^\\$end]|\\[\\$end])*)$end($|\s+)// or
1901 print($OUT "Unclosed option value `$opt$sep$_'\n"), last;
1902 ($val = $1) =~ s/\\([\\$end])/$1/g;
1906 my $matches = grep( /^\Q$opt/ && ($option = $_), @options )
1907 || grep( /^\Q$opt/i && ($option = $_), @options );
1909 print($OUT "Unknown option `$opt'\n"), next unless $matches;
1910 print($OUT "Ambiguous option `$opt'\n"), next if $matches > 1;
1912 if ($opt_needs_val{$option} && $val_defaulted) {
1913 print $OUT "Option `$opt' is non-boolean. Use `O $option=VAL' to set, `O $option?' to query\n";
1917 $option{$option} = $val if defined $val;
1922 require '$optionRequire{$option}';
1924 } || die # XXX: shouldn't happen
1925 if defined $optionRequire{$option} &&
1928 ${$optionVars{$option}} = $val
1929 if defined $optionVars{$option} &&
1932 &{$optionAction{$option}} ($val)
1933 if defined $optionAction{$option} &&
1934 defined &{$optionAction{$option}} &&
1938 dump_option
($option) unless $OUT eq \
*STDERR
;
1943 my ($stem,@list) = @_;
1945 $ENV{"${stem}_n"} = @list;
1946 for $i (0 .. $#list) {
1948 $val =~ s/\\/\\\\/g;
1949 $val =~ s/([\0-\37\177\200-\377])/"\\0x" . unpack('H2',$1)/eg;
1950 $ENV{"${stem}_$i"} = $val;
1957 my $n = delete $ENV{"${stem}_n"};
1959 for $i (0 .. $n - 1) {
1960 $val = delete $ENV{"${stem}_$i"};
1961 $val =~ s/\\((\\)|0x(..))/ $2 ? $2 : pack('H2', $3) /ge;
1969 return; # Put nothing on the stack - malloc/free land!
1973 my($msg)= join("",@_);
1974 $msg .= ": $!\n" unless $msg =~ /\n$/;
1979 if (@_ and $term and $term->Features->{newTTY
}) {
1980 my ($in, $out) = shift;
1982 ($in, $out) = split /,/, $in, 2;
1986 open IN
, $in or die "cannot open `$in' for read: $!";
1987 open OUT
, ">$out" or die "cannot open `$out' for write: $!";
1988 $term->newTTY(\
*IN
, \
*OUT
);
1992 } elsif ($term and @_) {
1993 &warn("Too late to set TTY, enabled on next `R'!\n");
2001 &warn("Too late to set noTTY, enabled on next `R'!\n") if @_;
2003 $notty = shift if @_;
2009 &warn("Too late to set ReadLine, enabled on next `R'!\n") if @_;
2017 &warn("Too late to set RemotePort, enabled on next 'R'!\n") if @_;
2019 $remoteport = shift if @_;
2024 if (${$term->Features}{tkRunning
}) {
2025 return $term->tkRunning(@_);
2027 print $OUT "tkRunning not supported by current ReadLine package.\n";
2034 &warn("Too late to set up NonStop mode, enabled on next `R'!\n") if @_;
2036 $runnonstop = shift if @_;
2043 $pager="|".$pager unless $pager =~ /^(\+?\>|\|)/;
2050 $sh = quotemeta shift;
2051 $sh .= "\\b" if $sh =~ /\w$/;
2055 $psh =~ s/\\(.)/$1/g;
2061 if (defined $term) {
2062 local ($warnLevel,$dieLevel) = (0, 1);
2063 return '' unless $term->Features->{ornaments
};
2064 eval { $term->ornaments(@_) } || '';
2072 $rc = quotemeta shift;
2073 $rc .= "\\b" if $rc =~ /\w$/;
2077 $prc =~ s/\\(.)/$1/g;
2083 return $lineinfo unless @_;
2085 my $stream = ($lineinfo =~ /^(\+?\>|\|)/) ?
$lineinfo : ">$lineinfo";
2086 $slave_editor = ($stream =~ /^\|/);
2087 open(LINEINFO
, "$stream") || &warn("Cannot open `$stream' for write");
2088 $LINEINFO = \
*LINEINFO
;
2089 my $save = select($LINEINFO);
2103 s/^Term::ReadLine::readline$/readline/;
2104 if (defined ${ $_ . '::VERSION' }) {
2105 $version{$file} = "${ $_ . '::VERSION' } from ";
2107 $version{$file} .= $INC{$file};
2109 dumpit
($OUT,\
%version);
2113 # XXX: make sure these are tabs between the command and explantion,
2114 # or print_help will screw up your formatting if you have
2115 # eeevil ornaments enabled. This is an insane mess.
2119 B<s> [I<expr>] Single step [in I<expr>].
2120 B<n> [I<expr>] Next, steps over subroutine calls [in I<expr>].
2121 <B<CR>> Repeat last B<n> or B<s> command.
2122 B<r> Return from current subroutine.
2123 B<c> [I<line>|I<sub>] Continue; optionally inserts a one-time-only breakpoint
2124 at the specified position.
2125 B<l> I<min>B<+>I<incr> List I<incr>+1 lines starting at I<min>.
2126 B<l> I<min>B<->I<max> List lines I<min> through I<max>.
2127 B<l> I<line> List single I<line>.
2128 B<l> I<subname> List first window of lines from subroutine.
2129 B<l> I<\$var> List first window of lines from subroutine referenced by I<\$var>.
2130 B<l> List next window of lines.
2131 B<-> List previous window of lines.
2132 B<w> [I<line>] List window around I<line>.
2133 B<.> Return to the executed line.
2134 B<f> I<filename> Switch to viewing I<filename>. File must be already loaded.
2135 I<filename> may be either the full name of the file, or a regular
2136 expression matching the full file name:
2137 B<f> I</home/me/foo.pl> and B<f> I<oo\\.> may access the same file.
2138 Evals (with saved bodies) are considered to be filenames:
2139 B<f> I<(eval 7)> and B<f> I<eval 7\\b> access the body of the 7th eval
2140 (in the order of execution).
2141 B</>I<pattern>B</> Search forwards for I<pattern>; final B</> is optional.
2142 B<?>I<pattern>B<?> Search backwards for I<pattern>; final B<?> is optional.
2143 B<L> List all breakpoints and actions.
2144 B<S> [[B<!>]I<pattern>] List subroutine names [not] matching I<pattern>.
2145 B<t> Toggle trace mode.
2146 B<t> I<expr> Trace through execution of I<expr>.
2147 B<b> [I<line>] [I<condition>]
2148 Set breakpoint; I<line> defaults to the current execution line;
2149 I<condition> breaks if it evaluates to true, defaults to '1'.
2150 B<b> I<subname> [I<condition>]
2151 Set breakpoint at first line of subroutine.
2152 B<b> I<\$var> Set breakpoint at first line of subroutine referenced by I<\$var>.
2153 B<b> B<load> I<filename> Set breakpoint on `require'ing the given file.
2154 B<b> B<postpone> I<subname> [I<condition>]
2155 Set breakpoint at first line of subroutine after
2157 B<b> B<compile> I<subname>
2158 Stop after the subroutine is compiled.
2159 B<d> [I<line>] Delete the breakpoint for I<line>.
2160 B<D> Delete all breakpoints.
2161 B<a> [I<line>] I<command>
2162 Set an action to be done before the I<line> is executed;
2163 I<line> defaults to the current execution line.
2164 Sequence is: check for breakpoint/watchpoint, print line
2165 if necessary, do action, prompt user if necessary,
2167 B<a> [I<line>] Delete the action for I<line>.
2168 B<A> Delete all actions.
2169 B<W> I<expr> Add a global watch-expression.
2170 B<W> Delete all watch-expressions.
2171 B<V> [I<pkg> [I<vars>]] List some (default all) variables in package (default current).
2172 Use B<~>I<pattern> and B<!>I<pattern> for positive and negative regexps.
2173 B<X> [I<vars>] Same as \"B<V> I<currentpackage> [I<vars>]\".
2174 B<x> I<expr> Evals expression in list context, dumps the result.
2175 B<m> I<expr> Evals expression in list context, prints methods callable
2176 on the first element of the result.
2177 B<m> I<class> Prints methods callable via the given class.
2179 B<<> ? List Perl commands to run before each prompt.
2180 B<<> I<expr> Define Perl command to run before each prompt.
2181 B<<<> I<expr> Add to the list of Perl commands to run before each prompt.
2182 B<>> ? List Perl commands to run after each prompt.
2183 B<>> I<expr> Define Perl command to run after each prompt.
2184 B<>>B<>> I<expr> Add to the list of Perl commands to run after each prompt.
2185 B<{> I<db_command> Define debugger command to run before each prompt.
2186 B<{> ? List debugger commands to run before each prompt.
2187 B<<> I<expr> Define Perl command to run before each prompt.
2188 B<{{> I<db_command> Add to the list of debugger commands to run before each prompt.
2189 B<$prc> I<number> Redo a previous command (default previous command).
2190 B<$prc> I<-number> Redo number'th-to-last command.
2191 B<$prc> I<pattern> Redo last command that started with I<pattern>.
2192 See 'B<O> I<recallCommand>' too.
2193 B<$psh$psh> I<cmd> Run cmd in a subprocess (reads from DB::IN, writes to DB::OUT)"
2194 . ( $rc eq $sh ?
"" : "
2195 B<$psh> [I<cmd>] Run I<cmd> in subshell (forces \"\$SHELL -c 'cmd'\")." ) . "
2196 See 'B<O> I<shellBang>' too.
2197 B<H> I<-number> Display last number commands (default all).
2198 B<p> I<expr> Same as \"I<print {DB::OUT} expr>\" in current package.
2199 B<|>I<dbcmd> Run debugger command, piping DB::OUT to current pager.
2200 B<||>I<dbcmd> Same as B<|>I<dbcmd> but DB::OUT is temporarilly select()ed as well.
2201 B<\=> [I<alias> I<value>] Define a command alias, or list current aliases.
2202 I<command> Execute as a perl statement in current package.
2203 B<v> Show versions of loaded modules.
2204 B<R> Pure-man-restart of debugger, some of debugger state
2205 and command-line options may be lost.
2206 Currently the following setting are preserved:
2207 history, breakpoints and actions, debugger B<O>ptions
2208 and the following command-line options: I<-w>, I<-I>, I<-e>.
2210 B<O> [I<opt>] ... Set boolean option to true
2211 B<O> [I<opt>B<?>] Query options
2212 B<O> [I<opt>B<=>I<val>] [I<opt>=B<\">I<val>B<\">] ...
2213 Set options. Use quotes in spaces in value.
2214 I<recallCommand>, I<ShellBang> chars used to recall command or spawn shell;
2215 I<pager> program for output of \"|cmd\";
2216 I<tkRunning> run Tk while prompting (with ReadLine);
2217 I<signalLevel> I<warnLevel> I<dieLevel> level of verbosity;
2218 I<inhibit_exit> Allows stepping off the end of the script.
2219 I<ImmediateStop> Debugger should stop as early as possible.
2220 I<RemotePort> Remote hostname:port for remote debugging
2221 The following options affect what happens with B<V>, B<X>, and B<x> commands:
2222 I<arrayDepth>, I<hashDepth> print only first N elements ('' for all);
2223 I<compactDump>, I<veryCompact> change style of array and hash dump;
2224 I<globPrint> whether to print contents of globs;
2225 I<DumpDBFiles> dump arrays holding debugged files;
2226 I<DumpPackages> dump symbol tables of packages;
2227 I<DumpReused> dump contents of \"reused\" addresses;
2228 I<quote>, I<HighBit>, I<undefPrint> change style of string dump;
2229 I<bareStringify> Do not print the overload-stringified value;
2230 Other options include:
2231 I<PrintRet> affects printing of return value after B<r> command,
2232 I<frame> affects printing messages on entry and exit from subroutines.
2233 I<AutoTrace> affects printing messages on every possible breaking point.
2234 I<maxTraceLen> gives maximal length of evals/args listed in stack trace.
2235 I<ornaments> affects screen appearance of the command line.
2236 During startup options are initialized from \$ENV{PERLDB_OPTS}.
2237 You can put additional initialization options I<TTY>, I<noTTY>,
2238 I<ReadLine>, I<NonStop>, and I<RemotePort> there (or use
2239 `B<R>' after you set them).
2241 B<q> or B<^D> Quit. Set B<\$DB::finished = 0> to debug global destruction.
2242 B<h> [I<db_command>] Get help [on a specific debugger command], enter B<|h> to page.
2243 B<h h> Summary of debugger commands.
2244 B<$doccmd> I<manpage> Runs the external doc viewer B<$doccmd> command on the
2245 named Perl I<manpage>, or on B<$doccmd> itself if omitted.
2246 Set B<\$DB::doccmd> to change viewer.
2248 Type `|h' for a paged display if this was too hard to read.
2250 "; # Fix balance of vi % matching: } }}
2252 $summary = <<"END_SUM";
2253 I<List/search source lines:> I<Control script execution:>
2254 B<l> [I<ln>|I<sub>] List source code B<T> Stack trace
2255 B<-> or B<.> List previous/current line B<s> [I<expr>] Single step [in expr]
2256 B<w> [I<line>] List around line B<n> [I<expr>] Next, steps over subs
2257 B<f> I<filename> View source in file <B<CR>/B<Enter>> Repeat last B<n> or B<s>
2258 B</>I<pattern>B</> B<?>I<patt>B<?> Search forw/backw B<r> Return from subroutine
2259 B<v> Show versions of modules B<c> [I<ln>|I<sub>] Continue until position
2260 I<Debugger controls:> B<L> List break/watch/actions
2261 B<O> [...] Set debugger options B<t> [I<expr>] Toggle trace [trace expr]
2262 B<<>[B<<>]|B<{>[B<{>]|B<>>[B<>>] [I<cmd>] Do pre/post-prompt B<b> [I<ln>|I<event>|I<sub>] [I<cnd>] Set breakpoint
2263 B<$prc> [I<N>|I<pat>] Redo a previous command B<d> [I<ln>] or B<D> Delete a/all breakpoints
2264 B<H> [I<-num>] Display last num commands B<a> [I<ln>] I<cmd> Do cmd before line
2265 B<=> [I<a> I<val>] Define/list an alias B<W> I<expr> Add a watch expression
2266 B<h> [I<db_cmd>] Get help on command B<A> or B<W> Delete all actions/watch
2267 B<|>[B<|>]I<db_cmd> Send output to pager B<$psh>\[B<$psh>\] I<syscmd> Run cmd in a subprocess
2268 B<q> or B<^D> Quit B<R> Attempt a restart
2269 I<Data Examination:> B<expr> Execute perl code, also see: B<s>,B<n>,B<t> I<expr>
2270 B<x>|B<m> I<expr> Evals expr in list context, dumps the result or lists methods.
2271 B<p> I<expr> Print expression (uses script's current package).
2272 B<S> [[B<!>]I<pat>] List subroutine names [not] matching pattern
2273 B<V> [I<Pk> [I<Vars>]] List Variables in Package. Vars can be ~pattern or !pattern.
2274 B<X> [I<Vars>] Same as \"B<V> I<current_package> [I<Vars>]\".
2275 For more help, type B<h> I<cmd_letter>, or run B<$doccmd perldebug> for all docs.
2277 # ')}}; # Fix balance of vi % matching
2283 # Restore proper alignment destroyed by eeevil I<> and B<>
2284 # ornaments: A pox on both their houses!
2286 # A help command will have everything up to and including
2287 # the first tab sequence paddeed into a field 16 (or if indented 20)
2288 # wide. If it's wide than that, an extra space will be added.
2290 ^ # only matters at start of line
2291 ( \040{4} | \t )* # some subcommands are indented
2292 ( < ? # so <CR> works
2293 [BI] < [^\t\n] + ) # find an eeevil ornament
2294 ( \t+ ) # original separation, discarded
2295 ( .* ) # this will now start (no earlier) than
2298 my($leadwhite, $command, $midwhite, $text) = ($1, $2, $3, $4);
2299 my $clean = $command;
2300 $clean =~ s/[BI]<([^>]*)>/$1/g;
2301 # replace with this whole string:
2302 (length($leadwhite) ? " " x 4 : "")
2304 . ((" " x (16 + (length($leadwhite) ? 4 : 0) - length($clean))) || " ")
2309 s{ # handle bold ornaments
2310 B < ( [^>] + | > ) >
2312 $Term::ReadLine::TermCap::rl_term_set[2]
2314 . $Term::ReadLine::TermCap::rl_term_set[3]
2317 s{ # handle italic ornaments
2318 I < ( [^>] + | > ) >
2320 $Term::ReadLine::TermCap::rl_term_set[0]
2322 . $Term::ReadLine::TermCap::rl_term_set[1]
2329 return if defined $ENV{LESS} && $ENV{LESS} =~ /r/;
2330 my $is_less = $pager =~ /\bless\b/;
2331 if ($pager =~ /\bmore\b/) {
2332 my @st_more = stat('/usr/bin/more');
2333 my @st_less = stat('/usr/bin/less');
2334 $is_less = @st_more && @st_less
2335 && $st_more[0] == $st_less[0]
2336 && $st_more[1] == $st_less[1];
2338 # changes environment!
2339 $ENV{LESS} .= 'r' if $is_less;
2345 $SIG{'ABRT'} = 'DEFAULT';
2346 kill 'ABRT', $$ if $panic++;
2347 if (defined &Carp::longmess) {
2348 local $SIG{__WARN__} = '';
2349 local $Carp::CarpLevel = 2; # mydie + confess
2350 &warn(Carp::longmess("Signal @_"));
2353 print $DB::OUT "Got signal @_\n";
2361 local $SIG{__WARN__} = '';
2362 local $SIG{__DIE__} = '';
2363 eval { require Carp } if defined $^S; # If error/warning during compilation,
2364 # require may be broken.
2365 warn(@_, "\nCannot print stack trace, load with -MCarp option to see stack"),
2366 return unless defined &Carp::longmess;
2367 my ($mysingle,$mytrace) = ($single,$trace);
2368 $single = 0; $trace = 0;
2369 my $mess = Carp::longmess(@_);
2370 ($single,$trace) = ($mysingle,$mytrace);
2377 local $SIG{__DIE__} = '';
2378 local $SIG{__WARN__} = '';
2379 my $i = 0; my $ineval = 0; my $sub;
2380 if ($dieLevel > 2) {
2381 local $SIG{__WARN__} = \&dbwarn;
2382 &warn(@_); # Yell no matter what
2385 if ($dieLevel < 2) {
2386 die @_ if $^S; # in eval propagate
2388 eval { require Carp } if defined $^S; # If error/warning during compilation,
2389 # require may be broken.
2391 die(@_, "\nCannot print stack trace, load with -MCarp option to see stack")
2392 unless defined &Carp::longmess;
2394 # We do not want to debug this chunk (automatic disabling works
2395 # inside DB::DB, but not in Carp).
2396 my ($mysingle,$mytrace) = ($single,$trace);
2397 $single = 0; $trace = 0;
2398 my $mess = Carp::longmess(@_);
2399 ($single,$trace) = ($mysingle,$mytrace);
2405 $prevwarn = $SIG{__WARN__} unless $warnLevel;
2408 $SIG{__WARN__} = \&DB::dbwarn;
2410 $SIG{__WARN__} = $prevwarn;
2418 $prevdie = $SIG{__DIE__} unless $dieLevel;
2421 $SIG{__DIE__} = \&DB::dbdie; # if $dieLevel < 2;
2422 #$SIG{__DIE__} = \&DB::diehard if $dieLevel >= 2;
2423 print $OUT "Stack dump during die enabled",
2424 ( $dieLevel == 1 ? " outside of evals" : ""), ".\n"
2426 print $OUT "Dump printed too.\n" if $dieLevel > 2;
2428 $SIG{__DIE__} = $prevdie;
2429 print $OUT "Default die handler restored.\n";
2437 $prevsegv = $SIG{SEGV} unless $signalLevel;
2438 $prevbus = $SIG{BUS} unless $signalLevel;
2439 $signalLevel = shift;
2441 $SIG{SEGV} = \&DB::diesignal;
2442 $SIG{BUS} = \&DB::diesignal;
2444 $SIG{SEGV} = $prevsegv;
2445 $SIG{BUS} = $prevbus;
2453 my $name = CvGV_name_or_bust($in);
2454 defined $name ? $name : $in;
2457 sub CvGV_name_or_bust {
2459 return if $skipCvGV; # Backdoor to avoid problems if XS broken...
2460 $in = \&$in; # Hard reference...
2461 eval {require Devel::Peek; 1} or return;
2462 my $gv = Devel::Peek::CvGV($in) or return;
2463 *$gv{PACKAGE} . '::' . *$gv{NAME};
2469 return unless defined &$subr;
2470 my $name = CvGV_name_or_bust($subr);
2472 $data = $sub{$name} if defined $name;
2473 return $data if defined $data;
2476 $subr = \&$subr; # Hard reference
2479 $s = $_, last if $subr eq \&$_;
2487 $class = ref $class if ref $class;
2490 methods_via($class, '', 1);
2491 methods_via('UNIVERSAL', 'UNIVERSAL', 0);
2496 return if $packs{$class}++;
2498 my $prepend = $prefix ? "via $prefix: " : '';
2500 for $name (grep {defined &{${"${class}::"}{$_}}}
2501 sort keys %{"${class}::"}) {
2502 next if $seen{ $name }++;
2503 print $DB::OUT "$prepend$name\n";
2505 return unless shift; # Recurse?
2506 for $name (@{"${class}::ISA"}) {
2507 $prepend = $prefix ? $prefix . " -> $name" : $name;
2508 methods_via($name, $prepend, 1);
2513 $doccmd = $^O !~ /^(?:MSWin32|VMS|os2|dos|amigaos|riscos|MacOS)\z/s
2514 ? "man" # O Happy Day!
2515 : "perldoc"; # Alas, poor unfortunates
2521 &system("$doccmd $doccmd");
2524 # this way user can override, like with $doccmd="man -Mwhatever"
2525 # or even just "man " to disable the path check.
2526 unless ($doccmd eq 'man') {
2527 &system("$doccmd $page");
2531 $page = 'perl' if lc($page) eq 'help';
2534 my $man1dir = $Config::Config{'man1dir'};
2535 my $man3dir = $Config::Config{'man3dir'};
2536 for ($man1dir, $man3dir) { s#/[^/]*\z## if /\S/ }
2538 $manpath .= "$man1dir:" if $man1dir =~ /\S/;
2539 $manpath .= "$man3dir:" if $man3dir =~ /\S/ && $man1dir ne $man3dir;
2540 chop $manpath if $manpath;
2541 # harmless if missing, I figure
2542 my $oldpath = $ENV{MANPATH};
2543 $ENV{MANPATH} = $manpath if $manpath;
2544 my $nopathopt = $^O =~ /dunno what goes here/;
2546 # I just *know* there are men without -M
2547 (($manpath && !$nopathopt) ? ("-M", $manpath) : ()),
2550 unless ($page =~ /^perl\w/) {
2551 if (grep { $page eq $_ } qw{
2552 5004delta 5005delta amiga api apio book boot bot call compile
2553 cygwin data dbmfilter debug debguts delta diag doc dos dsc embed
2554 faq faq1 faq2 faq3 faq4 faq5 faq6 faq7 faq8 faq9 filter fork
2555 form func guts hack hist hpux intern ipc lexwarn locale lol mod
2556 modinstall modlib msys number obj op opentut os2 os390 pod port
2557 ref reftut run sec style sub syn thrtut tie toc todo toot tootc
2558 trap unicode var vms win32 xs xstut
2563 (($manpath && !$nopathopt) ? ("-M", $manpath) : ()),
2568 if (defined $oldpath) {
2569 $ENV{MANPATH} = $manpath;
2571 delete $ENV{MANPATH};
2575 # The following BEGIN is very handy if debugger goes havoc, debugging debugger?
2577 BEGIN { # This does not compile, alas.
2578 $IN = \*STDIN; # For bugs before DB::OUT has been opened
2579 $OUT = \*STDERR; # For errors before DB::OUT has been opened
2583 $deep = 100; # warning if stack gets this deep
2587 $SIG{INT} = \&DB::catch;
2588 # This may be enabled to debug debugger:
2589 #$warnLevel = 1 unless defined $warnLevel;
2590 #$dieLevel = 1 unless defined $dieLevel;
2591 #$signalLevel = 1 unless defined $signalLevel;
2593 $db_stop = 0; # Compiler warning
2595 $level = 0; # Level of recursive debugging
2596 # @stack and $doret are needed in sub sub, which is called for DB::postponed.
2597 # Triggers bug (?) in perl is we postpone this until runtime:
2598 @postponed = @stack = (0);
2599 $stack_depth = 0; # Localized $#stack
2604 BEGIN {$^W = $ini_warn;} # Switch warnings back
2606 #use Carp; # This did break, left for debuggin
2609 # Specific code for b c l V m f O, &blah, $blah, @blah, %blah
2610 my($text, $line, $start) = @_;
2611 my ($itext, $search, $prefix, $pack) =
2612 ($text, "^\Q${'package'}::\E([^:]+)\$");
2614 return sort grep /^\Q$text/, (keys %sub), qw(postpone load compile), # subroutines
2615 (map { /$search/ ?
($1) : () } keys %sub)
2616 if (substr $line, 0, $start) =~ /^\|*[blc]\s+((postpone|compile)\s+)?$/;
2617 return sort grep /^\Q$text/, values %INC # files
2618 if (substr $line, 0, $start) =~ /^\|*b\s+load\s+$/;
2619 return sort map {($_, db_complete
($_ . "::", "V ", 2))}
2620 grep /^\Q$text/, map { /^(.*)::$/ ?
($1) : ()} keys %:: # top-packages
2621 if (substr $line, 0, $start) =~ /^\|*[Vm]\s+$/ and $text =~ /^\w*$/;
2622 return sort map {($_, db_complete
($_ . "::", "V ", 2))}
2624 grep /^\Q$text/, map { /^(.*)::$/ ?
($prefix . "::$1") : ()} keys %{$prefix . '::'}
2626 if (substr $line, 0, $start) =~ /^\|*[Vm]\s+$/
2627 and $text =~ /^(.*[^:])::?(\w*)$/ and $prefix = $1;
2628 if ( $line =~ /^\|*f\s+(.*)/ ) { # Loaded files
2629 # We may want to complete to (eval 9), so $text may be wrong
2630 $prefix = length($1) - length($text);
2633 map {substr $_, 2 + $prefix} grep /^_<\Q$text/, (keys %main::), $0
2635 if ((substr $text, 0, 1) eq '&') { # subroutines
2636 $text = substr $text, 1;
2638 return sort map "$prefix$_",
2641 (map { /$search/ ?
($1) : () }
2644 if ($text =~ /^[\$@%](.*)::(.*)/) { # symbols in a package
2645 $pack = ($1 eq 'main' ?
'' : $1) . '::';
2646 $prefix = (substr $text, 0, 1) . $1 . '::';
2649 = map "$prefix$_", grep /^\Q$text/, grep /^_?[a-zA-Z]/, keys %$pack ;
2650 if (@out == 1 and $out[0] =~ /::$/ and $out[0] ne $itext) {
2651 return db_complete
($out[0], $line, $start);
2655 if ($text =~ /^[\$@%]/) { # symbols (in $package + packages in main)
2656 $pack = ($package eq 'main' ?
'' : $package) . '::';
2657 $prefix = substr $text, 0, 1;
2658 $text = substr $text, 1;
2659 my @out = map "$prefix$_", grep /^\Q$text/,
2660 (grep /^_?[a-zA-Z]/, keys %$pack),
2661 ( $pack eq '::' ?
() : (grep /::$/, keys %::) ) ;
2662 if (@out == 1 and $out[0] =~ /::$/ and $out[0] ne $itext) {
2663 return db_complete
($out[0], $line, $start);
2667 if ((substr $line, 0, $start) =~ /^\|*O\b.*\s$/) { # Options after a space
2668 my @out = grep /^\Q$text/, @options;
2669 my $val = option_val
($out[0], undef);
2671 if (not defined $val or $val =~ /[\n\r]/) {
2672 # Can do nothing better
2673 } elsif ($val =~ /\s/) {
2675 foreach $l (split //, qq/\"\'\#\|/) {
2676 $out = "$l$val$l ", last if (index $val, $l) == -1;
2681 # Default to value if one completion, to question if many
2682 $rl_attribs->{completer_terminator_character
} = (@out == 1 ?
$out : '? ');
2685 return $term->filename_list($text); # filenames
2689 print $OUT "Use `q' to quit or `R' to restart. `h q' for details.\n"
2693 $finished = 1 if $inhibit_exit; # So that some keys may be disabled.
2694 $fall_off_end = 1 unless $inhibit_exit;
2695 # Do not stop in at_exit() and destructors on exit:
2696 $DB::single
= !$fall_off_end && !$runnonstop;
2697 DB
::fake
::at_exit
() unless $fall_off_end or $runnonstop;
2703 "Debugged program terminated. Use `q' to quit or `R' to restart.";
2706 package DB
; # Do not trace this 1; below!