This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bump version numbers
[perl5.git] / lib / perl5db.pl
CommitLineData
e22ea7cc 1
69893cff
RGS
2=head1 NAME
3
4C<perl5db.pl> - the perl debugger
5
6=head1 SYNOPSIS
7
8 perl -d your_Perl_script
9
10=head1 DESCRIPTION
11
12C<perl5db.pl> is the perl debugger. It is loaded automatically by Perl when
13you invoke a script with C<perl -d>. This documentation tries to outline the
14structure and services provided by C<perl5db.pl>, and to describe how you
15can use them.
16
17=head1 GENERAL NOTES
18
19The debugger can look pretty forbidding to many Perl programmers. There are
20a number of reasons for this, many stemming out of the debugger's history.
21
22When the debugger was first written, Perl didn't have a lot of its nicer
23features - no references, no lexical variables, no closures, no object-oriented
24programming. So a lot of the things one would normally have done using such
25features was done using global variables, globs and the C<local()> operator
26in creative ways.
27
28Some of these have survived into the current debugger; a few of the more
29interesting and still-useful idioms are noted in this section, along with notes
30on the comments themselves.
31
32=head2 Why not use more lexicals?
33
34Experienced Perl programmers will note that the debugger code tends to use
35mostly package globals rather than lexically-scoped variables. This is done
36to allow a significant amount of control of the debugger from outside the
37debugger itself.
38
39Unfortunately, though the variables are accessible, they're not well
40documented, so it's generally been a decision that hasn't made a lot of
41difference to most users. Where appropriate, comments have been added to
42make variables more accessible and usable, with the understanding that these
43i<are> debugger internals, and are therefore subject to change. Future
44development should probably attempt to replace the globals with a well-defined
45API, but for now, the variables are what we've got.
46
47=head2 Automated variable stacking via C<local()>
48
49As you may recall from reading C<perlfunc>, the C<local()> operator makes a
50temporary copy of a variable in the current scope. When the scope ends, the
51old copy is restored. This is often used in the debugger to handle the
52automatic stacking of variables during recursive calls:
53
54 sub foo {
55 local $some_global++;
56
57 # Do some stuff, then ...
58 return;
59 }
60
61What happens is that on entry to the subroutine, C<$some_global> is localized,
62then altered. When the subroutine returns, Perl automatically undoes the
63localization, restoring the previous value. Voila, automatic stack management.
64
65The debugger uses this trick a I<lot>. Of particular note is C<DB::eval>,
66which lets the debugger get control inside of C<eval>'ed code. The debugger
67localizes a saved copy of C<$@> inside the subroutine, which allows it to
68keep C<$@> safe until it C<DB::eval> returns, at which point the previous
69value of C<$@> is restored. This makes it simple (well, I<simpler>) to keep
70track of C<$@> inside C<eval>s which C<eval> other C<eval's>.
71
72In any case, watch for this pattern. It occurs fairly often.
73
74=head2 The C<^> trick
75
76This is used to cleverly reverse the sense of a logical test depending on
77the value of an auxiliary variable. For instance, the debugger's C<S>
78(search for subroutines by pattern) allows you to negate the pattern
79like this:
80
81 # Find all non-'foo' subs:
82 S !/foo/
83
84Boolean algebra states that the truth table for XOR looks like this:
85
86=over 4
87
88=item * 0 ^ 0 = 0
89
90(! not present and no match) --> false, don't print
91
92=item * 0 ^ 1 = 1
93
94(! not present and matches) --> true, print
95
96=item * 1 ^ 0 = 1
97
98(! present and no match) --> true, print
99
100=item * 1 ^ 1 = 0
101
102(! present and matches) --> false, don't print
103
104=back
105
106As you can see, the first pair applies when C<!> isn't supplied, and
107the second pair applies when it isn't. The XOR simply allows us to
108compact a more complicated if-then-elseif-else into a more elegant
109(but perhaps overly clever) single test. After all, it needed this
110explanation...
111
112=head2 FLAGS, FLAGS, FLAGS
113
114There is a certain C programming legacy in the debugger. Some variables,
115such as C<$single>, C<$trace>, and C<$frame>, have "magical" values composed
116of 1, 2, 4, etc. (powers of 2) OR'ed together. This allows several pieces
117of state to be stored independently in a single scalar.
118
119A test like
120
121 if ($scalar & 4) ...
122
123is checking to see if the appropriate bit is on. Since each bit can be
124"addressed" independently in this way, C<$scalar> is acting sort of like
125an array of bits. Obviously, since the contents of C<$scalar> are just a
126bit-pattern, we can save and restore it easily (it will just look like
127a number).
128
129The problem, is of course, that this tends to leave magic numbers scattered
130all over your program whenever a bit is set, cleared, or checked. So why do
131it?
132
133=over 4
134
135
136=item * First, doing an arithmetical or bitwise operation on a scalar is
137just about the fastest thing you can do in Perl: C<use constant> actually
138creates a subroutine call, and array hand hash lookups are much slower. Is
139this over-optimization at the expense of readability? Possibly, but the
140debugger accesses these variables a I<lot>. Any rewrite of the code will
141probably have to benchmark alternate implementations and see which is the
142best balance of readability and speed, and then document how it actually
143works.
144
145=item * Second, it's very easy to serialize a scalar number. This is done in
146the restart code; the debugger state variables are saved in C<%ENV> and then
147restored when the debugger is restarted. Having them be just numbers makes
148this trivial.
149
150=item * Third, some of these variables are being shared with the Perl core
151smack in the middle of the interpreter's execution loop. It's much faster for
152a C program (like the interpreter) to check a bit in a scalar than to access
153several different variables (or a Perl array).
154
155=back
156
157=head2 What are those C<XXX> comments for?
158
159Any comment containing C<XXX> means that the comment is either somewhat
160speculative - it's not exactly clear what a given variable or chunk of
161code is doing, or that it is incomplete - the basics may be clear, but the
162subtleties are not completely documented.
163
164Send in a patch if you can clear up, fill out, or clarify an C<XXX>.
165
166=head1 DATA STRUCTURES MAINTAINED BY CORE
167
168There are a number of special data structures provided to the debugger by
169the Perl interpreter.
170
171The array C<@{$main::{'_<'.$filename}}> (aliased locally to C<@dbline> via glob
172assignment) contains the text from C<$filename>, with each element
173corresponding to a single line of C<$filename>.
174
175The hash C<%{'_<'.$filename}> (aliased locally to C<%dbline> via glob
176assignment) contains breakpoints and actions. The keys are line numbers;
177you can set individual values, but not the whole hash. The Perl interpreter
178uses this hash to determine where breakpoints have been set. Any true value is
179considered to be a breakpoint; C<perl5db.pl> uses "$break_condition\0$action".
180Values are magical in numeric context: 1 if the line is breakable, 0 if not.
181
182The scalar ${'_<'.$filename} contains $filename XXX What?
183
184=head1 DEBUGGER STARTUP
185
186When C<perl5db.pl> starts, it reads an rcfile (C<perl5db.ini> for
187non-interactive sessions, C<.perldb> for interactive ones) that can set a number
188of options. In addition, this file may define a subroutine C<&afterinit>
189that will be executed (in the debugger's context) after the debugger has
190initialized itself.
191
192Next, it checks the C<PERLDB_OPTS> environment variable and treats its
193contents as the argument of a debugger <C<o> command.
194
195=head2 STARTUP-ONLY OPTIONS
196
197The following options can only be specified at startup.
198To set them in your rcfile, add a call to
199C<&parse_options("optionName=new_value")>.
200
201=over 4
202
203=item * TTY
204
205the TTY to use for debugging i/o.
206
207=item * noTTY
208
209if set, goes in NonStop mode. On interrupt, if TTY is not set,
210uses the value of noTTY or "/tmp/perldbtty$$" to find TTY using
211Term::Rendezvous. Current variant is to have the name of TTY in this
212file.
213
214=item * ReadLine
215
216If false, a dummy ReadLine is used, so you can debug
217ReadLine applications.
218
219=item * NonStop
220
221if true, no i/o is performed until interrupt.
222
223=item * LineInfo
224
225file or pipe to print line number info to. If it is a
226pipe, a short "emacs like" message is used.
227
228=item * RemotePort
229
230host:port to connect to on remote host for remote debugging.
231
232=back
233
234=head3 SAMPLE RCFILE
235
236 &parse_options("NonStop=1 LineInfo=db.out");
237 sub afterinit { $trace = 1; }
238
239The script will run without human intervention, putting trace
240information into C<db.out>. (If you interrupt it, you had better
241reset C<LineInfo> to something "interactive"!)
242
243=head1 INTERNALS DESCRIPTION
244
245=head2 DEBUGGER INTERFACE VARIABLES
246
247Perl supplies the values for C<%sub>. It effectively inserts
248a C<&DB'DB();> in front of each place that can have a
249breakpoint. At each subroutine call, it calls C<&DB::sub> with
250C<$DB::sub> set to the called subroutine. It also inserts a C<BEGIN
251{require 'perl5db.pl'}> before the first line.
252
253After each C<require>d file is compiled, but before it is executed, a
254call to C<&DB::postponed($main::{'_<'.$filename})> is done. C<$filename>
255is the expanded name of the C<require>d file (as found via C<%INC>).
256
257=head3 IMPORTANT INTERNAL VARIABLES
258
259=head4 C<$CreateTTY>
260
261Used to control when the debugger will attempt to acquire another TTY to be
262used for input.
263
264=over
265
266=item * 1 - on C<fork()>
267
268=item * 2 - debugger is started inside debugger
269
270=item * 4 - on startup
271
272=back
273
274=head4 C<$doret>
275
276The value -2 indicates that no return value should be printed.
277Any other positive value causes C<DB::sub> to print return values.
278
279=head4 C<$evalarg>
280
281The item to be eval'ed by C<DB::eval>. Used to prevent messing with the current
282contents of C<@_> when C<DB::eval> is called.
283
284=head4 C<$frame>
285
286Determines what messages (if any) will get printed when a subroutine (or eval)
287is entered or exited.
288
289=over 4
290
291=item * 0 - No enter/exit messages
292
293=item * 1 - Print "entering" messages on subroutine entry
294
295=item * 2 - Adds exit messages on subroutine exit. If no other flag is on, acts like 1+2.
296
297=item * 4 - Extended messages: C<in|out> I<context>=I<fully-qualified sub name> from I<file>:I<line>>. If no other flag is on, acts like 1+4.
298
299=item * 8 - Adds parameter information to messages, and overloaded stringify and tied FETCH is enabled on the printed arguments. Ignored if C<4> is not on.
300
301=item * 16 - Adds C<I<context> return from I<subname>: I<value>> messages on subroutine/eval exit. Ignored if C<4> is is not on.
302
303=back
304
305To get everything, use C<$frame=30> (or C<o f-30> as a debugger command).
306The debugger internally juggles the value of C<$frame> during execution to
307protect external modules that the debugger uses from getting traced.
308
309=head4 C<$level>
310
311Tracks current debugger nesting level. Used to figure out how many
312C<E<lt>E<gt>> pairs to surround the line number with when the debugger
313outputs a prompt. Also used to help determine if the program has finished
314during command parsing.
315
316=head4 C<$onetimeDump>
317
318Controls what (if anything) C<DB::eval()> will print after evaluating an
319expression.
320
321=over 4
322
323=item * C<undef> - don't print anything
324
325=item * C<dump> - use C<dumpvar.pl> to display the value returned
326
327=item * C<methods> - print the methods callable on the first item returned
328
329=back
330
331=head4 C<$onetimeDumpDepth>
332
333Controls how far down C<dumpvar.pl> will go before printing '...' while
334dumping a structure. Numeric. If C<undef>, print all levels.
335
336=head4 C<$signal>
337
338Used to track whether or not an C<INT> signal has been detected. C<DB::DB()>,
339which is called before every statement, checks this and puts the user into
340command mode if it finds C<$signal> set to a true value.
341
342=head4 C<$single>
343
344Controls behavior during single-stepping. Stacked in C<@stack> on entry to
345each subroutine; popped again at the end of each subroutine.
346
347=over 4
348
349=item * 0 - run continuously.
350
351=item * 1 - single-step, go into subs. The 's' command.
352
353=item * 2 - single-step, don't go into subs. The 'n' command.
354
355=item * 4 - print current sub depth (turned on to force this when "too much
356recursion" occurs.
357
358=back
359
360=head4 C<$trace>
361
362Controls the output of trace information.
363
364=over 4
365
366=item * 1 - The C<t> command was entered to turn on tracing (every line executed is printed)
367
368=item * 2 - watch expressions are active
369
370=item * 4 - user defined a C<watchfunction()> in C<afterinit()>
371
372=back
373
374=head4 C<$slave_editor>
375
3761 if C<LINEINFO> was directed to a pipe; 0 otherwise.
377
378=head4 C<@cmdfhs>
379
380Stack of filehandles that C<DB::readline()> will read commands from.
381Manipulated by the debugger's C<source> command and C<DB::readline()> itself.
382
383=head4 C<@dbline>
384
385Local alias to the magical line array, C<@{$main::{'_<'.$filename}}> ,
386supplied by the Perl interpreter to the debugger. Contains the source.
387
388=head4 C<@old_watch>
389
390Previous values of watch expressions. First set when the expression is
391entered; reset whenever the watch expression changes.
392
393=head4 C<@saved>
394
395Saves important globals (C<$@>, C<$!>, C<$^E>, C<$,>, C<$/>, C<$\>, C<$^W>)
396so that the debugger can substitute safe values while it's running, and
397restore them when it returns control.
398
399=head4 C<@stack>
400
401Saves the current value of C<$single> on entry to a subroutine.
402Manipulated by the C<c> command to turn off tracing in all subs above the
403current one.
404
405=head4 C<@to_watch>
406
407The 'watch' expressions: to be evaluated before each line is executed.
408
409=head4 C<@typeahead>
410
411The typeahead buffer, used by C<DB::readline>.
412
413=head4 C<%alias>
414
415Command aliases. Stored as character strings to be substituted for a command
416entered.
417
418=head4 C<%break_on_load>
419
420Keys are file names, values are 1 (break when this file is loaded) or undef
421(don't break when it is loaded).
422
423=head4 C<%dbline>
424
425Keys are line numbers, values are "condition\0action". If used in numeric
426context, values are 0 if not breakable, 1 if breakable, no matter what is
427in the actual hash entry.
428
429=head4 C<%had_breakpoints>
430
431Keys are file names; values are bitfields:
432
433=over 4
434
435=item * 1 - file has a breakpoint in it.
436
437=item * 2 - file has an action in it.
438
439=back
440
441A zero or undefined value means this file has neither.
442
443=head4 C<%option>
444
445Stores the debugger options. These are character string values.
446
447=head4 C<%postponed>
448
449Saves breakpoints for code that hasn't been compiled yet.
450Keys are subroutine names, values are:
451
452=over 4
453
454=item * 'compile' - break when this sub is compiled
455
456=item * 'break +0 if <condition>' - break (conditionally) at the start of this routine. The condition will be '1' if no condition was specified.
457
458=back
459
460=head4 C<%postponed_file>
461
462This hash keeps track of breakpoints that need to be set for files that have
463not yet been compiled. Keys are filenames; values are references to hashes.
464Each of these hashes is keyed by line number, and its values are breakpoint
465definitions ("condition\0action").
466
467=head1 DEBUGGER INITIALIZATION
468
469The debugger's initialization actually jumps all over the place inside this
470package. This is because there are several BEGIN blocks (which of course
471execute immediately) spread through the code. Why is that?
472
473The debugger needs to be able to change some things and set some things up
474before the debugger code is compiled; most notably, the C<$deep> variable that
475C<DB::sub> uses to tell when a program has recursed deeply. In addition, the
476debugger has to turn off warnings while the debugger code is compiled, but then
477restore them to their original setting before the program being debugged begins
478executing.
479
480The first C<BEGIN> block simply turns off warnings by saving the current
481setting of C<$^W> and then setting it to zero. The second one initializes
482the debugger variables that are needed before the debugger begins executing.
483The third one puts C<$^X> back to its former value.
484
485We'll detail the second C<BEGIN> block later; just remember that if you need
486to initialize something before the debugger starts really executing, that's
487where it has to go.
488
489=cut
490
a687059c
LW
491package DB;
492
9eba6a4e
AV
493use IO::Handle;
494
54d04a52 495# Debugger for Perl 5.00x; perl5db.pl patch level:
7fddc82f 496$VERSION = 1.27;
69893cff 497
e22ea7cc 498$header = "perl5db.pl version $VERSION";
d338d6fe 499
69893cff
RGS
500=head1 DEBUGGER ROUTINES
501
502=head2 C<DB::eval()>
503
504This function replaces straight C<eval()> inside the debugger; it simplifies
505the process of evaluating code in the user's context.
506
507The code to be evaluated is passed via the package global variable
508C<$DB::evalarg>; this is done to avoid fiddling with the contents of C<@_>.
509
510We preserve the current settings of X<C<$trace>>, X<C<$single>>, and X<C<$^D>>;
511add the X<C<$usercontext>> (that's the preserved values of C<$@>, C<$!>,
512C<$^E>, C<$,>, C<$/>, C<$\>, and C<$^W>, grabbed when C<DB::DB> got control,
513and the user's current package) and a add a newline before we do the C<eval()>.
514This causes the proper context to be used when the eval is actually done.
515Afterward, we restore C<$trace>, C<$single>, and C<$^D>.
516
517Next we need to handle C<$@> without getting confused. We save C<$@> in a
518local lexical, localize C<$saved[0]> (which is where C<save()> will put
519C<$@>), and then call C<save()> to capture C<$@>, C<$!>, C<$^E>, C<$,>,
520C<$/>, C<$\>, and C<$^W>) and set C<$,>, C<$/>, C<$\>, and C<$^W> to values
521considered sane by the debugger. If there was an C<eval()> error, we print
522it on the debugger's output. If X<C<$onetimedump>> is defined, we call
523X<C<dumpit>> if it's set to 'dump', or X<C<methods>> if it's set to
524'methods'. Setting it to something else causes the debugger to do the eval
525but not print the result - handy if you want to do something else with it
526(the "watch expressions" code does this to get the value of the watch
527expression but not show it unless it matters).
528
529In any case, we then return the list of output from C<eval> to the caller,
530and unwinding restores the former version of C<$@> in C<@saved> as well
531(the localization of C<$saved[0]> goes away at the end of this scope).
532
533=head3 Parameters and variables influencing execution of DB::eval()
534
535C<DB::eval> isn't parameterized in the standard way; this is to keep the
536debugger's calls to C<DB::eval()> from mucking with C<@_>, among other things.
537The variables listed below influence C<DB::eval()>'s execution directly.
538
539=over 4
540
541=item C<$evalarg> - the thing to actually be eval'ed
542
543=item C<$trace> - Current state of execution tracing (see X<$trace>)
544
545=item C<$single> - Current state of single-stepping (see X<$single>)
546
547=item C<$onetimeDump> - what is to be displayed after the evaluation
548
549=item C<$onetimeDumpDepth> - how deep C<dumpit()> should go when dumping results
550
551=back
552
553The following variables are altered by C<DB::eval()> during its execution. They
554are "stacked" via C<local()>, enabling recursive calls to C<DB::eval()>.
555
556=over 4
557
558=item C<@res> - used to capture output from actual C<eval>.
559
560=item C<$otrace> - saved value of C<$trace>.
561
562=item C<$osingle> - saved value of C<$single>.
563
564=item C<$od> - saved value of C<$^D>.
565
566=item C<$saved[0]> - saved value of C<$@>.
567
568=item $\ - for output of C<$@> if there is an evaluation error.
569
570=back
571
572=head3 The problem of lexicals
573
574The context of C<DB::eval()> presents us with some problems. Obviously,
575we want to be 'sandboxed' away from the debugger's internals when we do
576the eval, but we need some way to control how punctuation variables and
577debugger globals are used.
578
579We can't use local, because the code inside C<DB::eval> can see localized
580variables; and we can't use C<my> either for the same reason. The code
581in this routine compromises and uses C<my>.
582
583After this routine is over, we don't have user code executing in the debugger's
584context, so we can use C<my> freely.
585
586=cut
587
588############################################## Begin lexical danger zone
589
590# 'my' variables used here could leak into (that is, be visible in)
591# the context that the code being evaluated is executing in. This means that
592# the code could modify the debugger's variables.
593#
594# Fiddling with the debugger's context could be Bad. We insulate things as
595# much as we can.
596
c1051fcf 597sub eval {
69893cff 598
c1051fcf 599 # 'my' would make it visible from user code
e22ea7cc 600 # but so does local! --tchrist
69893cff 601 # Remember: this localizes @DB::res, not @main::res.
c1051fcf
IZ
602 local @res;
603 {
e22ea7cc
RF
604
605 # Try to keep the user code from messing with us. Save these so that
606 # even if the eval'ed code changes them, we can put them back again.
607 # Needed because the user could refer directly to the debugger's
69893cff
RGS
608 # package globals (and any 'my' variables in this containing scope)
609 # inside the eval(), and we want to try to stay safe.
e22ea7cc 610 local $otrace = $trace;
69893cff
RGS
611 local $osingle = $single;
612 local $od = $^D;
613
614 # Untaint the incoming eval() argument.
615 { ($evalarg) = $evalarg =~ /(.*)/s; }
616
e22ea7cc 617 # $usercontext built in DB::DB near the comment
69893cff
RGS
618 # "set up the context for DB::eval ..."
619 # Evaluate and save any results.
e22ea7cc 620 @res = eval "$usercontext $evalarg;\n"; # '\n' for nice recursive debug
69893cff
RGS
621
622 # Restore those old values.
623 $trace = $otrace;
624 $single = $osingle;
625 $^D = $od;
c1051fcf 626 }
69893cff
RGS
627
628 # Save the current value of $@, and preserve it in the debugger's copy
629 # of the saved precious globals.
c1051fcf 630 my $at = $@;
69893cff
RGS
631
632 # Since we're only saving $@, we only have to localize the array element
633 # that it will be stored in.
e22ea7cc 634 local $saved[0]; # Preserve the old value of $@
c1051fcf 635 eval { &DB::save };
69893cff
RGS
636
637 # Now see whether we need to report an error back to the user.
c1051fcf 638 if ($at) {
69893cff
RGS
639 local $\ = '';
640 print $OUT $at;
641 }
642
643 # Display as required by the caller. $onetimeDump and $onetimedumpDepth
644 # are package globals.
645 elsif ($onetimeDump) {
e22ea7cc
RF
646 if ( $onetimeDump eq 'dump' ) {
647 local $option{dumpDepth} = $onetimedumpDepth
648 if defined $onetimedumpDepth;
649 dumpit( $OUT, \@res );
650 }
651 elsif ( $onetimeDump eq 'methods' ) {
652 methods( $res[0] );
653 }
69893cff 654 } ## end elsif ($onetimeDump)
c1051fcf 655 @res;
69893cff
RGS
656} ## end sub eval
657
658############################################## End lexical danger zone
c1051fcf 659
e22ea7cc
RF
660# After this point it is safe to introduce lexicals.
661# The code being debugged will be executing in its own context, and
69893cff 662# can't see the inside of the debugger.
d338d6fe 663#
e22ea7cc 664# However, one should not overdo it: leave as much control from outside as
69893cff
RGS
665# possible. If you make something a lexical, it's not going to be addressable
666# from outside the debugger even if you know its name.
667
d338d6fe 668# This file is automatically included if you do perl -d.
669# It's probably not useful to include this yourself.
670#
e22ea7cc 671# Before venturing further into these twisty passages, it is
2f7e9187
MS
672# wise to read the perldebguts man page or risk the ire of dragons.
673#
69893cff
RGS
674# (It should be noted that perldebguts will tell you a lot about
675# the underlying mechanics of how the debugger interfaces into the
676# Perl interpreter, but not a lot about the debugger itself. The new
677# comments in this code try to address this problem.)
678
d338d6fe 679# Note that no subroutine call is possible until &DB::sub is defined
36477c24 680# (for subroutines defined outside of the package DB). In fact the same is
d338d6fe 681# true if $deep is not defined.
682#
69893cff 683# $Log: perldb.pl,v $
055fd3a9
GS
684
685# Enhanced by ilya@math.ohio-state.edu (Ilya Zakharevich)
055fd3a9
GS
686
687# modified Perl debugger, to be run from Emacs in perldb-mode
688# Ray Lischner (uunet!mntgfx!lisch) as of 5 Nov 1990
689# Johan Vromans -- upgrade to 4.0 pl 10
690# Ilya Zakharevich -- patches after 5.001 (and some before ;-)
691
69893cff
RGS
692# (We have made efforts to clarify the comments in the change log
693# in other places; some of them may seem somewhat obscure as they
694# were originally written, and explaining them away from the code
695# in question seems conterproductive.. -JM)
696
697########################################################################
698# Changes: 0.94
699# + A lot of things changed after 0.94. First of all, core now informs
700# debugger about entry into XSUBs, overloaded operators, tied operations,
701# BEGIN and END. Handy with `O f=2'.
702# + This can make debugger a little bit too verbose, please be patient
703# and report your problems promptly.
704# + Now the option frame has 3 values: 0,1,2. XXX Document!
705# + Note that if DESTROY returns a reference to the object (or object),
706# the deletion of data may be postponed until the next function call,
707# due to the need to examine the return value.
708#
709# Changes: 0.95
710# + `v' command shows versions.
711#
e22ea7cc 712# Changes: 0.96
69893cff
RGS
713# + `v' command shows version of readline.
714# primitive completion works (dynamic variables, subs for `b' and `l',
715# options). Can `p %var'
716# + Better help (`h <' now works). New commands <<, >>, {, {{.
717# {dump|print}_trace() coded (to be able to do it from <<cmd).
718# + `c sub' documented.
719# + At last enough magic combined to stop after the end of debuggee.
720# + !! should work now (thanks to Emacs bracket matching an extra
721# `]' in a regexp is caught).
722# + `L', `D' and `A' span files now (as documented).
723# + Breakpoints in `require'd code are possible (used in `R').
724# + Some additional words on internal work of debugger.
725# + `b load filename' implemented.
726# + `b postpone subr' implemented.
727# + now only `q' exits debugger (overwritable on $inhibit_exit).
728# + When restarting debugger breakpoints/actions persist.
e22ea7cc 729# + Buglet: When restarting debugger only one breakpoint/action per
69893cff
RGS
730# autoloaded function persists.
731#
36477c24 732# Changes: 0.97: NonStop will not stop in at_exit().
69893cff
RGS
733# + Option AutoTrace implemented.
734# + Trace printed differently if frames are printed too.
735# + new `inhibitExit' option.
736# + printing of a very long statement interruptible.
1d06cb2d 737# Changes: 0.98: New command `m' for printing possible methods
69893cff
RGS
738# + 'l -' is a synonym for `-'.
739# + Cosmetic bugs in printing stack trace.
740# + `frame' & 8 to print "expanded args" in stack trace.
741# + Can list/break in imported subs.
742# + new `maxTraceLen' option.
743# + frame & 4 and frame & 8 granted.
744# + new command `m'
745# + nonstoppable lines do not have `:' near the line number.
746# + `b compile subname' implemented.
747# + Will not use $` any more.
748# + `-' behaves sane now.
477ea2b1 749# Changes: 0.99: Completion for `f', `m'.
69893cff
RGS
750# + `m' will remove duplicate names instead of duplicate functions.
751# + `b load' strips trailing whitespace.
752# completion ignores leading `|'; takes into account current package
753# when completing a subroutine name (same for `l').
055fd3a9
GS
754# Changes: 1.07: Many fixed by tchrist 13-March-2000
755# BUG FIXES:
04e43a21 756# + Added bare minimal security checks on perldb rc files, plus
055fd3a9
GS
757# comments on what else is needed.
758# + Fixed the ornaments that made "|h" completely unusable.
759# They are not used in print_help if they will hurt. Strip pod
760# if we're paging to less.
761# + Fixed mis-formatting of help messages caused by ornaments
e22ea7cc
RF
762# to restore Larry's original formatting.
763# + Fixed many other formatting errors. The code is still suboptimal,
04e43a21 764# and needs a lot of work at restructuring. It's also misindented
055fd3a9
GS
765# in many places.
766# + Fixed bug where trying to look at an option like your pager
e22ea7cc 767# shows "1".
055fd3a9
GS
768# + Fixed some $? processing. Note: if you use csh or tcsh, you will
769# lose. You should consider shell escapes not using their shell,
770# or else not caring about detailed status. This should really be
771# unified into one place, too.
772# + Fixed bug where invisible trailing whitespace on commands hoses you,
04e43a21 773# tricking Perl into thinking you weren't calling a debugger command!
055fd3a9
GS
774# + Fixed bug where leading whitespace on commands hoses you. (One
775# suggests a leading semicolon or any other irrelevant non-whitespace
776# to indicate literal Perl code.)
777# + Fixed bugs that ate warnings due to wrong selected handle.
778# + Fixed a precedence bug on signal stuff.
779# + Fixed some unseemly wording.
780# + Fixed bug in help command trying to call perl method code.
781# + Fixed to call dumpvar from exception handler. SIGPIPE killed us.
782# ENHANCEMENTS:
783# + Added some comments. This code is still nasty spaghetti.
784# + Added message if you clear your pre/post command stacks which was
785# very easy to do if you just typed a bare >, <, or {. (A command
786# without an argument should *never* be a destructive action; this
787# API is fundamentally screwed up; likewise option setting, which
788# is equally buggered.)
789# + Added command stack dump on argument of "?" for >, <, or {.
790# + Added a semi-built-in doc viewer command that calls man with the
791# proper %Config::Config path (and thus gets caching, man -k, etc),
792# or else perldoc on obstreperous platforms.
793# + Added to and rearranged the help information.
794# + Detected apparent misuse of { ... } to declare a block; this used
795# to work but now is a command, and mysteriously gave no complaint.
04e43a21
DL
796#
797# Changes: 1.08: Apr 25, 2001 Jon Eveland <jweveland@yahoo.com>
798# BUG FIX:
799# + This patch to perl5db.pl cleans up formatting issues on the help
800# summary (h h) screen in the debugger. Mostly columnar alignment
801# issues, plus converted the printed text to use all spaces, since
802# tabs don't seem to help much here.
803#
804# Changes: 1.09: May 19, 2001 Ilya Zakharevich <ilya@math.ohio-state.edu>
69893cff
RGS
805# Minor bugs corrected;
806# + Support for auto-creation of new TTY window on startup, either
807# unconditionally, or if started as a kid of another debugger session;
808# + New `O'ption CreateTTY
809# I<CreateTTY> bits control attempts to create a new TTY on events:
e22ea7cc 810# 1: on fork()
69893cff
RGS
811# 2: debugger is started inside debugger
812# 4: on startup
813# + Code to auto-create a new TTY window on OS/2 (currently one
814# extra window per session - need named pipes to have more...);
815# + Simplified interface for custom createTTY functions (with a backward
816# compatibility hack); now returns the TTY name to use; return of ''
817# means that the function reset the I/O handles itself;
818# + Better message on the semantic of custom createTTY function;
819# + Convert the existing code to create a TTY into a custom createTTY
820# function;
821# + Consistent support for TTY names of the form "TTYin,TTYout";
822# + Switch line-tracing output too to the created TTY window;
823# + make `b fork' DWIM with CORE::GLOBAL::fork;
824# + High-level debugger API cmd_*():
04e43a21
DL
825# cmd_b_load($filenamepart) # b load filenamepart
826# cmd_b_line($lineno [, $cond]) # b lineno [cond]
827# cmd_b_sub($sub [, $cond]) # b sub [cond]
828# cmd_stop() # Control-C
492652be 829# cmd_d($lineno) # d lineno (B)
04e43a21
DL
830# The cmd_*() API returns FALSE on failure; in this case it outputs
831# the error message to the debugging output.
69893cff 832# + Low-level debugger API
04e43a21
DL
833# break_on_load($filename) # b load filename
834# @files = report_break_on_load() # List files with load-breakpoints
835# breakable_line_in_filename($name, $from [, $to])
836# # First breakable line in the
837# # range $from .. $to. $to defaults
e22ea7cc 838# # to $from, and may be less than
69893cff 839# # $to
04e43a21
DL
840# breakable_line($from [, $to]) # Same for the current file
841# break_on_filename_line($name, $lineno [, $cond])
e22ea7cc 842# # Set breakpoint,$cond defaults to
69893cff 843# # 1
04e43a21
DL
844# break_on_filename_line_range($name, $from, $to [, $cond])
845# # As above, on the first
846# # breakable line in range
847# break_on_line($lineno [, $cond]) # As above, in the current file
848# break_subroutine($sub [, $cond]) # break on the first breakable line
849# ($name, $from, $to) = subroutine_filename_lines($sub)
850# # The range of lines of the text
851# The low-level API returns TRUE on success, and die()s on failure.
852#
853# Changes: 1.10: May 23, 2001 Daniel Lewart <d-lewart@uiuc.edu>
854# BUG FIXES:
855# + Fixed warnings generated by "perl -dWe 42"
856# + Corrected spelling errors
857# + Squeezed Help (h) output into 80 columns
600d99fa
DL
858#
859# Changes: 1.11: May 24, 2001 David Dyck <dcd@tc.fluke.com>
860# + Made "x @INC" work like it used to
861#
862# Changes: 1.12: May 24, 2001 Daniel Lewart <d-lewart@uiuc.edu>
863# + Fixed warnings generated by "O" (Show debugger options)
864# + Fixed warnings generated by "p 42" (Print expression)
6f891d7d 865# Changes: 1.13: Jun 19, 2001 Scott.L.Miller@compaq.com
e22ea7cc 866# + Added windowSize option
2f7e9187
MS
867# Changes: 1.14: Oct 9, 2001 multiple
868# + Clean up after itself on VMS (Charles Lane in 12385)
869# + Adding "@ file" syntax (Peter Scott in 12014)
870# + Debug reloading selfloaded stuff (Ilya Zakharevich in 11457)
871# + $^S and other debugger fixes (Ilya Zakharevich in 11120)
872# + Forgot a my() declaration (Ilya Zakharevich in 11085)
873# Changes: 1.15: Nov 6, 2001 Michael G Schwern <schwern@pobox.com>
874# + Updated 1.14 change log
875# + Added *dbline explainatory comments
876# + Mentioning perldebguts man page
492652be 877# Changes: 1.16: Feb 15, 2002 Mark-Jason Dominus <mjd@plover.com>
69893cff 878# + $onetimeDump improvements
492652be
RF
879# Changes: 1.17: Feb 20, 2002 Richard Foley <richard.foley@rfi.net>
880# Moved some code to cmd_[.]()'s for clarity and ease of handling,
e22ea7cc
RF
881# rationalised the following commands and added cmd_wrapper() to
882# enable switching between old and frighteningly consistent new
492652be
RF
883# behaviours for diehards: 'o CommandSet=pre580' (sigh...)
884# a(add), A(del) # action expr (added del by line)
885# + b(add), B(del) # break [line] (was b,D)
e22ea7cc 886# + w(add), W(del) # watch expr (was W,W)
69893cff 887# # added del by expr
492652be
RF
888# + h(summary), h h(long) # help (hh) (was h h,h)
889# + m(methods), M(modules) # ... (was m,v)
890# + o(option) # lc (was O)
891# + v(view code), V(view Variables) # ... (was w,V)
aef14ef9
RF
892# Changes: 1.18: Mar 17, 2002 Richard Foley <richard.foley@rfi.net>
893# + fixed missing cmd_O bug
471505cc
SB
894# Changes: 1.19: Mar 29, 2002 Spider Boardman
895# + Added missing local()s -- DB::DB is called recursively.
35408c4e
RF
896# Changes: 1.20: Feb 17, 2003 Richard Foley <richard.foley@rfi.net>
897# + pre'n'post commands no longer trashed with no args
898# + watch val joined out of eval()
69893cff
RGS
899# Changes: 1.21: Jun 04, 2003 Joe McMahon <mcmahon@ibiblio.org>
900# + Added comments and reformatted source. No bug fixes/enhancements.
901# + Includes cleanup by Robin Barker and Jarkko Hietaniemi.
902# Changes: 1.22 Jun 09, 2003 Alex Vandiver <alexmv@MIT.EDU>
903# + Flush stdout/stderr before the debugger prompt is printed.
904# Changes: 1.23: Dec 21, 2003 Dominique Quatravaux
de5e1a3d 905# + Fix a side-effect of bug #24674 in the perl debugger ("odd taint bug")
e219e2fb
RF
906# Changes: 1.24: Mar 03, 2004 Richard Foley <richard.foley@rfi.net>
907# + Added command to save all debugger commands for sourcing later.
908# + Added command to display parent inheritence tree of given class.
909# + Fixed minor newline in history bug.
e22ea7cc
RF
910# Changes: 1.25: Apr 17, 2004 Richard Foley <richard.foley@rfi.net>
911# + Fixed option bug (setting invalid options + not recognising valid short forms)
912# Changes: 1.26: Apr 22, 2004 Richard Foley <richard.foley@rfi.net>
913# + unfork the 5.8.x and 5.9.x debuggers.
914# + whitespace and assertions call cleanup across versions
915# + H * deletes (resets) history
916# + i now handles Class + blessed objects
7fddc82f
RF
917# Changes: 1.27: May 09, 2004 Richard Foley <richard.foley@rfi.net>
918# + updated pod page references - clunky.
919# + removed windowid restriction for forking into an xterm.
920# + more whitespace again.
921# + wrapped restart and enabled rerun [-n] (go back n steps) command.
ee971a18 922####################################################################
d338d6fe 923
69893cff
RGS
924=head1 DEBUGGER INITIALIZATION
925
926The debugger starts up in phases.
927
928=head2 BASIC SETUP
929
930First, it initializes the environment it wants to run in: turning off
931warnings during its own compilation, defining variables which it will need
932to avoid warnings later, setting itself up to not exit when the program
933terminates, and defaulting to printing return values for the C<r> command.
934
935=cut
936
eda6e075 937# Needed for the statement after exec():
69893cff
RGS
938#
939# This BEGIN block is simply used to switch off warnings during debugger
940# compiliation. Probably it would be better practice to fix the warnings,
941# but this is how it's done at the moment.
eda6e075 942
e22ea7cc
RF
943BEGIN {
944 $ini_warn = $^W;
945 $^W = 0;
946} # Switch compilation warnings off until another BEGIN.
d12a4851
JH
947
948# test if assertions are supported and actived:
eda6e075 949BEGIN {
e22ea7cc
RF
950 $ini_assertion = eval "sub asserting_test : assertion {1}; 1";
951
d12a4851 952 # $ini_assertion = undef => assertions unsupported,
e22ea7cc 953 # " = 1 => assertions supported
d12a4851
JH
954 # print "\$ini_assertion=$ini_assertion\n";
955}
956
69893cff
RGS
957local ($^W) = 0; # Switch run-time warnings off during init.
958
959# This would probably be better done with "use vars", but that wasn't around
960# when this code was originally written. (Neither was "use strict".) And on
961# the principle of not fiddling with something that was working, this was
962# left alone.
963warn( # Do not ;-)
e22ea7cc 964 # These variables control the execution of 'dumpvar.pl'.
69893cff
RGS
965 $dumpvar::hashDepth,
966 $dumpvar::arrayDepth,
967 $dumpvar::dumpDBFiles,
968 $dumpvar::dumpPackages,
969 $dumpvar::quoteHighBit,
970 $dumpvar::printUndef,
971 $dumpvar::globPrint,
972 $dumpvar::usageOnly,
973
974 # used to save @ARGV and extract any debugger-related flags.
975 @ARGS,
976
977 # used to control die() reporting in diesignal()
978 $Carp::CarpLevel,
979
980 # used to prevent multiple entries to diesignal()
981 # (if for instance diesignal() itself dies)
982 $panic,
983
984 # used to prevent the debugger from running nonstop
985 # after a restart
986 $second_time,
987 )
988 if 0;
d338d6fe 989
54d04a52 990# Command-line + PERLLIB:
69893cff 991# Save the contents of @INC before they are modified elsewhere.
54d04a52
IZ
992@ini_INC = @INC;
993
69893cff
RGS
994# This was an attempt to clear out the previous values of various
995# trapped errors. Apparently it didn't help. XXX More info needed!
d338d6fe 996# $prevwarn = $prevdie = $prevbus = $prevsegv = ''; # Does not help?!
997
69893cff
RGS
998# We set these variables to safe values. We don't want to blindly turn
999# off warnings, because other packages may still want them.
e22ea7cc
RF
1000$trace = $signal = $single = 0; # Uninitialized warning suppression
1001 # (local $^W cannot help - other packages!).
69893cff
RGS
1002
1003# Default to not exiting when program finishes; print the return
1004# value when the 'r' command is used to return from a subroutine.
55497cff 1005$inhibit_exit = $option{PrintRet} = 1;
d338d6fe 1006
69893cff
RGS
1007=head1 OPTION PROCESSING
1008
1009The debugger's options are actually spread out over the debugger itself and
1010C<dumpvar.pl>; some of these are variables to be set, while others are
1011subs to be called with a value. To try to make this a little easier to
1012manage, the debugger uses a few data structures to define what options
1013are legal and how they are to be processed.
1014
1015First, the C<@options> array defines the I<names> of all the options that
1016are to be accepted.
1017
1018=cut
1019
1020@options = qw(
e22ea7cc
RF
1021 CommandSet
1022 hashDepth arrayDepth dumpDepth
1023 DumpDBFiles DumpPackages DumpReused
1024 compactDump veryCompact quote
1025 HighBit undefPrint globPrint
1026 PrintRet UsageOnly frame
1027 AutoTrace TTY noTTY
1028 ReadLine NonStop LineInfo
1029 maxTraceLen recallCommand ShellBang
1030 pager tkRunning ornaments
1031 signalLevel warnLevel dieLevel
1032 inhibit_exit ImmediateStop bareStringify
1033 CreateTTY RemotePort windowSize
1034 DollarCaretP OnlyAssertions WarnAssertions
1035);
d12a4851
JH
1036
1037@RememberOnROptions = qw(DollarCaretP OnlyAssertions);
1038
69893cff
RGS
1039=pod
1040
1041Second, C<optionVars> lists the variables that each option uses to save its
1042state.
1043
1044=cut
1045
1046%optionVars = (
e22ea7cc
RF
1047 hashDepth => \$dumpvar::hashDepth,
1048 arrayDepth => \$dumpvar::arrayDepth,
1049 CommandSet => \$CommandSet,
1050 DumpDBFiles => \$dumpvar::dumpDBFiles,
1051 DumpPackages => \$dumpvar::dumpPackages,
1052 DumpReused => \$dumpvar::dumpReused,
1053 HighBit => \$dumpvar::quoteHighBit,
1054 undefPrint => \$dumpvar::printUndef,
1055 globPrint => \$dumpvar::globPrint,
1056 UsageOnly => \$dumpvar::usageOnly,
1057 CreateTTY => \$CreateTTY,
1058 bareStringify => \$dumpvar::bareStringify,
1059 frame => \$frame,
1060 AutoTrace => \$trace,
1061 inhibit_exit => \$inhibit_exit,
1062 maxTraceLen => \$maxtrace,
1063 ImmediateStop => \$ImmediateStop,
1064 RemotePort => \$remoteport,
1065 windowSize => \$window,
1066 WarnAssertions => \$warnassertions,
69893cff
RGS
1067);
1068
1069=pod
1070
1071Third, C<%optionAction> defines the subroutine to be called to process each
1072option.
1073
1074=cut
1075
1076%optionAction = (
1077 compactDump => \&dumpvar::compactDump,
1078 veryCompact => \&dumpvar::veryCompact,
1079 quote => \&dumpvar::quote,
1080 TTY => \&TTY,
1081 noTTY => \&noTTY,
1082 ReadLine => \&ReadLine,
1083 NonStop => \&NonStop,
1084 LineInfo => \&LineInfo,
1085 recallCommand => \&recallCommand,
1086 ShellBang => \&shellBang,
1087 pager => \&pager,
1088 signalLevel => \&signalLevel,
1089 warnLevel => \&warnLevel,
1090 dieLevel => \&dieLevel,
1091 tkRunning => \&tkRunning,
1092 ornaments => \&ornaments,
1093 RemotePort => \&RemotePort,
1094 DollarCaretP => \&DollarCaretP,
1095 OnlyAssertions=> \&OnlyAssertions,
d12a4851
JH
1096);
1097
69893cff
RGS
1098=pod
1099
1100Last, the C<%optionRequire> notes modules that must be C<require>d if an
1101option is used.
1102
1103=cut
d338d6fe 1104
69893cff
RGS
1105# Note that this list is not complete: several options not listed here
1106# actually require that dumpvar.pl be loaded for them to work, but are
1107# not in the table. A subsequent patch will correct this problem; for
1108# the moment, we're just recommenting, and we are NOT going to change
1109# function.
eda6e075 1110%optionRequire = (
69893cff
RGS
1111 compactDump => 'dumpvar.pl',
1112 veryCompact => 'dumpvar.pl',
1113 quote => 'dumpvar.pl',
e22ea7cc 1114);
69893cff
RGS
1115
1116=pod
1117
1118There are a number of initialization-related variables which can be set
1119by putting code to set them in a BEGIN block in the C<PERL5DB> environment
1120variable. These are:
1121
1122=over 4
1123
1124=item C<$rl> - readline control XXX needs more explanation
1125
1126=item C<$warnLevel> - whether or not debugger takes over warning handling
1127
1128=item C<$dieLevel> - whether or not debugger takes over die handling
1129
1130=item C<$signalLevel> - whether or not debugger takes over signal handling
1131
1132=item C<$pre> - preprompt actions (array reference)
1133
1134=item C<$post> - postprompt actions (array reference)
1135
1136=item C<$pretype>
1137
1138=item C<$CreateTTY> - whether or not to create a new TTY for this debugger
1139
1140=item C<$CommandSet> - which command set to use (defaults to new, documented set)
1141
1142=back
1143
1144=cut
d338d6fe 1145
1146# These guys may be defined in $ENV{PERL5DB} :
69893cff
RGS
1147$rl = 1 unless defined $rl;
1148$warnLevel = 1 unless defined $warnLevel;
1149$dieLevel = 1 unless defined $dieLevel;
1150$signalLevel = 1 unless defined $signalLevel;
1151$pre = [] unless defined $pre;
1152$post = [] unless defined $post;
1153$pretype = [] unless defined $pretype;
1154$CreateTTY = 3 unless defined $CreateTTY;
1155$CommandSet = '580' unless defined $CommandSet;
1156
1157=pod
1158
1159The default C<die>, C<warn>, and C<signal> handlers are set up.
1160
1161=cut
055fd3a9 1162
d338d6fe 1163warnLevel($warnLevel);
1164dieLevel($dieLevel);
1165signalLevel($signalLevel);
055fd3a9 1166
69893cff
RGS
1167=pod
1168
1169The pager to be used is needed next. We try to get it from the
1170environment first. if it's not defined there, we try to find it in
1171the Perl C<Config.pm>. If it's not there, we default to C<more>. We
1172then call the C<pager()> function to save the pager name.
1173
1174=cut
1175
1176# This routine makes sure $pager is set up so that '|' can use it.
4865a36d 1177pager(
e22ea7cc 1178
69893cff 1179 # If PAGER is defined in the environment, use it.
e22ea7cc
RF
1180 defined $ENV{PAGER}
1181 ? $ENV{PAGER}
69893cff
RGS
1182
1183 # If not, see if Config.pm defines it.
e22ea7cc
RF
1184 : eval { require Config }
1185 && defined $Config::Config{pager}
1186 ? $Config::Config{pager}
69893cff
RGS
1187
1188 # If not, fall back to 'more'.
e22ea7cc
RF
1189 : 'more'
1190 )
1191 unless defined $pager;
69893cff
RGS
1192
1193=pod
1194
1195We set up the command to be used to access the man pages, the command
1196recall character ("!" unless otherwise defined) and the shell escape
1197character ("!" unless otherwise defined). Yes, these do conflict, and
1198neither works in the debugger at the moment.
1199
1200=cut
1201
055fd3a9 1202setman();
69893cff
RGS
1203
1204# Set up defaults for command recall and shell escape (note:
1205# these currently don't work in linemode debugging).
d338d6fe 1206&recallCommand("!") unless defined $prc;
69893cff
RGS
1207&shellBang("!") unless defined $psh;
1208
1209=pod
1210
1211We then set up the gigantic string containing the debugger help.
1212We also set the limit on the number of arguments we'll display during a
1213trace.
1214
1215=cut
1216
04e43a21 1217sethelp();
69893cff
RGS
1218
1219# If we didn't get a default for the length of eval/stack trace args,
1220# set it here.
1d06cb2d 1221$maxtrace = 400 unless defined $maxtrace;
69893cff
RGS
1222
1223=head2 SETTING UP THE DEBUGGER GREETING
1224
1225The debugger 'greeting' helps to inform the user how many debuggers are
1226running, and whether the current debugger is the primary or a child.
1227
1228If we are the primary, we just hang onto our pid so we'll have it when
1229or if we start a child debugger. If we are a child, we'll set things up
1230so we'll have a unique greeting and so the parent will give us our own
1231TTY later.
1232
1233We save the current contents of the C<PERLDB_PIDS> environment variable
1234because we mess around with it. We'll also need to hang onto it because
1235we'll need it if we restart.
1236
1237Child debuggers make a label out of the current PID structure recorded in
1238PERLDB_PIDS plus the new PID. They also mark themselves as not having a TTY
1239yet so the parent will give them one later via C<resetterm()>.
1240
1241=cut
1242
e22ea7cc 1243# Save the current contents of the environment; we're about to
69893cff 1244# much with it. We'll need this if we have to restart.
f1583d8f 1245$ini_pids = $ENV{PERLDB_PIDS};
69893cff 1246
e22ea7cc
RF
1247if ( defined $ENV{PERLDB_PIDS} ) {
1248
69893cff 1249 # We're a child. Make us a label out of the current PID structure
e22ea7cc 1250 # recorded in PERLDB_PIDS plus our (new) PID. Mark us as not having
69893cff 1251 # a term yet so the parent will give us one later via resetterm().
e22ea7cc
RF
1252 $pids = "[$ENV{PERLDB_PIDS}]";
1253 $ENV{PERLDB_PIDS} .= "->$$";
1254 $term_pid = -1;
69893cff
RGS
1255} ## end if (defined $ENV{PERLDB_PIDS...
1256else {
e22ea7cc
RF
1257
1258 # We're the parent PID. Initialize PERLDB_PID in case we end up with a
69893cff
RGS
1259 # child debugger, and mark us as the parent, so we'll know to set up
1260 # more TTY's is we have to.
1261 $ENV{PERLDB_PIDS} = "$$";
e22ea7cc
RF
1262 $pids = "{pid=$$}";
1263 $term_pid = $$;
f1583d8f 1264}
69893cff 1265
f1583d8f 1266$pidprompt = '';
69893cff
RGS
1267
1268# Sets up $emacs as a synonym for $slave_editor.
1269*emacs = $slave_editor if $slave_editor; # May be used in afterinit()...
1270
1271=head2 READING THE RC FILE
1272
1273The debugger will read a file of initialization options if supplied. If
1274running interactively, this is C<.perldb>; if not, it's C<perldb.ini>.
1275
1276=cut
1277
1278# As noted, this test really doesn't check accurately that the debugger
1279# is running at a terminal or not.
d338d6fe 1280
e22ea7cc
RF
1281if ( -e "/dev/tty" ) { # this is the wrong metric!
1282 $rcfile = ".perldb";
1283}
69893cff
RGS
1284else {
1285 $rcfile = "perldb.ini";
d338d6fe 1286}
1287
69893cff
RGS
1288=pod
1289
1290The debugger does a safety test of the file to be read. It must be owned
1291either by the current user or root, and must only be writable by the owner.
1292
1293=cut
1294
1295# This wraps a safety test around "do" to read and evaluate the init file.
1296#
055fd3a9
GS
1297# This isn't really safe, because there's a race
1298# between checking and opening. The solution is to
1299# open and fstat the handle, but then you have to read and
1300# eval the contents. But then the silly thing gets
69893cff
RGS
1301# your lexical scope, which is unfortunate at best.
1302sub safe_do {
055fd3a9
GS
1303 my $file = shift;
1304
1305 # Just exactly what part of the word "CORE::" don't you understand?
69893cff
RGS
1306 local $SIG{__WARN__};
1307 local $SIG{__DIE__};
055fd3a9 1308
e22ea7cc 1309 unless ( is_safe_file($file) ) {
69893cff 1310 CORE::warn <<EO_GRIPE;
055fd3a9
GS
1311perldb: Must not source insecure rcfile $file.
1312 You or the superuser must be the owner, and it must not
69893cff 1313 be writable by anyone but its owner.
055fd3a9 1314EO_GRIPE
69893cff
RGS
1315 return;
1316 } ## end unless (is_safe_file($file...
055fd3a9
GS
1317
1318 do $file;
1319 CORE::warn("perldb: couldn't parse $file: $@") if $@;
69893cff 1320} ## end sub safe_do
055fd3a9 1321
69893cff
RGS
1322# This is the safety test itself.
1323#
055fd3a9
GS
1324# Verifies that owner is either real user or superuser and that no
1325# one but owner may write to it. This function is of limited use
1326# when called on a path instead of upon a handle, because there are
1327# no guarantees that filename (by dirent) whose file (by ino) is
e22ea7cc 1328# eventually accessed is the same as the one tested.
055fd3a9
GS
1329# Assumes that the file's existence is not in doubt.
1330sub is_safe_file {
1331 my $path = shift;
69893cff 1332 stat($path) || return; # mysteriously vaporized
e22ea7cc 1333 my ( $dev, $ino, $mode, $nlink, $uid, $gid ) = stat(_);
055fd3a9
GS
1334
1335 return 0 if $uid != 0 && $uid != $<;
1336 return 0 if $mode & 022;
1337 return 1;
69893cff 1338} ## end sub is_safe_file
055fd3a9 1339
69893cff 1340# If the rcfile (whichever one we decided was the right one to read)
e22ea7cc
RF
1341# exists, we safely do it.
1342if ( -f $rcfile ) {
055fd3a9 1343 safe_do("./$rcfile");
69893cff 1344}
e22ea7cc 1345
69893cff 1346# If there isn't one here, try the user's home directory.
e22ea7cc 1347elsif ( defined $ENV{HOME} && -f "$ENV{HOME}/$rcfile" ) {
055fd3a9
GS
1348 safe_do("$ENV{HOME}/$rcfile");
1349}
e22ea7cc 1350
69893cff 1351# Else try the login directory.
e22ea7cc 1352elsif ( defined $ENV{LOGDIR} && -f "$ENV{LOGDIR}/$rcfile" ) {
055fd3a9 1353 safe_do("$ENV{LOGDIR}/$rcfile");
d338d6fe 1354}
1355
69893cff 1356# If the PERLDB_OPTS variable has options in it, parse those out next.
e22ea7cc
RF
1357if ( defined $ENV{PERLDB_OPTS} ) {
1358 parse_options( $ENV{PERLDB_OPTS} );
d338d6fe 1359}
1360
69893cff
RGS
1361=pod
1362
1363The last thing we do during initialization is determine which subroutine is
1364to be used to obtain a new terminal when a new debugger is started. Right now,
1365the debugger only handles X Windows and OS/2.
1366
1367=cut
1368
1369# Set up the get_fork_TTY subroutine to be aliased to the proper routine.
1370# Works if you're running an xterm or xterm-like window, or you're on
1371# OS/2. This may need some expansion: for instance, this doesn't handle
e22ea7cc
RF
1372# OS X Terminal windows.
1373
1374if (
1375 not defined &get_fork_TTY # no routine exists,
1376 and defined $ENV{TERM} # and we know what kind
1377 # of terminal this is,
1378 and $ENV{TERM} eq 'xterm' # and it's an xterm,
7fddc82f
RF
1379# and defined $ENV{WINDOWID} # and we know what window this is, <- wrong metric
1380 and defined $ENV{DISPLAY} # and what display it's on,
1381 )
69893cff 1382{
e22ea7cc 1383 *get_fork_TTY = \&xterm_get_fork_TTY; # use the xterm version
69893cff 1384} ## end if (not defined &get_fork_TTY...
e22ea7cc
RF
1385elsif ( $^O eq 'os2' ) { # If this is OS/2,
1386 *get_fork_TTY = \&os2_get_fork_TTY; # use the OS/2 version
f1583d8f 1387}
e22ea7cc 1388
dbb46cec
DQ
1389# untaint $^O, which may have been tainted by the last statement.
1390# see bug [perl #24674]
e22ea7cc
RF
1391$^O =~ m/^(.*)\z/;
1392$^O = $1;
f1583d8f 1393
d12a4851 1394# Here begin the unreadable code. It needs fixing.
055fd3a9 1395
69893cff
RGS
1396=head2 RESTART PROCESSING
1397
1398This section handles the restart command. When the C<R> command is invoked, it
1399tries to capture all of the state it can into environment variables, and
1400then sets C<PERLDB_RESTART>. When we start executing again, we check to see
1401if C<PERLDB_RESTART> is there; if so, we reload all the information that
1402the R command stuffed into the environment variables.
1403
1404 PERLDB_RESTART - flag only, contains no restart data itself.
1405 PERLDB_HIST - command history, if it's available
1406 PERLDB_ON_LOAD - breakpoints set by the rc file
1407 PERLDB_POSTPONE - subs that have been loaded/not executed, and have actions
1408 PERLDB_VISITED - files that had breakpoints
1409 PERLDB_FILE_... - breakpoints for a file
1410 PERLDB_OPT - active options
1411 PERLDB_INC - the original @INC
1412 PERLDB_PRETYPE - preprompt debugger actions
1413 PERLDB_PRE - preprompt Perl code
1414 PERLDB_POST - post-prompt Perl code
1415 PERLDB_TYPEAHEAD - typeahead captured by readline()
1416
1417We chug through all these variables and plug the values saved in them
1418back into the appropriate spots in the debugger.
1419
1420=cut
1421
e22ea7cc
RF
1422if ( exists $ENV{PERLDB_RESTART} ) {
1423
69893cff 1424 # We're restarting, so we don't need the flag that says to restart anymore.
e22ea7cc
RF
1425 delete $ENV{PERLDB_RESTART};
1426
1427 # $restart = 1;
1428 @hist = get_list('PERLDB_HIST');
1429 %break_on_load = get_list("PERLDB_ON_LOAD");
1430 %postponed = get_list("PERLDB_POSTPONE");
69893cff
RGS
1431
1432 # restore breakpoints/actions
e22ea7cc
RF
1433 my @had_breakpoints = get_list("PERLDB_VISITED");
1434 for ( 0 .. $#had_breakpoints ) {
1435 my %pf = get_list("PERLDB_FILE_$_");
1436 $postponed_file{ $had_breakpoints[$_] } = \%pf if %pf;
1437 }
69893cff
RGS
1438
1439 # restore options
e22ea7cc
RF
1440 my %opt = get_list("PERLDB_OPT");
1441 my ( $opt, $val );
1442 while ( ( $opt, $val ) = each %opt ) {
1443 $val =~ s/[\\\']/\\$1/g;
1444 parse_options("$opt'$val'");
1445 }
69893cff
RGS
1446
1447 # restore original @INC
e22ea7cc
RF
1448 @INC = get_list("PERLDB_INC");
1449 @ini_INC = @INC;
1450
1451 # return pre/postprompt actions and typeahead buffer
1452 $pretype = [ get_list("PERLDB_PRETYPE") ];
1453 $pre = [ get_list("PERLDB_PRE") ];
1454 $post = [ get_list("PERLDB_POST") ];
1455 @typeahead = get_list( "PERLDB_TYPEAHEAD", @typeahead );
69893cff
RGS
1456} ## end if (exists $ENV{PERLDB_RESTART...
1457
1458=head2 SETTING UP THE TERMINAL
1459
1460Now, we'll decide how the debugger is going to interact with the user.
1461If there's no TTY, we set the debugger to run non-stop; there's not going
1462to be anyone there to enter commands.
1463
1464=cut
54d04a52 1465
d338d6fe 1466if ($notty) {
69893cff
RGS
1467 $runnonstop = 1;
1468}
d12a4851 1469
69893cff
RGS
1470=pod
1471
1472If there is a TTY, we have to determine who it belongs to before we can
1473proceed. If this is a slave editor or graphical debugger (denoted by
1474the first command-line switch being '-emacs'), we shift this off and
1475set C<$rl> to 0 (XXX ostensibly to do straight reads).
1476
1477=cut
1478
1479else {
e22ea7cc 1480
69893cff
RGS
1481 # Is Perl being run from a slave editor or graphical debugger?
1482 # If so, don't use readline, and set $slave_editor = 1.
e22ea7cc
RF
1483 $slave_editor =
1484 ( ( defined $main::ARGV[0] ) and ( $main::ARGV[0] eq '-emacs' ) );
1485 $rl = 0, shift(@main::ARGV) if $slave_editor;
1486
1487 #require Term::ReadLine;
d12a4851 1488
69893cff
RGS
1489=pod
1490
1491We then determine what the console should be on various systems:
1492
1493=over 4
1494
1495=item * Cygwin - We use C<stdin> instead of a separate device.
1496
1497=cut
1498
e22ea7cc
RF
1499 if ( $^O eq 'cygwin' ) {
1500
69893cff
RGS
1501 # /dev/tty is binary. use stdin for textmode
1502 undef $console;
1503 }
1504
1505=item * Unix - use C</dev/tty>.
1506
1507=cut
1508
e22ea7cc 1509 elsif ( -e "/dev/tty" ) {
69893cff
RGS
1510 $console = "/dev/tty";
1511 }
1512
1513=item * Windows or MSDOS - use C<con>.
1514
1515=cut
1516
e22ea7cc 1517 elsif ( $^O eq 'dos' or -e "con" or $^O eq 'MSWin32' ) {
69893cff
RGS
1518 $console = "con";
1519 }
1520
1521=item * MacOS - use C<Dev:Console:Perl Debug> if this is the MPW version; C<Dev:
1522Console> if not. (Note that Mac OS X returns 'darwin', not 'MacOS'. Also note that the debugger doesn't do anything special for 'darwin'. Maybe it should.)
1523
1524=cut
1525
e22ea7cc
RF
1526 elsif ( $^O eq 'MacOS' ) {
1527 if ( $MacPerl::Version !~ /MPW/ ) {
1528 $console =
1529 "Dev:Console:Perl Debug"; # Separate window for application
69893cff
RGS
1530 }
1531 else {
1532 $console = "Dev:Console";
1533 }
1534 } ## end elsif ($^O eq 'MacOS')
1535
1536=item * VMS - use C<sys$command>.
1537
1538=cut
1539
1540 else {
e22ea7cc 1541
69893cff
RGS
1542 # everything else is ...
1543 $console = "sys\$command";
d12a4851 1544 }
69893cff
RGS
1545
1546=pod
1547
1548=back
1549
1550Several other systems don't use a specific console. We C<undef $console>
1551for those (Windows using a slave editor/graphical debugger, NetWare, OS/2
1552with a slave editor, Epoc).
1553
1554=cut
d12a4851 1555
e22ea7cc
RF
1556 if ( ( $^O eq 'MSWin32' ) and ( $slave_editor or defined $ENV{EMACS} ) ) {
1557
69893cff 1558 # /dev/tty is binary. use stdin for textmode
e22ea7cc
RF
1559 $console = undef;
1560 }
1561
1562 if ( $^O eq 'NetWare' ) {
d12a4851 1563
69893cff
RGS
1564 # /dev/tty is binary. use stdin for textmode
1565 $console = undef;
1566 }
d12a4851 1567
69893cff
RGS
1568 # In OS/2, we need to use STDIN to get textmode too, even though
1569 # it pretty much looks like Unix otherwise.
e22ea7cc
RF
1570 if ( defined $ENV{OS2_SHELL} and ( $slave_editor or $ENV{WINDOWID} ) )
1571 { # In OS/2
1572 $console = undef;
1573 }
1574
1575 # EPOC also falls into the 'got to use STDIN' camp.
1576 if ( $^O eq 'epoc' ) {
1577 $console = undef;
1578 }
d12a4851 1579
69893cff
RGS
1580=pod
1581
1582If there is a TTY hanging around from a parent, we use that as the console.
1583
1584=cut
1585
e22ea7cc 1586 $console = $tty if defined $tty;
d12a4851 1587
69893cff
RGS
1588=head2 SOCKET HANDLING
1589
1590The debugger is capable of opening a socket and carrying out a debugging
1591session over the socket.
1592
1593If C<RemotePort> was defined in the options, the debugger assumes that it
1594should try to start a debugging session on that port. It builds the socket
1595and then tries to connect the input and output filehandles to it.
1596
1597=cut
1598
1599 # Handle socket stuff.
e22ea7cc
RF
1600
1601 if ( defined $remoteport ) {
1602
69893cff
RGS
1603 # If RemotePort was defined in the options, connect input and output
1604 # to the socket.
e22ea7cc
RF
1605 require IO::Socket;
1606 $OUT = new IO::Socket::INET(
1607 Timeout => '10',
1608 PeerAddr => $remoteport,
1609 Proto => 'tcp',
69893cff 1610 );
e22ea7cc
RF
1611 if ( !$OUT ) { die "Unable to connect to remote host: $remoteport\n"; }
1612 $IN = $OUT;
69893cff
RGS
1613 } ## end if (defined $remoteport)
1614
1615=pod
1616
1617If no C<RemotePort> was defined, and we want to create a TTY on startup,
1618this is probably a situation where multiple debuggers are running (for example,
1619a backticked command that starts up another debugger). We create a new IN and
1620OUT filehandle, and do the necessary mojo to create a new TTY if we know how
1621and if we can.
1622
1623=cut
1624
1625 # Non-socket.
1626 else {
e22ea7cc 1627
69893cff
RGS
1628 # Two debuggers running (probably a system or a backtick that invokes
1629 # the debugger itself under the running one). create a new IN and OUT
e22ea7cc 1630 # filehandle, and do the necessary mojo to create a new tty if we
69893cff 1631 # know how, and we can.
e22ea7cc
RF
1632 create_IN_OUT(4) if $CreateTTY & 4;
1633 if ($console) {
1634
69893cff
RGS
1635 # If we have a console, check to see if there are separate ins and
1636 # outs to open. (They are assumed identiical if not.)
1637
e22ea7cc
RF
1638 my ( $i, $o ) = split /,/, $console;
1639 $o = $i unless defined $o;
69893cff 1640
69893cff 1641 # read/write on in, or just read, or read on STDIN.
e22ea7cc
RF
1642 open( IN, "+<$i" )
1643 || open( IN, "<$i" )
1644 || open( IN, "<&STDIN" );
1645
69893cff
RGS
1646 # read/write/create/clobber out, or write/create/clobber out,
1647 # or merge with STDERR, or merge with STDOUT.
e22ea7cc
RF
1648 open( OUT, "+>$o" )
1649 || open( OUT, ">$o" )
1650 || open( OUT, ">&STDERR" )
1651 || open( OUT, ">&STDOUT" ); # so we don't dongle stdout
1652
1653 } ## end if ($console)
1654 elsif ( not defined $console ) {
1655
1656 # No console. Open STDIN.
1657 open( IN, "<&STDIN" );
1658
1659 # merge with STDERR, or with STDOUT.
1660 open( OUT, ">&STDERR" )
1661 || open( OUT, ">&STDOUT" ); # so we don't dongle stdout
1662 $console = 'STDIN/OUT';
69893cff
RGS
1663 } ## end elsif (not defined $console)
1664
1665 # Keep copies of the filehandles so that when the pager runs, it
1666 # can close standard input without clobbering ours.
e22ea7cc
RF
1667 $IN = \*IN, $OUT = \*OUT if $console or not defined $console;
1668 } ## end elsif (from if(defined $remoteport))
1669
1670 # Unbuffer DB::OUT. We need to see responses right away.
1671 my $previous = select($OUT);
1672 $| = 1; # for DB::OUT
1673 select($previous);
1674
1675 # Line info goes to debugger output unless pointed elsewhere.
1676 # Pointing elsewhere makes it possible for slave editors to
1677 # keep track of file and position. We have both a filehandle
1678 # and a I/O description to keep track of.
1679 $LINEINFO = $OUT unless defined $LINEINFO;
1680 $lineinfo = $console unless defined $lineinfo;
1681
69893cff
RGS
1682=pod
1683
1684To finish initialization, we show the debugger greeting,
1685and then call the C<afterinit()> subroutine if there is one.
1686
1687=cut
d12a4851 1688
e22ea7cc
RF
1689 # Show the debugger greeting.
1690 $header =~ s/.Header: ([^,]+),v(\s+\S+\s+\S+).*$/$1$2/;
1691 unless ($runnonstop) {
1692 local $\ = '';
1693 local $, = '';
1694 if ( $term_pid eq '-1' ) {
1695 print $OUT "\nDaughter DB session started...\n";
1696 }
1697 else {
1698 print $OUT "\nLoading DB routines from $header\n";
1699 print $OUT (
1700 "Editor support ",
1701 $slave_editor ? "enabled" : "available", ".\n"
1702 );
1703 print $OUT
69893cff
RGS
1704"\nEnter h or `h h' for help, or `$doccmd perldebug' for more help.\n\n";
1705 } ## end else [ if ($term_pid eq '-1')
1706 } ## end unless ($runnonstop)
1707} ## end else [ if ($notty)
1708
1709# XXX This looks like a bug to me.
1710# Why copy to @ARGS and then futz with @args?
d338d6fe 1711@ARGS = @ARGV;
1712for (@args) {
69893cff
RGS
1713 # Make sure backslashes before single quotes are stripped out, and
1714 # keep args unless they are numeric (XXX why?)
e22ea7cc
RF
1715 # s/\'/\\\'/g; # removed while not justified understandably
1716 # s/(.*)/'$1'/ unless /^-?[\d.]+$/; # ditto
d338d6fe 1717}
1718
e22ea7cc 1719# If there was an afterinit() sub defined, call it. It will get
69893cff 1720# executed in our scope, so it can fiddle with debugger globals.
e22ea7cc 1721if ( defined &afterinit ) { # May be defined in $rcfile
69893cff 1722 &afterinit();
d338d6fe 1723}
e22ea7cc 1724
69893cff 1725# Inform us about "Stack dump during die enabled ..." in dieLevel().
43aed9ee
IZ
1726$I_m_init = 1;
1727
d338d6fe 1728############################################################ Subroutines
1729
69893cff
RGS
1730=head1 SUBROUTINES
1731
1732=head2 DB
1733
1734This gigantic subroutine is the heart of the debugger. Called before every
1735statement, its job is to determine if a breakpoint has been reached, and
1736stop if so; read commands from the user, parse them, and execute
1737them, and hen send execution off to the next statement.
1738
1739Note that the order in which the commands are processed is very important;
1740some commands earlier in the loop will actually alter the C<$cmd> variable
1741to create other commands to be executed later. This is all highly "optimized"
1742but can be confusing. Check the comments for each C<$cmd ... && do {}> to
1743see what's happening in any given command.
1744
1745=cut
1746
d338d6fe 1747sub DB {
69893cff
RGS
1748
1749 # Check for whether we should be running continuously or not.
36477c24 1750 # _After_ the perl program is compiled, $single is set to 1:
e22ea7cc
RF
1751 if ( $single and not $second_time++ ) {
1752
69893cff 1753 # Options say run non-stop. Run until we get an interrupt.
e22ea7cc
RF
1754 if ($runnonstop) { # Disable until signal
1755 # If there's any call stack in place, turn off single
1756 # stepping into subs throughout the stack.
1757 for ( $i = 0 ; $i <= $stack_depth ; ) {
1758 $stack[ $i++ ] &= ~1;
1759 }
1760
69893cff 1761 # And we are now no longer in single-step mode.
e22ea7cc 1762 $single = 0;
69893cff
RGS
1763
1764 # If we simply returned at this point, we wouldn't get
1765 # the trace info. Fall on through.
e22ea7cc 1766 # return;
69893cff
RGS
1767 } ## end if ($runnonstop)
1768
e22ea7cc
RF
1769 elsif ($ImmediateStop) {
1770
1771 # We are supposed to stop here; XXX probably a break.
1772 $ImmediateStop = 0; # We've processed it; turn it off
1773 $signal = 1; # Simulate an interrupt to force
1774 # us into the command loop
69893cff
RGS
1775 }
1776 } ## end if ($single and not $second_time...
1777
1778 # If we're in single-step mode, or an interrupt (real or fake)
1779 # has occurred, turn off non-stop mode.
1780 $runnonstop = 0 if $single or $signal;
1781
1782 # Preserve current values of $@, $!, $^E, $,, $/, $\, $^W.
1783 # The code being debugged may have altered them.
d338d6fe 1784 &save;
69893cff
RGS
1785
1786 # Since DB::DB gets called after every line, we can use caller() to
1787 # figure out where we last were executing. Sneaky, eh? This works because
e22ea7cc 1788 # caller is returning all the extra information when called from the
69893cff 1789 # debugger.
e22ea7cc 1790 local ( $package, $filename, $line ) = caller;
471505cc 1791 local $filename_ini = $filename;
69893cff
RGS
1792
1793 # set up the context for DB::eval, so it can properly execute
1794 # code on behalf of the user. We add the package in so that the
1795 # code is eval'ed in the proper package (not in the debugger!).
1796 local $usercontext =
e22ea7cc 1797 '($@, $!, $^E, $,, $/, $\, $^W) = @saved;' . "package $package;";
69893cff
RGS
1798
1799 # Create an alias to the active file magical array to simplify
1800 # the code here.
e22ea7cc 1801 local (*dbline) = $main::{ '_<' . $filename };
aa057b67
CN
1802
1803 # we need to check for pseudofiles on Mac OS (these are files
1804 # not attached to a filename, but instead stored in Dev:Pseudo)
e22ea7cc
RF
1805 if ( $^O eq 'MacOS' && $#dbline < 0 ) {
1806 $filename_ini = $filename = 'Dev:Pseudo';
1807 *dbline = $main::{ '_<' . $filename };
aa057b67
CN
1808 }
1809
69893cff 1810 # Last line in the program.
471505cc 1811 local $max = $#dbline;
69893cff
RGS
1812
1813 # if we have something here, see if we should break.
e22ea7cc
RF
1814 if ( $dbline{$line}
1815 && ( ( $stop, $action ) = split( /\0/, $dbline{$line} ) ) )
1816 {
1817
69893cff 1818 # Stop if the stop criterion says to just stop.
e22ea7cc 1819 if ( $stop eq '1' ) {
69893cff
RGS
1820 $signal |= 1;
1821 }
e22ea7cc 1822
69893cff
RGS
1823 # It's a conditional stop; eval it in the user's context and
1824 # see if we should stop. If so, remove the one-time sigil.
1825 elsif ($stop) {
e22ea7cc 1826 $evalarg = "\$DB::signal |= 1 if do {$stop}";
69893cff
RGS
1827 &eval;
1828 $dbline{$line} =~ s/;9($|\0)/$1/;
1829 }
1830 } ## end if ($dbline{$line} && ...
1831
1832 # Preserve the current stop-or-not, and see if any of the W
1833 # (watch expressions) has changed.
36477c24 1834 my $was_signal = $signal;
69893cff
RGS
1835
1836 # If we have any watch expressions ...
e22ea7cc
RF
1837 if ( $trace & 2 ) {
1838 for ( my $n = 0 ; $n <= $#to_watch ; $n++ ) {
1839 $evalarg = $to_watch[$n];
1840 local $onetimeDump; # Tell DB::eval() to not output results
69893cff
RGS
1841
1842 # Fix context DB::eval() wants to return an array, but
1843 # we need a scalar here.
e22ea7cc
RF
1844 my ($val) = join( "', '", &eval );
1845 $val = ( ( defined $val ) ? "'$val'" : 'undef' );
69893cff
RGS
1846
1847 # Did it change?
e22ea7cc
RF
1848 if ( $val ne $old_watch[$n] ) {
1849
69893cff 1850 # Yep! Show the difference, and fake an interrupt.
e22ea7cc
RF
1851 $signal = 1;
1852 print $OUT <<EOP;
405ff068 1853Watchpoint $n:\t$to_watch[$n] changed:
69893cff
RGS
1854 old value:\t$old_watch[$n]
1855 new value:\t$val
6027b9a3 1856EOP
e22ea7cc 1857 $old_watch[$n] = $val;
69893cff
RGS
1858 } ## end if ($val ne $old_watch...
1859 } ## end for (my $n = 0 ; $n <= ...
1860 } ## end if ($trace & 2)
1861
1862=head2 C<watchfunction()>
1863
1864C<watchfunction()> is a function that can be defined by the user; it is a
1865function which will be run on each entry to C<DB::DB>; it gets the
1866current package, filename, and line as its parameters.
1867
1868The watchfunction can do anything it likes; it is executing in the
1869debugger's context, so it has access to all of the debugger's internal
1870data structures and functions.
1871
1872C<watchfunction()> can control the debugger's actions. Any of the following
1873will cause the debugger to return control to the user's program after
1874C<watchfunction()> executes:
1875
1876=over 4
1877
1878=item * Returning a false value from the C<watchfunction()> itself.
1879
1880=item * Altering C<$single> to a false value.
1881
1882=item * Altering C<$signal> to a false value.
1883
1884=item * Turning off the '4' bit in C<$trace> (this also disables the
1885check for C<watchfunction()>. This can be done with
1886
1887 $trace &= ~4;
1888
1889=back
1890
1891=cut
1892
e22ea7cc 1893 # If there's a user-defined DB::watchfunction, call it with the
69893cff
RGS
1894 # current package, filename, and line. The function executes in
1895 # the DB:: package.
e22ea7cc
RF
1896 if ( $trace & 4 ) { # User-installed watch
1897 return
1898 if watchfunction( $package, $filename, $line )
1899 and not $single
1900 and not $was_signal
1901 and not( $trace & ~4 );
69893cff
RGS
1902 } ## end if ($trace & 4)
1903
e22ea7cc 1904 # Pick up any alteration to $signal in the watchfunction, and
69893cff 1905 # turn off the signal now.
6027b9a3 1906 $was_signal = $signal;
69893cff
RGS
1907 $signal = 0;
1908
1909=head2 GETTING READY TO EXECUTE COMMANDS
1910
1911The debugger decides to take control if single-step mode is on, the
1912C<t> command was entered, or the user generated a signal. If the program
1913has fallen off the end, we set things up so that entering further commands
1914won't cause trouble, and we say that the program is over.
1915
1916=cut
1917
1918 # Check to see if we should grab control ($single true,
1919 # trace set appropriately, or we got a signal).
e22ea7cc
RF
1920 if ( $single || ( $trace & 1 ) || $was_signal ) {
1921
69893cff 1922 # Yes, grab control.
e22ea7cc
RF
1923 if ($slave_editor) {
1924
69893cff 1925 # Tell the editor to update its position.
e22ea7cc
RF
1926 $position = "\032\032$filename:$line:0\n";
1927 print_lineinfo($position);
1928 }
69893cff
RGS
1929
1930=pod
1931
1932Special check: if we're in package C<DB::fake>, we've gone through the
1933C<END> block at least once. We set up everything so that we can continue
1934to enter commands and have a valid context to be in.
1935
1936=cut
1937
e22ea7cc 1938 elsif ( $package eq 'DB::fake' ) {
69893cff 1939
69893cff 1940 # Fallen off the end already.
e22ea7cc
RF
1941 $term || &setterm;
1942 print_help(<<EOP);
405ff068
IZ
1943Debugged program terminated. Use B<q> to quit or B<R> to restart,
1944 use B<O> I<inhibit_exit> to avoid stopping after program termination,
1945 B<h q>, B<h R> or B<h O> to get additional info.
1946EOP
e22ea7cc 1947
69893cff 1948 # Set the DB::eval context appropriately.
e22ea7cc
RF
1949 $package = 'main';
1950 $usercontext =
1951 '($@, $!, $^E, $,, $/, $\, $^W) = @saved;'
1952 . "package $package;"; # this won't let them modify, alas
69893cff 1953 } ## end elsif ($package eq 'DB::fake')
e219e2fb 1954
69893cff 1955=pod
e219e2fb 1956
69893cff
RGS
1957If the program hasn't finished executing, we scan forward to the
1958next executable line, print that out, build the prompt from the file and line
1959number information, and print that.
e219e2fb 1960
69893cff
RGS
1961=cut
1962
e22ea7cc
RF
1963 else {
1964
69893cff
RGS
1965 # Still somewhere in the midst of execution. Set up the
1966 # debugger prompt.
1967 $sub =~ s/\'/::/; # Swap Perl 4 package separators (') to
e22ea7cc 1968 # Perl 5 ones (sorry, we don't print Klingon
69893cff
RGS
1969 #module names)
1970
e22ea7cc
RF
1971 $prefix = $sub =~ /::/ ? "" : "${'package'}::";
1972 $prefix .= "$sub($filename:";
1973 $after = ( $dbline[$line] =~ /\n$/ ? '' : "\n" );
69893cff
RGS
1974
1975 # Break up the prompt if it's really long.
e22ea7cc
RF
1976 if ( length($prefix) > 30 ) {
1977 $position = "$prefix$line):\n$line:\t$dbline[$line]$after";
1978 $prefix = "";
1979 $infix = ":\t";
1980 }
1981 else {
1982 $infix = "):\t";
1983 $position = "$prefix$line$infix$dbline[$line]$after";
1984 }
69893cff
RGS
1985
1986 # Print current line info, indenting if necessary.
e22ea7cc
RF
1987 if ($frame) {
1988 print_lineinfo( ' ' x $stack_depth,
1989 "$line:\t$dbline[$line]$after" );
1990 }
1991 else {
1992 print_lineinfo($position);
1993 }
69893cff
RGS
1994
1995 # Scan forward, stopping at either the end or the next
1996 # unbreakable line.
e22ea7cc
RF
1997 for ( $i = $line + 1 ; $i <= $max && $dbline[$i] == 0 ; ++$i )
1998 { #{ vi
69893cff
RGS
1999
2000 # Drop out on null statements, block closers, and comments.
2001 last if $dbline[$i] =~ /^\s*[\;\}\#\n]/;
2002
2003 # Drop out if the user interrupted us.
2004 last if $signal;
2005
2006 # Append a newline if the line doesn't have one. Can happen
2007 # in eval'ed text, for instance.
e22ea7cc 2008 $after = ( $dbline[$i] =~ /\n$/ ? '' : "\n" );
69893cff
RGS
2009
2010 # Next executable line.
2011 $incr_pos = "$prefix$i$infix$dbline[$i]$after";
2012 $position .= $incr_pos;
2013 if ($frame) {
e22ea7cc 2014
69893cff 2015 # Print it indented if tracing is on.
e22ea7cc
RF
2016 print_lineinfo( ' ' x $stack_depth,
2017 "$i:\t$dbline[$i]$after" );
69893cff
RGS
2018 }
2019 else {
2020 print_lineinfo($incr_pos);
2021 }
2022 } ## end for ($i = $line + 1 ; $i...
2023 } ## end else [ if ($slave_editor)
2024 } ## end if ($single || ($trace...
2025
2026=pod
2027
2028If there's an action to be executed for the line we stopped at, execute it.
2029If there are any preprompt actions, execute those as well.
e219e2fb
RF
2030
2031=cut
2032
69893cff
RGS
2033 # If there's an action, do it now.
2034 $evalarg = $action, &eval if $action;
e219e2fb 2035
69893cff
RGS
2036 # Are we nested another level (e.g., did we evaluate a function
2037 # that had a breakpoint in it at the debugger prompt)?
e22ea7cc
RF
2038 if ( $single || $was_signal ) {
2039
69893cff 2040 # Yes, go down a level.
e22ea7cc 2041 local $level = $level + 1;
69893cff
RGS
2042
2043 # Do any pre-prompt actions.
e22ea7cc
RF
2044 foreach $evalarg (@$pre) {
2045 &eval;
2046 }
69893cff
RGS
2047
2048 # Complain about too much recursion if we passed the limit.
e22ea7cc 2049 print $OUT $stack_depth . " levels deep in subroutine calls!\n"
69893cff
RGS
2050 if $single & 4;
2051
2052 # The line we're currently on. Set $incr to -1 to stay here
2053 # until we get a command that tells us to advance.
e22ea7cc
RF
2054 $start = $line;
2055 $incr = -1; # for backward motion.
69893cff
RGS
2056
2057 # Tack preprompt debugger actions ahead of any actual input.
e22ea7cc 2058 @typeahead = ( @$pretype, @typeahead );
69893cff
RGS
2059
2060=head2 WHERE ARE WE?
2061
2062XXX Relocate this section?
2063
2064The debugger normally shows the line corresponding to the current line of
2065execution. Sometimes, though, we want to see the next line, or to move elsewhere
2066in the file. This is done via the C<$incr>, C<$start>, and C<$max> variables.
2067
2068C<$incr> controls by how many lines the "current" line should move forward
2069after a command is executed. If set to -1, this indicates that the "current"
2070line shouldn't change.
2071
2072C<$start> is the "current" line. It is used for things like knowing where to
2073move forwards or backwards from when doing an C<L> or C<-> command.
2074
2075C<$max> tells the debugger where the last line of the current file is. It's
2076used to terminate loops most often.
2077
2078=head2 THE COMMAND LOOP
2079
2080Most of C<DB::DB> is actually a command parsing and dispatch loop. It comes
2081in two parts:
2082
2083=over 4
2084
2085=item * The outer part of the loop, starting at the C<CMD> label. This loop
2086reads a command and then executes it.
2087
2088=item * The inner part of the loop, starting at the C<PIPE> label. This part
2089is wholly contained inside the C<CMD> block and only executes a command.
2090Used to handle commands running inside a pager.
2091
2092=back
2093
2094So why have two labels to restart the loop? Because sometimes, it's easier to
2095have a command I<generate> another command and then re-execute the loop to do
2096the new command. This is faster, but perhaps a bit more convoluted.
2097
2098=cut
2099
2100 # The big command dispatch loop. It keeps running until the
2101 # user yields up control again.
2102 #
2103 # If we have a terminal for input, and we get something back
2104 # from readline(), keep on processing.
e22ea7cc
RF
2105 CMD:
2106 while (
2107
69893cff 2108 # We have a terminal, or can get one ...
e22ea7cc
RF
2109 ( $term || &setterm ),
2110
69893cff 2111 # ... and it belogs to this PID or we get one for this PID ...
e22ea7cc
RF
2112 ( $term_pid == $$ or resetterm(1) ),
2113
69893cff 2114 # ... and we got a line of command input ...
e22ea7cc
RF
2115 defined(
2116 $cmd = &readline(
2117 "$pidprompt DB"
2118 . ( '<' x $level )
2119 . ( $#hist + 1 )
2120 . ( '>' x $level ) . " "
69893cff
RGS
2121 )
2122 )
2123 )
2124 {
e22ea7cc 2125
69893cff
RGS
2126 # ... try to execute the input as debugger commands.
2127
2128 # Don't stop running.
2129 $single = 0;
2130
2131 # No signal is active.
2132 $signal = 0;
2133
2134 # Handle continued commands (ending with \):
e22ea7cc
RF
2135 $cmd =~ s/\\$/\n/ && do {
2136 $cmd .= &readline(" cont: ");
2137 redo CMD;
2138 };
69893cff
RGS
2139
2140=head4 The null command
2141
2142A newline entered by itself means "re-execute the last command". We grab the
2143command out of C<$laststep> (where it was recorded previously), and copy it
2144back into C<$cmd> to be executed below. If there wasn't any previous command,
2145we'll do nothing below (no command will match). If there was, we also save it
2146in the command history and fall through to allow the command parsing to pick
2147it up.
2148
2149=cut
2150
2151 # Empty input means repeat the last command.
e22ea7cc
RF
2152 $cmd =~ /^$/ && ( $cmd = $laststep );
2153 chomp($cmd); # get rid of the annoying extra newline
2154 push( @hist, $cmd ) if length($cmd) > 1;
2155 push( @truehist, $cmd );
2156
2157 # This is a restart point for commands that didn't arrive
2158 # via direct user input. It allows us to 'redo PIPE' to
2159 # re-execute command processing without reading a new command.
69893cff 2160 PIPE: {
e22ea7cc
RF
2161 $cmd =~ s/^\s+//s; # trim annoying leading whitespace
2162 $cmd =~ s/\s+$//s; # trim annoying trailing whitespace
2163 ($i) = split( /\s+/, $cmd );
69893cff
RGS
2164
2165=head3 COMMAND ALIASES
2166
2167The debugger can create aliases for commands (these are stored in the
2168C<%alias> hash). Before a command is executed, the command loop looks it up
2169in the alias hash and substitutes the contents of the alias for the command,
2170completely replacing it.
2171
2172=cut
2173
2174 # See if there's an alias for the command, and set it up if so.
e22ea7cc
RF
2175 if ( $alias{$i} ) {
2176
69893cff
RGS
2177 # Squelch signal handling; we want to keep control here
2178 # if something goes loco during the alias eval.
2179 local $SIG{__DIE__};
2180 local $SIG{__WARN__};
2181
2182 # This is a command, so we eval it in the DEBUGGER's
2183 # scope! Otherwise, we can't see the special debugger
2184 # variables, or get to the debugger's subs. (Well, we
2185 # _could_, but why make it even more complicated?)
2186 eval "\$cmd =~ $alias{$i}";
2187 if ($@) {
2188 local $\ = '';
2189 print $OUT "Couldn't evaluate `$i' alias: $@";
2190 next CMD;
2191 }
2192 } ## end if ($alias{$i})
2193
2194=head3 MAIN-LINE COMMANDS
2195
2196All of these commands work up to and after the program being debugged has
2197terminated.
2198
2199=head4 C<q> - quit
2200
2201Quit the debugger. This entails setting the C<$fall_off_end> flag, so we don't
2202try to execute further, cleaning any restart-related stuff out of the
2203environment, and executing with the last value of C<$?>.
2204
2205=cut
2206
2207 $cmd =~ /^q$/ && do {
2208 $fall_off_end = 1;
2209 clean_ENV();
2210 exit $?;
2211 };
2212
2213=head4 C<t> - trace
2214
2215Turn tracing on or off. Inverts the appropriate bit in C<$trace> (q.v.).
2216
2217=cut
2218
e22ea7cc
RF
2219 $cmd =~ /^t$/ && do {
2220 $trace ^= 1;
2221 local $\ = '';
2222 print $OUT "Trace = "
2223 . ( ( $trace & 1 ) ? "on" : "off" ) . "\n";
2224 next CMD;
2225 };
69893cff
RGS
2226
2227=head4 C<S> - list subroutines matching/not matching a pattern
2228
2229Walks through C<%sub>, checking to see whether or not to print the name.
2230
2231=cut
2232
e22ea7cc 2233 $cmd =~ /^S(\s+(!)?(.+))?$/ && do {
69893cff 2234
e22ea7cc 2235 $Srev = defined $2; # Reverse scan?
69893cff
RGS
2236 $Spatt = $3; # The pattern (if any) to use.
2237 $Snocheck = !defined $1; # No args - print all subs.
2238
2239 # Need to make these sane here.
e22ea7cc
RF
2240 local $\ = '';
2241 local $, = '';
69893cff
RGS
2242
2243 # Search through the debugger's magical hash of subs.
2244 # If $nocheck is true, just print the sub name.
2245 # Otherwise, check it against the pattern. We then use
2246 # the XOR trick to reverse the condition as required.
e22ea7cc
RF
2247 foreach $subname ( sort( keys %sub ) ) {
2248 if ( $Snocheck or $Srev ^ ( $subname =~ /$Spatt/ ) ) {
2249 print $OUT $subname, "\n";
2250 }
2251 }
2252 next CMD;
2253 };
69893cff
RGS
2254
2255=head4 C<X> - list variables in current package
2256
2257Since the C<V> command actually processes this, just change this to the
2258appropriate C<V> command and fall through.
2259
2260=cut
2261
e22ea7cc 2262 $cmd =~ s/^X\b/V $package/;
69893cff
RGS
2263
2264=head4 C<V> - list variables
2265
2266Uses C<dumpvar.pl> to dump out the current values for selected variables.
2267
2268=cut
2269
2270 # Bare V commands get the currently-being-debugged package
2271 # added.
e22ea7cc
RF
2272 $cmd =~ /^V$/ && do {
2273 $cmd = "V $package";
2274 };
69893cff
RGS
2275
2276 # V - show variables in package.
2277 $cmd =~ /^V\b\s*(\S+)\s*(.*)/ && do {
e22ea7cc 2278
69893cff
RGS
2279 # Save the currently selected filehandle and
2280 # force output to debugger's filehandle (dumpvar
2281 # just does "print" for output).
e22ea7cc 2282 local ($savout) = select($OUT);
69893cff
RGS
2283
2284 # Grab package name and variables to dump.
e22ea7cc
RF
2285 $packname = $1;
2286 @vars = split( ' ', $2 );
69893cff
RGS
2287
2288 # If main::dumpvar isn't here, get it.
e22ea7cc
RF
2289 do 'dumpvar.pl' unless defined &main::dumpvar;
2290 if ( defined &main::dumpvar ) {
2291
69893cff
RGS
2292 # We got it. Turn off subroutine entry/exit messages
2293 # for the moment, along with return values.
e22ea7cc
RF
2294 local $frame = 0;
2295 local $doret = -2;
69893cff
RGS
2296
2297 # must detect sigpipe failures - not catching
2298 # then will cause the debugger to die.
2299 eval {
2300 &main::dumpvar(
2301 $packname,
2302 defined $option{dumpDepth}
e22ea7cc
RF
2303 ? $option{dumpDepth}
2304 : -1, # assume -1 unless specified
69893cff 2305 @vars
e22ea7cc
RF
2306 );
2307 };
2308
2309 # The die doesn't need to include the $@, because
2310 # it will automatically get propagated for us.
2311 if ($@) {
2312 die unless $@ =~ /dumpvar print failed/;
2313 }
2314 } ## end if (defined &main::dumpvar)
2315 else {
2316
2317 # Couldn't load dumpvar.
2318 print $OUT "dumpvar.pl not available.\n";
2319 }
69893cff 2320
69893cff 2321 # Restore the output filehandle, and go round again.
e22ea7cc
RF
2322 select($savout);
2323 next CMD;
2324 };
69893cff
RGS
2325
2326=head4 C<x> - evaluate and print an expression
2327
2328Hands the expression off to C<DB::eval>, setting it up to print the value
2329via C<dumpvar.pl> instead of just printing it directly.
2330
2331=cut
2332
e22ea7cc
RF
2333 $cmd =~ s/^x\b/ / && do { # Remainder gets done by DB::eval()
2334 $onetimeDump = 'dump'; # main::dumpvar shows the output
69893cff
RGS
2335
2336 # handle special "x 3 blah" syntax XXX propagate
2337 # doc back to special variables.
e22ea7cc
RF
2338 if ( $cmd =~ s/^\s*(\d+)(?=\s)/ / ) {
2339 $onetimedumpDepth = $1;
2340 }
2341 };
69893cff
RGS
2342
2343=head4 C<m> - print methods
2344
2345Just uses C<DB::methods> to determine what methods are available.
2346
2347=cut
2348
e22ea7cc
RF
2349 $cmd =~ s/^m\s+([\w:]+)\s*$/ / && do {
2350 methods($1);
2351 next CMD;
2352 };
69893cff
RGS
2353
2354 # m expr - set up DB::eval to do the work
e22ea7cc
RF
2355 $cmd =~ s/^m\b/ / && do { # Rest gets done by DB::eval()
2356 $onetimeDump = 'methods'; # method output gets used there
2357 };
69893cff
RGS
2358
2359=head4 C<f> - switch files
2360
2361=cut
2362
e22ea7cc
RF
2363 $cmd =~ /^f\b\s*(.*)/ && do {
2364 $file = $1;
2365 $file =~ s/\s+$//;
69893cff
RGS
2366
2367 # help for no arguments (old-style was return from sub).
e22ea7cc
RF
2368 if ( !$file ) {
2369 print $OUT
2370 "The old f command is now the r command.\n"; # hint
2371 print $OUT "The new f command switches filenames.\n";
2372 next CMD;
2373 } ## end if (!$file)
69893cff
RGS
2374
2375 # if not in magic file list, try a close match.
e22ea7cc
RF
2376 if ( !defined $main::{ '_<' . $file } ) {
2377 if ( ($try) = grep( m#^_<.*$file#, keys %main:: ) ) {
2378 {
2379 $try = substr( $try, 2 );
2380 print $OUT "Choosing $try matching `$file':\n";
2381 $file = $try;
2382 }
2383 } ## end if (($try) = grep(m#^_<.*$file#...
2384 } ## end if (!defined $main::{ ...
69893cff
RGS
2385
2386 # If not successfully switched now, we failed.
e22ea7cc
RF
2387 if ( !defined $main::{ '_<' . $file } ) {
2388 print $OUT "No file matching `$file' is loaded.\n";
2389 next CMD;
2390 }
69893cff 2391
e22ea7cc
RF
2392 # We switched, so switch the debugger internals around.
2393 elsif ( $file ne $filename ) {
2394 *dbline = $main::{ '_<' . $file };
2395 $max = $#dbline;
2396 $filename = $file;
2397 $start = 1;
2398 $cmd = "l";
2399 } ## end elsif ($file ne $filename)
2400
2401 # We didn't switch; say we didn't.
2402 else {
2403 print $OUT "Already in $file.\n";
2404 next CMD;
2405 }
2406 };
69893cff
RGS
2407
2408=head4 C<.> - return to last-executed line.
2409
2410We set C<$incr> to -1 to indicate that the debugger shouldn't move ahead,
2411and then we look up the line in the magical C<%dbline> hash.
2412
2413=cut
2414
2415 # . command.
e22ea7cc
RF
2416 $cmd =~ /^\.$/ && do {
2417 $incr = -1; # stay at current line
69893cff
RGS
2418
2419 # Reset everything to the old location.
e22ea7cc
RF
2420 $start = $line;
2421 $filename = $filename_ini;
2422 *dbline = $main::{ '_<' . $filename };
2423 $max = $#dbline;
69893cff
RGS
2424
2425 # Now where are we?
e22ea7cc
RF
2426 print_lineinfo($position);
2427 next CMD;
2428 };
69893cff
RGS
2429
2430=head4 C<-> - back one window
2431
2432We change C<$start> to be one window back; if we go back past the first line,
2433we set it to be the first line. We ser C<$incr> to put us back at the
2434currently-executing line, and then put a C<l $start +> (list one window from
2435C<$start>) in C<$cmd> to be executed later.
2436
2437=cut
2438
2439 # - - back a window.
e22ea7cc
RF
2440 $cmd =~ /^-$/ && do {
2441
69893cff 2442 # back up by a window; go to 1 if back too far.
e22ea7cc
RF
2443 $start -= $incr + $window + 1;
2444 $start = 1 if $start <= 0;
2445 $incr = $window - 1;
69893cff
RGS
2446
2447 # Generate and execute a "l +" command (handled below).
e22ea7cc
RF
2448 $cmd = 'l ' . ($start) . '+';
2449 };
69893cff
RGS
2450
2451=head3 PRE-580 COMMANDS VS. NEW COMMANDS: C<a, A, b, B, h, l, L, M, o, O, P, v, w, W, E<lt>, E<lt>E<lt>, {, {{>
2452
2453In Perl 5.8.0, a realignment of the commands was done to fix up a number of
2454problems, most notably that the default case of several commands destroying
2455the user's work in setting watchpoints, actions, etc. We wanted, however, to
2456retain the old commands for those who were used to using them or who preferred
2457them. At this point, we check for the new commands and call C<cmd_wrapper> to
2458deal with them instead of processing them in-line.
2459
2460=cut
2461
2462 # All of these commands were remapped in perl 5.8.0;
e22ea7cc
RF
2463 # we send them off to the secondary dispatcher (see below).
2464 $cmd =~ /^([aAbBhilLMoOPvwW]\b|[<>\{]{1,2})\s*(.*)/so && do {
2465 &cmd_wrapper( $1, $2, $line );
2466 next CMD;
2467 };
69893cff
RGS
2468
2469=head4 C<y> - List lexicals in higher scope
2470
2471Uses C<PadWalker> to find the lexicals supplied as arguments in a scope
2472above the current one and then displays then using C<dumpvar.pl>.
2473
2474=cut
2475
2476 $cmd =~ /^y(?:\s+(\d*)\s*(.*))?$/ && do {
2477
2478 # See if we've got the necessary support.
2479 eval { require PadWalker; PadWalker->VERSION(0.08) }
2480 or &warn(
2481 $@ =~ /locate/
2482 ? "PadWalker module not found - please install\n"
2483 : $@
2484 )
2485 and next CMD;
2486
2487 # Load up dumpvar if we don't have it. If we can, that is.
2488 do 'dumpvar.pl' unless defined &main::dumpvar;
2489 defined &main::dumpvar
2490 or print $OUT "dumpvar.pl not available.\n"
2491 and next CMD;
2492
2493 # Got all the modules we need. Find them and print them.
e22ea7cc 2494 my @vars = split( ' ', $2 || '' );
69893cff
RGS
2495
2496 # Find the pad.
e22ea7cc 2497 my $h = eval { PadWalker::peek_my( ( $1 || 0 ) + 1 ) };
69893cff
RGS
2498
2499 # Oops. Can't find it.
2500 $@ and $@ =~ s/ at .*//, &warn($@), next CMD;
2501
2502 # Show the desired vars with dumplex().
2503 my $savout = select($OUT);
2504
2505 # Have dumplex dump the lexicals.
e22ea7cc 2506 dumpvar::dumplex( $_, $h->{$_},
69893cff 2507 defined $option{dumpDepth} ? $option{dumpDepth} : -1,
e22ea7cc
RF
2508 @vars )
2509 for sort keys %$h;
69893cff
RGS
2510 select($savout);
2511 next CMD;
2512 };
2513
2514=head3 COMMANDS NOT WORKING AFTER PROGRAM ENDS
2515
2516All of the commands below this point don't work after the program being
2517debugged has ended. All of them check to see if the program has ended; this
2518allows the commands to be relocated without worrying about a 'line of
2519demarcation' above which commands can be entered anytime, and below which
2520they can't.
2521
2522=head4 C<n> - single step, but don't trace down into subs
2523
2524Done by setting C<$single> to 2, which forces subs to execute straight through
2525when entered (see X<DB::sub>). We also save the C<n> command in C<$laststep>,
2526so a null command knows what to re-execute.
2527
2528=cut
2529
e22ea7cc 2530 # n - next
69893cff
RGS
2531 $cmd =~ /^n$/ && do {
2532 end_report(), next CMD if $finished and $level <= 1;
e22ea7cc 2533
69893cff
RGS
2534 # Single step, but don't enter subs.
2535 $single = 2;
e22ea7cc 2536
69893cff 2537 # Save for empty command (repeat last).
e22ea7cc
RF
2538 $laststep = $cmd;
2539 last CMD;
2540 };
69893cff
RGS
2541
2542=head4 C<s> - single-step, entering subs
2543
2544Sets C<$single> to 1, which causes X<DB::sub> to continue tracing inside
2545subs. Also saves C<s> as C<$lastcmd>.
2546
2547=cut
2548
2549 # s - single step.
2550 $cmd =~ /^s$/ && do {
e22ea7cc 2551
69893cff
RGS
2552 # Get out and restart the command loop if program
2553 # has finished.
e22ea7cc
RF
2554 end_report(), next CMD if $finished and $level <= 1;
2555
69893cff 2556 # Single step should enter subs.
e22ea7cc
RF
2557 $single = 1;
2558
69893cff 2559 # Save for empty command (repeat last).
e22ea7cc
RF
2560 $laststep = $cmd;
2561 last CMD;
2562 };
69893cff
RGS
2563
2564=head4 C<c> - run continuously, setting an optional breakpoint
2565
2566Most of the code for this command is taken up with locating the optional
2567breakpoint, which is either a subroutine name or a line number. We set
2568the appropriate one-time-break in C<@dbline> and then turn off single-stepping
2569in this and all call levels above this one.
2570
2571=cut
2572
2573 # c - start continuous execution.
2574 $cmd =~ /^c\b\s*([\w:]*)\s*$/ && do {
e22ea7cc 2575
69893cff
RGS
2576 # Hey, show's over. The debugged program finished
2577 # executing already.
2578 end_report(), next CMD if $finished and $level <= 1;
2579
2580 # Capture the place to put a one-time break.
2581 $subname = $i = $1;
2582
e22ea7cc
RF
2583 # Probably not needed, since we finish an interactive
2584 # sub-session anyway...
2585 # local $filename = $filename;
2586 # local *dbline = *dbline; # XXX Would this work?!
69893cff
RGS
2587 #
2588 # The above question wonders if localizing the alias
2589 # to the magic array works or not. Since it's commented
2590 # out, we'll just leave that to speculation for now.
2591
2592 # If the "subname" isn't all digits, we'll assume it
2593 # is a subroutine name, and try to find it.
e22ea7cc
RF
2594 if ( $subname =~ /\D/ ) { # subroutine name
2595 # Qualify it to the current package unless it's
2596 # already qualified.
69893cff
RGS
2597 $subname = $package . "::" . $subname
2598 unless $subname =~ /::/;
e22ea7cc 2599
69893cff
RGS
2600 # find_sub will return "file:line_number" corresponding
2601 # to where the subroutine is defined; we call find_sub,
e22ea7cc 2602 # break up the return value, and assign it in one
69893cff 2603 # operation.
e22ea7cc 2604 ( $file, $i ) = ( find_sub($subname) =~ /^(.*):(.*)$/ );
69893cff
RGS
2605
2606 # Force the line number to be numeric.
e22ea7cc 2607 $i += 0;
69893cff
RGS
2608
2609 # If we got a line number, we found the sub.
e22ea7cc
RF
2610 if ($i) {
2611
69893cff
RGS
2612 # Switch all the debugger's internals around so
2613 # we're actually working with that file.
e22ea7cc
RF
2614 $filename = $file;
2615 *dbline = $main::{ '_<' . $filename };
2616
69893cff 2617 # Mark that there's a breakpoint in this file.
e22ea7cc
RF
2618 $had_breakpoints{$filename} |= 1;
2619
69893cff
RGS
2620 # Scan forward to the first executable line
2621 # after the 'sub whatever' line.
e22ea7cc
RF
2622 $max = $#dbline;
2623 ++$i while $dbline[$i] == 0 && $i < $max;
2624 } ## end if ($i)
69893cff
RGS
2625
2626 # We didn't find a sub by that name.
e22ea7cc
RF
2627 else {
2628 print $OUT "Subroutine $subname not found.\n";
2629 next CMD;
2630 }
2631 } ## end if ($subname =~ /\D/)
69893cff
RGS
2632
2633 # At this point, either the subname was all digits (an
2634 # absolute line-break request) or we've scanned through
2635 # the code following the definition of the sub, looking
2636 # for an executable, which we may or may not have found.
2637 #
2638 # If $i (which we set $subname from) is non-zero, we
e22ea7cc
RF
2639 # got a request to break at some line somewhere. On
2640 # one hand, if there wasn't any real subroutine name
2641 # involved, this will be a request to break in the current
2642 # file at the specified line, so we have to check to make
69893cff
RGS
2643 # sure that the line specified really is breakable.
2644 #
2645 # On the other hand, if there was a subname supplied, the
2646 # preceeding block has moved us to the proper file and
2647 # location within that file, and then scanned forward
2648 # looking for the next executable line. We have to make
2649 # sure that one was found.
2650 #
2651 # On the gripping hand, we can't do anything unless the
2652 # current value of $i points to a valid breakable line.
2653 # Check that.
e22ea7cc
RF
2654 if ($i) {
2655
69893cff 2656 # Breakable?
e22ea7cc
RF
2657 if ( $dbline[$i] == 0 ) {
2658 print $OUT "Line $i not breakable.\n";
2659 next CMD;
2660 }
2661
69893cff 2662 # Yes. Set up the one-time-break sigil.
e22ea7cc
RF
2663 $dbline{$i} =~ s/($|\0)/;9$1/; # add one-time-only b.p.
2664 } ## end if ($i)
69893cff
RGS
2665
2666 # Turn off stack tracing from here up.
e22ea7cc
RF
2667 for ( $i = 0 ; $i <= $stack_depth ; ) {
2668 $stack[ $i++ ] &= ~1;
2669 }
2670 last CMD;
2671 };
69893cff
RGS
2672
2673=head4 C<r> - return from a subroutine
2674
2675For C<r> to work properly, the debugger has to stop execution again
2676immediately after the return is executed. This is done by forcing
2677single-stepping to be on in the call level above the current one. If
2678we are printing return values when a C<r> is executed, set C<$doret>
2679appropriately, and force us out of the command loop.
2680
2681=cut
2682
2683 # r - return from the current subroutine.
e22ea7cc
RF
2684 $cmd =~ /^r$/ && do {
2685
69893cff 2686 # Can't do anythign if the program's over.
e22ea7cc
RF
2687 end_report(), next CMD if $finished and $level <= 1;
2688
69893cff 2689 # Turn on stack trace.
e22ea7cc
RF
2690 $stack[$stack_depth] |= 1;
2691
69893cff 2692 # Print return value unless the stack is empty.
e22ea7cc
RF
2693 $doret = $option{PrintRet} ? $stack_depth - 1 : -2;
2694 last CMD;
2695 };
69893cff 2696
69893cff
RGS
2697=head4 C<T> - stack trace
2698
2699Just calls C<DB::print_trace>.
2700
2701=cut
2702
e22ea7cc
RF
2703 $cmd =~ /^T$/ && do {
2704 print_trace( $OUT, 1 ); # skip DB
2705 next CMD;
2706 };
69893cff
RGS
2707
2708=head4 C<w> - List window around current line.
2709
2710Just calls C<DB::cmd_w>.
2711
2712=cut
2713
e22ea7cc 2714 $cmd =~ /^w\b\s*(.*)/s && do { &cmd_w( 'w', $1 ); next CMD; };
69893cff
RGS
2715
2716=head4 C<W> - watch-expression processing.
2717
2718Just calls C<DB::cmd_W>.
2719
2720=cut
2721
e22ea7cc 2722 $cmd =~ /^W\b\s*(.*)/s && do { &cmd_W( 'W', $1 ); next CMD; };
69893cff
RGS
2723
2724=head4 C</> - search forward for a string in the source
2725
2726We take the argument and treat it as a pattern. If it turns out to be a
2727bad one, we return the error we got from trying to C<eval> it and exit.
2728If not, we create some code to do the search and C<eval> it so it can't
2729mess us up.
2730
2731=cut
2732
e22ea7cc 2733 $cmd =~ /^\/(.*)$/ && do {
69893cff
RGS
2734
2735 # The pattern as a string.
e22ea7cc 2736 $inpat = $1;
69893cff
RGS
2737
2738 # Remove the final slash.
e22ea7cc 2739 $inpat =~ s:([^\\])/$:$1:;
69893cff
RGS
2740
2741 # If the pattern isn't null ...
e22ea7cc 2742 if ( $inpat ne "" ) {
69893cff
RGS
2743
2744 # Turn of warn and die procesing for a bit.
e22ea7cc
RF
2745 local $SIG{__DIE__};
2746 local $SIG{__WARN__};
69893cff
RGS
2747
2748 # Create the pattern.
e22ea7cc
RF
2749 eval '$inpat =~ m' . "\a$inpat\a";
2750 if ( $@ ne "" ) {
2751
69893cff 2752 # Oops. Bad pattern. No biscuit.
e22ea7cc 2753 # Print the eval error and go back for more
69893cff 2754 # commands.
e22ea7cc
RF
2755 print $OUT "$@";
2756 next CMD;
2757 }
2758 $pat = $inpat;
2759 } ## end if ($inpat ne "")
69893cff
RGS
2760
2761 # Set up to stop on wrap-around.
e22ea7cc 2762 $end = $start;
69893cff
RGS
2763
2764 # Don't move off the current line.
e22ea7cc 2765 $incr = -1;
69893cff
RGS
2766
2767 # Done in eval so nothing breaks if the pattern
2768 # does something weird.
e22ea7cc
RF
2769 eval '
2770 for (;;) {
69893cff 2771 # Move ahead one line.
e22ea7cc 2772 ++$start;
69893cff
RGS
2773
2774 # Wrap if we pass the last line.
e22ea7cc 2775 $start = 1 if ($start > $max);
69893cff
RGS
2776
2777 # Stop if we have gotten back to this line again,
e22ea7cc 2778 last if ($start == $end);
69893cff
RGS
2779
2780 # A hit! (Note, though, that we are doing
2781 # case-insensitive matching. Maybe a qr//
2782 # expression would be better, so the user could
2783 # do case-sensitive matching if desired.
e22ea7cc
RF
2784 if ($dbline[$start] =~ m' . "\a$pat\a" . 'i) {
2785 if ($slave_editor) {
69893cff 2786 # Handle proper escaping in the slave.
e22ea7cc
RF
2787 print $OUT "\032\032$filename:$start:0\n";
2788 }
2789 else {
69893cff 2790 # Just print the line normally.
e22ea7cc
RF
2791 print $OUT "$start:\t",$dbline[$start],"\n";
2792 }
69893cff 2793 # And quit since we found something.
e22ea7cc
RF
2794 last;
2795 }
2796 } ';
2797
69893cff 2798 # If we wrapped, there never was a match.
e22ea7cc
RF
2799 print $OUT "/$pat/: not found\n" if ( $start == $end );
2800 next CMD;
2801 };
69893cff
RGS
2802
2803=head4 C<?> - search backward for a string in the source
2804
2805Same as for C</>, except the loop runs backwards.
2806
2807=cut
2808
2809 # ? - backward pattern search.
e22ea7cc 2810 $cmd =~ /^\?(.*)$/ && do {
69893cff
RGS
2811
2812 # Get the pattern, remove trailing question mark.
e22ea7cc
RF
2813 $inpat = $1;
2814 $inpat =~ s:([^\\])\?$:$1:;
69893cff
RGS
2815
2816 # If we've got one ...
e22ea7cc 2817 if ( $inpat ne "" ) {
69893cff
RGS
2818
2819 # Turn off die & warn handlers.
e22ea7cc
RF
2820 local $SIG{__DIE__};
2821 local $SIG{__WARN__};
2822 eval '$inpat =~ m' . "\a$inpat\a";
2823
2824 if ( $@ ne "" ) {
2825
69893cff 2826 # Ouch. Not good. Print the error.
e22ea7cc
RF
2827 print $OUT $@;
2828 next CMD;
2829 }
2830 $pat = $inpat;
69893cff 2831 } ## end if ($inpat ne "")
e22ea7cc 2832
69893cff 2833 # Where we are now is where to stop after wraparound.
e22ea7cc 2834 $end = $start;
69893cff
RGS
2835
2836 # Don't move away from this line.
e22ea7cc 2837 $incr = -1;
69893cff
RGS
2838
2839 # Search inside the eval to prevent pattern badness
2840 # from killing us.
e22ea7cc
RF
2841 eval '
2842 for (;;) {
69893cff 2843 # Back up a line.
e22ea7cc 2844 --$start;
69893cff
RGS
2845
2846 # Wrap if we pass the first line.
e22ea7cc
RF
2847
2848 $start = $max if ($start <= 0);
69893cff
RGS
2849
2850 # Quit if we get back where we started,
e22ea7cc 2851 last if ($start == $end);
69893cff
RGS
2852
2853 # Match?
e22ea7cc
RF
2854 if ($dbline[$start] =~ m' . "\a$pat\a" . 'i) {
2855 if ($slave_editor) {
69893cff 2856 # Yep, follow slave editor requirements.
e22ea7cc
RF
2857 print $OUT "\032\032$filename:$start:0\n";
2858 }
2859 else {
69893cff 2860 # Yep, just print normally.
e22ea7cc
RF
2861 print $OUT "$start:\t",$dbline[$start],"\n";
2862 }
69893cff
RGS
2863
2864 # Found, so done.
e22ea7cc
RF
2865 last;
2866 }
2867 } ';
2868
2869 # Say we failed if the loop never found anything,
2870 print $OUT "?$pat?: not found\n" if ( $start == $end );
2871 next CMD;
2872 };
69893cff
RGS
2873
2874=head4 C<$rc> - Recall command
2875
2876Manages the commands in C<@hist> (which is created if C<Term::ReadLine> reports
2877that the terminal supports history). It find the the command required, puts it
2878into C<$cmd>, and redoes the loop to execute it.
2879
2880=cut
2881
e22ea7cc
RF
2882 # $rc - recall command.
2883 $cmd =~ /^$rc+\s*(-)?(\d+)?$/ && do {
69893cff
RGS
2884
2885 # No arguments, take one thing off history.
e22ea7cc 2886 pop(@hist) if length($cmd) > 1;
69893cff 2887
e22ea7cc 2888 # Relative (- found)?
69893cff 2889 # Y - index back from most recent (by 1 if bare minus)
e22ea7cc 2890 # N - go to that particular command slot or the last
69893cff 2891 # thing if nothing following.
e22ea7cc 2892 $i = $1 ? ( $#hist - ( $2 || 1 ) ) : ( $2 || $#hist );
69893cff
RGS
2893
2894 # Pick out the command desired.
e22ea7cc 2895 $cmd = $hist[$i];
69893cff
RGS
2896
2897 # Print the command to be executed and restart the loop
2898 # with that command in the buffer.
e22ea7cc
RF
2899 print $OUT $cmd, "\n";
2900 redo CMD;
2901 };
69893cff
RGS
2902
2903=head4 C<$sh$sh> - C<system()> command
2904
2905Calls the C<DB::system()> to handle the command. This keeps the C<STDIN> and
2906C<STDOUT> from getting messed up.
2907
2908=cut
2909
2910 # $sh$sh - run a shell command (if it's all ASCII).
2911 # Can't run shell commands with Unicode in the debugger, hmm.
e22ea7cc
RF
2912 $cmd =~ /^$sh$sh\s*([\x00-\xff]*)/ && do {
2913
69893cff 2914 # System it.
e22ea7cc
RF
2915 &system($1);
2916 next CMD;
2917 };
69893cff
RGS
2918
2919=head4 C<$rc I<pattern> $rc> - Search command history
2920
2921Another command to manipulate C<@hist>: this one searches it with a pattern.
2922If a command is found, it is placed in C<$cmd> and executed via <redo>.
2923
2924=cut
2925
e22ea7cc
RF
2926 # $rc pattern $rc - find a command in the history.
2927 $cmd =~ /^$rc([^$rc].*)$/ && do {
2928
69893cff 2929 # Create the pattern to use.
e22ea7cc 2930 $pat = "^$1";
69893cff
RGS
2931
2932 # Toss off last entry if length is >1 (and it always is).
e22ea7cc 2933 pop(@hist) if length($cmd) > 1;
69893cff
RGS
2934
2935 # Look backward through the history.
e22ea7cc
RF
2936 for ( $i = $#hist ; $i ; --$i ) {
2937
69893cff 2938 # Stop if we find it.
e22ea7cc
RF
2939 last if $hist[$i] =~ /$pat/;
2940 }
2941
2942 if ( !$i ) {
69893cff 2943
69893cff 2944 # Never found it.
e22ea7cc
RF
2945 print $OUT "No such command!\n\n";
2946 next CMD;
2947 }
69893cff
RGS
2948
2949 # Found it. Put it in the buffer, print it, and process it.
e22ea7cc
RF
2950 $cmd = $hist[$i];
2951 print $OUT $cmd, "\n";
2952 redo CMD;
2953 };
69893cff
RGS
2954
2955=head4 C<$sh> - Invoke a shell
2956
2957Uses C<DB::system> to invoke a shell.
2958
2959=cut
2960
2961 # $sh - start a shell.
e22ea7cc
RF
2962 $cmd =~ /^$sh$/ && do {
2963
69893cff
RGS
2964 # Run the user's shell. If none defined, run Bourne.
2965 # We resume execution when the shell terminates.
e22ea7cc
RF
2966 &system( $ENV{SHELL} || "/bin/sh" );
2967 next CMD;
2968 };
69893cff
RGS
2969
2970=head4 C<$sh I<command>> - Force execution of a command in a shell
2971
2972Like the above, but the command is passed to the shell. Again, we use
2973C<DB::system> to avoid problems with C<STDIN> and C<STDOUT>.
2974
2975=cut
2976
2977 # $sh command - start a shell and run a command in it.
e22ea7cc
RF
2978 $cmd =~ /^$sh\s*([\x00-\xff]*)/ && do {
2979
2980 # XXX: using csh or tcsh destroys sigint retvals!
2981 #&system($1); # use this instead
69893cff
RGS
2982
2983 # use the user's shell, or Bourne if none defined.
e22ea7cc
RF
2984 &system( $ENV{SHELL} || "/bin/sh", "-c", $1 );
2985 next CMD;
2986 };
69893cff
RGS
2987
2988=head4 C<H> - display commands in history
2989
2990Prints the contents of C<@hist> (if any).
2991
2992=cut
2993
7fddc82f
RF
2994 $cmd =~ /^H\b\s*\*/ && do {
2995 @hist = @truehist = ();
2996 print $OUT "History cleansed\n";
2997 next CMD;
2998 };
e22ea7cc
RF
2999
3000 $cmd =~ /^H\b\s*(-(\d+))?/ && do {
3001
3002 # Anything other than negative numbers is ignored by
69893cff 3003 # the (incorrect) pattern, so this test does nothing.
e22ea7cc 3004 $end = $2 ? ( $#hist - $2 ) : 0;
69893cff
RGS
3005
3006 # Set to the minimum if less than zero.
e22ea7cc 3007 $hist = 0 if $hist < 0;
69893cff 3008
e22ea7cc 3009 # Start at the end of the array.
69893cff
RGS
3010 # Stay in while we're still above the ending value.
3011 # Tick back by one each time around the loop.
e22ea7cc 3012 for ( $i = $#hist ; $i > $end ; $i-- ) {
69893cff
RGS
3013
3014 # Print the command unless it has no arguments.
e22ea7cc
RF
3015 print $OUT "$i: ", $hist[$i], "\n"
3016 unless $hist[$i] =~ /^.?$/;
3017 }
3018 next CMD;
3019 };
69893cff
RGS
3020
3021=head4 C<man, doc, perldoc> - look up documentation
3022
3023Just calls C<runman()> to print the appropriate document.
3024
3025=cut
3026
e22ea7cc
RF
3027 # man, perldoc, doc - show manual pages.
3028 $cmd =~ /^(?:man|(?:perl)?doc)\b(?:\s+([^(]*))?$/ && do {
3029 runman($1);
3030 next CMD;
3031 };
69893cff
RGS
3032
3033=head4 C<p> - print
3034
3035Builds a C<print EXPR> expression in the C<$cmd>; this will get executed at
3036the bottom of the loop.
3037
3038=cut
3039
3040 # p - print (no args): print $_.
e22ea7cc 3041 $cmd =~ s/^p$/print {\$DB::OUT} \$_/;
69893cff
RGS
3042
3043 # p - print the given expression.
e22ea7cc 3044 $cmd =~ s/^p\b/print {\$DB::OUT} /;
69893cff
RGS
3045
3046=head4 C<=> - define command alias
3047
3048Manipulates C<%alias> to add or list command aliases.
3049
3050=cut
3051
e22ea7cc
RF
3052 # = - set up a command alias.
3053 $cmd =~ s/^=\s*// && do {
3054 my @keys;
3055 if ( length $cmd == 0 ) {
3056
69893cff 3057 # No args, get current aliases.
e22ea7cc
RF
3058 @keys = sort keys %alias;
3059 }
3060 elsif ( my ( $k, $v ) = ( $cmd =~ /^(\S+)\s+(\S.*)/ ) ) {
3061
69893cff
RGS
3062 # Creating a new alias. $k is alias name, $v is
3063 # alias value.
3064
e22ea7cc
RF
3065 # can't use $_ or kill //g state
3066 for my $x ( $k, $v ) {
3067
3068 # Escape "alarm" characters.
3069 $x =~ s/\a/\\a/g;
3070 }
69893cff
RGS
3071
3072 # Substitute key for value, using alarm chars
e22ea7cc 3073 # as separators (which is why we escaped them in
69893cff 3074 # the command).
e22ea7cc 3075 $alias{$k} = "s\a$k\a$v\a";
69893cff
RGS
3076
3077 # Turn off standard warn and die behavior.
e22ea7cc
RF
3078 local $SIG{__DIE__};
3079 local $SIG{__WARN__};
69893cff
RGS
3080
3081 # Is it valid Perl?
e22ea7cc
RF
3082 unless ( eval "sub { s\a$k\a$v\a }; 1" ) {
3083
69893cff 3084 # Nope. Bad alias. Say so and get out.
e22ea7cc
RF
3085 print $OUT "Can't alias $k to $v: $@\n";
3086 delete $alias{$k};
3087 next CMD;
3088 }
3089
69893cff 3090 # We'll only list the new one.
e22ea7cc 3091 @keys = ($k);
69893cff
RGS
3092 } ## end elsif (my ($k, $v) = ($cmd...
3093
3094 # The argument is the alias to list.
e22ea7cc
RF
3095 else {
3096 @keys = ($cmd);
3097 }
69893cff
RGS
3098
3099 # List aliases.
e22ea7cc
RF
3100 for my $k (@keys) {
3101
69893cff
RGS
3102 # Messy metaquoting: Trim the substiution code off.
3103 # We use control-G as the delimiter because it's not
3104 # likely to appear in the alias.
e22ea7cc
RF
3105 if ( ( my $v = $alias{$k} ) =~ s\as\a$k\a(.*)\a$\a1\a ) {
3106
69893cff 3107 # Print the alias.
e22ea7cc
RF
3108 print $OUT "$k\t= $1\n";
3109 }
3110 elsif ( defined $alias{$k} ) {
3111
69893cff 3112 # Couldn't trim it off; just print the alias code.
e22ea7cc
RF
3113 print $OUT "$k\t$alias{$k}\n";
3114 }
3115 else {
3116
69893cff 3117 # No such, dude.
e22ea7cc
RF
3118 print "No alias for $k\n";
3119 }
69893cff 3120 } ## end for my $k (@keys)
e22ea7cc
RF
3121 next CMD;
3122 };
69893cff
RGS
3123
3124=head4 C<source> - read commands from a file.
3125
3126Opens a lexical filehandle and stacks it on C<@cmdfhs>; C<DB::readline> will
3127pick it up.
3128
3129=cut
3130
e22ea7cc
RF
3131 # source - read commands from a file (or pipe!) and execute.
3132 $cmd =~ /^source\s+(.*\S)/ && do {
3133 if ( open my $fh, $1 ) {
3134
69893cff 3135 # Opened OK; stick it in the list of file handles.
e22ea7cc
RF
3136 push @cmdfhs, $fh;
3137 }
3138 else {
3139
3140 # Couldn't open it.
3141 &warn("Can't execute `$1': $!\n");
3142 }
3143 next CMD;
3144 };
69893cff
RGS
3145
3146=head4 C<save> - send current history to a file
3147
3148Takes the complete history, (not the shrunken version you see with C<H>),
3149and saves it to the given filename, so it can be replayed using C<source>.
3150
3151Note that all C<^(save|source)>'s are commented out with a view to minimise recursion.
3152
3153=cut
3154
3155 # save source - write commands to a file for later use
3156 $cmd =~ /^save\s*(.*)$/ && do {
e22ea7cc
RF
3157 my $file = $1 || '.perl5dbrc'; # default?
3158 if ( open my $fh, "> $file" ) {
3159
3160 # chomp to remove extraneous newlines from source'd files
3161 chomp( my @truelist =
3162 map { m/^\s*(save|source)/ ? "#$_" : $_ }
3163 @truehist );
3164 print $fh join( "\n", @truelist );
69893cff 3165 print "commands saved in $file\n";
e22ea7cc
RF
3166 }
3167 else {
69893cff
RGS
3168 &warn("Can't save debugger commands in '$1': $!\n");
3169 }
3170 next CMD;
3171 };
3172
7fddc82f
RF
3173=head4 C<R> - restart
3174
3175Restart the debugger session.
3176
3177=head4 C<rerun> - rerun the current session
3178
3179Return to any given position in the B<true>-history list
3180
3181=cut
3182
3183 # R - restart execution.
3184 # rerun - controlled restart execution.
3185 $cmd =~ /^(R|rerun\s*(.*))$/ && do {
3186 my @args = ($1 eq 'R' ? restart() : rerun($2));
3187
3188 # And run Perl again. We use exec() to keep the
3189 # PID stable (and that way $ini_pids is still valid).
3190 exec(@args) || print $OUT "exec failed: $!\n";
3191
3192 last CMD;
3193 };
3194
69893cff
RGS
3195=head4 C<|, ||> - pipe output through the pager.
3196
3197FOR C<|>, we save C<OUT> (the debugger's output filehandle) and C<STDOUT>
3198(the program's standard output). For C<||>, we only save C<OUT>. We open a
3199pipe to the pager (restoring the output filehandles if this fails). If this
3200is the C<|> command, we also set up a C<SIGPIPE> handler which will simply
3201set C<$signal>, sending us back into the debugger.
3202
3203We then trim off the pipe symbols and C<redo> the command loop at the
3204C<PIPE> label, causing us to evaluate the command in C<$cmd> without
3205reading another.
3206
3207=cut
3208
3209 # || - run command in the pager, with output to DB::OUT.
e22ea7cc
RF
3210 $cmd =~ /^\|\|?\s*[^|]/ && do {
3211 if ( $pager =~ /^\|/ ) {
3212
69893cff 3213 # Default pager is into a pipe. Redirect I/O.
e22ea7cc
RF
3214 open( SAVEOUT, ">&STDOUT" )
3215 || &warn("Can't save STDOUT");
3216 open( STDOUT, ">&OUT" )
3217 || &warn("Can't redirect STDOUT");
69893cff 3218 } ## end if ($pager =~ /^\|/)
e22ea7cc
RF
3219 else {
3220
69893cff 3221 # Not into a pipe. STDOUT is safe.
e22ea7cc
RF
3222 open( SAVEOUT, ">&OUT" ) || &warn("Can't save DB::OUT");
3223 }
69893cff
RGS
3224
3225 # Fix up environment to record we have less if so.
e22ea7cc
RF
3226 fix_less();
3227
3228 unless ( $piped = open( OUT, $pager ) ) {
69893cff 3229
69893cff 3230 # Couldn't open pipe to pager.
e22ea7cc
RF
3231 &warn("Can't pipe output to `$pager'");
3232 if ( $pager =~ /^\|/ ) {
3233
69893cff 3234 # Redirect I/O back again.
e22ea7cc
RF
3235 open( OUT, ">&STDOUT" ) # XXX: lost message
3236 || &warn("Can't restore DB::OUT");
3237 open( STDOUT, ">&SAVEOUT" )
3238 || &warn("Can't restore STDOUT");
3239 close(SAVEOUT);
69893cff 3240 } ## end if ($pager =~ /^\|/)
e22ea7cc
RF
3241 else {
3242
69893cff 3243 # Redirect I/O. STDOUT already safe.
e22ea7cc
RF
3244 open( OUT, ">&STDOUT" ) # XXX: lost message
3245 || &warn("Can't restore DB::OUT");
3246 }
3247 next CMD;
69893cff
RGS
3248 } ## end unless ($piped = open(OUT,...
3249
3250 # Set up broken-pipe handler if necessary.
e22ea7cc
RF
3251 $SIG{PIPE} = \&DB::catch
3252 if $pager =~ /^\|/
3253 && ( "" eq $SIG{PIPE} || "DEFAULT" eq $SIG{PIPE} );
69893cff
RGS
3254
3255 # Save current filehandle, unbuffer out, and put it back.
e22ea7cc
RF
3256 $selected = select(OUT);
3257 $| = 1;
69893cff
RGS
3258
3259 # Don't put it back if pager was a pipe.
e22ea7cc 3260 select($selected), $selected = "" unless $cmd =~ /^\|\|/;
69893cff
RGS
3261
3262 # Trim off the pipe symbols and run the command now.
e22ea7cc
RF
3263 $cmd =~ s/^\|+\s*//;
3264 redo PIPE;
3265 };
69893cff
RGS
3266
3267=head3 END OF COMMAND PARSING
3268
3269Anything left in C<$cmd> at this point is a Perl expression that we want to
3270evaluate. We'll always evaluate in the user's context, and fully qualify
3271any variables we might want to address in the C<DB> package.
3272
3273=cut
3274
3275 # t - turn trace on.
e22ea7cc 3276 $cmd =~ s/^t\s/\$DB::trace |= 1;\n/;
69893cff
RGS
3277
3278 # s - single-step. Remember the last command was 's'.
e22ea7cc 3279 $cmd =~ s/^s\s/\$DB::single = 1;\n/ && do { $laststep = 's' };
69893cff
RGS
3280
3281 # n - single-step, but not into subs. Remember last command
e22ea7cc
RF
3282 # was 'n'.
3283 $cmd =~ s/^n\s/\$DB::single = 2;\n/ && do { $laststep = 'n' };
69893cff 3284
e22ea7cc 3285 } # PIPE:
69893cff 3286
e22ea7cc 3287 # Make sure the flag that says "the debugger's running" is
69893cff 3288 # still on, to make sure we get control again.
e22ea7cc 3289 $evalarg = "\$^D = \$^D | \$DB::db_stop;\n$cmd";
69893cff
RGS
3290
3291 # Run *our* eval that executes in the caller's context.
e22ea7cc 3292 &eval;
69893cff
RGS
3293
3294 # Turn off the one-time-dump stuff now.
e22ea7cc
RF
3295 if ($onetimeDump) {
3296 $onetimeDump = undef;
69893cff 3297 $onetimedumpDepth = undef;
e22ea7cc
RF
3298 }
3299 elsif ( $term_pid == $$ ) {
3300 STDOUT->flush();
3301 STDERR->flush();
3302
69893cff 3303 # XXX If this is the master pid, print a newline.
e22ea7cc
RF
3304 print $OUT "\n";
3305 }
3306 } ## end while (($term || &setterm...
69893cff
RGS
3307
3308=head3 POST-COMMAND PROCESSING
3309
3310After each command, we check to see if the command output was piped anywhere.
3311If so, we go through the necessary code to unhook the pipe and go back to
3312our standard filehandles for input and output.
3313
3314=cut
3315
e22ea7cc 3316 continue { # CMD:
69893cff
RGS
3317
3318 # At the end of every command:
e22ea7cc
RF
3319 if ($piped) {
3320
69893cff 3321 # Unhook the pipe mechanism now.
e22ea7cc
RF
3322 if ( $pager =~ /^\|/ ) {
3323
69893cff 3324 # No error from the child.
e22ea7cc 3325 $? = 0;
69893cff 3326
e22ea7cc
RF
3327 # we cannot warn here: the handle is missing --tchrist
3328 close(OUT) || print SAVEOUT "\nCan't close DB::OUT\n";
69893cff 3329
e22ea7cc 3330 # most of the $? crud was coping with broken cshisms
69893cff 3331 # $? is explicitly set to 0, so this never runs.
e22ea7cc
RF
3332 if ($?) {
3333 print SAVEOUT "Pager `$pager' failed: ";
3334 if ( $? == -1 ) {
3335 print SAVEOUT "shell returned -1\n";
3336 }
3337 elsif ( $? >> 8 ) {
3338 print SAVEOUT ( $? & 127 )
3339 ? " (SIG#" . ( $? & 127 ) . ")"
3340 : "", ( $? & 128 ) ? " -- core dumped" : "", "\n";
3341 }
3342 else {
3343 print SAVEOUT "status ", ( $? >> 8 ), "\n";
3344 }
69893cff
RGS
3345 } ## end if ($?)
3346
e22ea7cc 3347 # Reopen filehandle for our output (if we can) and
69893cff 3348 # restore STDOUT (if we can).
e22ea7cc
RF
3349 open( OUT, ">&STDOUT" ) || &warn("Can't restore DB::OUT");
3350 open( STDOUT, ">&SAVEOUT" )
3351 || &warn("Can't restore STDOUT");
69893cff
RGS
3352
3353 # Turn off pipe exception handler if necessary.
e22ea7cc 3354 $SIG{PIPE} = "DEFAULT" if $SIG{PIPE} eq \&DB::catch;
69893cff 3355
e22ea7cc
RF
3356 # Will stop ignoring SIGPIPE if done like nohup(1)
3357 # does SIGINT but Perl doesn't give us a choice.
69893cff 3358 } ## end if ($pager =~ /^\|/)
e22ea7cc
RF
3359 else {
3360
69893cff 3361 # Non-piped "pager". Just restore STDOUT.
e22ea7cc
RF
3362 open( OUT, ">&SAVEOUT" ) || &warn("Can't restore DB::OUT");
3363 }
69893cff
RGS
3364
3365 # Close filehandle pager was using, restore the normal one
3366 # if necessary,
3367 close(SAVEOUT);
e22ea7cc 3368 select($selected), $selected = "" unless $selected eq "";
69893cff
RGS
3369
3370 # No pipes now.
e22ea7cc 3371 $piped = "";
69893cff 3372 } ## end if ($piped)
e22ea7cc 3373 } # CMD:
69893cff
RGS
3374
3375=head3 COMMAND LOOP TERMINATION
3376
3377When commands have finished executing, we come here. If the user closed the
3378input filehandle, we turn on C<$fall_off_end> to emulate a C<q> command. We
3379evaluate any post-prompt items. We restore C<$@>, C<$!>, C<$^E>, C<$,>, C<$/>,
3380C<$\>, and C<$^W>, and return a null list as expected by the Perl interpreter.
3381The interpreter will then execute the next line and then return control to us
3382again.
3383
3384=cut
3385
3386 # No more commands? Quit.
e22ea7cc 3387 $fall_off_end = 1 unless defined $cmd; # Emulate `q' on EOF
69893cff
RGS
3388
3389 # Evaluate post-prompt commands.
e22ea7cc
RF
3390 foreach $evalarg (@$post) {
3391 &eval;
3392 }
3393 } # if ($single || $signal)
69893cff
RGS
3394
3395 # Put the user's globals back where you found them.
e22ea7cc 3396 ( $@, $!, $^E, $,, $/, $\, $^W ) = @saved;
69893cff
RGS
3397 ();
3398} ## end sub DB
3399
3400# The following code may be executed now:
3401# BEGIN {warn 4}
3402
3403=head2 sub
3404
3405C<sub> is called whenever a subroutine call happens in the program being
3406debugged. The variable C<$DB::sub> contains the name of the subroutine
3407being called.
3408
3409The core function of this subroutine is to actually call the sub in the proper
3410context, capturing its output. This of course causes C<DB::DB> to get called
3411again, repeating until the subroutine ends and returns control to C<DB::sub>
3412again. Once control returns, C<DB::sub> figures out whether or not to dump the
3413return value, and returns its captured copy of the return value as its own
3414return value. The value then feeds back into the program being debugged as if
3415C<DB::sub> hadn't been there at all.
3416
3417C<sub> does all the work of printing the subroutine entry and exit messages
3418enabled by setting C<$frame>. It notes what sub the autoloader got called for,
3419and also prints the return value if needed (for the C<r> command and if
3420the 16 bit is set in C<$frame>).
3421
3422It also tracks the subroutine call depth by saving the current setting of
3423C<$single> in the C<@stack> package global; if this exceeds the value in
3424C<$deep>, C<sub> automatically turns on printing of the current depth by
3425setting the 4 bit in C<$single>. In any case, it keeps the current setting
3426of stop/don't stop on entry to subs set as it currently is set.
3427
3428=head3 C<caller()> support
3429
3430If C<caller()> is called from the package C<DB>, it provides some
3431additional data, in the following order:
3432
3433=over 4
3434
3435=item * C<$package>
3436
3437The package name the sub was in
3438
3439=item * C<$filename>
3440
3441The filename it was defined in
3442
3443=item * C<$line>
3444
3445The line number it was defined on
3446
3447=item * C<$subroutine>
3448
3449The subroutine name; C<'(eval)'> if an C<eval>().
3450
3451=item * C<$hasargs>
3452
34531 if it has arguments, 0 if not
3454
3455=item * C<$wantarray>
3456
34571 if array context, 0 if scalar context
3458
3459=item * C<$evaltext>
3460
3461The C<eval>() text, if any (undefined for C<eval BLOCK>)
3462
3463=item * C<$is_require>
3464
3465frame was created by a C<use> or C<require> statement
3466
3467=item * C<$hints>
3468
3469pragma information; subject to change between versions
3470
3471=item * C<$bitmask>
3472
3473pragma information: subject to change between versions
3474
3475=item * C<@DB::args>
3476
3477arguments with which the subroutine was invoked
3478
3479=back
3480
3481=cut
d338d6fe 3482
d12a4851 3483sub sub {
69893cff
RGS
3484
3485 # Whether or not the autoloader was running, a scalar to put the
3486 # sub's return value in (if needed), and an array to put the sub's
3487 # return value in (if needed).
e22ea7cc 3488 my ( $al, $ret, @ret ) = "";
69893cff
RGS
3489
3490 # If the last ten characters are C'::AUTOLOAD', note we've traced
3491 # into AUTOLOAD for $sub.
e22ea7cc
RF
3492 if ( length($sub) > 10 && substr( $sub, -10, 10 ) eq '::AUTOLOAD' ) {
3493 $al = " for $$sub";
d12a4851 3494 }
69893cff
RGS
3495
3496 # We stack the stack pointer and then increment it to protect us
3497 # from a situation that might unwind a whole bunch of call frames
3498 # at once. Localizing the stack pointer means that it will automatically
3499 # unwind the same amount when multiple stack frames are unwound.
e22ea7cc 3500 local $stack_depth = $stack_depth + 1; # Protect from non-local exits
69893cff
RGS
3501
3502 # Expand @stack.
d12a4851 3503 $#stack = $stack_depth;
69893cff
RGS
3504
3505 # Save current single-step setting.
d12a4851 3506 $stack[-1] = $single;
69893cff 3507
e22ea7cc 3508 # Turn off all flags except single-stepping.
d12a4851 3509 $single &= 1;
69893cff
RGS
3510
3511 # If we've gotten really deeply recursed, turn on the flag that will
3512 # make us stop with the 'deep recursion' message.
d12a4851 3513 $single |= 4 if $stack_depth == $deep;
69893cff
RGS
3514
3515 # If frame messages are on ...
3516 (
3517 $frame & 4 # Extended frame entry message
e22ea7cc
RF
3518 ? (
3519 print_lineinfo( ' ' x ( $stack_depth - 1 ), "in " ),
69893cff 3520
e22ea7cc 3521 # Why -1? But it works! :-(
69893cff
RGS
3522 # Because print_trace will call add 1 to it and then call
3523 # dump_trace; this results in our skipping -1+1 = 0 stack frames
3524 # in dump_trace.
e22ea7cc
RF
3525 print_trace( $LINEINFO, -1, 1, 1, "$sub$al" )
3526 )
3527 : print_lineinfo( ' ' x ( $stack_depth - 1 ), "entering $sub$al\n" )
3528
69893cff 3529 # standard frame entry message
e22ea7cc
RF
3530 )
3531 if $frame;
69893cff
RGS
3532
3533 # Determine the sub's return type,and capture approppriately.
d12a4851 3534 if (wantarray) {
e22ea7cc 3535
69893cff
RGS
3536 # Called in array context. call sub and capture output.
3537 # DB::DB will recursively get control again if appropriate; we'll come
3538 # back here when the sub is finished.
d12a4851 3539 if ($assertion) {
e22ea7cc
RF
3540 $assertion = 0;
3541 eval { @ret = &$sub; };
3542 if ($@) {
3543 print $OUT $@;
3544 $signal = 1 unless $warnassertions;
3545 }
3546 }
3547 else {
69893cff 3548 @ret = &$sub;
69893cff 3549 }
69893cff
RGS
3550
3551 # Pop the single-step value back off the stack.
e22ea7cc 3552 $single |= $stack[ $stack_depth-- ];
69893cff
RGS
3553
3554 # Check for exit trace messages...
e22ea7cc
RF
3555 (
3556 $frame & 4 # Extended exit message
3557 ? (
3558 print_lineinfo( ' ' x $stack_depth, "out " ),
3559 print_trace( $LINEINFO, -1, 1, 1, "$sub$al" )
3560 )
3561 : print_lineinfo( ' ' x $stack_depth, "exited $sub$al\n" )
3562
69893cff 3563 # Standard exit message
e22ea7cc
RF
3564 )
3565 if $frame & 2;
69893cff
RGS
3566
3567 # Print the return info if we need to.
e22ea7cc
RF
3568 if ( $doret eq $stack_depth or $frame & 16 ) {
3569
69893cff 3570 # Turn off output record separator.
e22ea7cc
RF
3571 local $\ = '';
3572 my $fh = ( $doret eq $stack_depth ? $OUT : $LINEINFO );
69893cff
RGS
3573
3574 # Indent if we're printing because of $frame tracing.
e22ea7cc 3575 print $fh ' ' x $stack_depth if $frame & 16;
69893cff
RGS
3576
3577 # Print the return value.
e22ea7cc
RF
3578 print $fh "list context return from $sub:\n";
3579 dumpit( $fh, \@ret );
69893cff
RGS
3580
3581 # And don't print it again.
e22ea7cc 3582 $doret = -2;
69893cff 3583 } ## end if ($doret eq $stack_depth...
e22ea7cc
RF
3584 # And we have to return the return value now.
3585 @ret;
69893cff
RGS
3586 } ## end if (wantarray)
3587
3588 # Scalar context.
3589 else {
d12a4851 3590 if ($assertion) {
e22ea7cc
RF
3591 $assertion = 0;
3592 eval {
3593
3594 # Save the value if it's wanted at all.
3595 $ret = &$sub;
3596 };
3597 if ($@) {
3598 print $OUT $@;
3599 $signal = 1 unless $warnassertions;
3600 }
3601 $ret = undef unless defined wantarray;
69893cff 3602 }
69893cff 3603 else {
e22ea7cc
RF
3604 if ( defined wantarray ) {
3605
3606 # Save the value if it's wanted at all.
3607 $ret = &$sub;
3608 }
3609 else {
3610
3611 # Void return, explicitly.
3612 &$sub;
3613 undef $ret;
3614 }
3615 } # if assertion
69893cff
RGS
3616
3617 # Pop the single-step value off the stack.
e22ea7cc 3618 $single |= $stack[ $stack_depth-- ];
69893cff
RGS
3619
3620 # If we're doing exit messages...
e22ea7cc
RF
3621 (
3622 $frame & 4 # Extended messsages
3623 ? (
3624 print_lineinfo( ' ' x $stack_depth, "out " ),
3625 print_trace( $LINEINFO, -1, 1, 1, "$sub$al" )
3626 )
3627 : print_lineinfo( ' ' x $stack_depth, "exited $sub$al\n" )
3628
3629 # Standard messages
3630 )
3631 if $frame & 2;
69893cff
RGS
3632
3633 # If we are supposed to show the return value... same as before.
e22ea7cc
RF
3634 if ( $doret eq $stack_depth or $frame & 16 and defined wantarray ) {
3635 local $\ = '';
3636 my $fh = ( $doret eq $stack_depth ? $OUT : $LINEINFO );
3637 print $fh ( ' ' x $stack_depth ) if $frame & 16;
3638 print $fh (
3639 defined wantarray
3640 ? "scalar context return from $sub: "
3641 : "void context return from $sub\n"
3642 );
3643 dumpit( $fh, $ret ) if defined wantarray;
3644 $doret = -2;
69893cff
RGS
3645 } ## end if ($doret eq $stack_depth...
3646
3647 # Return the appropriate scalar value.
e22ea7cc 3648 $ret;
69893cff
RGS
3649 } ## end else [ if (wantarray)
3650} ## end sub sub
3651
3652=head1 EXTENDED COMMAND HANDLING AND THE COMMAND API
3653
3654In Perl 5.8.0, there was a major realignment of the commands and what they did,
3655Most of the changes were to systematize the command structure and to eliminate
3656commands that threw away user input without checking.
3657
3658The following sections describe the code added to make it easy to support
3659multiple command sets with conflicting command names. This section is a start
3660at unifying all command processing to make it simpler to develop commands.
3661
3662Note that all the cmd_[a-zA-Z] subroutines require the command name, a line
3663number, and C<$dbline> (the current line) as arguments.
3664
3665Support functions in this section which have multiple modes of failure C<die>
3666on error; the rest simply return a false value.
3667
3668The user-interface functions (all of the C<cmd_*> functions) just output
3669error messages.
3670
3671=head2 C<%set>
3672
3673The C<%set> hash defines the mapping from command letter to subroutine
3674name suffix.
3675
3676C<%set> is a two-level hash, indexed by set name and then by command name.
3677Note that trying to set the CommandSet to 'foobar' simply results in the
36785.8.0 command set being used, since there's no top-level entry for 'foobar'.
3679
3680=cut
d338d6fe 3681
d12a4851 3682### The API section
f1583d8f 3683
e22ea7cc
RF
3684my %set = ( #
3685 'pre580' => {
3686 'a' => 'pre580_a',
3687 'A' => 'pre580_null',
3688 'b' => 'pre580_b',
3689 'B' => 'pre580_null',
3690 'd' => 'pre580_null',
3691 'D' => 'pre580_D',
3692 'h' => 'pre580_h',
3693 'M' => 'pre580_null',
3694 'O' => 'o',
3695 'o' => 'pre580_null',
3696 'v' => 'M',
3697 'w' => 'v',
3698 'W' => 'pre580_W',
69893cff 3699 },
e22ea7cc
RF
3700 'pre590' => {
3701 '<' => 'pre590_prepost',
3702 '<<' => 'pre590_prepost',
3703 '>' => 'pre590_prepost',
3704 '>>' => 'pre590_prepost',
3705 '{' => 'pre590_prepost',
3706 '{{' => 'pre590_prepost',
69893cff 3707 },
d12a4851 3708);
492652be 3709
69893cff
RGS
3710=head2 C<cmd_wrapper()> (API)
3711
3712C<cmd_wrapper()> allows the debugger to switch command sets
3713depending on the value of the C<CommandSet> option.
3714
3715It tries to look up the command in the X<C<%set>> package-level I<lexical>
3716(which means external entities can't fiddle with it) and create the name of
3717the sub to call based on the value found in the hash (if it's there). I<All>
3718of the commands to be handled in a set have to be added to C<%set>; if they
3719aren't found, the 5.8.0 equivalent is called (if there is one).
3720
3721This code uses symbolic references.
3722
3723=cut
3724
d12a4851 3725sub cmd_wrapper {
69893cff
RGS
3726 my $cmd = shift;
3727 my $line = shift;
3728 my $dblineno = shift;
3729
e22ea7cc 3730 # Assemble the command subroutine's name by looking up the
69893cff
RGS
3731 # command set and command name in %set. If we can't find it,
3732 # default to the older version of the command.
3733 my $call = 'cmd_'
e22ea7cc
RF
3734 . ( $set{$CommandSet}{$cmd}
3735 || ( $cmd =~ /^[<>{]+/o ? 'prepost' : $cmd ) );
69893cff
RGS
3736
3737 # Call the command subroutine, call it by name.
e22ea7cc
RF
3738 return &$call( $cmd, $line, $dblineno );
3739} ## end sub cmd_wrapper
492652be 3740
69893cff
RGS
3741=head3 C<cmd_a> (command)
3742
3743The C<a> command handles pre-execution actions. These are associated with a
3744particular line, so they're stored in C<%dbline>. We default to the current
3745line if none is specified.
3746
3747=cut
3748
d12a4851 3749sub cmd_a {
e22ea7cc
RF
3750 my $cmd = shift;
3751 my $line = shift || ''; # [.|line] expr
3752 my $dbline = shift;
69893cff
RGS
3753
3754 # If it's dot (here), or not all digits, use the current line.
3755 $line =~ s/^(\.|(?:[^\d]))/$dbline/;
3756
e22ea7cc
RF
3757 # Should be a line number followed by an expression.
3758 if ( $line =~ /^\s*(\d*)\s*(\S.+)/ ) {
3759 my ( $lineno, $expr ) = ( $1, $2 );
69893cff
RGS
3760
3761 # If we have an expression ...
e22ea7cc
RF
3762 if ( length $expr ) {
3763
69893cff 3764 # ... but the line isn't breakable, complain.
e22ea7cc
RF
3765 if ( $dbline[$lineno] == 0 ) {
3766 print $OUT
3767 "Line $lineno($dbline[$lineno]) does not have an action?\n";
3768 }
69893cff 3769 else {
e22ea7cc 3770
69893cff
RGS
3771 # It's executable. Record that the line has an action.
3772 $had_breakpoints{$filename} |= 2;
3773
3774 # Remove any action, temp breakpoint, etc.
3775 $dbline{$lineno} =~ s/\0[^\0]*//;
3776
3777 # Add the action to the line.
3778 $dbline{$lineno} .= "\0" . action($expr);
3779 }
3780 } ## end if (length $expr)
3781 } ## end if ($line =~ /^\s*(\d*)\s*(\S.+)/)
3782 else {
e22ea7cc 3783
69893cff 3784 # Syntax wrong.
e22ea7cc
RF
3785 print $OUT
3786 "Adding an action requires an optional lineno and an expression\n"
3787 ; # hint
69893cff
RGS
3788 }
3789} ## end sub cmd_a
3790
3791=head3 C<cmd_A> (command)
3792
3793Delete actions. Similar to above, except the delete code is in a separate
3794subroutine, C<delete_action>.
3795
3796=cut
492652be 3797
d12a4851 3798sub cmd_A {
e22ea7cc 3799 my $cmd = shift;
69893cff 3800 my $line = shift || '';
e22ea7cc 3801 my $dbline = shift;
69893cff
RGS
3802
3803 # Dot is this line.
3804 $line =~ s/^\./$dbline/;
3805
3806 # Call delete_action with a null param to delete them all.
3807 # The '1' forces the eval to be true. It'll be false only
3808 # if delete_action blows up for some reason, in which case
3809 # we print $@ and get out.
e22ea7cc 3810 if ( $line eq '*' ) {
69893cff 3811 eval { &delete_action(); 1 } or print $OUT $@ and return;
e22ea7cc
RF
3812 }
3813
69893cff
RGS
3814 # There's a real line number. Pass it to delete_action.
3815 # Error trapping is as above.
e22ea7cc 3816 elsif ( $line =~ /^(\S.*)/ ) {
69893cff 3817 eval { &delete_action($1); 1 } or print $OUT $@ and return;
e22ea7cc 3818 }
69893cff
RGS
3819
3820 # Swing and a miss. Bad syntax.
3821 else {
e22ea7cc
RF
3822 print $OUT
3823 "Deleting an action requires a line number, or '*' for all\n" ; # hint
69893cff
RGS
3824 }
3825} ## end sub cmd_A
3826
3827=head3 C<delete_action> (API)
3828
3829C<delete_action> accepts either a line number or C<undef>. If a line number
3830is specified, we check for the line being executable (if it's not, it
3831couldn't have had an action). If it is, we just take the action off (this
3832will get any kind of an action, including breakpoints).
3833
3834=cut
492652be 3835
d12a4851 3836sub delete_action {
e22ea7cc
RF
3837 my $i = shift;
3838 if ( defined($i) ) {
3839
69893cff
RGS
3840 # Can there be one?
3841 die "Line $i has no action .\n" if $dbline[$i] == 0;
3842
3843 # Nuke whatever's there.
e22ea7cc 3844 $dbline{$i} =~ s/\0[^\0]*//; # \^a
69893cff 3845 delete $dbline{$i} if $dbline{$i} eq '';
e22ea7cc
RF
3846 }
3847 else {
69893cff 3848 print $OUT "Deleting all actions...\n";
e22ea7cc
RF
3849 for my $file ( keys %had_breakpoints ) {
3850 local *dbline = $main::{ '_<' . $file };
69893cff
RGS
3851 my $max = $#dbline;
3852 my $was;
e22ea7cc
RF
3853 for ( $i = 1 ; $i <= $max ; $i++ ) {
3854 if ( defined $dbline{$i} ) {
3855 $dbline{$i} =~ s/\0[^\0]*//;
3856 delete $dbline{$i} if $dbline{$i} eq '';
3857 }
3858 unless ( $had_breakpoints{$file} &= ~2 ) {
3859 delete $had_breakpoints{$file};
69893cff
RGS
3860 }
3861 } ## end for ($i = 1 ; $i <= $max...
3862 } ## end for my $file (keys %had_breakpoints)
3863 } ## end else [ if (defined($i))
3864} ## end sub delete_action
3865
3866=head3 C<cmd_b> (command)
3867
3868Set breakpoints. Since breakpoints can be set in so many places, in so many
3869ways, conditionally or not, the breakpoint code is kind of complex. Mostly,
3870we try to parse the command type, and then shuttle it off to an appropriate
3871subroutine to actually do the work of setting the breakpoint in the right
3872place.
3873
3874=cut
492652be 3875
d12a4851 3876sub cmd_b {
e22ea7cc
RF
3877 my $cmd = shift;
3878 my $line = shift; # [.|line] [cond]
3879 my $dbline = shift;
69893cff
RGS
3880
3881 # Make . the current line number if it's there..
3882 $line =~ s/^\./$dbline/;
3883
e22ea7cc
RF
3884 # No line number, no condition. Simple break on current line.
3885 if ( $line =~ /^\s*$/ ) {
3886 &cmd_b_line( $dbline, 1 );
3887 }
69893cff
RGS
3888
3889 # Break on load for a file.
e22ea7cc
RF
3890 elsif ( $line =~ /^load\b\s*(.*)/ ) {
3891 my $file = $1;
69893cff
RGS
3892 $file =~ s/\s+$//;
3893 &cmd_b_load($file);
e22ea7cc 3894 }
69893cff
RGS
3895
3896 # b compile|postpone <some sub> [<condition>]
e22ea7cc 3897 # The interpreter actually traps this one for us; we just put the
69893cff 3898 # necessary condition in the %postponed hash.
e22ea7cc
RF
3899 elsif ( $line =~ /^(postpone|compile)\b\s*([':A-Za-z_][':\w]*)\s*(.*)/ ) {
3900
69893cff
RGS
3901 # Capture the condition if there is one. Make it true if none.
3902 my $cond = length $3 ? $3 : '1';
3903
3904 # Save the sub name and set $break to 1 if $1 was 'postpone', 0
3905 # if it was 'compile'.
e22ea7cc 3906 my ( $subname, $break ) = ( $2, $1 eq 'postpone' );
69893cff
RGS
3907
3908 # De-Perl4-ify the name - ' separators to ::.
3909 $subname =~ s/\'/::/g;
3910
3911 # Qualify it into the current package unless it's already qualified.
3912 $subname = "${'package'}::" . $subname unless $subname =~ /::/;
3913
3914 # Add main if it starts with ::.
e22ea7cc 3915 $subname = "main" . $subname if substr( $subname, 0, 2 ) eq "::";
69893cff
RGS
3916
3917 # Save the break type for this sub.
3918 $postponed{$subname} = $break ? "break +0 if $cond" : "compile";
3919 } ## end elsif ($line =~ ...
3920
3921 # b <sub name> [<condition>]
e22ea7cc
RF
3922 elsif ( $line =~ /^([':A-Za-z_][':\w]*(?:\[.*\])?)\s*(.*)/ ) {
3923
69893cff
RGS
3924 #
3925 $subname = $1;
3926 $cond = length $2 ? $2 : '1';
e22ea7cc
RF
3927 &cmd_b_sub( $subname, $cond );
3928 }
69893cff
RGS
3929
3930 # b <line> [<condition>].
e22ea7cc
RF
3931 elsif ( $line =~ /^(\d*)\s*(.*)/ ) {
3932
69893cff
RGS
3933 # Capture the line. If none, it's the current line.
3934 $line = $1 || $dbline;
3935
3936 # If there's no condition, make it '1'.
3937 $cond = length $2 ? $2 : '1';
3938
3939 # Break on line.
e22ea7cc
RF
3940 &cmd_b_line( $line, $cond );
3941 }
69893cff
RGS
3942
3943 # Line didn't make sense.
3944 else {
3945 print "confused by line($line)?\n";
3946 }
3947} ## end sub cmd_b
3948
3949=head3 C<break_on_load> (API)
3950
3951We want to break when this file is loaded. Mark this file in the
3952C<%break_on_load> hash, and note that it has a breakpoint in
3953C<%had_breakpoints>.
3954
3955=cut
3956
d12a4851 3957sub break_on_load {
e22ea7cc
RF
3958 my $file = shift;
3959 $break_on_load{$file} = 1;
3960 $had_breakpoints{$file} |= 1;
d12a4851 3961}
f1583d8f 3962
69893cff
RGS
3963=head3 C<report_break_on_load> (API)
3964
3965Gives us an array of filenames that are set to break on load. Note that
3966only files with break-on-load are in here, so simply showing the keys
3967suffices.
3968
3969=cut
3970
d12a4851 3971sub report_break_on_load {
e22ea7cc 3972 sort keys %break_on_load;
d12a4851 3973}
f1583d8f 3974
69893cff
RGS
3975=head3 C<cmd_b_load> (command)
3976
3977We take the file passed in and try to find it in C<%INC> (which maps modules
3978to files they came from). We mark those files for break-on-load via
3979C<break_on_load> and then report that it was done.
3980
3981=cut
3982
d12a4851 3983sub cmd_b_load {
e22ea7cc
RF
3984 my $file = shift;
3985 my @files;
69893cff
RGS
3986
3987 # This is a block because that way we can use a redo inside it
3988 # even without there being any looping structure at all outside it.
e22ea7cc
RF
3989 {
3990
69893cff 3991 # Save short name and full path if found.
e22ea7cc
RF
3992 push @files, $file;
3993 push @files, $::INC{$file} if $::INC{$file};
69893cff 3994
e22ea7cc 3995 # Tack on .pm and do it again unless there was a '.' in the name
69893cff 3996 # already.
e22ea7cc
RF
3997 $file .= '.pm', redo unless $file =~ /\./;
3998 }
69893cff
RGS
3999
4000 # Do the real work here.
e22ea7cc 4001 break_on_load($_) for @files;
69893cff
RGS
4002
4003 # All the files that have break-on-load breakpoints.
e22ea7cc 4004 @files = report_break_on_load;
69893cff
RGS
4005
4006 # Normalize for the purposes of our printing this.
e22ea7cc
RF
4007 local $\ = '';
4008 local $" = ' ';
4009 print $OUT "Will stop on load of `@files'.\n";
4010} ## end sub cmd_b_load
f1583d8f 4011
69893cff
RGS
4012=head3 C<$filename_error> (API package global)
4013
4014Several of the functions we need to implement in the API need to work both
4015on the current file and on other files. We don't want to duplicate code, so
4016C<$filename_error> is used to contain the name of the file that's being
4017worked on (if it's not the current one).
4018
4019We can now build functions in pairs: the basic function works on the current
4020file, and uses C<$filename_error> as part of its error message. Since this is
4021initialized to C<''>, no filename will appear when we are working on the
4022current file.
4023
4024The second function is a wrapper which does the following:
4025
4026=over 4
4027
4028=item * Localizes C<$filename_error> and sets it to the name of the file to be processed.
4029
4030=item * Localizes the C<*dbline> glob and reassigns it to point to the file we want to process.
4031
4032=item * Calls the first function.
4033
4034The first function works on the "current" (i.e., the one we changed to) file,
4035and prints C<$filename_error> in the error message (the name of the other file)
4036if it needs to. When the functions return, C<*dbline> is restored to point to the actual current file (the one we're executing in) and C<$filename_error> is
4037restored to C<''>. This restores everything to the way it was before the
4038second function was called at all.
4039
4040See the comments in C<breakable_line> and C<breakable_line_in_file> for more
4041details.
4042
4043=back
4044
4045=cut
4046
d12a4851 4047$filename_error = '';
f1583d8f 4048
69893cff
RGS
4049=head3 breakable_line($from, $to) (API)
4050
4051The subroutine decides whether or not a line in the current file is breakable.
4052It walks through C<@dbline> within the range of lines specified, looking for
4053the first line that is breakable.
4054
4055If C<$to> is greater than C<$from>, the search moves forwards, finding the
4056first line I<after> C<$to> that's breakable, if there is one.
4057
4058If C<$from> is greater than C<$to>, the search goes I<backwards>, finding the
4059first line I<before> C<$to> that's breakable, if there is one.
4060
4061=cut
4062
d12a4851 4063sub breakable_line {
69893cff 4064
e22ea7cc 4065 my ( $from, $to ) = @_;
69893cff
RGS
4066
4067 # $i is the start point. (Where are the FORTRAN programs of yesteryear?)
e22ea7cc 4068 my $i = $from;
69893cff
RGS
4069
4070 # If there are at least 2 arguments, we're trying to search a range.
e22ea7cc 4071 if ( @_ >= 2 ) {
69893cff
RGS
4072
4073 # $delta is positive for a forward search, negative for a backward one.
e22ea7cc 4074 my $delta = $from < $to ? +1 : -1;
69893cff
RGS
4075
4076 # Keep us from running off the ends of the file.
e22ea7cc 4077 my $limit = $delta > 0 ? $#dbline : 1;
69893cff
RGS
4078
4079 # Clever test. If you're a mathematician, it's obvious why this
4080 # test works. If not:
4081 # If $delta is positive (going forward), $limit will be $#dbline.
4082 # If $to is less than $limit, ($limit - $to) will be positive, times
4083 # $delta of 1 (positive), so the result is > 0 and we should use $to
e22ea7cc 4084 # as the stopping point.
69893cff
RGS
4085 #
4086 # If $to is greater than $limit, ($limit - $to) is negative,
e22ea7cc 4087 # times $delta of 1 (positive), so the result is < 0 and we should
69893cff
RGS
4088 # use $limit ($#dbline) as the stopping point.
4089 #
e22ea7cc 4090 # If $delta is negative (going backward), $limit will be 1.
69893cff
RGS
4091 # If $to is zero, ($limit - $to) will be 1, times $delta of -1
4092 # (negative) so the result is > 0, and we use $to as the stopping
4093 # point.
4094 #
4095 # If $to is less than zero, ($limit - $to) will be positive,
e22ea7cc
RF
4096 # times $delta of -1 (negative), so the result is not > 0, and
4097 # we use $limit (1) as the stopping point.
69893cff
RGS
4098 #
4099 # If $to is 1, ($limit - $to) will zero, times $delta of -1
e22ea7cc 4100 # (negative), still giving zero; the result is not > 0, and
69893cff
RGS
4101 # we use $limit (1) as the stopping point.
4102 #
4103 # if $to is >1, ($limit - $to) will be negative, times $delta of -1
4104 # (negative), giving a positive (>0) value, so we'll set $limit to
4105 # $to.
e22ea7cc
RF
4106
4107 $limit = $to if ( $limit - $to ) * $delta > 0;
69893cff
RGS
4108
4109 # The real search loop.
4110 # $i starts at $from (the point we want to start searching from).
4111 # We move through @dbline in the appropriate direction (determined
e22ea7cc
RF
4112 # by $delta: either -1 (back) or +1 (ahead).
4113 # We stay in as long as we haven't hit an executable line
69893cff
RGS
4114 # ($dbline[$i] == 0 means not executable) and we haven't reached
4115 # the limit yet (test similar to the above).
e22ea7cc
RF
4116 $i += $delta while $dbline[$i] == 0 and ( $limit - $i ) * $delta > 0;
4117
69893cff
RGS
4118 } ## end if (@_ >= 2)
4119
4120 # If $i points to a line that is executable, return that.
e22ea7cc 4121 return $i unless $dbline[$i] == 0;
69893cff
RGS
4122
4123 # Format the message and print it: no breakable lines in range.
e22ea7cc
RF
4124 my ( $pl, $upto ) = ( '', '' );
4125 ( $pl, $upto ) = ( 's', "..$to" ) if @_ >= 2 and $from != $to;
69893cff
RGS
4126
4127 # If there's a filename in filename_error, we'll see it.
4128 # If not, not.
e22ea7cc 4129 die "Line$pl $from$upto$filename_error not breakable\n";
69893cff
RGS
4130} ## end sub breakable_line
4131
4132=head3 breakable_line_in_filename($file, $from, $to) (API)
4133
4134Like C<breakable_line>, but look in another file.
4135
4136=cut
f1583d8f 4137
d12a4851 4138sub breakable_line_in_filename {
e22ea7cc 4139
69893cff 4140 # Capture the file name.
e22ea7cc 4141 my ($f) = shift;
69893cff
RGS
4142
4143 # Swap the magic line array over there temporarily.
e22ea7cc 4144 local *dbline = $main::{ '_<' . $f };
69893cff
RGS
4145
4146 # If there's an error, it's in this other file.
e22ea7cc 4147 local $filename_error = " of `$f'";
69893cff
RGS
4148
4149 # Find the breakable line.
e22ea7cc 4150 breakable_line(@_);
69893cff
RGS
4151
4152 # *dbline and $filename_error get restored when this block ends.
4153
4154} ## end sub breakable_line_in_filename
4155
4156=head3 break_on_line(lineno, [condition]) (API)
4157
4158Adds a breakpoint with the specified condition (or 1 if no condition was
4159specified) to the specified line. Dies if it can't.
4160
4161=cut
f1583d8f 4162
d12a4851 4163sub break_on_line {
e22ea7cc 4164 my ( $i, $cond ) = @_;
69893cff
RGS
4165
4166 # Always true if no condition supplied.
e22ea7cc 4167 $cond = 1 unless @_ >= 2;
69893cff 4168
e22ea7cc
RF
4169 my $inii = $i;
4170 my $after = '';
4171 my $pl = '';
69893cff
RGS
4172
4173 # Woops, not a breakable line. $filename_error allows us to say
4174 # if it was in a different file.
e22ea7cc 4175 die "Line $i$filename_error not breakable.\n" if $dbline[$i] == 0;
69893cff
RGS
4176
4177 # Mark this file as having breakpoints in it.
e22ea7cc
RF
4178 $had_breakpoints{$filename} |= 1;
4179
4180 # If there is an action or condition here already ...
4181 if ( $dbline{$i} ) {
69893cff 4182
69893cff 4183 # ... swap this condition for the existing one.
e22ea7cc 4184 $dbline{$i} =~ s/^[^\0]*/$cond/;
69893cff 4185 }
e22ea7cc
RF
4186 else {
4187
69893cff 4188 # Nothing here - just add the condition.
e22ea7cc 4189 $dbline{$i} = $cond;
69893cff
RGS
4190 }
4191} ## end sub break_on_line
4192
4193=head3 cmd_b_line(line, [condition]) (command)
4194
4195Wrapper for C<break_on_line>. Prints the failure message if it
4196doesn't work.
4197
4198=cut
f1583d8f 4199
d12a4851 4200sub cmd_b_line {
e22ea7cc
RF
4201 eval { break_on_line(@_); 1 } or do {
4202 local $\ = '';
4203 print $OUT $@ and return;
4204 };
69893cff
RGS
4205} ## end sub cmd_b_line
4206
4207=head3 break_on_filename_line(file, line, [condition]) (API)
4208
4209Switches to the file specified and then calls C<break_on_line> to set
4210the breakpoint.
4211
4212=cut
f1583d8f 4213
d12a4851 4214sub break_on_filename_line {
e22ea7cc 4215 my ( $f, $i, $cond ) = @_;
69893cff
RGS
4216
4217 # Always true if condition left off.
e22ea7cc 4218 $cond = 1 unless @_ >= 3;
69893cff
RGS
4219
4220 # Switch the magical hash temporarily.
e22ea7cc 4221 local *dbline = $main::{ '_<' . $f };
69893cff
RGS
4222
4223 # Localize the variables that break_on_line uses to make its message.
e22ea7cc
RF
4224 local $filename_error = " of `$f'";
4225 local $filename = $f;
69893cff
RGS
4226
4227 # Add the breakpoint.
e22ea7cc 4228 break_on_line( $i, $cond );
69893cff
RGS
4229} ## end sub break_on_filename_line
4230
4231=head3 break_on_filename_line_range(file, from, to, [condition]) (API)
4232
4233Switch to another file, search the range of lines specified for an
4234executable one, and put a breakpoint on the first one you find.
4235
4236=cut
f1583d8f 4237
d12a4851 4238sub break_on_filename_line_range {
e22ea7cc 4239 my ( $f, $from, $to, $cond ) = @_;
69893cff
RGS
4240
4241 # Find a breakable line if there is one.
e22ea7cc 4242 my $i = breakable_line_in_filename( $f, $from, $to );
69893cff 4243
e22ea7cc
RF
4244 # Always true if missing.
4245 $cond = 1 unless @_ >= 3;
69893cff
RGS
4246
4247 # Add the breakpoint.
e22ea7cc 4248 break_on_filename_line( $f, $i, $cond );
69893cff
RGS
4249} ## end sub break_on_filename_line_range
4250
4251=head3 subroutine_filename_lines(subname, [condition]) (API)
4252
4253Search for a subroutine within a given file. The condition is ignored.
4254Uses C<find_sub> to locate the desired subroutine.
4255
4256=cut
f1583d8f 4257
d12a4851 4258sub subroutine_filename_lines {
e22ea7cc 4259 my ( $subname, $cond ) = @_;
69893cff
RGS
4260
4261 # Returned value from find_sub() is fullpathname:startline-endline.
4262 # The match creates the list (fullpathname, start, end). Falling off
4263 # the end of the subroutine returns this implicitly.
e22ea7cc 4264 find_sub($subname) =~ /^(.*):(\d+)-(\d+)$/;
69893cff
RGS
4265} ## end sub subroutine_filename_lines
4266
4267=head3 break_subroutine(subname) (API)
4268
4269Places a break on the first line possible in the specified subroutine. Uses
4270C<subroutine_filename_lines> to find the subroutine, and
4271C<break_on_filename_line_range> to place the break.
4272
4273=cut
f1583d8f 4274
d12a4851 4275sub break_subroutine {
e22ea7cc 4276 my $subname = shift;
69893cff
RGS
4277
4278 # Get filename, start, and end.
e22ea7cc
RF
4279 my ( $file, $s, $e ) = subroutine_filename_lines($subname)
4280 or die "Subroutine $subname not found.\n";
69893cff
RGS
4281
4282 # Null condition changes to '1' (always true).
e22ea7cc 4283 $cond = 1 unless @_ >= 2;
69893cff
RGS
4284
4285 # Put a break the first place possible in the range of lines
4286 # that make up this subroutine.
e22ea7cc 4287 break_on_filename_line_range( $file, $s, $e, @_ );
69893cff
RGS
4288} ## end sub break_subroutine
4289
4290=head3 cmd_b_sub(subname, [condition]) (command)
4291
4292We take the incoming subroutine name and fully-qualify it as best we can.
4293
4294=over 4
4295
4296=item 1. If it's already fully-qualified, leave it alone.
4297
4298=item 2. Try putting it in the current package.
4299
4300=item 3. If it's not there, try putting it in CORE::GLOBAL if it exists there.
4301
4302=item 4. If it starts with '::', put it in 'main::'.
4303
4304=back
4305
4306After all this cleanup, we call C<break_subroutine> to try to set the
4307breakpoint.
4308
4309=cut
f1583d8f 4310
d12a4851 4311sub cmd_b_sub {
e22ea7cc 4312 my ( $subname, $cond ) = @_;
69893cff
RGS
4313
4314 # Add always-true condition if we have none.
e22ea7cc 4315 $cond = 1 unless @_ >= 2;
69893cff 4316
e22ea7cc 4317 # If the subname isn't a code reference, qualify it so that
69893cff 4318 # break_subroutine() will work right.
e22ea7cc
RF
4319 unless ( ref $subname eq 'CODE' ) {
4320
69893cff 4321 # Not Perl4.
e22ea7cc
RF
4322 $subname =~ s/\'/::/g;
4323 my $s = $subname;
69893cff
RGS
4324
4325 # Put it in this package unless it's already qualified.
e22ea7cc
RF
4326 $subname = "${'package'}::" . $subname
4327 unless $subname =~ /::/;
69893cff
RGS
4328
4329 # Requalify it into CORE::GLOBAL if qualifying it into this
4330 # package resulted in its not being defined, but only do so
4331 # if it really is in CORE::GLOBAL.
e22ea7cc
RF
4332 $subname = "CORE::GLOBAL::$s"
4333 if not defined &$subname
4334 and $s !~ /::/
4335 and defined &{"CORE::GLOBAL::$s"};
69893cff
RGS
4336
4337 # Put it in package 'main' if it has a leading ::.
e22ea7cc 4338 $subname = "main" . $subname if substr( $subname, 0, 2 ) eq "::";
69893cff
RGS
4339
4340 } ## end unless (ref $subname eq 'CODE')
4341
4342 # Try to set the breakpoint.
e22ea7cc
RF
4343 eval { break_subroutine( $subname, $cond ); 1 } or do {
4344 local $\ = '';
4345 print $OUT $@ and return;
4346 }
69893cff
RGS
4347} ## end sub cmd_b_sub
4348
4349=head3 C<cmd_B> - delete breakpoint(s) (command)
4350
4351The command mostly parses the command line and tries to turn the argument
4352into a line spec. If it can't, it uses the current line. It then calls
4353C<delete_breakpoint> to actually do the work.
4354
4355If C<*> is specified, C<cmd_B> calls C<delete_breakpoint> with no arguments,
4356thereby deleting all the breakpoints.
4357
4358=cut
4359
4360sub cmd_B {
e22ea7cc 4361 my $cmd = shift;
69893cff 4362
e22ea7cc 4363 # No line spec? Use dbline.
69893cff 4364 # If there is one, use it if it's non-zero, or wipe it out if it is.
e22ea7cc
RF
4365 my $line = ( $_[0] =~ /^\./ ) ? $dbline : shift || '';
4366 my $dbline = shift;
69893cff
RGS
4367
4368 # If the line was dot, make the line the current one.
4369 $line =~ s/^\./$dbline/;
4370
4371 # If it's * we're deleting all the breakpoints.
e22ea7cc 4372 if ( $line eq '*' ) {
69893cff 4373 eval { &delete_breakpoint(); 1 } or print $OUT $@ and return;
e22ea7cc 4374 }
69893cff
RGS
4375
4376 # If there is a line spec, delete the breakpoint on that line.
e22ea7cc
RF
4377 elsif ( $line =~ /^(\S.*)/ ) {
4378 eval { &delete_breakpoint( $line || $dbline ); 1 } or do {
4379 local $\ = '';
4380 print $OUT $@ and return;
4381 };
69893cff
RGS
4382 } ## end elsif ($line =~ /^(\S.*)/)
4383
e22ea7cc 4384 # No line spec.
69893cff 4385 else {
e22ea7cc
RF
4386 print $OUT
4387 "Deleting a breakpoint requires a line number, or '*' for all\n"
4388 ; # hint
69893cff
RGS
4389 }
4390} ## end sub cmd_B
4391
4392=head3 delete_breakpoint([line]) (API)
f1583d8f 4393
69893cff
RGS
4394This actually does the work of deleting either a single breakpoint, or all
4395of them.
4396
4397For a single line, we look for it in C<@dbline>. If it's nonbreakable, we
4398just drop out with a message saying so. If it is, we remove the condition
4399part of the 'condition\0action' that says there's a breakpoint here. If,
4400after we've done that, there's nothing left, we delete the corresponding
4401line in C<%dbline> to signal that no action needs to be taken for this line.
4402
4403For all breakpoints, we iterate through the keys of C<%had_breakpoints>,
4404which lists all currently-loaded files which have breakpoints. We then look
4405at each line in each of these files, temporarily switching the C<%dbline>
4406and C<@dbline> structures to point to the files in question, and do what
4407we did in the single line case: delete the condition in C<@dbline>, and
4408delete the key in C<%dbline> if nothing's left.
4409
4410We then wholesale delete C<%postponed>, C<%postponed_file>, and
4411C<%break_on_load>, because these structures contain breakpoints for files
4412and code that haven't been loaded yet. We can just kill these off because there
4413are no magical debugger structures associated with them.
4414
4415=cut
f1583d8f 4416
d12a4851 4417sub delete_breakpoint {
e22ea7cc 4418 my $i = shift;
69893cff
RGS
4419
4420 # If we got a line, delete just that one.
e22ea7cc 4421 if ( defined($i) ) {
69893cff
RGS
4422
4423 # Woops. This line wasn't breakable at all.
e22ea7cc 4424 die "Line $i not breakable.\n" if $dbline[$i] == 0;
69893cff
RGS
4425
4426 # Kill the condition, but leave any action.
e22ea7cc 4427 $dbline{$i} =~ s/^[^\0]*//;
69893cff
RGS
4428
4429 # Remove the entry entirely if there's no action left.
e22ea7cc
RF
4430 delete $dbline{$i} if $dbline{$i} eq '';
4431 }
69893cff
RGS
4432
4433 # No line; delete them all.
e22ea7cc
RF
4434 else {
4435 print $OUT "Deleting all breakpoints...\n";
69893cff
RGS
4436
4437 # %had_breakpoints lists every file that had at least one
4438 # breakpoint in it.
e22ea7cc
RF
4439 for my $file ( keys %had_breakpoints ) {
4440
69893cff 4441 # Switch to the desired file temporarily.
e22ea7cc 4442 local *dbline = $main::{ '_<' . $file };
69893cff 4443
e22ea7cc
RF
4444 my $max = $#dbline;
4445 my $was;
69893cff
RGS
4446
4447 # For all lines in this file ...
e22ea7cc
RF
4448 for ( $i = 1 ; $i <= $max ; $i++ ) {
4449
69893cff 4450 # If there's a breakpoint or action on this line ...
e22ea7cc
RF
4451 if ( defined $dbline{$i} ) {
4452
69893cff 4453 # ... remove the breakpoint.
e22ea7cc
RF
4454 $dbline{$i} =~ s/^[^\0]+//;
4455 if ( $dbline{$i} =~ s/^\0?$// ) {
4456
69893cff 4457 # Remove the entry altogether if no action is there.
e22ea7cc
RF
4458 delete $dbline{$i};
4459 }
69893cff
RGS
4460 } ## end if (defined $dbline{$i...
4461 } ## end for ($i = 1 ; $i <= $max...
4462
4463 # If, after we turn off the "there were breakpoints in this file"
e22ea7cc 4464 # bit, the entry in %had_breakpoints for this file is zero,
69893cff 4465 # we should remove this file from the hash.
e22ea7cc
RF
4466 if ( not $had_breakpoints{$file} &= ~1 ) {
4467 delete $had_breakpoints{$file};
4468 }
69893cff
RGS
4469 } ## end for my $file (keys %had_breakpoints)
4470
4471 # Kill off all the other breakpoints that are waiting for files that
4472 # haven't been loaded yet.
e22ea7cc
RF
4473 undef %postponed;
4474 undef %postponed_file;
4475 undef %break_on_load;
69893cff
RGS
4476 } ## end else [ if (defined($i))
4477} ## end sub delete_breakpoint
4478
4479=head3 cmd_stop (command)
4480
4481This is meant to be part of the new command API, but it isn't called or used
4482anywhere else in the debugger. XXX It is probably meant for use in development
4483of new commands.
4484
4485=cut
4486
4487sub cmd_stop { # As on ^C, but not signal-safy.
4488 $signal = 1;
d12a4851 4489}
f1583d8f 4490
69893cff
RGS
4491=head3 C<cmd_h> - help command (command)
4492
4493Does the work of either
4494
4495=over 4
4496
4497=item * Showing all the debugger help
4498
4499=item * Showing help for a specific command
4500
4501=back
4502
4503=cut
4504
d12a4851 4505sub cmd_h {
e22ea7cc 4506 my $cmd = shift;
69893cff
RGS
4507
4508 # If we have no operand, assume null.
e22ea7cc 4509 my $line = shift || '';
69893cff
RGS
4510
4511 # 'h h'. Print the long-format help.
e22ea7cc 4512 if ( $line =~ /^h\s*/ ) {
69893cff 4513 print_help($help);
e22ea7cc 4514 }
69893cff
RGS
4515
4516 # 'h <something>'. Search for the command and print only its help.
e22ea7cc 4517 elsif ( $line =~ /^(\S.*)$/ ) {
69893cff
RGS
4518
4519 # support long commands; otherwise bogus errors
4520 # happen when you ask for h on <CR> for example
e22ea7cc
RF
4521 my $asked = $1; # the command requested
4522 # (for proper error message)
69893cff 4523
e22ea7cc
RF
4524 my $qasked = quotemeta($asked); # for searching; we don't
4525 # want to use it as a pattern.
4526 # XXX: finds CR but not <CR>
69893cff
RGS
4527
4528 # Search the help string for the command.
e22ea7cc
RF
4529 if (
4530 $help =~ /^ # Start of a line
69893cff
RGS
4531 <? # Optional '<'
4532 (?:[IB]<) # Optional markup
4533 $qasked # The requested command
e22ea7cc
RF
4534 /mx
4535 )
4536 {
4537
69893cff 4538 # It's there; pull it out and print it.
e22ea7cc
RF
4539 while (
4540 $help =~ /^
69893cff
RGS
4541 (<? # Optional '<'
4542 (?:[IB]<) # Optional markup
4543 $qasked # The command
4544 ([\s\S]*?) # Description line(s)
4545 \n) # End of last description line
4546 (?!\s) # Next line not starting with
4547 # whitespace
e22ea7cc
RF
4548 /mgx
4549 )
4550 {
69893cff 4551 print_help($1);
69893cff 4552 }
e22ea7cc 4553 }
69893cff
RGS
4554
4555 # Not found; not a debugger command.
e22ea7cc
RF
4556 else {
4557 print_help("B<$asked> is not a debugger command.\n");
4558 }
69893cff
RGS
4559 } ## end elsif ($line =~ /^(\S.*)$/)
4560
4561 # 'h' - print the summary help.
4562 else {
e22ea7cc 4563 print_help($summary);
69893cff
RGS
4564 }
4565} ## end sub cmd_h
492652be 4566
e219e2fb
RF
4567=head3 C<cmd_i> - inheritance display
4568
4569Display the (nested) parentage of the module or object given.
4570
4571=cut
4572
4573sub cmd_i {
4574 my $cmd = shift;
4575 my $line = shift;
69893cff 4576 eval { require Class::ISA };
e22ea7cc
RF
4577 if ($@) {
4578 &warn( $@ =~ /locate/
4579 ? "Class::ISA module not found - please install\n"
4580 : $@ );
4581 }
4582 else {
4583 ISA:
4584 foreach my $isa ( split( /\s+/, $line ) ) {
7fddc82f
RF
4585 $evalarg = $isa;
4586 ($isa) = &eval;
e22ea7cc
RF
4587 no strict 'refs';
4588 print join(
4589 ', ',
4590 map { # snaffled unceremoniously from Class::ISA
4591 "$_"
4592 . (
4593 defined( ${"$_\::VERSION"} )
4594 ? ' ' . ${"$_\::VERSION"}
4595 : undef )
4596 } Class::ISA::self_and_super_path(ref($isa) || $isa)
4597 );
4598 print "\n";
69893cff
RGS
4599 }
4600 }
e219e2fb
RF
4601} ## end sub cmd_i
4602
69893cff
RGS
4603=head3 C<cmd_l> - list lines (command)
4604
4605Most of the command is taken up with transforming all the different line
4606specification syntaxes into 'start-stop'. After that is done, the command
4607runs a loop over C<@dbline> for the specified range of lines. It handles
4608the printing of each line and any markers (C<==E<gt>> for current line,
4609C<b> for break on this line, C<a> for action on this line, C<:> for this
4610line breakable).
4611
4612We save the last line listed in the C<$start> global for further listing
4613later.
4614
4615=cut
4616
d12a4851 4617sub cmd_l {
69893cff 4618 my $current_line = $line;
e22ea7cc 4619 my $cmd = shift;
69893cff
RGS
4620 my $line = shift;
4621
4622 # If this is '-something', delete any spaces after the dash.
4623 $line =~ s/^-\s*$/-/;
4624
e22ea7cc 4625 # If the line is '$something', assume this is a scalar containing a
69893cff 4626 # line number.
e22ea7cc 4627 if ( $line =~ /^(\$.*)/s ) {
69893cff
RGS
4628
4629 # Set up for DB::eval() - evaluate in *user* context.
4630 $evalarg = $1;
e22ea7cc 4631 # $evalarg = $2;
69893cff
RGS
4632 my ($s) = &eval;
4633
4634 # Ooops. Bad scalar.
e22ea7cc 4635 print( $OUT "Error: $@\n" ), next CMD if $@;
69893cff
RGS
4636
4637 # Good scalar. If it's a reference, find what it points to.
4638 $s = CvGV_name($s);
e22ea7cc 4639 print( $OUT "Interpreted as: $1 $s\n" );
69893cff
RGS
4640 $line = "$1 $s";
4641
4642 # Call self recursively to really do the command.
e22ea7cc 4643 &cmd_l( 'l', $s );
69893cff
RGS
4644 } ## end if ($line =~ /^(\$.*)/s)
4645
e22ea7cc
RF
4646 # l name. Try to find a sub by that name.
4647 elsif ( $line =~ /^([\':A-Za-z_][\':\w]*(\[.*\])?)/s ) {
69893cff
RGS
4648 my $s = $subname = $1;
4649
4650 # De-Perl4.
4651 $subname =~ s/\'/::/;
4652
4653 # Put it in this package unless it starts with ::.
e22ea7cc 4654 $subname = $package . "::" . $subname unless $subname =~ /::/;
69893cff
RGS
4655
4656 # Put it in CORE::GLOBAL if t doesn't start with :: and
4657 # it doesn't live in this package and it lives in CORE::GLOBAL.
4658 $subname = "CORE::GLOBAL::$s"
e22ea7cc
RF
4659 if not defined &$subname
4660 and $s !~ /::/
4661 and defined &{"CORE::GLOBAL::$s"};
69893cff
RGS
4662
4663 # Put leading '::' names into 'main::'.
e22ea7cc 4664 $subname = "main" . $subname if substr( $subname, 0, 2 ) eq "::";
69893cff 4665
e22ea7cc 4666 # Get name:start-stop from find_sub, and break this up at
69893cff 4667 # colons.
e22ea7cc 4668 @pieces = split( /:/, find_sub($subname) || $sub{$subname} );
69893cff
RGS
4669
4670 # Pull off start-stop.
4671 $subrange = pop @pieces;
4672
4673 # If the name contained colons, the split broke it up.
4674 # Put it back together.
e22ea7cc 4675 $file = join( ':', @pieces );
69893cff
RGS
4676
4677 # If we're not in that file, switch over to it.
e22ea7cc 4678 if ( $file ne $filename ) {
69893cff 4679 print $OUT "Switching to file '$file'.\n"
e22ea7cc 4680 unless $slave_editor;
69893cff
RGS
4681
4682 # Switch debugger's magic structures.
e22ea7cc
RF
4683 *dbline = $main::{ '_<' . $file };
4684 $max = $#dbline;
69893cff
RGS
4685 $filename = $file;
4686 } ## end if ($file ne $filename)
4687
4688 # Subrange is 'start-stop'. If this is less than a window full,
4689 # swap it to 'start+', which will list a window from the start point.
4690 if ($subrange) {
e22ea7cc
RF
4691 if ( eval($subrange) < -$window ) {
4692 $subrange =~ s/-.*/+/;
69893cff 4693 }
e22ea7cc 4694
69893cff
RGS
4695 # Call self recursively to list the range.
4696 $line = $subrange;
e22ea7cc 4697 &cmd_l( 'l', $subrange );
69893cff
RGS
4698 } ## end if ($subrange)
4699
4700 # Couldn't find it.
4701 else {
4702 print $OUT "Subroutine $subname not found.\n";
4703 }
4704 } ## end elsif ($line =~ /^([\':A-Za-z_][\':\w]*(\[.*\])?)/s)
4705
4706 # Bare 'l' command.
e22ea7cc
RF
4707 elsif ( $line =~ /^\s*$/ ) {
4708
69893cff
RGS
4709 # Compute new range to list.
4710 $incr = $window - 1;
e22ea7cc
RF
4711 $line = $start . '-' . ( $start + $incr );
4712
69893cff 4713 # Recurse to do it.
e22ea7cc
RF
4714 &cmd_l( 'l', $line );
4715 }
69893cff
RGS
4716
4717 # l [start]+number_of_lines
e22ea7cc
RF
4718 elsif ( $line =~ /^(\d*)\+(\d*)$/ ) {
4719
69893cff
RGS
4720 # Don't reset start for 'l +nnn'.
4721 $start = $1 if $1;
4722
4723 # Increment for list. Use window size if not specified.
4724 # (Allows 'l +' to work.)
4725 $incr = $2;
4726 $incr = $window - 1 unless $incr;
4727
4728 # Create a line range we'll understand, and recurse to do it.
e22ea7cc
RF
4729 $line = $start . '-' . ( $start + $incr );
4730 &cmd_l( 'l', $line );
69893cff
RGS
4731 } ## end elsif ($line =~ /^(\d*)\+(\d*)$/)
4732
4733 # l start-stop or l start,stop
e22ea7cc 4734 elsif ( $line =~ /^((-?[\d\$\.]+)([-,]([\d\$\.]+))?)?/ ) {
69893cff
RGS
4735
4736 # Determine end point; use end of file if not specified.
e22ea7cc 4737 $end = ( !defined $2 ) ? $max : ( $4 ? $4 : $2 );
69893cff
RGS
4738
4739 # Go on to the end, and then stop.
4740 $end = $max if $end > $max;
4741
e22ea7cc
RF
4742 # Determine start line.
4743 $i = $2;
4744 $i = $line if $i eq '.';
4745 $i = 1 if $i < 1;
69893cff
RGS
4746 $incr = $end - $i;
4747
4748 # If we're running under a slave editor, force it to show the lines.
4749 if ($slave_editor) {
4750 print $OUT "\032\032$filename:$i:0\n";
4751 $i = $end;
e22ea7cc 4752 }
69893cff
RGS
4753
4754 # We're doing it ourselves. We want to show the line and special
4755 # markers for:
e22ea7cc 4756 # - the current line in execution
69893cff
RGS
4757 # - whether a line is breakable or not
4758 # - whether a line has a break or not
4759 # - whether a line has an action or not
4760 else {
e22ea7cc
RF
4761 for ( ; $i <= $end ; $i++ ) {
4762
69893cff 4763 # Check for breakpoints and actions.
e22ea7cc
RF
4764 my ( $stop, $action );
4765 ( $stop, $action ) = split( /\0/, $dbline{$i} )
4766 if $dbline{$i};
69893cff
RGS
4767
4768 # ==> if this is the current line in execution,
4769 # : if it's breakable.
e22ea7cc
RF
4770 $arrow =
4771 ( $i == $current_line and $filename eq $filename_ini )
4772 ? '==>'
4773 : ( $dbline[$i] + 0 ? ':' : ' ' );
69893cff
RGS
4774
4775 # Add break and action indicators.
4776 $arrow .= 'b' if $stop;
4777 $arrow .= 'a' if $action;
4778
4779 # Print the line.
4780 print $OUT "$i$arrow\t", $dbline[$i];
4781
4782 # Move on to the next line. Drop out on an interrupt.
4783 $i++, last if $signal;
4784 } ## end for (; $i <= $end ; $i++)
4785
4786 # Line the prompt up; print a newline if the last line listed
4787 # didn't have a newline.
e22ea7cc 4788 print $OUT "\n" unless $dbline[ $i - 1 ] =~ /\n$/;
69893cff
RGS
4789 } ## end else [ if ($slave_editor)
4790
4791 # Save the point we last listed to in case another relative 'l'
4792 # command is desired. Don't let it run off the end.
4793 $start = $i;
4794 $start = $max if $start > $max;
4795 } ## end elsif ($line =~ /^((-?[\d\$\.]+)([-,]([\d\$\.]+))?)?/)
4796} ## end sub cmd_l
4797
4798=head3 C<cmd_L> - list breakpoints, actions, and watch expressions (command)
4799
4800To list breakpoints, the command has to look determine where all of them are
4801first. It starts a C<%had_breakpoints>, which tells us what all files have
4802breakpoints and/or actions. For each file, we switch the C<*dbline> glob (the
4803magic source and breakpoint data structures) to the file, and then look
4804through C<%dbline> for lines with breakpoints and/or actions, listing them
4805out. We look through C<%postponed> not-yet-compiled subroutines that have
4806breakpoints, and through C<%postponed_file> for not-yet-C<require>'d files
4807that have breakpoints.
4808
4809Watchpoints are simpler: we just list the entries in C<@to_watch>.
4810
4811=cut
492652be 4812
d12a4851 4813sub cmd_L {
e22ea7cc 4814 my $cmd = shift;
69893cff 4815
e22ea7cc 4816 # If no argument, list everything. Pre-5.8.0 version always lists
69893cff 4817 # everything
e22ea7cc
RF
4818 my $arg = shift || 'abw';
4819 $arg = 'abw' unless $CommandSet eq '580'; # sigh...
69893cff
RGS
4820
4821 # See what is wanted.
e22ea7cc
RF
4822 my $action_wanted = ( $arg =~ /a/ ) ? 1 : 0;
4823 my $break_wanted = ( $arg =~ /b/ ) ? 1 : 0;
4824 my $watch_wanted = ( $arg =~ /w/ ) ? 1 : 0;
69893cff
RGS
4825
4826 # Breaks and actions are found together, so we look in the same place
4827 # for both.
e22ea7cc
RF
4828 if ( $break_wanted or $action_wanted ) {
4829
69893cff 4830 # Look in all the files with breakpoints...
e22ea7cc
RF
4831 for my $file ( keys %had_breakpoints ) {
4832
69893cff
RGS
4833 # Temporary switch to this file.
4834 local *dbline = $main::{ '_<' . $file };
4835
4836 # Set up to look through the whole file.
4837 my $max = $#dbline;
e22ea7cc
RF
4838 my $was; # Flag: did we print something
4839 # in this file?
69893cff
RGS
4840
4841 # For each line in the file ...
e22ea7cc
RF
4842 for ( $i = 1 ; $i <= $max ; $i++ ) {
4843
69893cff 4844 # We've got something on this line.
e22ea7cc
RF
4845 if ( defined $dbline{$i} ) {
4846
69893cff
RGS
4847 # Print the header if we haven't.
4848 print $OUT "$file:\n" unless $was++;
4849
4850 # Print the line.
4851 print $OUT " $i:\t", $dbline[$i];
4852
4853 # Pull out the condition and the action.
e22ea7cc 4854 ( $stop, $action ) = split( /\0/, $dbline{$i} );
69893cff
RGS
4855
4856 # Print the break if there is one and it's wanted.
4857 print $OUT " break if (", $stop, ")\n"
e22ea7cc
RF
4858 if $stop
4859 and $break_wanted;
69893cff
RGS
4860
4861 # Print the action if there is one and it's wanted.
4862 print $OUT " action: ", $action, "\n"
e22ea7cc
RF
4863 if $action
4864 and $action_wanted;
69893cff
RGS
4865
4866 # Quit if the user hit interrupt.
4867 last if $signal;
4868 } ## end if (defined $dbline{$i...
4869 } ## end for ($i = 1 ; $i <= $max...
4870 } ## end for my $file (keys %had_breakpoints)
4871 } ## end if ($break_wanted or $action_wanted)
4872
4873 # Look for breaks in not-yet-compiled subs:
e22ea7cc 4874 if ( %postponed and $break_wanted ) {
69893cff
RGS
4875 print $OUT "Postponed breakpoints in subroutines:\n";
4876 my $subname;
e22ea7cc
RF
4877 for $subname ( keys %postponed ) {
4878 print $OUT " $subname\t$postponed{$subname}\n";
4879 last if $signal;
69893cff
RGS
4880 }
4881 } ## end if (%postponed and $break_wanted)
4882
4883 # Find files that have not-yet-loaded breaks:
e22ea7cc
RF
4884 my @have = map { # Combined keys
4885 keys %{ $postponed_file{$_} }
69893cff
RGS
4886 } keys %postponed_file;
4887
4888 # If there are any, list them.
e22ea7cc 4889 if ( @have and ( $break_wanted or $action_wanted ) ) {
69893cff 4890 print $OUT "Postponed breakpoints in files:\n";
e22ea7cc
RF
4891 my ( $file, $line );
4892
4893 for $file ( keys %postponed_file ) {
4894 my $db = $postponed_file{$file};
4895 print $OUT " $file:\n";
4896 for $line ( sort { $a <=> $b } keys %$db ) {
4897 print $OUT " $line:\n";
4898 my ( $stop, $action ) = split( /\0/, $$db{$line} );
4899 print $OUT " break if (", $stop, ")\n"
4900 if $stop
4901 and $break_wanted;
4902 print $OUT " action: ", $action, "\n"
4903 if $action
4904 and $action_wanted;
4905 last if $signal;
4906 } ## end for $line (sort { $a <=>...
69893cff 4907 last if $signal;
69893cff
RGS
4908 } ## end for $file (keys %postponed_file)
4909 } ## end if (@have and ($break_wanted...
e22ea7cc 4910 if ( %break_on_load and $break_wanted ) {
69893cff
RGS
4911 print $OUT "Breakpoints on load:\n";
4912 my $file;
e22ea7cc
RF
4913 for $file ( keys %break_on_load ) {
4914 print $OUT " $file\n";
69893cff
RGS
4915 last if $signal;
4916 }
e22ea7cc
RF
4917 } ## end if (%break_on_load and...
4918 if ($watch_wanted) {
4919 if ( $trace & 2 ) {
4920 print $OUT "Watch-expressions:\n" if @to_watch;
4921 for my $expr (@to_watch) {
4922 print $OUT " $expr\n";
4923 last if $signal;
4924 }
69893cff
RGS
4925 } ## end if ($trace & 2)
4926 } ## end if ($watch_wanted)
4927} ## end sub cmd_L
4928
4929=head3 C<cmd_M> - list modules (command)
4930
4931Just call C<list_modules>.
4932
4933=cut
492652be 4934
d12a4851 4935sub cmd_M {
69893cff 4936 &list_modules();
d12a4851 4937}
eda6e075 4938
69893cff
RGS
4939=head3 C<cmd_o> - options (command)
4940
4941If this is just C<o> by itself, we list the current settings via
4942C<dump_option>. If there's a nonblank value following it, we pass that on to
4943C<parse_options> for processing.
4944
4945=cut
4946
d12a4851 4947sub cmd_o {
e22ea7cc
RF
4948 my $cmd = shift;
4949 my $opt = shift || ''; # opt[=val]
69893cff
RGS
4950
4951 # Nonblank. Try to parse and process.
e22ea7cc 4952 if ( $opt =~ /^(\S.*)/ ) {
69893cff 4953 &parse_options($1);
e22ea7cc 4954 }
69893cff
RGS
4955
4956 # Blank. List the current option settings.
4957 else {
4958 for (@options) {
4959 &dump_option($_);
4960 }
4961 }
4962} ## end sub cmd_o
4963
4964=head3 C<cmd_O> - nonexistent in 5.8.x (command)
4965
4966Advises the user that the O command has been renamed.
4967
4968=cut
eda6e075 4969
d12a4851 4970sub cmd_O {
e22ea7cc
RF
4971 print $OUT "The old O command is now the o command.\n"; # hint
4972 print $OUT "Use 'h' to get current command help synopsis or\n"; #
4973 print $OUT "use 'o CommandSet=pre580' to revert to old usage\n"; #
d12a4851 4974}
eda6e075 4975
69893cff
RGS
4976=head3 C<cmd_v> - view window (command)
4977
4978Uses the C<$preview> variable set in the second C<BEGIN> block (q.v.) to
4979move back a few lines to list the selected line in context. Uses C<cmd_l>
4980to do the actual listing after figuring out the range of line to request.
4981
4982=cut
4983
d12a4851 4984sub cmd_v {
e22ea7cc 4985 my $cmd = shift;
69893cff
RGS
4986 my $line = shift;
4987
4988 # Extract the line to list around. (Astute readers will have noted that
4989 # this pattern will match whether or not a numeric line is specified,
4990 # which means that we'll always enter this loop (though a non-numeric
4991 # argument results in no action at all)).
e22ea7cc
RF
4992 if ( $line =~ /^(\d*)$/ ) {
4993
69893cff
RGS
4994 # Total number of lines to list (a windowful).
4995 $incr = $window - 1;
4996
4997 # Set the start to the argument given (if there was one).
4998 $start = $1 if $1;
4999
5000 # Back up by the context amount.
5001 $start -= $preview;
5002
5003 # Put together a linespec that cmd_l will like.
e22ea7cc 5004 $line = $start . '-' . ( $start + $incr );
69893cff
RGS
5005
5006 # List the lines.
e22ea7cc 5007 &cmd_l( 'l', $line );
69893cff
RGS
5008 } ## end if ($line =~ /^(\d*)$/)
5009} ## end sub cmd_v
5010
5011=head3 C<cmd_w> - add a watch expression (command)
5012
5013The 5.8 version of this command adds a watch expression if one is specified;
5014it does nothing if entered with no operands.
5015
5016We extract the expression, save it, evaluate it in the user's context, and
5017save the value. We'll re-evaluate it each time the debugger passes a line,
5018and will stop (see the code at the top of the command loop) if the value
5019of any of the expressions changes.
5020
5021=cut
eda6e075 5022
d12a4851 5023sub cmd_w {
e22ea7cc 5024 my $cmd = shift;
69893cff
RGS
5025
5026 # Null expression if no arguments.
5027 my $expr = shift || '';
5028
5029 # If expression is not null ...
e22ea7cc
RF
5030 if ( $expr =~ /^(\S.*)/ ) {
5031
69893cff
RGS
5032 # ... save it.
5033 push @to_watch, $expr;
5034
5035 # Parameterize DB::eval and call it to get the expression's value
5036 # in the user's context. This version can handle expressions which
5037 # return a list value.
5038 $evalarg = $expr;
e22ea7cc
RF
5039 my ($val) = join( ' ', &eval );
5040 $val = ( defined $val ) ? "'$val'" : 'undef';
69893cff
RGS
5041
5042 # Save the current value of the expression.
5043 push @old_watch, $val;
5044
5045 # We are now watching expressions.
5046 $trace |= 2;
5047 } ## end if ($expr =~ /^(\S.*)/)
5048
5049 # You have to give one to get one.
5050 else {
e22ea7cc 5051 print $OUT "Adding a watch-expression requires an expression\n"; # hint
69893cff
RGS
5052 }
5053} ## end sub cmd_w
5054
5055=head3 C<cmd_W> - delete watch expressions (command)
5056
5057This command accepts either a watch expression to be removed from the list
5058of watch expressions, or C<*> to delete them all.
5059
5060If C<*> is specified, we simply empty the watch expression list and the
5061watch expression value list. We also turn off the bit that says we've got
5062watch expressions.
5063
5064If an expression (or partial expression) is specified, we pattern-match
5065through the expressions and remove the ones that match. We also discard
5066the corresponding values. If no watch expressions are left, we turn off
5067the 'watching expressions' bit.
5068
5069=cut
eda6e075 5070
d12a4851 5071sub cmd_W {
69893cff
RGS
5072 my $cmd = shift;
5073 my $expr = shift || '';
5074
5075 # Delete them all.
e22ea7cc
RF
5076 if ( $expr eq '*' ) {
5077
69893cff
RGS
5078 # Not watching now.
5079 $trace &= ~2;
5080
5081 print $OUT "Deleting all watch expressions ...\n";
eda6e075 5082
69893cff
RGS
5083 # And all gone.
5084 @to_watch = @old_watch = ();
e22ea7cc 5085 }
69893cff
RGS
5086
5087 # Delete one of them.
e22ea7cc
RF
5088 elsif ( $expr =~ /^(\S.*)/ ) {
5089
69893cff
RGS
5090 # Where we are in the list.
5091 my $i_cnt = 0;
5092
5093 # For each expression ...
5094 foreach (@to_watch) {
5095 my $val = $to_watch[$i_cnt];
5096
5097 # Does this one match the command argument?
e22ea7cc
RF
5098 if ( $val eq $expr ) { # =~ m/^\Q$i$/) {
5099 # Yes. Turn it off, and its value too.
5100 splice( @to_watch, $i_cnt, 1 );
5101 splice( @old_watch, $i_cnt, 1 );
69893cff
RGS
5102 }
5103 $i_cnt++;
5104 } ## end foreach (@to_watch)
5105
5106 # We don't bother to turn watching off because
5107 # a) we don't want to stop calling watchfunction() it it exists
5108 # b) foreach over a null list doesn't do anything anyway
5109
5110 } ## end elsif ($expr =~ /^(\S.*)/)
5111
e22ea7cc 5112 # No command arguments entered.
69893cff 5113 else {
e22ea7cc
RF
5114 print $OUT
5115 "Deleting a watch-expression requires an expression, or '*' for all\n"
5116 ; # hint
69893cff
RGS
5117 }
5118} ## end sub cmd_W
5119
5120### END of the API section
5121
5122=head1 SUPPORT ROUTINES
eda6e075 5123
69893cff
RGS
5124These are general support routines that are used in a number of places
5125throughout the debugger.
5126
5127=item cmd_P
5128
5129Something to do with assertions
5130
5131=cut
eda6e075 5132
d12a4851 5133sub cmd_P {
7fddc82f
RF
5134 unless ($ini_assertion) {
5135 print $OUT "Assertions not supported in this Perl interpreter\n";
5136 } else {
5137 if ( $cmd =~ /^.\b\s*([+-]?)\s*(~?)\s*(\w+(\s*\|\s*\w+)*)\s*$/ ) {
5138 my ( $how, $neg, $flags ) = ( $1, $2, $3 );
5139 my $acu = parse_DollarCaretP_flags($flags);
5140 if ( defined $acu ) {
5141 $acu = ~$acu if $neg;
5142 if ( $how eq '+' ) { $^P |= $acu }
5143 elsif ( $how eq '-' ) { $^P &= ~$acu }
5144 else { $^P = $acu }
5145 }
5146
5147 # else { print $OUT "undefined acu\n" }
5148 }
5149 my $expanded = expand_DollarCaretP_flags($^P);
5150 print $OUT "Internal Perl debugger flags:\n\$^P=$expanded\n";
5151 $expanded;
5152 }
d12a4851 5153}
eda6e075 5154
69893cff
RGS
5155=head2 save
5156
5157save() saves the user's versions of globals that would mess us up in C<@saved>,
5158and installs the versions we like better.
5159
5160=cut
3a6edaec 5161
d12a4851 5162sub save {
e22ea7cc
RF
5163
5164 # Save eval failure, command failure, extended OS error, output field
5165 # separator, input record separator, output record separator and
69893cff 5166 # the warning setting.
e22ea7cc 5167 @saved = ( $@, $!, $^E, $,, $/, $\, $^W );
69893cff 5168
e22ea7cc
RF
5169 $, = ""; # output field separator is null string
5170 $/ = "\n"; # input record separator is newline
5171 $\ = ""; # output record separator is null string
5172 $^W = 0; # warnings are off
69893cff
RGS
5173} ## end sub save
5174
5175=head2 C<print_lineinfo> - show where we are now
5176
5177print_lineinfo prints whatever it is that it is handed; it prints it to the
5178C<$LINEINFO> filehandle instead of just printing it to STDOUT. This allows
5179us to feed line information to a slave editor without messing up the
5180debugger output.
5181
5182=cut
eda6e075 5183
d12a4851 5184sub print_lineinfo {
e22ea7cc 5185
69893cff 5186 # Make the terminal sensible if we're not the primary debugger.
e22ea7cc
RF
5187 resetterm(1) if $LINEINFO eq $OUT and $term_pid != $$;
5188 local $\ = '';
5189 local $, = '';
5190 print $LINEINFO @_;
69893cff
RGS
5191} ## end sub print_lineinfo
5192
5193=head2 C<postponed_sub>
5194
5195Handles setting postponed breakpoints in subroutines once they're compiled.
5196For breakpoints, we use C<DB::find_sub> to locate the source file and line
5197range for the subroutine, then mark the file as having a breakpoint,
5198temporarily switch the C<*dbline> glob over to the source file, and then
5199search the given range of lines to find a breakable line. If we find one,
5200we set the breakpoint on it, deleting the breakpoint from C<%postponed>.
5201
5202=cut
eda6e075 5203
d12a4851 5204# The following takes its argument via $evalarg to preserve current @_
eda6e075 5205
d12a4851 5206sub postponed_sub {
e22ea7cc 5207
69893cff 5208 # Get the subroutine name.
e22ea7cc 5209 my $subname = shift;
69893cff
RGS
5210
5211 # If this is a 'break +<n> if <condition>' ...
e22ea7cc
RF
5212 if ( $postponed{$subname} =~ s/^break\s([+-]?\d+)\s+if\s// ) {
5213
69893cff 5214 # If there's no offset, use '+0'.
e22ea7cc 5215 my $offset = $1 || 0;
69893cff
RGS
5216
5217 # find_sub's value is 'fullpath-filename:start-stop'. It's
5218 # possible that the filename might have colons in it too.
e22ea7cc
RF
5219 my ( $file, $i ) = ( find_sub($subname) =~ /^(.*):(\d+)-.*$/ );
5220 if ($i) {
5221
5222 # We got the start line. Add the offset '+<n>' from
69893cff 5223 # $postponed{subname}.
e22ea7cc 5224 $i += $offset;
69893cff
RGS
5225
5226 # Switch to the file this sub is in, temporarily.
e22ea7cc 5227 local *dbline = $main::{ '_<' . $file };
69893cff
RGS
5228
5229 # No warnings, please.
e22ea7cc 5230 local $^W = 0; # != 0 is magical below
69893cff
RGS
5231
5232 # This file's got a breakpoint in it.
e22ea7cc 5233 $had_breakpoints{$file} |= 1;
69893cff
RGS
5234
5235 # Last line in file.
e22ea7cc 5236 my $max = $#dbline;
69893cff
RGS
5237
5238 # Search forward until we hit a breakable line or get to
5239 # the end of the file.
e22ea7cc 5240 ++$i until $dbline[$i] != 0 or $i >= $max;
69893cff
RGS
5241
5242 # Copy the breakpoint in and delete it from %postponed.
e22ea7cc 5243 $dbline{$i} = delete $postponed{$subname};
69893cff
RGS
5244 } ## end if ($i)
5245
5246 # find_sub didn't find the sub.
e22ea7cc
RF
5247 else {
5248 local $\ = '';
5249 print $OUT "Subroutine $subname not found.\n";
5250 }
5251 return;
5252 } ## end if ($postponed{$subname...
5253 elsif ( $postponed{$subname} eq 'compile' ) { $signal = 1 }
5254
5255 #print $OUT "In postponed_sub for `$subname'.\n";
5256} ## end sub postponed_sub
eda6e075 5257
69893cff
RGS
5258=head2 C<postponed>
5259
5260Called after each required file is compiled, but before it is executed;
5261also called if the name of a just-compiled subroutine is a key of
5262C<%postponed>. Propagates saved breakpoints (from C<b compile>, C<b load>,
5263etc.) into the just-compiled code.
5264
5265If this is a C<require>'d file, the incoming parameter is the glob
5266C<*{"_<$filename"}>, with C<$filename> the name of the C<require>'d file.
5267
5268If it's a subroutine, the incoming parameter is the subroutine name.
5269
5270=cut
5271
d12a4851 5272sub postponed {
e22ea7cc 5273
69893cff
RGS
5274 # If there's a break, process it.
5275 if ($ImmediateStop) {
69893cff 5276
e22ea7cc
RF
5277 # Right, we've stopped. Turn it off.
5278 $ImmediateStop = 0;
5279
5280 # Enter the command loop when DB::DB gets called.
5281 $signal = 1;
69893cff
RGS
5282 }
5283
5284 # If this is a subroutine, let postponed_sub() deal with it.
e22ea7cc 5285 return &postponed_sub unless ref \$_[0] eq 'GLOB';
69893cff
RGS
5286
5287 # Not a subroutine. Deal with the file.
5288 local *dbline = shift;
5289 my $filename = $dbline;
5290 $filename =~ s/^_<//;
5291 local $\ = '';
5292 $signal = 1, print $OUT "'$filename' loaded...\n"
e22ea7cc
RF
5293 if $break_on_load{$filename};
5294 print_lineinfo( ' ' x $stack_depth, "Package $filename.\n" ) if $frame;
69893cff
RGS
5295
5296 # Do we have any breakpoints to put in this file?
5297 return unless $postponed_file{$filename};
5298
5299 # Yes. Mark this file as having breakpoints.
5300 $had_breakpoints{$filename} |= 1;
5301
5302 # "Cannot be done: unsufficient magic" - we can't just put the
5303 # breakpoints saved in %postponed_file into %dbline by assigning
5304 # the whole hash; we have to do it one item at a time for the
5305 # breakpoints to be set properly.
5306 #%dbline = %{$postponed_file{$filename}};
5307
5308 # Set the breakpoints, one at a time.
5309 my $key;
5310
e22ea7cc
RF
5311 for $key ( keys %{ $postponed_file{$filename} } ) {
5312
5313 # Stash the saved breakpoint into the current file's magic line array.
5314 $dbline{$key} = ${ $postponed_file{$filename} }{$key};
69893cff
RGS
5315 }
5316
5317 # This file's been compiled; discard the stored breakpoints.
5318 delete $postponed_file{$filename};
5319
5320} ## end sub postponed
5321
5322=head2 C<dumpit>
5323
5324C<dumpit> is the debugger's wrapper around dumpvar.pl.
5325
5326It gets a filehandle (to which C<dumpvar.pl>'s output will be directed) and
5327a reference to a variable (the thing to be dumped) as its input.
5328
5329The incoming filehandle is selected for output (C<dumpvar.pl> is printing to
5330the currently-selected filehandle, thank you very much). The current
5331values of the package globals C<$single> and C<$trace> are backed up in
5332lexicals, and they are turned off (this keeps the debugger from trying
5333to single-step through C<dumpvar.pl> (I think.)). C<$frame> is localized to
5334preserve its current value and it is set to zero to prevent entry/exit
5335messages from printing, and C<$doret> is localized as well and set to -2 to
5336prevent return values from being shown.
5337
5338C<dumpit()> then checks to see if it needs to load C<dumpvar.pl> and
5339tries to load it (note: if you have a C<dumpvar.pl> ahead of the
5340installed version in @INC, yours will be used instead. Possible security
5341problem?).
5342
5343It then checks to see if the subroutine C<main::dumpValue> is now defined
5344(it should have been defined by C<dumpvar.pl>). If it has, C<dumpit()>
5345localizes the globals necessary for things to be sane when C<main::dumpValue()>
5346is called, and picks up the variable to be dumped from the parameter list.
5347
5348It checks the package global C<%options> to see if there's a C<dumpDepth>
5349specified. If not, -1 is assumed; if so, the supplied value gets passed on to
5350C<dumpvar.pl>. This tells C<dumpvar.pl> where to leave off when dumping a
5351structure: -1 means dump everything.
5352
5353C<dumpValue()> is then called if possible; if not, C<dumpit()>just prints a
5354warning.
5355
5356In either case, C<$single>, C<$trace>, C<$frame>, and C<$doret> are restored
5357and we then return to the caller.
5358
5359=cut
eda6e075 5360
d12a4851 5361sub dumpit {
e22ea7cc 5362
69893cff
RGS
5363 # Save the current output filehandle and switch to the one
5364 # passed in as the first parameter.
d12a4851 5365 local ($savout) = select(shift);
69893cff
RGS
5366
5367 # Save current settings of $single and $trace, and then turn them off.
d12a4851 5368 my $osingle = $single;
69893cff 5369 my $otrace = $trace;
d12a4851 5370 $single = $trace = 0;
69893cff
RGS
5371
5372 # XXX Okay, what do $frame and $doret do, again?
d12a4851
JH
5373 local $frame = 0;
5374 local $doret = -2;
69893cff
RGS
5375
5376 # Load dumpvar.pl unless we've already got the sub we need from it.
e22ea7cc 5377 unless ( defined &main::dumpValue ) {
69893cff 5378 do 'dumpvar.pl';
d12a4851 5379 }
69893cff
RGS
5380
5381 # If the load succeeded (or we already had dumpvalue()), go ahead
5382 # and dump things.
e22ea7cc 5383 if ( defined &main::dumpValue ) {
d12a4851
JH
5384 local $\ = '';
5385 local $, = '';
5386 local $" = ' ';
5387 my $v = shift;
5388 my $maxdepth = shift || $option{dumpDepth};
e22ea7cc
RF
5389 $maxdepth = -1 unless defined $maxdepth; # -1 means infinite depth
5390 &main::dumpValue( $v, $maxdepth );
69893cff
RGS
5391 } ## end if (defined &main::dumpValue)
5392
5393 # Oops, couldn't load dumpvar.pl.
5394 else {
d12a4851 5395 local $\ = '';
e22ea7cc 5396 print $OUT "dumpvar.pl not available.\n";
d12a4851 5397 }
69893cff
RGS
5398
5399 # Reset $single and $trace to their old values.
d12a4851 5400 $single = $osingle;
e22ea7cc 5401 $trace = $otrace;
69893cff
RGS
5402
5403 # Restore the old filehandle.
e22ea7cc 5404 select($savout);
69893cff
RGS
5405} ## end sub dumpit
5406
5407=head2 C<print_trace>
5408
5409C<print_trace>'s job is to print a stack trace. It does this via the
5410C<dump_trace> routine, which actually does all the ferreting-out of the
5411stack trace data. C<print_trace> takes care of formatting it nicely and
5412printing it to the proper filehandle.
5413
5414Parameters:
5415
5416=over 4
5417
5418=item * The filehandle to print to.
5419
5420=item * How many frames to skip before starting trace.
5421
5422=item * How many frames to print.
5423
5424=item * A flag: if true, print a "short" trace without filenames, line numbers, or arguments
5425
5426=back
5427
5428The original comment below seems to be noting that the traceback may not be
5429correct if this routine is called in a tied method.
5430
5431=cut
eda6e075 5432
d12a4851 5433# Tied method do not create a context, so may get wrong message:
eda6e075 5434
d12a4851 5435sub print_trace {
e22ea7cc
RF
5436 local $\ = '';
5437 my $fh = shift;
5438
69893cff
RGS
5439 # If this is going to a slave editor, but we're not the primary
5440 # debugger, reset it first.
e22ea7cc
RF
5441 resetterm(1)
5442 if $fh eq $LINEINFO # slave editor
5443 and $LINEINFO eq $OUT # normal output
5444 and $term_pid != $$; # not the primary
69893cff
RGS
5445
5446 # Collect the actual trace information to be formatted.
5447 # This is an array of hashes of subroutine call info.
e22ea7cc 5448 my @sub = dump_trace( $_[0] + 1, $_[1] );
69893cff
RGS
5449
5450 # Grab the "short report" flag from @_.
e22ea7cc 5451 my $short = $_[2]; # Print short report, next one for sub name
69893cff
RGS
5452
5453 # Run through the traceback info, format it, and print it.
e22ea7cc
RF
5454 my $s;
5455 for ( $i = 0 ; $i <= $#sub ; $i++ ) {
5456
69893cff 5457 # Drop out if the user has lost interest and hit control-C.
e22ea7cc 5458 last if $signal;
69893cff 5459
e22ea7cc
RF
5460 # Set the separator so arrys print nice.
5461 local $" = ', ';
69893cff
RGS
5462
5463 # Grab and stringify the arguments if they are there.
e22ea7cc
RF
5464 my $args =
5465 defined $sub[$i]{args}
5466 ? "(@{ $sub[$i]{args} })"
5467 : '';
5468
69893cff 5469 # Shorten them up if $maxtrace says they're too long.
e22ea7cc
RF
5470 $args = ( substr $args, 0, $maxtrace - 3 ) . '...'
5471 if length $args > $maxtrace;
69893cff
RGS
5472
5473 # Get the file name.
e22ea7cc 5474 my $file = $sub[$i]{file};
69893cff
RGS
5475
5476 # Put in a filename header if short is off.
e22ea7cc 5477 $file = $file eq '-e' ? $file : "file `$file'" unless $short;
69893cff
RGS
5478
5479 # Get the actual sub's name, and shorten to $maxtrace's requirement.
e22ea7cc
RF
5480 $s = $sub[$i]{sub};
5481 $s = ( substr $s, 0, $maxtrace - 3 ) . '...' if length $s > $maxtrace;
69893cff
RGS
5482
5483 # Short report uses trimmed file and sub names.
e22ea7cc
RF
5484 if ($short) {
5485 my $sub = @_ >= 4 ? $_[3] : $s;
5486 print $fh "$sub[$i]{context}=$sub$args from $file:$sub[$i]{line}\n";
5487 } ## end if ($short)
69893cff
RGS
5488
5489 # Non-short report includes full names.
e22ea7cc
RF
5490 else {
5491 print $fh "$sub[$i]{context} = $s$args"
5492 . " called from $file"
5493 . " line $sub[$i]{line}\n";
5494 }
69893cff
RGS
5495 } ## end for ($i = 0 ; $i <= $#sub...
5496} ## end sub print_trace
5497
5498=head2 dump_trace(skip[,count])
5499
5500Actually collect the traceback information available via C<caller()>. It does
5501some filtering and cleanup of the data, but mostly it just collects it to
5502make C<print_trace()>'s job easier.
5503
5504C<skip> defines the number of stack frames to be skipped, working backwards
5505from the most current. C<count> determines the total number of frames to
5506be returned; all of them (well, the first 10^9) are returned if C<count>
5507is omitted.
5508
5509This routine returns a list of hashes, from most-recent to least-recent
5510stack frame. Each has the following keys and values:
5511
5512=over 4
5513
5514=item * C<context> - C<.> (null), C<$> (scalar), or C<@> (array)
5515
5516=item * C<sub> - subroutine name, or C<eval> information
5517
5518=item * C<args> - undef, or a reference to an array of arguments
5519
5520=item * C<file> - the file in which this item was defined (if any)
5521
5522=item * C<line> - the line on which it was defined
5523
5524=back
5525
5526=cut
eda6e075 5527
d12a4851 5528sub dump_trace {
69893cff
RGS
5529
5530 # How many levels to skip.
e22ea7cc 5531 my $skip = shift;
69893cff
RGS
5532
5533 # How many levels to show. (1e9 is a cheap way of saying "all of them";
5534 # it's unlikely that we'll have more than a billion stack frames. If you
5535 # do, you've got an awfully big machine...)
e22ea7cc 5536 my $count = shift || 1e9;
69893cff
RGS
5537
5538 # We increment skip because caller(1) is the first level *back* from
e22ea7cc 5539 # the current one. Add $skip to the count of frames so we have a
69893cff 5540 # simple stop criterion, counting from $skip to $count+$skip.
e22ea7cc
RF
5541 $skip++;
5542 $count += $skip;
69893cff
RGS
5543
5544 # These variables are used to capture output from caller();
e22ea7cc 5545 my ( $p, $file, $line, $sub, $h, $context );
69893cff 5546
e22ea7cc 5547 my ( $e, $r, @a, @sub, $args );
69893cff
RGS
5548
5549 # XXX Okay... why'd we do that?
e22ea7cc
RF
5550 my $nothard = not $frame & 8;
5551 local $frame = 0;
69893cff
RGS
5552
5553 # Do not want to trace this.
e22ea7cc
RF
5554 my $otrace = $trace;
5555 $trace = 0;
69893cff
RGS
5556
5557 # Start out at the skip count.
5558 # If we haven't reached the number of frames requested, and caller() is
5559 # still returning something, stay in the loop. (If we pass the requested
5560 # number of stack frames, or we run out - caller() returns nothing - we
5561 # quit.
5562 # Up the stack frame index to go back one more level each time.
e22ea7cc
RF
5563 for (
5564 $i = $skip ;
5565 $i < $count
5566 and ( $p, $file, $line, $sub, $h, $context, $e, $r ) = caller($i) ;
5567 $i++
5568 )
69893cff
RGS
5569 {
5570
5571 # Go through the arguments and save them for later.
e22ea7cc
RF
5572 @a = ();
5573 for $arg (@args) {
5574 my $type;
5575 if ( not defined $arg ) { # undefined parameter
5576 push @a, "undef";
5577 }
5578
5579 elsif ( $nothard and tied $arg ) { # tied parameter
5580 push @a, "tied";
5581 }
5582 elsif ( $nothard and $type = ref $arg ) { # reference
5583 push @a, "ref($type)";
5584 }
5585 else { # can be stringified
5586 local $_ =
5587 "$arg"; # Safe to stringify now - should not call f().
69893cff
RGS
5588
5589 # Backslash any single-quotes or backslashes.
e22ea7cc 5590 s/([\'\\])/\\$1/g;
69893cff
RGS
5591
5592 # Single-quote it unless it's a number or a colon-separated
5593 # name.
e22ea7cc
RF
5594 s/(.*)/'$1'/s
5595 unless /^(?: -?[\d.]+ | \*[\w:]* )$/x;
69893cff
RGS
5596
5597 # Turn high-bit characters into meta-whatever.
e22ea7cc 5598 s/([\200-\377])/sprintf("M-%c",ord($1)&0177)/eg;
69893cff
RGS
5599
5600 # Turn control characters into ^-whatever.
e22ea7cc 5601 s/([\0-\37\177])/sprintf("^%c",ord($1)^64)/eg;
69893cff 5602
e22ea7cc 5603 push( @a, $_ );
69893cff
RGS
5604 } ## end else [ if (not defined $arg)
5605 } ## end for $arg (@args)
5606
5607 # If context is true, this is array (@)context.
5608 # If context is false, this is scalar ($) context.
e22ea7cc 5609 # If neither, context isn't defined. (This is apparently a 'can't
69893cff 5610 # happen' trap.)
e22ea7cc 5611 $context = $context ? '@' : ( defined $context ? "\$" : '.' );
69893cff
RGS
5612
5613 # if the sub has args ($h true), make an anonymous array of the
5614 # dumped args.
e22ea7cc 5615 $args = $h ? [@a] : undef;
69893cff
RGS
5616
5617 # remove trailing newline-whitespace-semicolon-end of line sequence
5618 # from the eval text, if any.
e22ea7cc 5619 $e =~ s/\n\s*\;\s*\Z// if $e;
69893cff
RGS
5620
5621 # Escape backslashed single-quotes again if necessary.
e22ea7cc 5622 $e =~ s/([\\\'])/\\$1/g if $e;
69893cff
RGS
5623
5624 # if the require flag is true, the eval text is from a require.
e22ea7cc
RF
5625 if ($r) {
5626 $sub = "require '$e'";
5627 }
5628
69893cff 5629 # if it's false, the eval text is really from an eval.
e22ea7cc
RF
5630 elsif ( defined $r ) {
5631 $sub = "eval '$e'";
5632 }
69893cff
RGS
5633
5634 # If the sub is '(eval)', this is a block eval, meaning we don't
5635 # know what the eval'ed text actually was.
e22ea7cc
RF
5636 elsif ( $sub eq '(eval)' ) {
5637 $sub = "eval {...}";
5638 }
69893cff
RGS
5639
5640 # Stick the collected information into @sub as an anonymous hash.
e22ea7cc
RF
5641 push(
5642 @sub,
5643 {
5644 context => $context,
5645 sub => $sub,
5646 args => $args,
5647 file => $file,
5648 line => $line
5649 }
69893cff
RGS
5650 );
5651
5652 # Stop processing frames if the user hit control-C.
e22ea7cc 5653 last if $signal;
69893cff
RGS
5654 } ## end for ($i = $skip ; $i < ...
5655
5656 # Restore the trace value again.
e22ea7cc
RF
5657 $trace = $otrace;
5658 @sub;
69893cff
RGS
5659} ## end sub dump_trace
5660
5661=head2 C<action()>
5662
5663C<action()> takes input provided as the argument to an add-action command,
5664either pre- or post-, and makes sure it's a complete command. It doesn't do
5665any fancy parsing; it just keeps reading input until it gets a string
5666without a trailing backslash.
5667
5668=cut
eda6e075 5669
d12a4851
JH
5670sub action {
5671 my $action = shift;
69893cff 5672
e22ea7cc
RF
5673 while ( $action =~ s/\\$// ) {
5674
69893cff 5675 # We have a backslash on the end. Read more.
e22ea7cc 5676 $action .= &gets;
69893cff
RGS
5677 } ## end while ($action =~ s/\\$//)
5678
5679 # Return the assembled action.
d12a4851 5680 $action;
69893cff
RGS
5681} ## end sub action
5682
5683=head2 unbalanced
5684
5685This routine mostly just packages up a regular expression to be used
5686to check that the thing it's being matched against has properly-matched
5687curly braces.
5688
5689Of note is the definition of the $balanced_brace_re global via ||=, which
5690speeds things up by only creating the qr//'ed expression once; if it's
5691already defined, we don't try to define it again. A speed hack.
5692
5693=cut
eda6e075 5694
e22ea7cc 5695sub unbalanced {
69893cff
RGS
5696
5697 # I hate using globals!
d12a4851 5698 $balanced_brace_re ||= qr{
e22ea7cc
RF
5699 ^ \{
5700 (?:
5701 (?> [^{}] + ) # Non-parens without backtracking
5702 |
5703 (??{ $balanced_brace_re }) # Group with matching parens
5704 ) *
5705 \} $
d12a4851 5706 }x;
e22ea7cc 5707 return $_[0] !~ m/$balanced_brace_re/;
69893cff
RGS
5708} ## end sub unbalanced
5709
5710=head2 C<gets()>
5711
5712C<gets()> is a primitive (very primitive) routine to read continuations.
5713It was devised for reading continuations for actions.
5714it just reads more input with X<C<readline()>> and returns it.
5715
5716=cut
eda6e075 5717
d12a4851
JH
5718sub gets {
5719 &readline("cont: ");
5720}
eda6e075 5721
69893cff
RGS
5722=head2 C<DB::system()> - handle calls to<system()> without messing up the debugger
5723
5724The C<system()> function assumes that it can just go ahead and use STDIN and
5725STDOUT, but under the debugger, we want it to use the debugger's input and
5726outout filehandles.
5727
5728C<DB::system()> socks away the program's STDIN and STDOUT, and then substitutes
5729the debugger's IN and OUT filehandles for them. It does the C<system()> call,
5730and then puts everything back again.
5731
5732=cut
5733
d12a4851 5734sub system {
e22ea7cc 5735
d12a4851
JH
5736 # We save, change, then restore STDIN and STDOUT to avoid fork() since
5737 # some non-Unix systems can do system() but have problems with fork().
e22ea7cc
RF
5738 open( SAVEIN, "<&STDIN" ) || &warn("Can't save STDIN");
5739 open( SAVEOUT, ">&STDOUT" ) || &warn("Can't save STDOUT");
5740 open( STDIN, "<&IN" ) || &warn("Can't redirect STDIN");
5741 open( STDOUT, ">&OUT" ) || &warn("Can't redirect STDOUT");
eda6e075 5742
d12a4851
JH
5743 # XXX: using csh or tcsh destroys sigint retvals!
5744 system(@_);
e22ea7cc
RF
5745 open( STDIN, "<&SAVEIN" ) || &warn("Can't restore STDIN");
5746 open( STDOUT, ">&SAVEOUT" ) || &warn("Can't restore STDOUT");
5747 close(SAVEIN);
d12a4851 5748 close(SAVEOUT);
eda6e075 5749
d12a4851 5750 # most of the $? crud was coping with broken cshisms
e22ea7cc
RF
5751 if ( $? >> 8 ) {
5752 &warn( "(Command exited ", ( $? >> 8 ), ")\n" );
5753 }
5754 elsif ($?) {
5755 &warn(
5756 "(Command died of SIG#",
5757 ( $? & 127 ),
5758 ( ( $? & 128 ) ? " -- core dumped" : "" ),
5759 ")", "\n"
69893cff
RGS
5760 );
5761 } ## end elsif ($?)
eda6e075 5762
d12a4851 5763 return $?;
eda6e075 5764
69893cff
RGS
5765} ## end sub system
5766
5767=head1 TTY MANAGEMENT
5768
5769The subs here do some of the terminal management for multiple debuggers.
5770
5771=head2 setterm
5772
5773Top-level function called when we want to set up a new terminal for use
5774by the debugger.
5775
5776If the C<noTTY> debugger option was set, we'll either use the terminal
5777supplied (the value of the C<noTTY> option), or we'll use C<Term::Rendezvous>
5778to find one. If we're a forked debugger, we call C<resetterm> to try to
5779get a whole new terminal if we can.
5780
5781In either case, we set up the terminal next. If the C<ReadLine> option was
5782true, we'll get a C<Term::ReadLine> object for the current terminal and save
5783the appropriate attributes. We then
5784
5785=cut
eda6e075 5786
d12a4851 5787sub setterm {
e22ea7cc 5788
69893cff 5789 # Load Term::Readline, but quietly; don't debug it and don't trace it.
d12a4851
JH
5790 local $frame = 0;
5791 local $doret = -2;
5792 eval { require Term::ReadLine } or die $@;
69893cff
RGS
5793
5794 # If noTTY is set, but we have a TTY name, go ahead and hook up to it.
d12a4851 5795 if ($notty) {
e22ea7cc
RF
5796 if ($tty) {
5797 my ( $i, $o ) = split $tty, /,/;
5798 $o = $i unless defined $o;
5799 open( IN, "<$i" ) or die "Cannot open TTY `$i' for read: $!";
5800 open( OUT, ">$o" ) or die "Cannot open TTY `$o' for write: $!";
5801 $IN = \*IN;
5802 $OUT = \*OUT;
5803 my $sel = select($OUT);
5804 $| = 1;
5805 select($sel);
69893cff
RGS
5806 } ## end if ($tty)
5807
5808 # We don't have a TTY - try to find one via Term::Rendezvous.
e22ea7cc
RF
5809 else {
5810 eval "require Term::Rendezvous;" or die;
5811
69893cff
RGS
5812 # See if we have anything to pass to Term::Rendezvous.
5813 # Use /tmp/perldbtty$$ if not.
e22ea7cc 5814 my $rv = $ENV{PERLDB_NOTTY} || "/tmp/perldbtty$$";
69893cff
RGS
5815
5816 # Rendezvous and get the filehandles.
e22ea7cc
RF
5817 my $term_rv = new Term::Rendezvous $rv;
5818 $IN = $term_rv->IN;
5819 $OUT = $term_rv->OUT;
69893cff
RGS
5820 } ## end else [ if ($tty)
5821 } ## end if ($notty)
5822
69893cff 5823 # We're a daughter debugger. Try to fork off another TTY.
e22ea7cc
RF
5824 if ( $term_pid eq '-1' ) { # In a TTY with another debugger
5825 resetterm(2);
d12a4851 5826 }
69893cff
RGS
5827
5828 # If we shouldn't use Term::ReadLine, don't.
e22ea7cc
RF
5829 if ( !$rl ) {
5830 $term = new Term::ReadLine::Stub 'perldb', $IN, $OUT;
5831 }
d12a4851 5832
69893cff
RGS
5833 # We're using Term::ReadLine. Get all the attributes for this terminal.
5834 else {
e22ea7cc
RF
5835 $term = new Term::ReadLine 'perldb', $IN, $OUT;
5836
5837 $rl_attribs = $term->Attribs;
5838 $rl_attribs->{basic_word_break_characters} .= '-:+/*,[])}'
5839 if defined $rl_attribs->{basic_word_break_characters}
5840 and index( $rl_attribs->{basic_word_break_characters}, ":" ) == -1;
5841 $rl_attribs->{special_prefixes} = '$@&%';
5842 $rl_attribs->{completer_word_break_characters} .= '$@&%';
5843 $rl_attribs->{completion_function} = \&db_complete;
69893cff
RGS
5844 } ## end else [ if (!$rl)
5845
5846 # Set up the LINEINFO filehandle.
e22ea7cc 5847 $LINEINFO = $OUT unless defined $LINEINFO;
d12a4851 5848 $lineinfo = $console unless defined $lineinfo;
69893cff 5849
d12a4851 5850 $term->MinLine(2);
69893cff 5851
e22ea7cc
RF
5852 if ( $term->Features->{setHistory} and "@hist" ne "?" ) {
5853 $term->SetHistory(@hist);
d12a4851 5854 }
69893cff
RGS
5855
5856 # XXX Ornaments are turned on unconditionally, which is not
5857 # always a good thing.
d12a4851
JH
5858 ornaments($ornaments) if defined $ornaments;
5859 $term_pid = $$;
69893cff
RGS
5860} ## end sub setterm
5861
5862=head1 GET_FORK_TTY EXAMPLE FUNCTIONS
5863
5864When the process being debugged forks, or the process invokes a command
5865via C<system()> which starts a new debugger, we need to be able to get a new
5866C<IN> and C<OUT> filehandle for the new debugger. Otherwise, the two processes
5867fight over the terminal, and you can never quite be sure who's going to get the
5868input you're typing.
5869
5870C<get_fork_TTY> is a glob-aliased function which calls the real function that
5871is tasked with doing all the necessary operating system mojo to get a new
5872TTY (and probably another window) and to direct the new debugger to read and
5873write there.
5874
5875The debugger provides C<get_fork_TTY> functions which work for X Windows and
5876OS/2. Other systems are not supported. You are encouraged to write
5877C<get_fork_TTY> functions which work for I<your> platform and contribute them.
5878
5879=head3 C<xterm_get_fork_TTY>
5880
5881This function provides the C<get_fork_TTY> function for X windows. If a
5882program running under the debugger forks, a new <xterm> window is opened and
5883the subsidiary debugger is directed there.
5884
5885The C<open()> call is of particular note here. We have the new C<xterm>
5886we're spawning route file number 3 to STDOUT, and then execute the C<tty>
5887command (which prints the device name of the TTY we'll want to use for input
5888and output to STDOUT, then C<sleep> for a very long time, routing this output
5889to file number 3. This way we can simply read from the <XT> filehandle (which
5890is STDOUT from the I<commands> we ran) to get the TTY we want to use.
5891
5892Only works if C<xterm> is in your path and C<$ENV{DISPLAY}>, etc. are
5893properly set up.
5894
5895=cut
eda6e075 5896
d12a4851 5897sub xterm_get_fork_TTY {
e22ea7cc
RF
5898 ( my $name = $0 ) =~ s,^.*[/\\],,s;
5899 open XT,
69893cff 5900qq[3>&1 xterm -title "Daughter Perl debugger $pids $name" -e sh -c 'tty 1>&3;\
d12a4851 5901 sleep 10000000' |];
69893cff
RGS
5902
5903 # Get the output from 'tty' and clean it up a little.
e22ea7cc
RF
5904 my $tty = <XT>;
5905 chomp $tty;
69893cff 5906
e22ea7cc 5907 $pidprompt = ''; # Shown anyway in titlebar
69893cff
RGS
5908
5909 # There's our new TTY.
e22ea7cc 5910 return $tty;
69893cff
RGS
5911} ## end sub xterm_get_fork_TTY
5912
5913=head3 C<os2_get_fork_TTY>
5914
5915XXX It behooves an OS/2 expert to write the necessary documentation for this!
5916
5917=cut
eda6e075 5918
d12a4851
JH
5919# This example function resets $IN, $OUT itself
5920sub os2_get_fork_TTY {
e22ea7cc
RF
5921 local $^F = 40; # XXXX Fixme!
5922 local $\ = '';
5923 my ( $in1, $out1, $in2, $out2 );
5924
5925 # Having -d in PERL5OPT would lead to a disaster...
5926 local $ENV{PERL5OPT} = $ENV{PERL5OPT} if $ENV{PERL5OPT};
5927 $ENV{PERL5OPT} =~ s/(?:^|(?<=\s))-d\b// if $ENV{PERL5OPT};
5928 $ENV{PERL5OPT} =~ s/(?:^|(?<=\s))-d\B/-/ if $ENV{PERL5OPT};
5929 print $OUT "Making kid PERL5OPT->`$ENV{PERL5OPT}'.\n" if $ENV{PERL5OPT};
5930 local $ENV{PERL5LIB} = $ENV{PERL5LIB} ? $ENV{PERL5LIB} : $ENV{PERLLIB};
5931 $ENV{PERL5LIB} = '' unless defined $ENV{PERL5LIB};
5932 $ENV{PERL5LIB} = join ';', @ini_INC, split /;/, $ENV{PERL5LIB};
5933 ( my $name = $0 ) =~ s,^.*[/\\],,s;
5934 my @args;
5935
5936 if (
5937 pipe $in1, $out1
69893cff
RGS
5938 and pipe $in2, $out2
5939
e22ea7cc
RF
5940 # system P_SESSION will fail if there is another process
5941 # in the same session with a "dependent" asynchronous child session.
5942 and @args = (
5943 $rl, fileno $in1, fileno $out2, "Daughter Perl debugger $pids $name"
5944 )
69893cff 5945 and (
e22ea7cc
RF
5946 ( $kpid = CORE::system 4, $^X, '-we',
5947 <<'ES', @args ) >= 0 # P_SESSION
d12a4851
JH
5948END {sleep 5 unless $loaded}
5949BEGIN {open STDIN, '</dev/con' or warn "reopen stdin: $!"}
5950use OS2::Process;
eda6e075 5951
69893cff 5952my ($rl, $in) = (shift, shift); # Read from $in and pass through
d12a4851
JH
5953set_title pop;
5954system P_NOWAIT, $^X, '-we', <<EOS or die "Cannot start a grandkid";
5955 open IN, '<&=$in' or die "open <&=$in: \$!";
5956 \$| = 1; print while sysread IN, \$_, 1<<16;
5957EOS
eda6e075 5958
d12a4851
JH
5959my $out = shift;
5960open OUT, ">&=$out" or die "Cannot open &=$out for writing: $!";
5961select OUT; $| = 1;
5962require Term::ReadKey if $rl;
5963Term::ReadKey::ReadMode(4) if $rl; # Nodelay on kbd. Pipe is automatically nodelay...
5964print while sysread STDIN, $_, 1<<($rl ? 16 : 0);
5965ES
e22ea7cc 5966 or warn "system P_SESSION: $!, $^E" and 0
69893cff 5967 )
e22ea7cc
RF
5968 and close $in1
5969 and close $out2
5970 )
69893cff 5971 {
e22ea7cc
RF
5972 $pidprompt = ''; # Shown anyway in titlebar
5973 reset_IN_OUT( $in2, $out1 );
5974 $tty = '*reset*';
5975 return ''; # Indicate that reset_IN_OUT is called
69893cff 5976 } ## end if (pipe $in1, $out1 and...
e22ea7cc 5977 return;
69893cff
RGS
5978} ## end sub os2_get_fork_TTY
5979
5980=head2 C<create_IN_OUT($flags)>
eda6e075 5981
69893cff
RGS
5982Create a new pair of filehandles, pointing to a new TTY. If impossible,
5983try to diagnose why.
5984
5985Flags are:
5986
5987=over 4
5988
5989=item * 1 - Don't know how to create a new TTY.
5990
5991=item * 2 - Debugger has forked, but we can't get a new TTY.
5992
5993=item * 4 - standard debugger startup is happening.
5994
5995=back
5996
5997=cut
5998
5999sub create_IN_OUT { # Create a window with IN/OUT handles redirected there
6000
6001 # If we know how to get a new TTY, do it! $in will have
6002 # the TTY name if get_fork_TTY works.
d12a4851 6003 my $in = &get_fork_TTY if defined &get_fork_TTY;
69893cff 6004
e22ea7cc
RF
6005 # It used to be that
6006 $in = $fork_TTY if defined $fork_TTY; # Backward compatibility
6007
6008 if ( not defined $in ) {
6009 my $why = shift;
69893cff
RGS
6010
6011 # We don't know how.
e22ea7cc 6012 print_help(<<EOP) if $why == 1;
d12a4851
JH
6013I<#########> Forked, but do not know how to create a new B<TTY>. I<#########>
6014EOP
69893cff
RGS
6015
6016 # Forked debugger.
e22ea7cc 6017 print_help(<<EOP) if $why == 2;
d12a4851
JH
6018I<#########> Daughter session, do not know how to change a B<TTY>. I<#########>
6019 This may be an asynchronous session, so the parent debugger may be active.
6020EOP
69893cff
RGS
6021
6022 # Note that both debuggers are fighting over the same input.
e22ea7cc 6023 print_help(<<EOP) if $why != 4;
d12a4851 6024 Since two debuggers fight for the same TTY, input is severely entangled.
eda6e075 6025
d12a4851 6026EOP
e22ea7cc 6027 print_help(<<EOP);
d12a4851
JH
6028 I know how to switch the output to a different window in xterms
6029 and OS/2 consoles only. For a manual switch, put the name of the created I<TTY>
6030 in B<\$DB::fork_TTY>, or define a function B<DB::get_fork_TTY()> returning this.
eda6e075 6031
d12a4851
JH
6032 On I<UNIX>-like systems one can get the name of a I<TTY> for the given window
6033 by typing B<tty>, and disconnect the I<shell> from I<TTY> by B<sleep 1000000>.
eda6e075 6034
d12a4851 6035EOP
69893cff 6036 } ## end if (not defined $in)
e22ea7cc
RF
6037 elsif ( $in ne '' ) {
6038 TTY($in);
6039 }
69893cff 6040 else {
e22ea7cc 6041 $console = ''; # Indicate no need to open-from-the-console
d12a4851
JH
6042 }
6043 undef $fork_TTY;
69893cff
RGS
6044} ## end sub create_IN_OUT
6045
6046=head2 C<resetterm>
6047
6048Handles rejiggering the prompt when we've forked off a new debugger.
6049
6050If the new debugger happened because of a C<system()> that invoked a
6051program under the debugger, the arrow between the old pid and the new
6052in the prompt has I<two> dashes instead of one.
6053
6054We take the current list of pids and add this one to the end. If there
6055isn't any list yet, we make one up out of the initial pid associated with
6056the terminal and our new pid, sticking an arrow (either one-dashed or
6057two dashed) in between them.
6058
6059If C<CreateTTY> is off, or C<resetterm> was called with no arguments,
6060we don't try to create a new IN and OUT filehandle. Otherwise, we go ahead
6061and try to do that.
eda6e075 6062
69893cff
RGS
6063=cut
6064
e22ea7cc 6065sub resetterm { # We forked, so we need a different TTY
69893cff
RGS
6066
6067 # Needs to be passed to create_IN_OUT() as well.
d12a4851 6068 my $in = shift;
69893cff
RGS
6069
6070 # resetterm(2): got in here because of a system() starting a debugger.
6071 # resetterm(1): just forked.
d12a4851 6072 my $systemed = $in > 1 ? '-' : '';
69893cff
RGS
6073
6074 # If there's already a list of pids, add this to the end.
d12a4851 6075 if ($pids) {
e22ea7cc
RF
6076 $pids =~ s/\]/$systemed->$$]/;
6077 }
69893cff
RGS
6078
6079 # No pid list. Time to make one.
6080 else {
e22ea7cc 6081 $pids = "[$term_pid->$$]";
d12a4851 6082 }
69893cff
RGS
6083
6084 # The prompt we're going to be using for this debugger.
d12a4851 6085 $pidprompt = $pids;
69893cff
RGS
6086
6087 # We now 0wnz this terminal.
d12a4851 6088 $term_pid = $$;
69893cff
RGS
6089
6090 # Just return if we're not supposed to try to create a new TTY.
d12a4851 6091 return unless $CreateTTY & $in;
69893cff
RGS
6092
6093 # Try to create a new IN/OUT pair.
d12a4851 6094 create_IN_OUT($in);
69893cff
RGS
6095} ## end sub resetterm
6096
6097=head2 C<readline>
6098
6099First, we handle stuff in the typeahead buffer. If there is any, we shift off
6100the next line, print a message saying we got it, add it to the terminal
6101history (if possible), and return it.
6102
6103If there's nothing in the typeahead buffer, check the command filehandle stack.
6104If there are any filehandles there, read from the last one, and return the line
6105if we got one. If not, we pop the filehandle off and close it, and try the
6106next one up the stack.
6107
6108If we've emptied the filehandle stack, we check to see if we've got a socket
6109open, and we read that and return it if we do. If we don't, we just call the
6110core C<readline()> and return its value.
6111
6112=cut
eda6e075 6113
d12a4851 6114sub readline {
69893cff
RGS
6115
6116 # Localize to prevent it from being smashed in the program being debugged.
e22ea7cc 6117 local $.;
69893cff
RGS
6118
6119 # Pull a line out of the typeahead if there's stuff there.
e22ea7cc
RF
6120 if (@typeahead) {
6121
69893cff 6122 # How many lines left.
e22ea7cc 6123 my $left = @typeahead;
69893cff
RGS
6124
6125 # Get the next line.
e22ea7cc 6126 my $got = shift @typeahead;
69893cff
RGS
6127
6128 # Print a message saying we got input from the typeahead.
e22ea7cc
RF
6129 local $\ = '';
6130 print $OUT "auto(-$left)", shift, $got, "\n";
69893cff
RGS
6131
6132 # Add it to the terminal history (if possible).
e22ea7cc
RF
6133 $term->AddHistory($got)
6134 if length($got) > 1
6135 and defined $term->Features->{addHistory};
6136 return $got;
69893cff
RGS
6137 } ## end if (@typeahead)
6138
e22ea7cc 6139 # We really need to read some input. Turn off entry/exit trace and
69893cff 6140 # return value printing.
e22ea7cc
RF
6141 local $frame = 0;
6142 local $doret = -2;
69893cff
RGS
6143
6144 # If there are stacked filehandles to read from ...
e22ea7cc
RF
6145 while (@cmdfhs) {
6146
69893cff 6147 # Read from the last one in the stack.
e22ea7cc
RF
6148 my $line = CORE::readline( $cmdfhs[-1] );
6149
69893cff 6150 # If we got a line ...
e22ea7cc
RF
6151 defined $line
6152 ? ( print $OUT ">> $line" and return $line ) # Echo and return
6153 : close pop @cmdfhs; # Pop and close
69893cff
RGS
6154 } ## end while (@cmdfhs)
6155
6156 # Nothing on the filehandle stack. Socket?
e22ea7cc
RF
6157 if ( ref $OUT and UNIVERSAL::isa( $OUT, 'IO::Socket::INET' ) ) {
6158
69893cff 6159 # Send anyting we have to send.
e22ea7cc 6160 $OUT->write( join( '', @_ ) );
69893cff
RGS
6161
6162 # Receive anything there is to receive.
e22ea7cc
RF
6163 my $stuff;
6164 $IN->recv( $stuff, 2048 ); # XXX "what's wrong with sysread?"
6165 # XXX Don't know. You tell me.
69893cff
RGS
6166
6167 # What we got.
e22ea7cc 6168 $stuff;
69893cff
RGS
6169 } ## end if (ref $OUT and UNIVERSAL::isa...
6170
6171 # No socket. Just read from the terminal.
e22ea7cc
RF
6172 else {
6173 $term->readline(@_);
6174 }
69893cff
RGS
6175} ## end sub readline
6176
6177=head1 OPTIONS SUPPORT ROUTINES
6178
6179These routines handle listing and setting option values.
6180
6181=head2 C<dump_option> - list the current value of an option setting
6182
6183This routine uses C<option_val> to look up the value for an option.
6184It cleans up escaped single-quotes and then displays the option and
6185its value.
6186
6187=cut
eda6e075 6188
d12a4851 6189sub dump_option {
e22ea7cc
RF
6190 my ( $opt, $val ) = @_;
6191 $val = option_val( $opt, 'N/A' );
d12a4851
JH
6192 $val =~ s/([\\\'])/\\$1/g;
6193 printf $OUT "%20s = '%s'\n", $opt, $val;
69893cff
RGS
6194} ## end sub dump_option
6195
d12a4851 6196sub options2remember {
e22ea7cc
RF
6197 foreach my $k (@RememberOnROptions) {
6198 $option{$k} = option_val( $k, 'N/A' );
6199 }
6200 return %option;
d12a4851 6201}
eda6e075 6202
69893cff
RGS
6203=head2 C<option_val> - find the current value of an option
6204
6205This can't just be a simple hash lookup because of the indirect way that
6206the option values are stored. Some are retrieved by calling a subroutine,
6207some are just variables.
6208
6209You must supply a default value to be used in case the option isn't set.
6210
6211=cut
6212
d12a4851 6213sub option_val {
e22ea7cc 6214 my ( $opt, $default ) = @_;
d12a4851 6215 my $val;
69893cff
RGS
6216
6217 # Does this option exist, and is it a variable?
6218 # If so, retrieve the value via the value in %optionVars.
e22ea7cc
RF
6219 if ( defined $optionVars{$opt}
6220 and defined ${ $optionVars{$opt} } )
6221 {
69893cff
RGS
6222 $val = ${ $optionVars{$opt} };
6223 }
6224
6225 # Does this option exist, and it's a subroutine?
6226 # If so, call the subroutine via the ref in %optionAction
6227 # and capture the value.
e22ea7cc
RF
6228 elsif ( defined $optionAction{$opt}
6229 and defined &{ $optionAction{$opt} } )
6230 {
6231 $val = &{ $optionAction{$opt} }();
6232 }
69893cff
RGS
6233
6234 # If there's an action or variable for the supplied option,
6235 # but no value was set, use the default.
6236 elsif (defined $optionAction{$opt} and not defined $option{$opt}
e22ea7cc 6237 or defined $optionVars{$opt} and not defined ${ $optionVars{$opt} } )
69893cff
RGS
6238 {
6239 $val = $default;
e22ea7cc 6240 }
69893cff
RGS
6241
6242 # Otherwise, do the simple hash lookup.
6243 else {
e22ea7cc 6244 $val = $option{$opt};
d12a4851 6245 }
69893cff
RGS
6246
6247 # If the value isn't defined, use the default.
6248 # Then return whatever the value is.
d12a4851 6249 $val = $default unless defined $val;
e22ea7cc 6250 $val;
69893cff
RGS
6251} ## end sub option_val
6252
6253=head2 C<parse_options>
6254
6255Handles the parsing and execution of option setting/displaying commands.
6256
6257An option entered by itself is assumed to be 'set me to 1' (the default value)
6258if the option is a boolean one. If not, the user is prompted to enter a valid
6259value or to query the current value (via 'option? ').
6260
6261If 'option=value' is entered, we try to extract a quoted string from the
6262value (if it is quoted). If it's not, we just use the whole value as-is.
6263
6264We load any modules required to service this option, and then we set it: if
6265it just gets stuck in a variable, we do that; if there's a subroutine to
6266handle setting the option, we call that.
6267
6268Finally, if we're running in interactive mode, we display the effect of the
6269user's command back to the terminal, skipping this if we're setting things
6270during initialization.
6271
6272=cut
eda6e075 6273
d12a4851 6274sub parse_options {
e22ea7cc 6275 local ($_) = @_;
d12a4851 6276 local $\ = '';
69893cff
RGS
6277
6278 # These options need a value. Don't allow them to be clobbered by accident.
e22ea7cc
RF
6279 my %opt_needs_val = map { ( $_ => 1 ) } qw{
6280 dumpDepth arrayDepth hashDepth LineInfo maxTraceLen ornaments windowSize
6281 pager quote ReadLine recallCommand RemotePort ShellBang TTY CommandSet
d12a4851 6282 };
69893cff 6283
d12a4851 6284 while (length) {
e22ea7cc 6285 my $val_defaulted;
69893cff
RGS
6286
6287 # Clean off excess leading whitespace.
e22ea7cc 6288 s/^\s+// && next;
69893cff
RGS
6289
6290 # Options are always all word characters, followed by a non-word
6291 # separator.
e22ea7cc
RF
6292 s/^(\w+)(\W?)// or print( $OUT "Invalid option `$_'\n" ), last;
6293 my ( $opt, $sep ) = ( $1, $2 );
69893cff 6294
e22ea7cc
RF
6295 # Make sure that such an option exists.
6296 my $matches = grep( /^\Q$opt/ && ( $option = $_ ), @options )
6297 || grep( /^\Q$opt/i && ( $option = $_ ), @options );
6298
6299 print( $OUT "Unknown option `$opt'\n" ), next unless $matches;
6300 print( $OUT "Ambiguous option `$opt'\n" ), next if $matches > 1;
6301 my $val;
69893cff
RGS
6302
6303 # '?' as separator means query, but must have whitespace after it.
e22ea7cc
RF
6304 if ( "?" eq $sep ) {
6305 print( $OUT "Option query `$opt?' followed by non-space `$_'\n" ),
6306 last
6307 if /^\S/;
69893cff 6308
e22ea7cc
RF
6309 #&dump_option($opt);
6310 } ## end if ("?" eq $sep)
69893cff
RGS
6311
6312 # Separator is whitespace (or just a carriage return).
6313 # They're going for a default, which we assume is 1.
e22ea7cc
RF
6314 elsif ( $sep !~ /\S/ ) {
6315 $val_defaulted = 1;
6316 $val = "1"; # this is an evil default; make 'em set it!
6317 }
69893cff
RGS
6318
6319 # Separator is =. Trying to set a value.
e22ea7cc
RF
6320 elsif ( $sep eq "=" ) {
6321
69893cff 6322 # If quoted, extract a quoted string.
e22ea7cc 6323 if (s/ (["']) ( (?: \\. | (?! \1 ) [^\\] )* ) \1 //x) {
d12a4851 6324 my $quote = $1;
e22ea7cc
RF
6325 ( $val = $2 ) =~ s/\\([$quote\\])/$1/g;
6326 }
69893cff
RGS
6327
6328 # Not quoted. Use the whole thing. Warn about 'option='.
e22ea7cc
RF
6329 else {
6330 s/^(\S*)//;
6331 $val = $1;
6332 print OUT qq(Option better cleared using $opt=""\n)
6333 unless length $val;
6334 } ## end else [ if (s/ (["']) ( (?: \\. | (?! \1 ) [^\\] )* ) \1 //x)
6335
6336 } ## end elsif ($sep eq "=")
6337
6338 # "Quoted" with [], <>, or {}.
6339 else { #{ to "let some poor schmuck bounce on the % key in B<vi>."
6340 my ($end) =
6341 "\\" . substr( ")]>}$sep", index( "([<{", $sep ), 1 ); #}
6342 s/^(([^\\$end]|\\[\\$end])*)$end($|\s+)//
6343 or print( $OUT "Unclosed option value `$opt$sep$_'\n" ), last;
6344 ( $val = $1 ) =~ s/\\([\\$end])/$1/g;
6345 } ## end else [ if ("?" eq $sep)
69893cff
RGS
6346
6347 # Exclude non-booleans from getting set to 1 by default.
e22ea7cc
RF
6348 if ( $opt_needs_val{$option} && $val_defaulted ) {
6349 my $cmd = ( $CommandSet eq '580' ) ? 'o' : 'O';
6350 print $OUT
6351"Option `$opt' is non-boolean. Use `$cmd $option=VAL' to set, `$cmd $option?' to query\n";
6352 next;
6353 } ## end if ($opt_needs_val{$option...
69893cff
RGS
6354
6355 # Save the option value.
e22ea7cc 6356 $option{$option} = $val if defined $val;
69893cff
RGS
6357
6358 # Load any module that this option requires.
e22ea7cc
RF
6359 eval qq{
6360 local \$frame = 0;
6361 local \$doret = -2;
6362 require '$optionRequire{$option}';
6363 1;
6364 } || die # XXX: shouldn't happen
6365 if defined $optionRequire{$option}
6366 && defined $val;
6367
6368 # Set it.
69893cff 6369 # Stick it in the proper variable if it goes in a variable.
e22ea7cc
RF
6370 ${ $optionVars{$option} } = $val
6371 if defined $optionVars{$option}
6372 && defined $val;
69893cff
RGS
6373
6374 # Call the appropriate sub if it gets set via sub.
e22ea7cc
RF
6375 &{ $optionAction{$option} }($val)
6376 if defined $optionAction{$option}
6377 && defined &{ $optionAction{$option} }
6378 && defined $val;
d12a4851 6379
69893cff 6380 # Not initialization - echo the value we set it to.
e22ea7cc 6381 dump_option($option) unless $OUT eq \*STDERR;
69893cff
RGS
6382 } ## end while (length)
6383} ## end sub parse_options
6384
6385=head1 RESTART SUPPORT
6386
6387These routines are used to store (and restore) lists of items in environment
6388variables during a restart.
6389
6390=head2 set_list
6391
6392Set_list packages up items to be stored in a set of environment variables
6393(VAR_n, containing the number of items, and VAR_0, VAR_1, etc., containing
6394the values). Values outside the standard ASCII charset are stored by encoding
6395then as hexadecimal values.
6396
6397=cut
eda6e075 6398
d12a4851 6399sub set_list {
e22ea7cc
RF
6400 my ( $stem, @list ) = @_;
6401 my $val;
69893cff
RGS
6402
6403 # VAR_n: how many we have. Scalar assignment gets the number of items.
e22ea7cc 6404 $ENV{"${stem}_n"} = @list;
69893cff
RGS
6405
6406 # Grab each item in the list, escape the backslashes, encode the non-ASCII
6407 # as hex, and then save in the appropriate VAR_0, VAR_1, etc.
e22ea7cc
RF
6408 for $i ( 0 .. $#list ) {
6409 $val = $list[$i];
6410 $val =~ s/\\/\\\\/g;
6411 $val =~ s/([\0-\37\177\200-\377])/"\\0x" . unpack('H2',$1)/eg;
6412 $ENV{"${stem}_$i"} = $val;
69893cff
RGS
6413 } ## end for $i (0 .. $#list)
6414} ## end sub set_list
6415
6416=head2 get_list
6417
6418Reverse the set_list operation: grab VAR_n to see how many we should be getting
6419back, and then pull VAR_0, VAR_1. etc. back out.
6420
6421=cut
eda6e075 6422
d12a4851 6423sub get_list {
e22ea7cc
RF
6424 my $stem = shift;
6425 my @list;
6426 my $n = delete $ENV{"${stem}_n"};
6427 my $val;
6428 for $i ( 0 .. $n - 1 ) {
6429 $val = delete $ENV{"${stem}_$i"};
6430 $val =~ s/\\((\\)|0x(..))/ $2 ? $2 : pack('H2', $3) /ge;
6431 push @list, $val;
6432 }
6433 @list;
69893cff
RGS
6434} ## end sub get_list
6435
6436=head1 MISCELLANEOUS SIGNAL AND I/O MANAGEMENT
6437
6438=head2 catch()
6439
6440The C<catch()> subroutine is the essence of fast and low-impact. We simply
6441set an already-existing global scalar variable to a constant value. This
6442avoids allocating any memory possibly in the middle of something that will
6443get all confused if we do.
6444
6445=cut
eda6e075 6446
d12a4851
JH
6447sub catch {
6448 $signal = 1;
69893cff 6449 return; # Put nothing on the stack - malloc/free land!
d12a4851 6450}
eda6e075 6451
69893cff
RGS
6452=head2 C<warn()>
6453
6454C<warn> emits a warning, by joining together its arguments and printing
6455them, with couple of fillips.
6456
6457If the composited message I<doesn't> end with a newline, we automatically
6458add C<$!> and a newline to the end of the message. The subroutine expects $OUT
6459to be set to the filehandle to be used to output warnings; it makes no
6460assumptions about what filehandles are available.
6461
6462=cut
6463
d12a4851 6464sub warn {
e22ea7cc 6465 my ($msg) = join( "", @_ );
d12a4851
JH
6466 $msg .= ": $!\n" unless $msg =~ /\n$/;
6467 local $\ = '';
6468 print $OUT $msg;
69893cff
RGS
6469} ## end sub warn
6470
6471=head1 INITIALIZATION TTY SUPPORT
6472
6473=head2 C<reset_IN_OUT>
6474
6475This routine handles restoring the debugger's input and output filehandles
6476after we've tried and failed to move them elsewhere. In addition, it assigns
6477the debugger's output filehandle to $LINEINFO if it was already open there.
6478
6479=cut
eda6e075 6480
d12a4851
JH
6481sub reset_IN_OUT {
6482 my $switch_li = $LINEINFO eq $OUT;
69893cff
RGS
6483
6484 # If there's a term and it's able to get a new tty, try to get one.
e22ea7cc
RF
6485 if ( $term and $term->Features->{newTTY} ) {
6486 ( $IN, $OUT ) = ( shift, shift );
6487 $term->newTTY( $IN, $OUT );
69893cff
RGS
6488 }
6489
6490 # This term can't get a new tty now. Better luck later.
6491 elsif ($term) {
6492 &warn("Too late to set IN/OUT filehandles, enabled on next `R'!\n");
e22ea7cc 6493 }
69893cff
RGS
6494
6495 # Set the filehndles up as they were.
6496 else {
e22ea7cc 6497 ( $IN, $OUT ) = ( shift, shift );
d12a4851 6498 }
69893cff
RGS
6499
6500 # Unbuffer the output filehandle.
d12a4851
JH
6501 my $o = select $OUT;
6502 $| = 1;
6503 select $o;
69893cff
RGS
6504
6505 # Point LINEINFO to the same output filehandle if it was there before.
d12a4851 6506 $LINEINFO = $OUT if $switch_li;
69893cff
RGS
6507} ## end sub reset_IN_OUT
6508
6509=head1 OPTION SUPPORT ROUTINES
6510
6511The following routines are used to process some of the more complicated
6512debugger options.
6513
6514=head2 C<TTY>
6515
6516Sets the input and output filehandles to the specified files or pipes.
6517If the terminal supports switching, we go ahead and do it. If not, and
6518there's already a terminal in place, we save the information to take effect
6519on restart.
6520
6521If there's no terminal yet (for instance, during debugger initialization),
6522we go ahead and set C<$console> and C<$tty> to the file indicated.
6523
6524=cut
eda6e075 6525
d12a4851 6526sub TTY {
e22ea7cc
RF
6527 if ( @_ and $term and $term->Features->{newTTY} ) {
6528
69893cff
RGS
6529 # This terminal supports switching to a new TTY.
6530 # Can be a list of two files, or on string containing both names,
6531 # comma-separated.
6532 # XXX Should this perhaps be an assignment from @_?
e22ea7cc
RF
6533 my ( $in, $out ) = shift;
6534 if ( $in =~ /,/ ) {
6535
69893cff 6536 # Split list apart if supplied.
e22ea7cc
RF
6537 ( $in, $out ) = split /,/, $in, 2;
6538 }
6539 else {
6540
69893cff 6541 # Use the same file for both input and output.
e22ea7cc
RF
6542 $out = $in;
6543 }
69893cff
RGS
6544
6545 # Open file onto the debugger's filehandles, if you can.
e22ea7cc
RF
6546 open IN, $in or die "cannot open `$in' for read: $!";
6547 open OUT, ">$out" or die "cannot open `$out' for write: $!";
69893cff
RGS
6548
6549 # Swap to the new filehandles.
e22ea7cc 6550 reset_IN_OUT( \*IN, \*OUT );
69893cff
RGS
6551
6552 # Save the setting for later.
e22ea7cc 6553 return $tty = $in;
69893cff
RGS
6554 } ## end if (@_ and $term and $term...
6555
6556 # Terminal doesn't support new TTY, or doesn't support readline.
6557 # Can't do it now, try restarting.
d12a4851 6558 &warn("Too late to set TTY, enabled on next `R'!\n") if $term and @_;
e22ea7cc 6559
d12a4851
JH
6560 # Useful if done through PERLDB_OPTS:
6561 $console = $tty = shift if @_;
69893cff
RGS
6562
6563 # Return whatever the TTY is.
d12a4851 6564 $tty or $console;
69893cff
RGS
6565} ## end sub TTY
6566
6567=head2 C<noTTY>
6568
6569Sets the C<$notty> global, controlling whether or not the debugger tries to
6570get a terminal to read from. If called after a terminal is already in place,
6571we save the value to use it if we're restarted.
6572
6573=cut
eda6e075 6574
d12a4851
JH
6575sub noTTY {
6576 if ($term) {
69893cff 6577 &warn("Too late to set noTTY, enabled on next `R'!\n") if @_;
d12a4851
JH
6578 }
6579 $notty = shift if @_;
6580 $notty;
69893cff
RGS
6581} ## end sub noTTY
6582
6583=head2 C<ReadLine>
6584
6585Sets the C<$rl> option variable. If 0, we use C<Term::ReadLine::Stub>
6586(essentially, no C<readline> processing on this "terminal"). Otherwise, we
6587use C<Term::ReadLine>. Can't be changed after a terminal's in place; we save
6588the value in case a restart is done so we can change it then.
6589
6590=cut
eda6e075 6591
d12a4851
JH
6592sub ReadLine {
6593 if ($term) {
69893cff 6594 &warn("Too late to set ReadLine, enabled on next `R'!\n") if @_;
d12a4851
JH
6595 }
6596 $rl = shift if @_;
6597 $rl;
69893cff
RGS
6598} ## end sub ReadLine
6599
6600=head2 C<RemotePort>
6601
6602Sets the port that the debugger will try to connect to when starting up.
6603If the terminal's already been set up, we can't do it, but we remember the
6604setting in case the user does a restart.
6605
6606=cut
eda6e075 6607
d12a4851
JH
6608sub RemotePort {
6609 if ($term) {
6610 &warn("Too late to set RemotePort, enabled on next 'R'!\n") if @_;
6611 }
6612 $remoteport = shift if @_;
6613 $remoteport;
69893cff
RGS
6614} ## end sub RemotePort
6615
6616=head2 C<tkRunning>
6617
6618Checks with the terminal to see if C<Tk> is running, and returns true or
6619false. Returns false if the current terminal doesn't support C<readline>.
6620
6621=cut
eda6e075 6622
d12a4851 6623sub tkRunning {
e22ea7cc 6624 if ( ${ $term->Features }{tkRunning} ) {
d12a4851 6625 return $term->tkRunning(@_);
e22ea7cc 6626 }
69893cff 6627 else {
e22ea7cc
RF
6628 local $\ = '';
6629 print $OUT "tkRunning not supported by current ReadLine package.\n";
6630 0;
d12a4851 6631 }
69893cff
RGS
6632} ## end sub tkRunning
6633
6634=head2 C<NonStop>
6635
6636Sets nonstop mode. If a terminal's already been set up, it's too late; the
6637debugger remembers the setting in case you restart, though.
6638
6639=cut
eda6e075 6640
d12a4851
JH
6641sub NonStop {
6642 if ($term) {
e22ea7cc 6643 &warn("Too late to set up NonStop mode, enabled on next `R'!\n")
69893cff 6644 if @_;
d12a4851
JH
6645 }
6646 $runnonstop = shift if @_;
6647 $runnonstop;
69893cff
RGS
6648} ## end sub NonStop
6649
d12a4851
JH
6650sub DollarCaretP {
6651 if ($term) {
e22ea7cc
RF
6652 &warn("Some flag changes could not take effect until next 'R'!\n")
6653 if @_;
d12a4851
JH
6654 }
6655 $^P = parse_DollarCaretP_flags(shift) if @_;
e22ea7cc 6656 expand_DollarCaretP_flags($^P);
d12a4851 6657}
eda6e075 6658
d12a4851
JH
6659sub OnlyAssertions {
6660 if ($term) {
e22ea7cc
RF
6661 &warn("Too late to set up OnlyAssertions mode, enabled on next 'R'!\n")
6662 if @_;
d12a4851
JH
6663 }
6664 if (@_) {
e22ea7cc
RF
6665 unless ( defined $ini_assertion ) {
6666 if ($term) {
6667 &warn("Current Perl interpreter doesn't support assertions");
6668 }
6669 return 0;
69893cff 6670 }
e22ea7cc
RF
6671 if (shift) {
6672 unless ($ini_assertion) {
6673 print "Assertions will be active on next 'R'!\n";
6674 $ini_assertion = 1;
6675 }
6676 $^P &= ~$DollarCaretP_flags{PERLDBf_SUB};
6677 $^P |= $DollarCaretP_flags{PERLDBf_ASSERTION};
6678 }
6679 else {
6680 $^P |= $DollarCaretP_flags{PERLDBf_SUB};
69893cff 6681 }
d12a4851 6682 }
e22ea7cc 6683 !( $^P & $DollarCaretP_flags{PERLDBf_SUB} ) || 0;
d12a4851 6684}
eda6e075 6685
69893cff
RGS
6686=head2 C<pager>
6687
6688Set up the C<$pager> variable. Adds a pipe to the front unless there's one
6689there already.
6690
6691=cut
6692
d12a4851
JH
6693sub pager {
6694 if (@_) {
69893cff 6695 $pager = shift;
e22ea7cc 6696 $pager = "|" . $pager unless $pager =~ /^(\+?\>|\|)/;
d12a4851
JH
6697 }
6698 $pager;
69893cff
RGS
6699} ## end sub pager
6700
6701=head2 C<shellBang>
6702
6703Sets the shell escape command, and generates a printable copy to be used
6704in the help.
6705
6706=cut
eda6e075 6707
d12a4851 6708sub shellBang {
69893cff
RGS
6709
6710 # If we got an argument, meta-quote it, and add '\b' if it
6711 # ends in a word character.
d12a4851 6712 if (@_) {
69893cff
RGS
6713 $sh = quotemeta shift;
6714 $sh .= "\\b" if $sh =~ /\w$/;
d12a4851 6715 }
69893cff
RGS
6716
6717 # Generate the printable version for the help:
e22ea7cc
RF
6718 $psh = $sh; # copy it
6719 $psh =~ s/\\b$//; # Take off trailing \b if any
6720 $psh =~ s/\\(.)/$1/g; # De-escape
6721 $psh; # return the printable version
69893cff
RGS
6722} ## end sub shellBang
6723
6724=head2 C<ornaments>
6725
6726If the terminal has its own ornaments, fetch them. Otherwise accept whatever
6727was passed as the argument. (This means you can't override the terminal's
6728ornaments.)
6729
6730=cut
eda6e075 6731
d12a4851 6732sub ornaments {
e22ea7cc
RF
6733 if ( defined $term ) {
6734
69893cff 6735 # We don't want to show warning backtraces, but we do want die() ones.
e22ea7cc 6736 local ( $warnLevel, $dieLevel ) = ( 0, 1 );
69893cff
RGS
6737
6738 # No ornaments if the terminal doesn't support them.
e22ea7cc
RF
6739 return '' unless $term->Features->{ornaments};
6740 eval { $term->ornaments(@_) } || '';
6741 }
69893cff
RGS
6742
6743 # Use what was passed in if we can't determine it ourselves.
6744 else {
e22ea7cc
RF
6745 $ornaments = shift;
6746 }
69893cff
RGS
6747} ## end sub ornaments
6748
6749=head2 C<recallCommand>
6750
6751Sets the recall command, and builds a printable version which will appear in
6752the help text.
6753
6754=cut
eda6e075 6755
d12a4851 6756sub recallCommand {
69893cff
RGS
6757
6758 # If there is input, metaquote it. Add '\b' if it ends with a word
6759 # character.
d12a4851 6760 if (@_) {
69893cff
RGS
6761 $rc = quotemeta shift;
6762 $rc .= "\\b" if $rc =~ /\w$/;
d12a4851 6763 }
69893cff
RGS
6764
6765 # Build it into a printable version.
e22ea7cc
RF
6766 $prc = $rc; # Copy it
6767 $prc =~ s/\\b$//; # Remove trailing \b
6768 $prc =~ s/\\(.)/$1/g; # Remove escapes
6769 $prc; # Return the printable version
69893cff
RGS
6770} ## end sub recallCommand
6771
6772=head2 C<LineInfo> - where the line number information goes
6773
6774Called with no arguments, returns the file or pipe that line info should go to.
6775
6776Called with an argument (a file or a pipe), it opens that onto the
6777C<LINEINFO> filehandle, unbuffers the filehandle, and then returns the
6778file or pipe again to the caller.
6779
6780=cut
eda6e075 6781
d12a4851
JH
6782sub LineInfo {
6783 return $lineinfo unless @_;
6784 $lineinfo = shift;
69893cff 6785
e22ea7cc 6786 # If this is a valid "thing to be opened for output", tack a
69893cff 6787 # '>' onto the front.
e22ea7cc 6788 my $stream = ( $lineinfo =~ /^(\+?\>|\|)/ ) ? $lineinfo : ">$lineinfo";
69893cff
RGS
6789
6790 # If this is a pipe, the stream points to a slave editor.
e22ea7cc 6791 $slave_editor = ( $stream =~ /^\|/ );
69893cff
RGS
6792
6793 # Open it up and unbuffer it.
e22ea7cc 6794 open( LINEINFO, "$stream" ) || &warn("Cannot open `$stream' for write");
d12a4851
JH
6795 $LINEINFO = \*LINEINFO;
6796 my $save = select($LINEINFO);
6797 $| = 1;
6798 select($save);
69893cff
RGS
6799
6800 # Hand the file or pipe back again.
d12a4851 6801 $lineinfo;
69893cff
RGS
6802} ## end sub LineInfo
6803
6804=head1 COMMAND SUPPORT ROUTINES
6805
6806These subroutines provide functionality for various commands.
6807
6808=head2 C<list_modules>
6809
6810For the C<M> command: list modules loaded and their versions.
6811Essentially just runs through the keys in %INC, picks up the
6812$VERSION package globals from each package, gets the file name, and formats the
6813information for output.
6814
6815=cut
6816
e22ea7cc
RF
6817sub list_modules { # versions
6818 my %version;
6819 my $file;
eda6e075 6820
69893cff
RGS
6821 # keys are the "as-loaded" name, values are the fully-qualified path
6822 # to the file itself.
e22ea7cc
RF
6823 for ( keys %INC ) {
6824 $file = $_; # get the module name
6825 s,\.p[lm]$,,i; # remove '.pl' or '.pm'
6826 s,/,::,g; # change '/' to '::'
6827 s/^perl5db$/DB/; # Special case: debugger
6828 # moves to package DB
6829 s/^Term::ReadLine::readline$/readline/; # simplify readline
6830
69893cff
RGS
6831 # If the package has a $VERSION package global (as all good packages
6832 # should!) decode it and save as partial message.
e22ea7cc
RF
6833 if ( defined ${ $_ . '::VERSION' } ) {
6834 $version{$file} = "${ $_ . '::VERSION' } from ";
6835 }
69893cff
RGS
6836
6837 # Finish up the message with the file the package came from.
e22ea7cc 6838 $version{$file} .= $INC{$file};
69893cff
RGS
6839 } ## end for (keys %INC)
6840
6841 # Hey, dumpit() formats a hash nicely, so why not use it?
e22ea7cc 6842 dumpit( $OUT, \%version );
69893cff
RGS
6843} ## end sub list_modules
6844
6845=head2 C<sethelp()>
6846
6847Sets up the monster string used to format and print the help.
6848
6849=head3 HELP MESSAGE FORMAT
6850
6851The help message is a peculiar format unto itself; it mixes C<pod> 'ornaments'
6852(BE<lt>E<gt>, IE<gt>E<lt>) with tabs to come up with a format that's fairly
6853easy to parse and portable, but which still allows the help to be a little
6854nicer than just plain text.
6855
6856Essentially, you define the command name (usually marked up with BE<gt>E<lt>
6857and IE<gt>E<lt>), followed by a tab, and then the descriptive text, ending in a newline. The descriptive text can also be marked up in the same way. If you
6858need to continue the descriptive text to another line, start that line with
6859just tabs and then enter the marked-up text.
6860
6861If you are modifying the help text, I<be careful>. The help-string parser is
6862not very sophisticated, and if you don't follow these rules it will mangle the
6863help beyond hope until you fix the string.
6864
6865=cut
eda6e075 6866
d12a4851 6867sub sethelp {
69893cff 6868
d12a4851
JH
6869 # XXX: make sure there are tabs between the command and explanation,
6870 # or print_help will screw up your formatting if you have
6871 # eeevil ornaments enabled. This is an insane mess.
eda6e075 6872
d12a4851 6873 $help = "
e22ea7cc
RF
6874Help is currently only available for the new 5.8 command set.
6875No help is available for the old command set.
6876We assume you know what you're doing if you switch to it.
eda6e075 6877
69893cff
RGS
6878B<T> Stack trace.
6879B<s> [I<expr>] Single step [in I<expr>].
6880B<n> [I<expr>] Next, steps over subroutine calls [in I<expr>].
6881<B<CR>> Repeat last B<n> or B<s> command.
6882B<r> Return from current subroutine.
6883B<c> [I<line>|I<sub>] Continue; optionally inserts a one-time-only breakpoint
6884 at the specified position.
6885B<l> I<min>B<+>I<incr> List I<incr>+1 lines starting at I<min>.
6886B<l> I<min>B<->I<max> List lines I<min> through I<max>.
6887B<l> I<line> List single I<line>.
6888B<l> I<subname> List first window of lines from subroutine.
6889B<l> I<\$var> List first window of lines from subroutine referenced by I<\$var>.
6890B<l> List next window of lines.
6891B<-> List previous window of lines.
6892B<v> [I<line>] View window around I<line>.
6893B<.> Return to the executed line.
6894B<f> I<filename> Switch to viewing I<filename>. File must be already loaded.
6895 I<filename> may be either the full name of the file, or a regular
6896 expression matching the full file name:
6897 B<f> I</home/me/foo.pl> and B<f> I<oo\\.> may access the same file.
6898 Evals (with saved bodies) are considered to be filenames:
6899 B<f> I<(eval 7)> and B<f> I<eval 7\\b> access the body of the 7th eval
6900 (in the order of execution).
6901B</>I<pattern>B</> Search forwards for I<pattern>; final B</> is optional.
6902B<?>I<pattern>B<?> Search backwards for I<pattern>; final B<?> is optional.
6903B<L> [I<a|b|w>] List actions and or breakpoints and or watch-expressions.
6904B<S> [[B<!>]I<pattern>] List subroutine names [not] matching I<pattern>.
6905B<t> Toggle trace mode.
6906B<t> I<expr> Trace through execution of I<expr>.
6907B<b> Sets breakpoint on current line)
d12a4851 6908B<b> [I<line>] [I<condition>]
69893cff
RGS
6909 Set breakpoint; I<line> defaults to the current execution line;
6910 I<condition> breaks if it evaluates to true, defaults to '1'.
d12a4851 6911B<b> I<subname> [I<condition>]
69893cff
RGS
6912 Set breakpoint at first line of subroutine.
6913B<b> I<\$var> Set breakpoint at first line of subroutine referenced by I<\$var>.
d12a4851
JH
6914B<b> B<load> I<filename> Set breakpoint on 'require'ing the given file.
6915B<b> B<postpone> I<subname> [I<condition>]
69893cff
RGS
6916 Set breakpoint at first line of subroutine after
6917 it is compiled.
d12a4851 6918B<b> B<compile> I<subname>
69893cff
RGS
6919 Stop after the subroutine is compiled.
6920B<B> [I<line>] Delete the breakpoint for I<line>.
d12a4851
JH
6921B<B> I<*> Delete all breakpoints.
6922B<a> [I<line>] I<command>
69893cff
RGS
6923 Set an action to be done before the I<line> is executed;
6924 I<line> defaults to the current execution line.
6925 Sequence is: check for breakpoint/watchpoint, print line
6926 if necessary, do action, prompt user if necessary,
6927 execute line.
6928B<a> Does nothing
6929B<A> [I<line>] Delete the action for I<line>.
d12a4851 6930B<A> I<*> Delete all actions.
69893cff
RGS
6931B<w> I<expr> Add a global watch-expression.
6932B<w> Does nothing
6933B<W> I<expr> Delete a global watch-expression.
d12a4851 6934B<W> I<*> Delete all watch-expressions.
69893cff
RGS
6935B<V> [I<pkg> [I<vars>]] List some (default all) variables in package (default current).
6936 Use B<~>I<pattern> and B<!>I<pattern> for positive and negative regexps.
6937B<X> [I<vars>] Same as \"B<V> I<currentpackage> [I<vars>]\".
69893cff
RGS
6938B<x> I<expr> Evals expression in list context, dumps the result.
6939B<m> I<expr> Evals expression in list context, prints methods callable
6940 on the first element of the result.
6941B<m> I<class> Prints methods callable via the given class.
6942B<M> Show versions of loaded modules.
e219e2fb 6943B<i> I<class> Prints nested parents of given class.
e22ea7cc
RF
6944B<y> [I<n> [I<Vars>]] List lexicals in higher scope <n>. Vars same as B<V>.
6945B<P> Something to do with assertions...
69893cff
RGS
6946
6947B<<> ? List Perl commands to run before each prompt.
6948B<<> I<expr> Define Perl command to run before each prompt.
6949B<<<> I<expr> Add to the list of Perl commands to run before each prompt.
e22ea7cc 6950B<< *> Delete the list of perl commands to run before each prompt.
69893cff
RGS
6951B<>> ? List Perl commands to run after each prompt.
6952B<>> I<expr> Define Perl command to run after each prompt.
6953B<>>B<>> I<expr> Add to the list of Perl commands to run after each prompt.
e22ea7cc 6954B<>>B< *> Delete the list of Perl commands to run after each prompt.
69893cff
RGS
6955B<{> I<db_command> Define debugger command to run before each prompt.
6956B<{> ? List debugger commands to run before each prompt.
6957B<{{> I<db_command> Add to the list of debugger commands to run before each prompt.
6958B<{ *> Delete the list of debugger commands to run before each prompt.
6959B<$prc> I<number> Redo a previous command (default previous command).
6960B<$prc> I<-number> Redo number'th-to-last command.
6961B<$prc> I<pattern> Redo last command that started with I<pattern>.
6962 See 'B<O> I<recallCommand>' too.
6963B<$psh$psh> I<cmd> Run cmd in a subprocess (reads from DB::IN, writes to DB::OUT)"
e22ea7cc
RF
6964 . (
6965 $rc eq $sh
6966 ? ""
6967 : "
6968B<$psh> [I<cmd>] Run I<cmd> in subshell (forces \"\$SHELL -c 'cmd'\")."
6969 ) . "
69893cff 6970 See 'B<O> I<shellBang>' too.
7fddc82f 6971B<source> I<file> Execute I<file> containing debugger commands (may nest).
e219e2fb 6972B<save> I<file> Save current debugger session (actual history) to I<file>.
7fddc82f
RF
6973B<rerun> Rerun session to current position.
6974B<rerun> I<n> Rerun session to numbered command.
6975B<rerun> I<-n> Rerun session to number'th-to-last command.
69893cff 6976B<H> I<-number> Display last number commands (default all).
e22ea7cc 6977B<H> I<*> Delete complete history.
69893cff
RGS
6978B<p> I<expr> Same as \"I<print {DB::OUT} expr>\" in current package.
6979B<|>I<dbcmd> Run debugger command, piping DB::OUT to current pager.
6980B<||>I<dbcmd> Same as B<|>I<dbcmd> but DB::OUT is temporarilly select()ed as well.
6981B<\=> [I<alias> I<value>] Define a command alias, or list current aliases.
6982I<command> Execute as a perl statement in current package.
6983B<R> Pure-man-restart of debugger, some of debugger state
6984 and command-line options may be lost.
6985 Currently the following settings are preserved:
6986 history, breakpoints and actions, debugger B<O>ptions
6987 and the following command-line options: I<-w>, I<-I>, I<-e>.
6988
6989B<o> [I<opt>] ... Set boolean option to true
6990B<o> [I<opt>B<?>] Query options
d12a4851 6991B<o> [I<opt>B<=>I<val>] [I<opt>=B<\">I<val>B<\">] ...
69893cff
RGS
6992 Set options. Use quotes in spaces in value.
6993 I<recallCommand>, I<ShellBang> chars used to recall command or spawn shell;
6994 I<pager> program for output of \"|cmd\";
6995 I<tkRunning> run Tk while prompting (with ReadLine);
6996 I<signalLevel> I<warnLevel> I<dieLevel> level of verbosity;
6997 I<inhibit_exit> Allows stepping off the end of the script.
6998 I<ImmediateStop> Debugger should stop as early as possible.
6999 I<RemotePort> Remote hostname:port for remote debugging
d12a4851 7000 The following options affect what happens with B<V>, B<X>, and B<x> commands:
69893cff
RGS
7001 I<arrayDepth>, I<hashDepth> print only first N elements ('' for all);
7002 I<compactDump>, I<veryCompact> change style of array and hash dump;
7003 I<globPrint> whether to print contents of globs;
7004 I<DumpDBFiles> dump arrays holding debugged files;
7005 I<DumpPackages> dump symbol tables of packages;
7006 I<DumpReused> dump contents of \"reused\" addresses;
7007 I<quote>, I<HighBit>, I<undefPrint> change style of string dump;
7008 I<bareStringify> Do not print the overload-stringified value;
d12a4851 7009 Other options include:
69893cff
RGS
7010 I<PrintRet> affects printing of return value after B<r> command,
7011 I<frame> affects printing messages on subroutine entry/exit.
7012 I<AutoTrace> affects printing messages on possible breaking points.
7013 I<maxTraceLen> gives max length of evals/args listed in stack trace.
7014 I<ornaments> affects screen appearance of the command line.
7015 I<CreateTTY> bits control attempts to create a new TTY on events:
7016 1: on fork() 2: debugger is started inside debugger
7017 4: on startup
7018 During startup options are initialized from \$ENV{PERLDB_OPTS}.
7019 You can put additional initialization options I<TTY>, I<noTTY>,
7020 I<ReadLine>, I<NonStop>, and I<RemotePort> there (or use
7021 `B<R>' after you set them).
7022
7023B<q> or B<^D> Quit. Set B<\$DB::finished = 0> to debug global destruction.
7024B<h> Summary of debugger commands.
7025B<h> [I<db_command>] Get help [on a specific debugger command], enter B<|h> to page.
7026B<h h> Long help for debugger commands
7027B<$doccmd> I<manpage> Runs the external doc viewer B<$doccmd> command on the
7028 named Perl I<manpage>, or on B<$doccmd> itself if omitted.
7029 Set B<\$DB::doccmd> to change viewer.
eda6e075 7030
d12a4851 7031Type `|h h' for a paged display if this was too hard to read.
eda6e075 7032
e22ea7cc 7033"; # Fix balance of vi % matching: }}}}
eda6e075 7034
d12a4851
JH
7035 # note: tabs in the following section are not-so-helpful
7036 $summary = <<"END_SUM";
7037I<List/search source lines:> I<Control script execution:>
7038 B<l> [I<ln>|I<sub>] List source code B<T> Stack trace
7039 B<-> or B<.> List previous/current line B<s> [I<expr>] Single step [in expr]
7040 B<v> [I<line>] View around line B<n> [I<expr>] Next, steps over subs
7041 B<f> I<filename> View source in file <B<CR>/B<Enter>> Repeat last B<n> or B<s>
7042 B</>I<pattern>B</> B<?>I<patt>B<?> Search forw/backw B<r> Return from subroutine
7043 B<M> Show module versions B<c> [I<ln>|I<sub>] Continue until position
7044I<Debugger controls:> B<L> List break/watch/actions
7045 B<o> [...] Set debugger options B<t> [I<expr>] Toggle trace [trace expr]
7046 B<<>[B<<>]|B<{>[B<{>]|B<>>[B<>>] [I<cmd>] Do pre/post-prompt B<b> [I<ln>|I<event>|I<sub>] [I<cnd>] Set breakpoint
7047 B<$prc> [I<N>|I<pat>] Redo a previous command B<B> I<ln|*> Delete a/all breakpoints
7048 B<H> [I<-num>] Display last num commands B<a> [I<ln>] I<cmd> Do cmd before line
7049 B<=> [I<a> I<val>] Define/list an alias B<A> I<ln|*> Delete a/all actions
7050 B<h> [I<db_cmd>] Get help on command B<w> I<expr> Add a watch expression
7051 B<h h> Complete help page B<W> I<expr|*> Delete a/all watch exprs
7052 B<|>[B<|>]I<db_cmd> Send output to pager B<$psh>\[B<$psh>\] I<syscmd> Run cmd in a subprocess
7053 B<q> or B<^D> Quit B<R> Attempt a restart
7054I<Data Examination:> B<expr> Execute perl code, also see: B<s>,B<n>,B<t> I<expr>
7055 B<x>|B<m> I<expr> Evals expr in list context, dumps the result or lists methods.
7056 B<p> I<expr> Print expression (uses script's current package).
7057 B<S> [[B<!>]I<pat>] List subroutine names [not] matching pattern
7058 B<V> [I<Pk> [I<Vars>]] List Variables in Package. Vars can be ~pattern or !pattern.
e219e2fb 7059 B<X> [I<Vars>] Same as \"B<V> I<current_package> [I<Vars>]\". B<i> I<class> inheritance tree.
d12a4851
JH
7060 B<y> [I<n> [I<Vars>]] List lexicals in higher scope <n>. Vars same as B<V>.
7061For more help, type B<h> I<cmd_letter>, or run B<$doccmd perldebug> for all docs.
7062END_SUM
e22ea7cc 7063
69893cff
RGS
7064 # ')}}; # Fix balance of vi % matching
7065
7066 # and this is really numb...
7067 $pre580_help = "
7068B<T> Stack trace.
7069B<s> [I<expr>] Single step [in I<expr>].
7070B<n> [I<expr>] Next, steps over subroutine calls [in I<expr>].
e22ea7cc 7071B<CR>> Repeat last B<n> or B<s> command.
69893cff
RGS
7072B<r> Return from current subroutine.
7073B<c> [I<line>|I<sub>] Continue; optionally inserts a one-time-only breakpoint
7074 at the specified position.
7075B<l> I<min>B<+>I<incr> List I<incr>+1 lines starting at I<min>.
7076B<l> I<min>B<->I<max> List lines I<min> through I<max>.
7077B<l> I<line> List single I<line>.
7078B<l> I<subname> List first window of lines from subroutine.
7079B<l> I<\$var> List first window of lines from subroutine referenced by I<\$var>.
7080B<l> List next window of lines.
7081B<-> List previous window of lines.
7082B<w> [I<line>] List window around I<line>.
7083B<.> Return to the executed line.
7084B<f> I<filename> Switch to viewing I<filename>. File must be already loaded.
7085 I<filename> may be either the full name of the file, or a regular
7086 expression matching the full file name:
7087 B<f> I</home/me/foo.pl> and B<f> I<oo\\.> may access the same file.
7088 Evals (with saved bodies) are considered to be filenames:
7089 B<f> I<(eval 7)> and B<f> I<eval 7\\b> access the body of the 7th eval
7090 (in the order of execution).
7091B</>I<pattern>B</> Search forwards for I<pattern>; final B</> is optional.
7092B<?>I<pattern>B<?> Search backwards for I<pattern>; final B<?> is optional.
7093B<L> List all breakpoints and actions.
7094B<S> [[B<!>]I<pattern>] List subroutine names [not] matching I<pattern>.
7095B<t> Toggle trace mode.
7096B<t> I<expr> Trace through execution of I<expr>.
d12a4851 7097B<b> [I<line>] [I<condition>]
69893cff
RGS
7098 Set breakpoint; I<line> defaults to the current execution line;
7099 I<condition> breaks if it evaluates to true, defaults to '1'.
d12a4851 7100B<b> I<subname> [I<condition>]
69893cff
RGS
7101 Set breakpoint at first line of subroutine.
7102B<b> I<\$var> Set breakpoint at first line of subroutine referenced by I<\$var>.
d12a4851
JH
7103B<b> B<load> I<filename> Set breakpoint on `require'ing the given file.
7104B<b> B<postpone> I<subname> [I<condition>]
69893cff
RGS
7105 Set breakpoint at first line of subroutine after
7106 it is compiled.
d12a4851 7107B<b> B<compile> I<subname>
69893cff
RGS
7108 Stop after the subroutine is compiled.
7109B<d> [I<line>] Delete the breakpoint for I<line>.
7110B<D> Delete all breakpoints.
d12a4851 7111B<a> [I<line>] I<command>
69893cff
RGS
7112 Set an action to be done before the I<line> is executed;
7113 I<line> defaults to the current execution line.
7114 Sequence is: check for breakpoint/watchpoint, print line
7115 if necessary, do action, prompt user if necessary,
7116 execute line.
7117B<a> [I<line>] Delete the action for I<line>.
7118B<A> Delete all actions.
7119B<W> I<expr> Add a global watch-expression.
7120B<W> Delete all watch-expressions.
7121B<V> [I<pkg> [I<vars>]] List some (default all) variables in package (default current).
7122 Use B<~>I<pattern> and B<!>I<pattern> for positive and negative regexps.
7123B<X> [I<vars>] Same as \"B<V> I<currentpackage> [I<vars>]\".
7124B<x> I<expr> Evals expression in list context, dumps the result.
7125B<m> I<expr> Evals expression in list context, prints methods callable
7126 on the first element of the result.
7127B<m> I<class> Prints methods callable via the given class.
7128
7129B<<> ? List Perl commands to run before each prompt.
7130B<<> I<expr> Define Perl command to run before each prompt.
7131B<<<> I<expr> Add to the list of Perl commands to run before each prompt.
7132B<>> ? List Perl commands to run after each prompt.
7133B<>> I<expr> Define Perl command to run after each prompt.
7134B<>>B<>> I<expr> Add to the list of Perl commands to run after each prompt.
7135B<{> I<db_command> Define debugger command to run before each prompt.
7136B<{> ? List debugger commands to run before each prompt.
7137B<{{> I<db_command> Add to the list of debugger commands to run before each prompt.
7138B<$prc> I<number> Redo a previous command (default previous command).
7139B<$prc> I<-number> Redo number'th-to-last command.
7140B<$prc> I<pattern> Redo last command that started with I<pattern>.
7141 See 'B<O> I<recallCommand>' too.
7142B<$psh$psh> I<cmd> Run cmd in a subprocess (reads from DB::IN, writes to DB::OUT)"
e22ea7cc
RF
7143 . (
7144 $rc eq $sh
7145 ? ""
7146 : "
69893cff 7147B<$psh> [I<cmd>] Run I<cmd> in subshell (forces \"\$SHELL -c 'cmd'\")."
e22ea7cc 7148 ) . "
69893cff
RGS
7149 See 'B<O> I<shellBang>' too.
7150B<source> I<file> Execute I<file> containing debugger commands (may nest).
7151B<H> I<-number> Display last number commands (default all).
7152B<p> I<expr> Same as \"I<print {DB::OUT} expr>\" in current package.
7153B<|>I<dbcmd> Run debugger command, piping DB::OUT to current pager.
7154B<||>I<dbcmd> Same as B<|>I<dbcmd> but DB::OUT is temporarilly select()ed as well.
7155B<\=> [I<alias> I<value>] Define a command alias, or list current aliases.
7156I<command> Execute as a perl statement in current package.
7157B<v> Show versions of loaded modules.
7158B<R> Pure-man-restart of debugger, some of debugger state
7159 and command-line options may be lost.
7160 Currently the following settings are preserved:
7161 history, breakpoints and actions, debugger B<O>ptions
7162 and the following command-line options: I<-w>, I<-I>, I<-e>.
7163
7164B<O> [I<opt>] ... Set boolean option to true
7165B<O> [I<opt>B<?>] Query options
d12a4851 7166B<O> [I<opt>B<=>I<val>] [I<opt>=B<\">I<val>B<\">] ...
69893cff
RGS
7167 Set options. Use quotes in spaces in value.
7168 I<recallCommand>, I<ShellBang> chars used to recall command or spawn shell;
7169 I<pager> program for output of \"|cmd\";
7170 I<tkRunning> run Tk while prompting (with ReadLine);
7171 I<signalLevel> I<warnLevel> I<dieLevel> level of verbosity;
7172 I<inhibit_exit> Allows stepping off the end of the script.
7173 I<ImmediateStop> Debugger should stop as early as possible.
7174 I<RemotePort> Remote hostname:port for remote debugging
d12a4851 7175 The following options affect what happens with B<V>, B<X>, and B<x> commands:
69893cff
RGS
7176 I<arrayDepth>, I<hashDepth> print only first N elements ('' for all);
7177 I<compactDump>, I<veryCompact> change style of array and hash dump;
7178 I<globPrint> whether to print contents of globs;
7179 I<DumpDBFiles> dump arrays holding debugged files;
7180 I<DumpPackages> dump symbol tables of packages;
7181 I<DumpReused> dump contents of \"reused\" addresses;
7182 I<quote>, I<HighBit>, I<undefPrint> change style of string dump;
7183 I<bareStringify> Do not print the overload-stringified value;
d12a4851 7184 Other options include:
69893cff
RGS
7185 I<PrintRet> affects printing of return value after B<r> command,
7186 I<frame> affects printing messages on subroutine entry/exit.
7187 I<AutoTrace> affects printing messages on possible breaking points.
7188 I<maxTraceLen> gives max length of evals/args listed in stack trace.
7189 I<ornaments> affects screen appearance of the command line.
7190 I<CreateTTY> bits control attempts to create a new TTY on events:
7191 1: on fork() 2: debugger is started inside debugger
7192 4: on startup
7193 During startup options are initialized from \$ENV{PERLDB_OPTS}.
7194 You can put additional initialization options I<TTY>, I<noTTY>,
7195 I<ReadLine>, I<NonStop>, and I<RemotePort> there (or use
7196 `B<R>' after you set them).
7197
7198B<q> or B<^D> Quit. Set B<\$DB::finished = 0> to debug global destruction.
7199B<h> [I<db_command>] Get help [on a specific debugger command], enter B<|h> to page.
7200B<h h> Summary of debugger commands.
7201B<$doccmd> I<manpage> Runs the external doc viewer B<$doccmd> command on the
7202 named Perl I<manpage>, or on B<$doccmd> itself if omitted.
7203 Set B<\$DB::doccmd> to change viewer.
eda6e075 7204
d12a4851 7205Type `|h' for a paged display if this was too hard to read.
3a6edaec 7206
e22ea7cc 7207"; # Fix balance of vi % matching: }}}}
eda6e075 7208
d12a4851
JH
7209 # note: tabs in the following section are not-so-helpful
7210 $pre580_summary = <<"END_SUM";
7211I<List/search source lines:> I<Control script execution:>
7212 B<l> [I<ln>|I<sub>] List source code B<T> Stack trace
7213 B<-> or B<.> List previous/current line B<s> [I<expr>] Single step [in expr]
7214 B<w> [I<line>] List around line B<n> [I<expr>] Next, steps over subs
7215 B<f> I<filename> View source in file <B<CR>/B<Enter>> Repeat last B<n> or B<s>
7216 B</>I<pattern>B</> B<?>I<patt>B<?> Search forw/backw B<r> Return from subroutine
7217 B<v> Show versions of modules B<c> [I<ln>|I<sub>] Continue until position
7218I<Debugger controls:> B<L> List break/watch/actions
7219 B<O> [...] Set debugger options B<t> [I<expr>] Toggle trace [trace expr]
7220 B<<>[B<<>]|B<{>[B<{>]|B<>>[B<>>] [I<cmd>] Do pre/post-prompt B<b> [I<ln>|I<event>|I<sub>] [I<cnd>] Set breakpoint
7221 B<$prc> [I<N>|I<pat>] Redo a previous command B<d> [I<ln>] or B<D> Delete a/all breakpoints
7222 B<H> [I<-num>] Display last num commands B<a> [I<ln>] I<cmd> Do cmd before line
7223 B<=> [I<a> I<val>] Define/list an alias B<W> I<expr> Add a watch expression
7224 B<h> [I<db_cmd>] Get help on command B<A> or B<W> Delete all actions/watch
7225 B<|>[B<|>]I<db_cmd> Send output to pager B<$psh>\[B<$psh>\] I<syscmd> Run cmd in a subprocess
7226 B<q> or B<^D> Quit B<R> Attempt a restart
7227I<Data Examination:> B<expr> Execute perl code, also see: B<s>,B<n>,B<t> I<expr>
7228 B<x>|B<m> I<expr> Evals expr in list context, dumps the result or lists methods.
7229 B<p> I<expr> Print expression (uses script's current package).
7230 B<S> [[B<!>]I<pat>] List subroutine names [not] matching pattern
7231 B<V> [I<Pk> [I<Vars>]] List Variables in Package. Vars can be ~pattern or !pattern.
7232 B<X> [I<Vars>] Same as \"B<V> I<current_package> [I<Vars>]\".
7233 B<y> [I<n> [I<Vars>]] List lexicals in higher scope <n>. Vars same as B<V>.
7234For more help, type B<h> I<cmd_letter>, or run B<$doccmd perldebug> for all docs.
7235END_SUM
eda6e075 7236
e22ea7cc 7237 # ')}}; # Fix balance of vi % matching
69893cff
RGS
7238
7239} ## end sub sethelp
7240
7241=head2 C<print_help()>
7242
7243Most of what C<print_help> does is just text formatting. It finds the
7244C<B> and C<I> ornaments, cleans them off, and substitutes the proper
7245terminal control characters to simulate them (courtesy of
7246<Term::ReadLine::TermCap>).
7247
7248=cut
eda6e075 7249
d12a4851
JH
7250sub print_help {
7251 local $_ = shift;
eda6e075 7252
d12a4851
JH
7253 # Restore proper alignment destroyed by eeevil I<> and B<>
7254 # ornaments: A pox on both their houses!
7255 #
7256 # A help command will have everything up to and including
7257 # the first tab sequence padded into a field 16 (or if indented 20)
7258 # wide. If it's wider than that, an extra space will be added.
7259 s{
e22ea7cc
RF
7260 ^ # only matters at start of line
7261 ( \040{4} | \t )* # some subcommands are indented
7262 ( < ? # so <CR> works
7263 [BI] < [^\t\n] + ) # find an eeevil ornament
7264 ( \t+ ) # original separation, discarded
7265 ( .* ) # this will now start (no earlier) than
7266 # column 16
d12a4851 7267 } {
e22ea7cc
RF
7268 my($leadwhite, $command, $midwhite, $text) = ($1, $2, $3, $4);
7269 my $clean = $command;
7270 $clean =~ s/[BI]<([^>]*)>/$1/g;
69893cff 7271
e22ea7cc
RF
7272 # replace with this whole string:
7273 ($leadwhite ? " " x 4 : "")
d12a4851
JH
7274 . $command
7275 . ((" " x (16 + ($leadwhite ? 4 : 0) - length($clean))) || " ")
7276 . $text;
eda6e075 7277
d12a4851 7278 }mgex;
eda6e075 7279
e22ea7cc
RF
7280 s{ # handle bold ornaments
7281 B < ( [^>] + | > ) >
d12a4851 7282 } {
e22ea7cc
RF
7283 $Term::ReadLine::TermCap::rl_term_set[2]
7284 . $1
7285 . $Term::ReadLine::TermCap::rl_term_set[3]
d12a4851 7286 }gex;
eda6e075 7287
e22ea7cc
RF
7288 s{ # handle italic ornaments
7289 I < ( [^>] + | > ) >
d12a4851 7290 } {
e22ea7cc
RF
7291 $Term::ReadLine::TermCap::rl_term_set[0]
7292 . $1
7293 . $Term::ReadLine::TermCap::rl_term_set[1]
d12a4851 7294 }gex;
eda6e075 7295
d12a4851
JH
7296 local $\ = '';
7297 print $OUT $_;
69893cff
RGS
7298} ## end sub print_help
7299
7300=head2 C<fix_less>
7301
7302This routine does a lot of gyrations to be sure that the pager is C<less>.
7303It checks for C<less> masquerading as C<more> and records the result in
7304C<$ENV{LESS}> so we don't have to go through doing the stats again.
7305
7306=cut
eda6e075 7307
d12a4851 7308sub fix_less {
69893cff
RGS
7309
7310 # We already know if this is set.
d12a4851 7311 return if defined $ENV{LESS} && $ENV{LESS} =~ /r/;
69893cff
RGS
7312
7313 # Pager is less for sure.
d12a4851 7314 my $is_less = $pager =~ /\bless\b/;
e22ea7cc
RF
7315 if ( $pager =~ /\bmore\b/ ) {
7316
69893cff 7317 # Nope, set to more. See what's out there.
e22ea7cc
RF
7318 my @st_more = stat('/usr/bin/more');
7319 my @st_less = stat('/usr/bin/less');
69893cff
RGS
7320
7321 # is it really less, pretending to be more?
e22ea7cc
RF
7322 $is_less = @st_more
7323 && @st_less
7324 && $st_more[0] == $st_less[0]
7325 && $st_more[1] == $st_less[1];
69893cff 7326 } ## end if ($pager =~ /\bmore\b/)
e22ea7cc 7327
d12a4851 7328 # changes environment!
69893cff 7329 # 'r' added so we don't do (slow) stats again.
e22ea7cc 7330 $ENV{LESS} .= 'r' if $is_less;
69893cff
RGS
7331} ## end sub fix_less
7332
7333=head1 DIE AND WARN MANAGEMENT
7334
7335=head2 C<diesignal>
7336
7337C<diesignal> is a just-drop-dead C<die> handler. It's most useful when trying
7338to debug a debugger problem.
7339
7340It does its best to report the error that occurred, and then forces the
7341program, debugger, and everything to die.
7342
7343=cut
eda6e075 7344
d12a4851 7345sub diesignal {
e22ea7cc 7346
69893cff 7347 # No entry/exit messages.
d12a4851 7348 local $frame = 0;
69893cff
RGS
7349
7350 # No return value prints.
d12a4851 7351 local $doret = -2;
69893cff
RGS
7352
7353 # set the abort signal handling to the default (just terminate).
d12a4851 7354 $SIG{'ABRT'} = 'DEFAULT';
69893cff
RGS
7355
7356 # If we enter the signal handler recursively, kill myself with an
7357 # abort signal (so we just terminate).
d12a4851 7358 kill 'ABRT', $$ if $panic++;
69893cff
RGS
7359
7360 # If we can show detailed info, do so.
e22ea7cc
RF
7361 if ( defined &Carp::longmess ) {
7362
69893cff 7363 # Don't recursively enter the warn handler, since we're carping.
e22ea7cc 7364 local $SIG{__WARN__} = '';
69893cff 7365
e22ea7cc
RF
7366 # Skip two levels before reporting traceback: we're skipping
7367 # mydie and confess.
7368 local $Carp::CarpLevel = 2; # mydie + confess
69893cff
RGS
7369
7370 # Tell us all about it.
e22ea7cc 7371 &warn( Carp::longmess("Signal @_") );
d12a4851 7372 }
69893cff
RGS
7373
7374 # No Carp. Tell us about the signal as best we can.
d12a4851 7375 else {
69893cff
RGS
7376 local $\ = '';
7377 print $DB::OUT "Got signal @_\n";
d12a4851 7378 }
69893cff
RGS
7379
7380 # Drop dead.
d12a4851 7381 kill 'ABRT', $$;
69893cff
RGS
7382} ## end sub diesignal
7383
7384=head2 C<dbwarn>
7385
7386The debugger's own default C<$SIG{__WARN__}> handler. We load C<Carp> to
7387be able to get a stack trace, and output the warning message vi C<DB::dbwarn()>.
7388
7389=cut
7390
e22ea7cc 7391sub dbwarn {
eda6e075 7392
e22ea7cc
RF
7393 # No entry/exit trace.
7394 local $frame = 0;
69893cff
RGS
7395
7396 # No return value printing.
e22ea7cc 7397 local $doret = -2;
69893cff
RGS
7398
7399 # Turn off warn and die handling to prevent recursive entries to this
7400 # routine.
e22ea7cc
RF
7401 local $SIG{__WARN__} = '';
7402 local $SIG{__DIE__} = '';
69893cff
RGS
7403
7404 # Load Carp if we can. If $^S is false (current thing being compiled isn't
7405 # done yet), we may not be able to do a require.
e22ea7cc
RF
7406 eval { require Carp }
7407 if defined $^S; # If error/warning during compilation,
7408 # require may be broken.
69893cff
RGS
7409
7410 # Use the core warn() unless Carp loaded OK.
e22ea7cc
RF
7411 CORE::warn( @_,
7412 "\nCannot print stack trace, load with -MCarp option to see stack" ),
7413 return
7414 unless defined &Carp::longmess;
69893cff
RGS
7415
7416 # Save the current values of $single and $trace, and then turn them off.
e22ea7cc
RF
7417 my ( $mysingle, $mytrace ) = ( $single, $trace );
7418 $single = 0;
7419 $trace = 0;
69893cff 7420
e22ea7cc 7421 # We can call Carp::longmess without its being "debugged" (which we
69893cff 7422 # don't want - we just want to use it!). Capture this for later.
e22ea7cc 7423 my $mess = Carp::longmess(@_);
69893cff
RGS
7424
7425 # Restore $single and $trace to their original values.
e22ea7cc 7426 ( $single, $trace ) = ( $mysingle, $mytrace );
69893cff
RGS
7427
7428 # Use the debugger's own special way of printing warnings to print
7429 # the stack trace message.
e22ea7cc 7430 &warn($mess);
69893cff
RGS
7431} ## end sub dbwarn
7432
7433=head2 C<dbdie>
7434
7435The debugger's own C<$SIG{__DIE__}> handler. Handles providing a stack trace
7436by loading C<Carp> and calling C<Carp::longmess()> to get it. We turn off
7437single stepping and tracing during the call to C<Carp::longmess> to avoid
7438debugging it - we just want to use it.
7439
7440If C<dieLevel> is zero, we let the program being debugged handle the
7441exceptions. If it's 1, you get backtraces for any exception. If it's 2,
7442the debugger takes over all exception handling, printing a backtrace and
7443displaying the exception via its C<dbwarn()> routine.
7444
7445=cut
7446
d12a4851 7447sub dbdie {
e22ea7cc
RF
7448 local $frame = 0;
7449 local $doret = -2;
7450 local $SIG{__DIE__} = '';
7451 local $SIG{__WARN__} = '';
7452 my $i = 0;
7453 my $ineval = 0;
7454 my $sub;
7455 if ( $dieLevel > 2 ) {
7456 local $SIG{__WARN__} = \&dbwarn;
7457 &warn(@_); # Yell no matter what
7458 return;
7459 }
7460 if ( $dieLevel < 2 ) {
7461 die @_ if $^S; # in eval propagate
7462 }
69893cff
RGS
7463
7464 # The code used to check $^S to see if compiliation of the current thing
7465 # hadn't finished. We don't do it anymore, figuring eval is pretty stable.
e22ea7cc 7466 eval { require Carp };
d12a4851 7467
e22ea7cc
RF
7468 die( @_,
7469 "\nCannot print stack trace, load with -MCarp option to see stack" )
7470 unless defined &Carp::longmess;
d12a4851 7471
69893cff
RGS
7472 # We do not want to debug this chunk (automatic disabling works
7473 # inside DB::DB, but not in Carp). Save $single and $trace, turn them off,
7474 # get the stack trace from Carp::longmess (if possible), restore $signal
7475 # and $trace, and then die with the stack trace.
e22ea7cc
RF
7476 my ( $mysingle, $mytrace ) = ( $single, $trace );
7477 $single = 0;
7478 $trace = 0;
7479 my $mess = "@_";
7480 {
7481
7482 package Carp; # Do not include us in the list
7483 eval { $mess = Carp::longmess(@_); };
7484 }
7485 ( $single, $trace ) = ( $mysingle, $mytrace );
7486 die $mess;
69893cff
RGS
7487} ## end sub dbdie
7488
7489=head2 C<warnlevel()>
7490
7491Set the C<$DB::warnLevel> variable that stores the value of the
7492C<warnLevel> option. Calling C<warnLevel()> with a positive value
7493results in the debugger taking over all warning handlers. Setting
7494C<warnLevel> to zero leaves any warning handlers set up by the program
7495being debugged in place.
7496
7497=cut
eda6e075 7498
d12a4851 7499sub warnLevel {
e22ea7cc
RF
7500 if (@_) {
7501 $prevwarn = $SIG{__WARN__} unless $warnLevel;
7502 $warnLevel = shift;
7503 if ($warnLevel) {
7504 $SIG{__WARN__} = \&DB::dbwarn;
7505 }
7506 elsif ($prevwarn) {
7507 $SIG{__WARN__} = $prevwarn;
7508 }
69893cff 7509 } ## end if (@_)
e22ea7cc 7510 $warnLevel;
69893cff
RGS
7511} ## end sub warnLevel
7512
7513=head2 C<dielevel>
7514
7515Similar to C<warnLevel>. Non-zero values for C<dieLevel> result in the
7516C<DB::dbdie()> function overriding any other C<die()> handler. Setting it to
7517zero lets you use your own C<die()> handler.
7518
7519=cut
eda6e075 7520
d12a4851 7521sub dieLevel {
e22ea7cc
RF
7522 local $\ = '';
7523 if (@_) {
7524 $prevdie = $SIG{__DIE__} unless $dieLevel;
7525 $dieLevel = shift;
7526 if ($dieLevel) {
7527
69893cff 7528 # Always set it to dbdie() for non-zero values.
e22ea7cc 7529 $SIG{__DIE__} = \&DB::dbdie; # if $dieLevel < 2;
69893cff 7530
e22ea7cc
RF
7531 # No longer exists, so don't try to use it.
7532 #$SIG{__DIE__} = \&DB::diehard if $dieLevel >= 2;
69893cff
RGS
7533
7534 # If we've finished initialization, mention that stack dumps
7535 # are enabled, If dieLevel is 1, we won't stack dump if we die
7536 # in an eval().
e22ea7cc
RF
7537 print $OUT "Stack dump during die enabled",
7538 ( $dieLevel == 1 ? " outside of evals" : "" ), ".\n"
7539 if $I_m_init;
69893cff
RGS
7540
7541 # XXX This is probably obsolete, given that diehard() is gone.
e22ea7cc 7542 print $OUT "Dump printed too.\n" if $dieLevel > 2;
69893cff
RGS
7543 } ## end if ($dieLevel)
7544
7545 # Put the old one back if there was one.
e22ea7cc
RF
7546 elsif ($prevdie) {
7547 $SIG{__DIE__} = $prevdie;
7548 print $OUT "Default die handler restored.\n";
7549 }
69893cff 7550 } ## end if (@_)
e22ea7cc 7551 $dieLevel;
69893cff
RGS
7552} ## end sub dieLevel
7553
7554=head2 C<signalLevel>
7555
7556Number three in a series: set C<signalLevel> to zero to keep your own
7557signal handler for C<SIGSEGV> and/or C<SIGBUS>. Otherwise, the debugger
7558takes over and handles them with C<DB::diesignal()>.
7559
7560=cut
eda6e075 7561
d12a4851 7562sub signalLevel {
e22ea7cc
RF
7563 if (@_) {
7564 $prevsegv = $SIG{SEGV} unless $signalLevel;
7565 $prevbus = $SIG{BUS} unless $signalLevel;
7566 $signalLevel = shift;
7567 if ($signalLevel) {
7568 $SIG{SEGV} = \&DB::diesignal;
7569 $SIG{BUS} = \&DB::diesignal;
7570 }
7571 else {
7572 $SIG{SEGV} = $prevsegv;
7573 $SIG{BUS} = $prevbus;
7574 }
69893cff 7575 } ## end if (@_)
e22ea7cc 7576 $signalLevel;
69893cff
RGS
7577} ## end sub signalLevel
7578
7579=head1 SUBROUTINE DECODING SUPPORT
7580
7581These subroutines are used during the C<x> and C<X> commands to try to
7582produce as much information as possible about a code reference. They use
7583L<Devel::Peek> to try to find the glob in which this code reference lives
7584(if it does) - this allows us to actually code references which correspond
7585to named subroutines (including those aliased via glob assignment).
7586
7587=head2 C<CvGV_name()>
7588
7589Wrapper for X<CvGV_name_or_bust>; tries to get the name of a reference
7590via that routine. If this fails, return the reference again (when the
7591reference is stringified, it'll come out as "SOMETHING(0X...)").
7592
7593=cut
eda6e075 7594
d12a4851 7595sub CvGV_name {
e22ea7cc
RF
7596 my $in = shift;
7597 my $name = CvGV_name_or_bust($in);
7598 defined $name ? $name : $in;
d12a4851 7599}
eda6e075 7600
69893cff
RGS
7601=head2 C<CvGV_name_or_bust> I<coderef>
7602
7603Calls L<Devel::Peek> to try to find the glob the ref lives in; returns
7604C<undef> if L<Devel::Peek> can't be loaded, or if C<Devel::Peek::CvGV> can't
7605find a glob for this ref.
7606
7607Returns "I<package>::I<glob name>" if the code ref is found in a glob.
7608
7609=cut
7610
d12a4851 7611sub CvGV_name_or_bust {
e22ea7cc
RF
7612 my $in = shift;
7613 return if $skipCvGV; # Backdoor to avoid problems if XS broken...
7614 return unless ref $in;
7615 $in = \&$in; # Hard reference...
7616 eval { require Devel::Peek; 1 } or return;
7617 my $gv = Devel::Peek::CvGV($in) or return;
7618 *$gv{PACKAGE} . '::' . *$gv{NAME};
69893cff
RGS
7619} ## end sub CvGV_name_or_bust
7620
7621=head2 C<find_sub>
7622
7623A utility routine used in various places; finds the file where a subroutine
7624was defined, and returns that filename and a line-number range.
7625
7626Tries to use X<@sub> first; if it can't find it there, it tries building a
7627reference to the subroutine and uses X<CvGV_name_or_bust> to locate it,
7628loading it into X<@sub> as a side effect (XXX I think). If it can't find it
7629this way, it brute-force searches X<%sub>, checking for identical references.
7630
7631=cut
eda6e075 7632
d12a4851 7633sub find_sub {
e22ea7cc
RF
7634 my $subr = shift;
7635 $sub{$subr} or do {
7636 return unless defined &$subr;
7637 my $name = CvGV_name_or_bust($subr);
7638 my $data;
7639 $data = $sub{$name} if defined $name;
7640 return $data if defined $data;
7641
7642 # Old stupid way...
7643 $subr = \&$subr; # Hard reference
7644 my $s;
7645 for ( keys %sub ) {
7646 $s = $_, last if $subr eq \&$_;
7647 }
7648 $sub{$s} if $s;
69893cff
RGS
7649 } ## end do
7650} ## end sub find_sub
7651
7652=head2 C<methods>
7653
7654A subroutine that uses the utility function X<methods_via> to find all the
7655methods in the class corresponding to the current reference and in
7656C<UNIVERSAL>.
7657
7658=cut
eda6e075 7659
d12a4851 7660sub methods {
69893cff
RGS
7661
7662 # Figure out the class - either this is the class or it's a reference
7663 # to something blessed into that class.
e22ea7cc
RF
7664 my $class = shift;
7665 $class = ref $class if ref $class;
69893cff 7666
e22ea7cc 7667 local %seen;
69893cff
RGS
7668
7669 # Show the methods that this class has.
e22ea7cc
RF
7670 methods_via( $class, '', 1 );
7671
7672 # Show the methods that UNIVERSAL has.
7673 methods_via( 'UNIVERSAL', 'UNIVERSAL', 0 );
69893cff
RGS
7674} ## end sub methods
7675
7676=head2 C<methods_via($class, $prefix, $crawl_upward)>
7677
7678C<methods_via> does the work of crawling up the C<@ISA> tree and reporting
7679all the parent class methods. C<$class> is the name of the next class to
7680try; C<$prefix> is the message prefix, which gets built up as we go up the
7681C<@ISA> tree to show parentage; C<$crawl_upward> is 1 if we should try to go
7682higher in the C<@ISA> tree, 0 if we should stop.
7683
7684=cut
eda6e075 7685
d12a4851 7686sub methods_via {
e22ea7cc 7687
69893cff 7688 # If we've processed this class already, just quit.
e22ea7cc
RF
7689 my $class = shift;
7690 return if $seen{$class}++;
7691
7692 # This is a package that is contributing the methods we're about to print.
7693 my $prefix = shift;
7694 my $prepend = $prefix ? "via $prefix: " : '';
69893cff 7695
e22ea7cc
RF
7696 my $name;
7697 for $name (
69893cff 7698
69893cff 7699 # Keep if this is a defined subroutine in this class.
e22ea7cc
RF
7700 grep { defined &{ ${"${class}::"}{$_} } }
7701
7702 # Extract from all the symbols in this class.
7703 sort keys %{"${class}::"}
7704 )
7705 {
7706
69893cff 7707 # If we printed this already, skip it.
e22ea7cc
RF
7708 next if $seen{$name}++;
7709
69893cff 7710 # Print the new method name.
e22ea7cc
RF
7711 local $\ = '';
7712 local $, = '';
7713 print $DB::OUT "$prepend$name\n";
69893cff
RGS
7714 } ## end for $name (grep { defined...
7715
7716 # If the $crawl_upward argument is false, just quit here.
e22ea7cc 7717 return unless shift;
69893cff
RGS
7718
7719 # $crawl_upward true: keep going up the tree.
7720 # Find all the classes this one is a subclass of.
e22ea7cc
RF
7721 for $name ( @{"${class}::ISA"} ) {
7722
69893cff 7723 # Set up the new prefix.
e22ea7cc
RF
7724 $prepend = $prefix ? $prefix . " -> $name" : $name;
7725
7726 # Crawl up the tree and keep trying to crawl up.
7727 methods_via( $name, $prepend, 1 );
7728 }
69893cff
RGS
7729} ## end sub methods_via
7730
7731=head2 C<setman> - figure out which command to use to show documentation
eda6e075 7732
69893cff
RGS
7733Just checks the contents of C<$^O> and sets the C<$doccmd> global accordingly.
7734
7735=cut
7736
7737sub setman {
d12a4851 7738 $doccmd = $^O !~ /^(?:MSWin32|VMS|os2|dos|amigaos|riscos|MacOS|NetWare)\z/s
e22ea7cc
RF
7739 ? "man" # O Happy Day!
7740 : "perldoc"; # Alas, poor unfortunates
69893cff
RGS
7741} ## end sub setman
7742
7743=head2 C<runman> - run the appropriate command to show documentation
7744
7745Accepts a man page name; runs the appropriate command to display it (set up
7746during debugger initialization). Uses C<DB::system> to avoid mucking up the
7747program's STDIN and STDOUT.
7748
7749=cut
7750
d12a4851
JH
7751sub runman {
7752 my $page = shift;
7753 unless ($page) {
69893cff
RGS
7754 &system("$doccmd $doccmd");
7755 return;
7756 }
7757
d12a4851
JH
7758 # this way user can override, like with $doccmd="man -Mwhatever"
7759 # or even just "man " to disable the path check.
e22ea7cc 7760 unless ( $doccmd eq 'man' ) {
69893cff
RGS
7761 &system("$doccmd $page");
7762 return;
7763 }
eda6e075 7764
d12a4851 7765 $page = 'perl' if lc($page) eq 'help';
eda6e075 7766
d12a4851
JH
7767 require Config;
7768 my $man1dir = $Config::Config{'man1dir'};
7769 my $man3dir = $Config::Config{'man3dir'};
e22ea7cc 7770 for ( $man1dir, $man3dir ) { s#/[^/]*\z## if /\S/ }
d12a4851
JH
7771 my $manpath = '';
7772 $manpath .= "$man1dir:" if $man1dir =~ /\S/;
7773 $manpath .= "$man3dir:" if $man3dir =~ /\S/ && $man1dir ne $man3dir;
7774 chop $manpath if $manpath;
69893cff 7775
d12a4851
JH
7776 # harmless if missing, I figure
7777 my $oldpath = $ENV{MANPATH};
7778 $ENV{MANPATH} = $manpath if $manpath;
7779 my $nopathopt = $^O =~ /dunno what goes here/;
69893cff
RGS
7780 if (
7781 CORE::system(
e22ea7cc 7782 $doccmd,
69893cff 7783
e22ea7cc
RF
7784 # I just *know* there are men without -M
7785 ( ( $manpath && !$nopathopt ) ? ( "-M", $manpath ) : () ),
7786 split ' ', $page
69893cff 7787 )
e22ea7cc 7788 )
d12a4851 7789 {
e22ea7cc 7790 unless ( $page =~ /^perl\w/ ) {
7fddc82f
RF
7791# do it this way because its easier to slurp in to keep up to date - clunky though.
7792my @pods = qw(
7793 5004delta
7794 5005delta
7795 561delta
7796 56delta
7797 570delta
7798 571delta
7799 572delta
7800 573delta
7801 58delta
2dac93e4
RGS
7802 581delta
7803 582delta
7804 583delta
7805 584delta
7806 590delta
7807 591delta
7808 592delta
7fddc82f
RF
7809 aix
7810 amiga
7811 apio
7812 api
7813 apollo
7814 artistic
7815 beos
7816 book
7817 boot
7818 bot
7819 bs2000
7820 call
7821 ce
7822 cheat
7823 clib
7824 cn
7825 compile
7826 cygwin
7827 data
7828 dbmfilter
7829 debguts
7830 debtut
7831 debug
7832 delta
7833 dgux
7834 diag
7835 doc
7836 dos
7837 dsc
7838 ebcdic
7839 embed
7840 epoc
7841 faq1
7842 faq2
7843 faq3
7844 faq4
7845 faq5
7846 faq6
7847 faq7
7848 faq8
7849 faq9
7850 faq
7851 filter
7852 fork
7853 form
7854 freebsd
7855 func
7856 gpl
7857 guts
7858 hack
7859 hist
7860 hpux
7861 hurd
7862 intern
7863 intro
7864 iol
7865 ipc
7866 irix
7867 jp
7868 ko
7869 lexwarn
7870 locale
7871 lol
7872 machten
7873 macos
7874 macosx
7875 mint
7876 modinstall
7877 modlib
7878 mod
7879 modstyle
7880 mpeix
7881 netware
7882 newmod
7883 number
7884 obj
7885 opentut
7886 op
7887 os2
7888 os390
7889 os400
7890 othrtut
7891 packtut
7892 plan9
7893 pod
7894 podspec
7895 port
7896 qnx
7897 ref
7898 reftut
7899 re
7900 requick
7901 reref
7902 retut
7903 run
7904 sec
7905 solaris
7906 style
7907 sub
7908 syn
7909 thrtut
7910 tie
7911 toc
7912 todo
7913 tooc
7914 toot
7915 trap
7916 tru64
7917 tw
7918 unicode
7919 uniintro
7920 util
7921 uts
7922 var
7923 vmesa
7924 vms
7925 vos
7926 win32
7927 xs
7928 xstut
7929);
7930 if (grep { $page eq $_ } @pods) {
e22ea7cc
RF
7931 $page =~ s/^/perl/;
7932 CORE::system( $doccmd,
7933 ( ( $manpath && !$nopathopt ) ? ( "-M", $manpath ) : () ),
7934 $page );
69893cff
RGS
7935 } ## end if (grep { $page eq $_...
7936 } ## end unless ($page =~ /^perl\w/)
7937 } ## end if (CORE::system($doccmd...
e22ea7cc
RF
7938 if ( defined $oldpath ) {
7939 $ENV{MANPATH} = $manpath;
69893cff
RGS
7940 }
7941 else {
e22ea7cc 7942 delete $ENV{MANPATH};
69893cff
RGS
7943 }
7944} ## end sub runman
7945
7946#use Carp; # This did break, left for debugging
7947
7948=head1 DEBUGGER INITIALIZATION - THE SECOND BEGIN BLOCK
7949
7950Because of the way the debugger interface to the Perl core is designed, any
7951debugger package globals that C<DB::sub()> requires have to be defined before
7952any subroutines can be called. These are defined in the second C<BEGIN> block.
7953
7954This block sets things up so that (basically) the world is sane
7955before the debugger starts executing. We set up various variables that the
7956debugger has to have set up before the Perl core starts running:
7957
7958=over 4
7959
7960=item * The debugger's own filehandles (copies of STD and STDOUT for now).
7961
7962=item * Characters for shell escapes, the recall command, and the history command.
7963
7964=item * The maximum recursion depth.
7965
7966=item * The size of a C<w> command's window.
7967
7968=item * The before-this-line context to be printed in a C<v> (view a window around this line) command.
7969
7970=item * The fact that we're not in a sub at all right now.
7971
7972=item * The default SIGINT handler for the debugger.
7973
7974=item * The appropriate value of the flag in C<$^D> that says the debugger is running
7975
7976=item * The current debugger recursion level
7977
7978=item * The list of postponed (XXX define) items and the C<$single> stack
7979
7980=item * That we want no return values and no subroutine entry/exit trace.
7981
7982=back
7983
7984=cut
eda6e075 7985
d12a4851 7986# The following BEGIN is very handy if debugger goes havoc, debugging debugger?
eda6e075 7987
e22ea7cc
RF
7988BEGIN { # This does not compile, alas. (XXX eh?)
7989 $IN = \*STDIN; # For bugs before DB::OUT has been opened
7990 $OUT = \*STDERR; # For errors before DB::OUT has been opened
69893cff 7991
e22ea7cc
RF
7992 # Define characters used by command parsing.
7993 $sh = '!'; # Shell escape (does not work)
7994 $rc = ','; # Recall command (does not work)
7995 @hist = ('?'); # Show history (does not work)
7996 @truehist = (); # Can be saved for replay (per session)
69893cff 7997
e22ea7cc 7998 # This defines the point at which you get the 'deep recursion'
69893cff 7999 # warning. It MUST be defined or the debugger will not load.
e22ea7cc 8000 $deep = 100;
69893cff 8001
e22ea7cc 8002 # Number of lines around the current one that are shown in the
69893cff 8003 # 'w' command.
e22ea7cc 8004 $window = 10;
69893cff
RGS
8005
8006 # How much before-the-current-line context the 'v' command should
8007 # use in calculating the start of the window it will display.
e22ea7cc 8008 $preview = 3;
69893cff
RGS
8009
8010 # We're not in any sub yet, but we need this to be a defined value.
e22ea7cc 8011 $sub = '';
69893cff 8012
e22ea7cc 8013 # Set up the debugger's interrupt handler. It simply sets a flag
69893cff 8014 # ($signal) that DB::DB() will check before each command is executed.
e22ea7cc 8015 $SIG{INT} = \&DB::catch;
69893cff
RGS
8016
8017 # The following lines supposedly, if uncommented, allow the debugger to
e22ea7cc 8018 # debug itself. Perhaps we can try that someday.
69893cff 8019 # This may be enabled to debug debugger:
e22ea7cc
RF
8020 #$warnLevel = 1 unless defined $warnLevel;
8021 #$dieLevel = 1 unless defined $dieLevel;
8022 #$signalLevel = 1 unless defined $signalLevel;
d12a4851 8023
69893cff
RGS
8024 # This is the flag that says "a debugger is running, please call
8025 # DB::DB and DB::sub". We will turn it on forcibly before we try to
8026 # execute anything in the user's context, because we always want to
8027 # get control back.
e22ea7cc
RF
8028 $db_stop = 0; # Compiler warning ...
8029 $db_stop = 1 << 30; # ... because this is only used in an eval() later.
69893cff
RGS
8030
8031 # This variable records how many levels we're nested in debugging. Used
e22ea7cc 8032 # Used in the debugger prompt, and in determining whether it's all over or
69893cff 8033 # not.
e22ea7cc 8034 $level = 0; # Level of recursive debugging
69893cff
RGS
8035
8036 # "Triggers bug (?) in perl if we postpone this until runtime."
8037 # XXX No details on this yet, or whether we should fix the bug instead
e22ea7cc
RF
8038 # of work around it. Stay tuned.
8039 @postponed = @stack = (0);
69893cff
RGS
8040
8041 # Used to track the current stack depth using the auto-stacked-variable
8042 # trick.
e22ea7cc 8043 $stack_depth = 0; # Localized repeatedly; simple way to track $#stack
69893cff
RGS
8044
8045 # Don't print return values on exiting a subroutine.
e22ea7cc 8046 $doret = -2;
69893cff
RGS
8047
8048 # No extry/exit tracing.
e22ea7cc 8049 $frame = 0;
eda6e075 8050
69893cff
RGS
8051} ## end BEGIN
8052
8053BEGIN { $^W = $ini_warn; } # Switch warnings back
8054
8055=head1 READLINE SUPPORT - COMPLETION FUNCTION
8056
8057=head2 db_complete
eda6e075 8058
69893cff
RGS
8059C<readline> support - adds command completion to basic C<readline>.
8060
8061Returns a list of possible completions to C<readline> when invoked. C<readline>
8062will print the longest common substring following the text already entered.
8063
8064If there is only a single possible completion, C<readline> will use it in full.
8065
8066This code uses C<map> and C<grep> heavily to create lists of possible
8067completion. Think LISP in this section.
8068
8069=cut
eda6e075 8070
d12a4851 8071sub db_complete {
69893cff
RGS
8072
8073 # Specific code for b c l V m f O, &blah, $blah, @blah, %blah
8074 # $text is the text to be completed.
8075 # $line is the incoming line typed by the user.
8076 # $start is the start of the text to be completed in the incoming line.
e22ea7cc 8077 my ( $text, $line, $start ) = @_;
69893cff
RGS
8078
8079 # Save the initial text.
8080 # The search pattern is current package, ::, extract the next qualifier
8081 # Prefix and pack are set to undef.
e22ea7cc
RF
8082 my ( $itext, $search, $prefix, $pack ) =
8083 ( $text, "^\Q${'package'}::\E([^:]+)\$" );
8084
69893cff
RGS
8085=head3 C<b postpone|compile>
8086
8087=over 4
8088
8089=item * Find all the subroutines that might match in this package
8090
8091=item * Add "postpone", "load", and "compile" as possibles (we may be completing the keyword itself
8092
8093=item * Include all the rest of the subs that are known
8094
8095=item * C<grep> out the ones that match the text we have so far
8096
8097=item * Return this as the list of possible completions
8098
8099=back
8100
8101=cut
8102
e22ea7cc
RF
8103 return sort grep /^\Q$text/, ( keys %sub ),
8104 qw(postpone load compile), # subroutines
8105 ( map { /$search/ ? ($1) : () } keys %sub )
8106 if ( substr $line, 0, $start ) =~ /^\|*[blc]\s+((postpone|compile)\s+)?$/;
69893cff
RGS
8107
8108=head3 C<b load>
8109
8110Get all the possible files from @INC as it currently stands and
8111select the ones that match the text so far.
8112
8113=cut
8114
e22ea7cc
RF
8115 return sort grep /^\Q$text/, values %INC # files
8116 if ( substr $line, 0, $start ) =~ /^\|*b\s+load\s+$/;
69893cff
RGS
8117
8118=head3 C<V> (list variable) and C<m> (list modules)
8119
8120There are two entry points for these commands:
8121
8122=head4 Unqualified package names
8123
8124Get the top-level packages and grab everything that matches the text
8125so far. For each match, recursively complete the partial packages to
8126get all possible matching packages. Return this sorted list.
8127
8128=cut
8129
e22ea7cc
RF
8130 return sort map { ( $_, db_complete( $_ . "::", "V ", 2 ) ) }
8131 grep /^\Q$text/, map { /^(.*)::$/ ? ($1) : () } keys %:: # top-packages
8132 if ( substr $line, 0, $start ) =~ /^\|*[Vm]\s+$/ and $text =~ /^\w*$/;
69893cff
RGS
8133
8134=head4 Qualified package names
8135
8136Take a partially-qualified package and find all subpackages for it
8137by getting all the subpackages for the package so far, matching all
8138the subpackages against the text, and discarding all of them which
8139start with 'main::'. Return this list.
8140
8141=cut
8142
e22ea7cc
RF
8143 return sort map { ( $_, db_complete( $_ . "::", "V ", 2 ) ) }
8144 grep !/^main::/, grep /^\Q$text/,
8145 map { /^(.*)::$/ ? ( $prefix . "::$1" ) : () } keys %{ $prefix . '::' }
8146 if ( substr $line, 0, $start ) =~ /^\|*[Vm]\s+$/
8147 and $text =~ /^(.*[^:])::?(\w*)$/
8148 and $prefix = $1;
69893cff
RGS
8149
8150=head3 C<f> - switch files
8151
8152Here, we want to get a fully-qualified filename for the C<f> command.
8153Possibilities are:
8154
8155=over 4
8156
8157=item 1. The original source file itself
8158
8159=item 2. A file from C<@INC>
8160
8161=item 3. An C<eval> (the debugger gets a C<(eval N)> fake file for each C<eval>).
8162
8163=back
8164
8165=cut
8166
e22ea7cc
RF
8167 if ( $line =~ /^\|*f\s+(.*)/ ) { # Loaded files
8168 # We might possibly want to switch to an eval (which has a "filename"
8169 # like '(eval 9)'), so we may need to clean up the completion text
8170 # before proceeding.
8171 $prefix = length($1) - length($text);
8172 $text = $1;
69893cff
RGS
8173
8174=pod
8175
8176Under the debugger, source files are represented as C<_E<lt>/fullpath/to/file>
8177(C<eval>s are C<_E<lt>(eval NNN)>) keys in C<%main::>. We pull all of these
8178out of C<%main::>, add the initial source file, and extract the ones that
8179match the completion text so far.
8180
8181=cut
8182
e22ea7cc
RF
8183 return sort
8184 map { substr $_, 2 + $prefix } grep /^_<\Q$text/, ( keys %main:: ),
8185 $0;
69893cff
RGS
8186 } ## end if ($line =~ /^\|*f\s+(.*)/)
8187
8188=head3 Subroutine name completion
8189
8190We look through all of the defined subs (the keys of C<%sub>) and
8191return both all the possible matches to the subroutine name plus
8192all the matches qualified to the current package.
8193
8194=cut
8195
e22ea7cc
RF
8196 if ( ( substr $text, 0, 1 ) eq '&' ) { # subroutines
8197 $text = substr $text, 1;
8198 $prefix = "&";
8199 return sort map "$prefix$_", grep /^\Q$text/, ( keys %sub ),
69893cff
RGS
8200 (
8201 map { /$search/ ? ($1) : () }
e22ea7cc
RF
8202 keys %sub
8203 );
69893cff
RGS
8204 } ## end if ((substr $text, 0, ...
8205
8206=head3 Scalar, array, and hash completion: partially qualified package
8207
8208Much like the above, except we have to do a little more cleanup:
8209
8210=cut
8211
e22ea7cc 8212 if ( $text =~ /^[\$@%](.*)::(.*)/ ) { # symbols in a package
69893cff
RGS
8213
8214=pod
8215
8216=over 4
8217
8218=item * Determine the package that the symbol is in. Put it in C<::> (effectively C<main::>) if no package is specified.
8219
8220=cut
8221
e22ea7cc 8222 $pack = ( $1 eq 'main' ? '' : $1 ) . '::';
69893cff
RGS
8223
8224=pod
8225
8226=item * Figure out the prefix vs. what needs completing.
8227
8228=cut
8229
e22ea7cc
RF
8230 $prefix = ( substr $text, 0, 1 ) . $1 . '::';
8231 $text = $2;
69893cff
RGS
8232
8233=pod
8234
8235=item * Look through all the symbols in the package. C<grep> out all the possible hashes/arrays/scalars, and then C<grep> the possible matches out of those. C<map> the prefix onto all the possibilities.
8236
8237=cut
8238
e22ea7cc
RF
8239 my @out = map "$prefix$_", grep /^\Q$text/, grep /^_?[a-zA-Z]/,
8240 keys %$pack;
69893cff
RGS
8241
8242=pod
8243
8244=item * If there's only one hit, and it's a package qualifier, and it's not equal to the initial text, re-complete it using the symbol we actually found.
8245
8246=cut
8247
e22ea7cc
RF
8248 if ( @out == 1 and $out[0] =~ /::$/ and $out[0] ne $itext ) {
8249 return db_complete( $out[0], $line, $start );
8250 }
69893cff
RGS
8251
8252 # Return the list of possibles.
e22ea7cc 8253 return sort @out;
69893cff
RGS
8254
8255 } ## end if ($text =~ /^[\$@%](.*)::(.*)/)
8256
8257=pod
8258
8259=back
8260
8261=head3 Symbol completion: current package or package C<main>.
8262
8263=cut
8264
e22ea7cc 8265 if ( $text =~ /^[\$@%]/ ) { # symbols (in $package + packages in main)
69893cff
RGS
8266
8267=pod
8268
8269=over 4
8270
8271=item * If it's C<main>, delete main to just get C<::> leading.
8272
8273=cut
8274
e22ea7cc 8275 $pack = ( $package eq 'main' ? '' : $package ) . '::';
69893cff
RGS
8276
8277=pod
8278
8279=item * We set the prefix to the item's sigil, and trim off the sigil to get the text to be completed.
8280
8281=cut
8282
e22ea7cc
RF
8283 $prefix = substr $text, 0, 1;
8284 $text = substr $text, 1;
69893cff
RGS
8285
8286=pod
8287
8288=item * If the package is C<::> (C<main>), create an empty list; if it's something else, create a list of all the packages known. Append whichever list to a list of all the possible symbols in the current package. C<grep> out the matches to the text entered so far, then C<map> the prefix back onto the symbols.
8289
8290=cut
8291
e22ea7cc
RF
8292 my @out = map "$prefix$_", grep /^\Q$text/,
8293 ( grep /^_?[a-zA-Z]/, keys %$pack ),
8294 ( $pack eq '::' ? () : ( grep /::$/, keys %:: ) );
69893cff
RGS
8295
8296=item * If there's only one hit, it's a package qualifier, and it's not equal to the initial text, recomplete using this symbol.
8297
8298=back
8299
8300=cut
8301
e22ea7cc
RF
8302 if ( @out == 1 and $out[0] =~ /::$/ and $out[0] ne $itext ) {
8303 return db_complete( $out[0], $line, $start );
8304 }
69893cff
RGS
8305
8306 # Return the list of possibles.
e22ea7cc 8307 return sort @out;
69893cff
RGS
8308 } ## end if ($text =~ /^[\$@%]/)
8309
8310=head3 Options
8311
8312We use C<option_val()> to look up the current value of the option. If there's
8313only a single value, we complete the command in such a way that it is a
8314complete command for setting the option in question. If there are multiple
8315possible values, we generate a command consisting of the option plus a trailing
8316question mark, which, if executed, will list the current value of the option.
8317
8318=cut
8319
e22ea7cc
RF
8320 if ( ( substr $line, 0, $start ) =~ /^\|*[oO]\b.*\s$/ )
8321 { # Options after space
8322 # We look for the text to be matched in the list of possible options,
8323 # and fetch the current value.
8324 my @out = grep /^\Q$text/, @options;
8325 my $val = option_val( $out[0], undef );
69893cff
RGS
8326
8327 # Set up a 'query option's value' command.
e22ea7cc
RF
8328 my $out = '? ';
8329 if ( not defined $val or $val =~ /[\n\r]/ ) {
8330
8331 # There's really nothing else we can do.
8332 }
69893cff
RGS
8333
8334 # We have a value. Create a proper option-setting command.
e22ea7cc
RF
8335 elsif ( $val =~ /\s/ ) {
8336
69893cff 8337 # XXX This may be an extraneous variable.
e22ea7cc 8338 my $found;
69893cff
RGS
8339
8340 # We'll want to quote the string (because of the embedded
8341 # whtespace), but we want to make sure we don't end up with
8342 # mismatched quote characters. We try several possibilities.
e22ea7cc
RF
8343 foreach $l ( split //, qq/\"\'\#\|/ ) {
8344
69893cff
RGS
8345 # If we didn't find this quote character in the value,
8346 # quote it using this quote character.
e22ea7cc
RF
8347 $out = "$l$val$l ", last if ( index $val, $l ) == -1;
8348 }
69893cff
RGS
8349 } ## end elsif ($val =~ /\s/)
8350
8351 # Don't need any quotes.
e22ea7cc
RF
8352 else {
8353 $out = "=$val ";
8354 }
69893cff
RGS
8355
8356 # If there were multiple possible values, return '? ', which
8357 # makes the command into a query command. If there was just one,
8358 # have readline append that.
e22ea7cc
RF
8359 $rl_attribs->{completer_terminator_character} =
8360 ( @out == 1 ? $out : '? ' );
69893cff
RGS
8361
8362 # Return list of possibilities.
e22ea7cc 8363 return sort @out;
69893cff
RGS
8364 } ## end if ((substr $line, 0, ...
8365
8366=head3 Filename completion
8367
8368For entering filenames. We simply call C<readline>'s C<filename_list()>
8369method with the completion text to get the possible completions.
8370
8371=cut
8372
e22ea7cc 8373 return $term->filename_list($text); # filenames
69893cff
RGS
8374
8375} ## end sub db_complete
8376
8377=head1 MISCELLANEOUS SUPPORT FUNCTIONS
8378
8379Functions that possibly ought to be somewhere else.
8380
8381=head2 end_report
8382
8383Say we're done.
8384
8385=cut
55497cff 8386
43aed9ee 8387sub end_report {
e22ea7cc
RF
8388 local $\ = '';
8389 print $OUT "Use `q' to quit or `R' to restart. `h q' for details.\n";
43aed9ee 8390}
4639966b 8391
69893cff
RGS
8392=head2 clean_ENV
8393
8394If we have $ini_pids, save it in the environment; else remove it from the
8395environment. Used by the C<R> (restart) command.
8396
8397=cut
8398
bf25f2b5 8399sub clean_ENV {
e22ea7cc 8400 if ( defined($ini_pids) ) {
bf25f2b5 8401 $ENV{PERLDB_PIDS} = $ini_pids;
e22ea7cc 8402 }
69893cff 8403 else {
e22ea7cc 8404 delete( $ENV{PERLDB_PIDS} );
bf25f2b5 8405 }
69893cff 8406} ## end sub clean_ENV
06492da6 8407
d12a4851 8408# PERLDBf_... flag names from perl.h
e22ea7cc
RF
8409our ( %DollarCaretP_flags, %DollarCaretP_flags_r );
8410
d12a4851 8411BEGIN {
e22ea7cc
RF
8412 %DollarCaretP_flags = (
8413 PERLDBf_SUB => 0x01, # Debug sub enter/exit
8414 PERLDBf_LINE => 0x02, # Keep line #
8415 PERLDBf_NOOPT => 0x04, # Switch off optimizations
8416 PERLDBf_INTER => 0x08, # Preserve more data
8417 PERLDBf_SUBLINE => 0x10, # Keep subr source lines
8418 PERLDBf_SINGLE => 0x20, # Start with single-step on
8419 PERLDBf_NONAME => 0x40, # For _SUB: no name of the subr
8420 PERLDBf_GOTO => 0x80, # Report goto: call DB::goto
8421 PERLDBf_NAMEEVAL => 0x100, # Informative names for evals
8422 PERLDBf_NAMEANON => 0x200, # Informative names for anon subs
8423 PERLDBf_ASSERTION => 0x400, # Debug assertion subs enter/exit
8424 PERLDB_ALL => 0x33f, # No _NONAME, _GOTO, _ASSERTION
d12a4851 8425 );
06492da6 8426
e22ea7cc 8427 %DollarCaretP_flags_r = reverse %DollarCaretP_flags;
d12a4851 8428}
eda6e075 8429
d12a4851 8430sub parse_DollarCaretP_flags {
e22ea7cc
RF
8431 my $flags = shift;
8432 $flags =~ s/^\s+//;
8433 $flags =~ s/\s+$//;
8434 my $acu = 0;
8435 foreach my $f ( split /\s*\|\s*/, $flags ) {
8436 my $value;
8437 if ( $f =~ /^0x([[:xdigit:]]+)$/ ) {
8438 $value = hex $1;
8439 }
8440 elsif ( $f =~ /^(\d+)$/ ) {
8441 $value = int $1;
8442 }
8443 elsif ( $f =~ /^DEFAULT$/i ) {
8444 $value = $DollarCaretP_flags{PERLDB_ALL};
8445 }
8446 else {
8447 $f =~ /^(?:PERLDBf_)?(.*)$/i;
8448 $value = $DollarCaretP_flags{ 'PERLDBf_' . uc($1) };
8449 unless ( defined $value ) {
8450 print $OUT (
8451 "Unrecognized \$^P flag '$f'!\n",
8452 "Acceptable flags are: "
8453 . join( ', ', sort keys %DollarCaretP_flags ),
8454 ", and hexadecimal and decimal numbers.\n"
8455 );
8456 return undef;
8457 }
8458 }
8459 $acu |= $value;
d12a4851
JH
8460 }
8461 $acu;
8462}
eda6e075 8463
d12a4851 8464sub expand_DollarCaretP_flags {
e22ea7cc
RF
8465 my $DollarCaretP = shift;
8466 my @bits = (
8467 map {
8468 my $n = ( 1 << $_ );
8469 ( $DollarCaretP & $n )
8470 ? ( $DollarCaretP_flags_r{$n}
8471 || sprintf( '0x%x', $n ) )
8472 : ()
8473 } 0 .. 31
8474 );
8475 return @bits ? join( '|', @bits ) : 0;
d12a4851 8476}
06492da6 8477
7fddc82f
RF
8478=item rerun
8479
8480Rerun the current session to:
8481
8482 rerun current position
8483
8484 rerun 4 command number 4
8485
8486 rerun -4 current command minus 4 (go back 4 steps)
8487
8488Whether this always makes sense, in the current context is unknowable, and is
8489in part left as a useful exersize for the reader. This sub returns the
8490appropriate arguments to rerun the current session.
8491
8492=cut
8493
8494sub rerun {
8495 my $i = shift;
8496 my @args;
8497 pop(@truehist); # strim
8498 unless (defined $truehist[$i]) {
8499 print "Unable to return to non-existent command: $i\n";
8500 } else {
8501 $#truehist = ($i < 0 ? $#truehist + $i : $i > 0 ? $i : $#truehist);
8502 my @temp = @truehist; # store
8503 push(@DB::typeahead, @truehist); # saved
8504 @truehist = @hist = (); # flush
8505 @args = &restart(); # setup
8506 &get_list("PERLDB_HIST"); # clean
8507 &set_list("PERLDB_HIST", @temp); # reset
8508 }
8509 return @args;
8510}
8511
8512=item restart
8513
8514Restarting the debugger is a complex operation that occurs in several phases.
8515First, we try to reconstruct the command line that was used to invoke Perl
8516and the debugger.
8517
8518=cut
8519
8520sub restart {
8521 # I may not be able to resurrect you, but here goes ...
8522 print $OUT
8523"Warning: some settings and command-line options may be lost!\n";
8524 my ( @script, @flags, $cl );
8525
8526 # If warn was on before, turn it on again.
8527 push @flags, '-w' if $ini_warn;
8528 if ( $ini_assertion and @{^ASSERTING} ) {
8529 push @flags,
8530 ( map { /\:\^\(\?\:(.*)\)\$\)/ ? "-A$1" : "-A$_" }
8531 @{^ASSERTING} );
8532 }
8533
8534 # Rebuild the -I flags that were on the initial
8535 # command line.
8536 for (@ini_INC) {
8537 push @flags, '-I', $_;
8538 }
8539
8540 # Turn on taint if it was on before.
8541 push @flags, '-T' if ${^TAINT};
8542
8543 # Arrange for setting the old INC:
8544 # Save the current @init_INC in the environment.
8545 set_list( "PERLDB_INC", @ini_INC );
8546
8547 # If this was a perl one-liner, go to the "file"
8548 # corresponding to the one-liner read all the lines
8549 # out of it (except for the first one, which is going
8550 # to be added back on again when 'perl -d' runs: that's
8551 # the 'require perl5db.pl;' line), and add them back on
8552 # to the command line to be executed.
8553 if ( $0 eq '-e' ) {
8554 for ( 1 .. $#{'::_<-e'} ) { # The first line is PERL5DB
8555 chomp( $cl = ${'::_<-e'}[$_] );
8556 push @script, '-e', $cl;
8557 }
8558 } ## end if ($0 eq '-e')
8559
8560 # Otherwise we just reuse the original name we had
8561 # before.
8562 else {
8563 @script = $0;
8564 }
8565
8566=pod
8567
8568After the command line has been reconstructed, the next step is to save
8569the debugger's status in environment variables. The C<DB::set_list> routine
8570is used to save aggregate variables (both hashes and arrays); scalars are
8571just popped into environment variables directly.
8572
8573=cut
8574
8575 # If the terminal supported history, grab it and
8576 # save that in the environment.
8577 set_list( "PERLDB_HIST",
8578 $term->Features->{getHistory}
8579 ? $term->GetHistory
8580 : @hist );
8581
8582 # Find all the files that were visited during this
8583 # session (i.e., the debugger had magic hashes
8584 # corresponding to them) and stick them in the environment.
8585 my @had_breakpoints = keys %had_breakpoints;
8586 set_list( "PERLDB_VISITED", @had_breakpoints );
8587
8588 # Save the debugger options we chose.
8589 set_list( "PERLDB_OPT", %option );
8590 # set_list( "PERLDB_OPT", options2remember() );
8591
8592 # Save the break-on-loads.
8593 set_list( "PERLDB_ON_LOAD", %break_on_load );
8594
8595=pod
8596
8597The most complex part of this is the saving of all of the breakpoints. They
8598can live in an awful lot of places, and we have to go through all of them,
8599find the breakpoints, and then save them in the appropriate environment
8600variable via C<DB::set_list>.
8601
8602=cut
8603
8604 # Go through all the breakpoints and make sure they're
8605 # still valid.
8606 my @hard;
8607 for ( 0 .. $#had_breakpoints ) {
8608
8609 # We were in this file.
8610 my $file = $had_breakpoints[$_];
8611
8612 # Grab that file's magic line hash.
8613 *dbline = $main::{ '_<' . $file };
8614
8615 # Skip out if it doesn't exist, or if the breakpoint
8616 # is in a postponed file (we'll do postponed ones
8617 # later).
8618 next unless %dbline or $postponed_file{$file};
8619
8620 # In an eval. This is a little harder, so we'll
8621 # do more processing on that below.
8622 ( push @hard, $file ), next
8623 if $file =~ /^\(\w*eval/;
8624
8625 # XXX I have no idea what this is doing. Yet.
8626 my @add;
8627 @add = %{ $postponed_file{$file} }
8628 if $postponed_file{$file};
8629
8630 # Save the list of all the breakpoints for this file.
8631 set_list( "PERLDB_FILE_$_", %dbline, @add );
8632 } ## end for (0 .. $#had_breakpoints)
8633
8634 # The breakpoint was inside an eval. This is a little
8635 # more difficult. XXX and I don't understand it.
8636 for (@hard) {
8637 # Get over to the eval in question.
8638 *dbline = $main::{ '_<' . $_ };
8639 my ( $quoted, $sub, %subs, $line ) = quotemeta $_;
8640 for $sub ( keys %sub ) {
8641 next unless $sub{$sub} =~ /^$quoted:(\d+)-(\d+)$/;
8642 $subs{$sub} = [ $1, $2 ];
8643 }
8644 unless (%subs) {
8645 print $OUT
8646 "No subroutines in $_, ignoring breakpoints.\n";
8647 next;
8648 }
8649 LINES: for $line ( keys %dbline ) {
8650
8651 # One breakpoint per sub only:
8652 my ( $offset, $sub, $found );
8653 SUBS: for $sub ( keys %subs ) {
8654 if (
8655 $subs{$sub}->[1] >=
8656 $line # Not after the subroutine
8657 and (
8658 not defined $offset # Not caught
8659 or $offset < 0
8660 )
8661 )
8662 { # or badly caught
8663 $found = $sub;
8664 $offset = $line - $subs{$sub}->[0];
8665 $offset = "+$offset", last SUBS
8666 if $offset >= 0;
8667 } ## end if ($subs{$sub}->[1] >=...
8668 } ## end for $sub (keys %subs)
8669 if ( defined $offset ) {
8670 $postponed{$found} =
8671 "break $offset if $dbline{$line}";
8672 }
8673 else {
8674 print $OUT
8675"Breakpoint in $_:$line ignored: after all the subroutines.\n";
8676 }
8677 } ## end for $line (keys %dbline)
8678 } ## end for (@hard)
8679
8680 # Save the other things that don't need to be
8681 # processed.
8682 set_list( "PERLDB_POSTPONE", %postponed );
8683 set_list( "PERLDB_PRETYPE", @$pretype );
8684 set_list( "PERLDB_PRE", @$pre );
8685 set_list( "PERLDB_POST", @$post );
8686 set_list( "PERLDB_TYPEAHEAD", @typeahead );
8687
8688 # We are oficially restarting.
8689 $ENV{PERLDB_RESTART} = 1;
8690
8691 # We are junking all child debuggers.
8692 delete $ENV{PERLDB_PIDS}; # Restore ini state
8693
8694 # Set this back to the initial pid.
8695 $ENV{PERLDB_PIDS} = $ini_pids if defined $ini_pids;
8696
8697=pod
8698
8699After all the debugger status has been saved, we take the command we built up
8700and then return it, so we can C<exec()> it. The debugger will spot the
8701C<PERLDB_RESTART> environment variable and realize it needs to reload its state
8702from the environment.
8703
8704=cut
8705
8706 # And run Perl again. Add the "-d" flag, all the
8707 # flags we built up, the script (whether a one-liner
8708 # or a file), add on the -emacs flag for a slave editor,
8709 # and then the old arguments.
8710
8711 return ($^X, '-d', @flags, @script, ($slave_editor ? '-emacs' : ()), @ARGS);
8712
8713}; # end restart
8714
69893cff
RGS
8715=head1 END PROCESSING - THE C<END> BLOCK
8716
8717Come here at the very end of processing. We want to go into a
8718loop where we allow the user to enter commands and interact with the
8719debugger, but we don't want anything else to execute.
8720
8721First we set the C<$finished> variable, so that some commands that
8722shouldn't be run after the end of program quit working.
8723
8724We then figure out whether we're truly done (as in the user entered a C<q>
8725command, or we finished execution while running nonstop). If we aren't,
8726we set C<$single> to 1 (causing the debugger to get control again).
8727
8728We then call C<DB::fake::at_exit()>, which returns the C<Use 'q' to quit ...">
8729message and returns control to the debugger. Repeat.
8730
8731When the user finally enters a C<q> command, C<$fall_off_end> is set to
87321 and the C<END> block simply exits with C<$single> set to 0 (don't
8733break, run to completion.).
8734
8735=cut
8736
55497cff 8737END {
e22ea7cc
RF
8738 $finished = 1 if $inhibit_exit; # So that some commands may be disabled.
8739 $fall_off_end = 1 unless $inhibit_exit;
69893cff 8740
e22ea7cc
RF
8741 # Do not stop in at_exit() and destructors on exit:
8742 $DB::single = !$fall_off_end && !$runnonstop;
8743 DB::fake::at_exit() unless $fall_off_end or $runnonstop;
69893cff 8744} ## end END
eda6e075 8745
69893cff 8746=head1 PRE-5.8 COMMANDS
eda6e075 8747
69893cff
RGS
8748Some of the commands changed function quite a bit in the 5.8 command
8749realignment, so much so that the old code had to be replaced completely.
8750Because we wanted to retain the option of being able to go back to the
8751former command set, we moved the old code off to this section.
8752
8753There's an awful lot of duplicated code here. We've duplicated the
8754comments to keep things clear.
8755
8756=head2 Null command
8757
8758Does nothing. Used to 'turn off' commands.
8759
8760=cut
492652be
RF
8761
8762sub cmd_pre580_null {
69893cff
RGS
8763
8764 # do nothing...
492652be
RF
8765}
8766
69893cff
RGS
8767=head2 Old C<a> command.
8768
8769This version added actions if you supplied them, and deleted them
8770if you didn't.
8771
8772=cut
8773
492652be 8774sub cmd_pre580_a {
69893cff
RGS
8775 my $xcmd = shift;
8776 my $cmd = shift;
8777
8778 # Argument supplied. Add the action.
e22ea7cc 8779 if ( $cmd =~ /^(\d*)\s*(.*)/ ) {
69893cff
RGS
8780
8781 # If the line isn't there, use the current line.
8782 $i = $1 || $line;
8783 $j = $2;
8784
8785 # If there is an action ...
e22ea7cc 8786 if ( length $j ) {
69893cff
RGS
8787
8788 # ... but the line isn't breakable, skip it.
e22ea7cc 8789 if ( $dbline[$i] == 0 ) {
69893cff
RGS
8790 print $OUT "Line $i may not have an action.\n";
8791 }
8792 else {
e22ea7cc 8793
69893cff
RGS
8794 # ... and the line is breakable:
8795 # Mark that there's an action in this file.
8796 $had_breakpoints{$filename} |= 2;
8797
8798 # Delete any current action.
8799 $dbline{$i} =~ s/\0[^\0]*//;
8800
8801 # Add the new action, continuing the line as needed.
8802 $dbline{$i} .= "\0" . action($j);
8803 }
8804 } ## end if (length $j)
8805
8806 # No action supplied.
8807 else {
e22ea7cc 8808
69893cff
RGS
8809 # Delete the action.
8810 $dbline{$i} =~ s/\0[^\0]*//;
e22ea7cc
RF
8811
8812 # Mark as having no break or action if nothing's left.
69893cff
RGS
8813 delete $dbline{$i} if $dbline{$i} eq '';
8814 }
8815 } ## end if ($cmd =~ /^(\d*)\s*(.*)/)
8816} ## end sub cmd_pre580_a
8817
8818=head2 Old C<b> command
8819
8820Add breakpoints.
8821
8822=cut
492652be
RF
8823
8824sub cmd_pre580_b {
e22ea7cc 8825 my $xcmd = shift;
69893cff
RGS
8826 my $cmd = shift;
8827 my $dbline = shift;
8828
8829 # Break on load.
e22ea7cc 8830 if ( $cmd =~ /^load\b\s*(.*)/ ) {
69893cff
RGS
8831 my $file = $1;
8832 $file =~ s/\s+$//;
8833 &cmd_b_load($file);
8834 }
8835
8836 # b compile|postpone <some sub> [<condition>]
e22ea7cc 8837 # The interpreter actually traps this one for us; we just put the
69893cff 8838 # necessary condition in the %postponed hash.
e22ea7cc
RF
8839 elsif ( $cmd =~ /^(postpone|compile)\b\s*([':A-Za-z_][':\w]*)\s*(.*)/ ) {
8840
69893cff
RGS
8841 # Capture the condition if there is one. Make it true if none.
8842 my $cond = length $3 ? $3 : '1';
8843
8844 # Save the sub name and set $break to 1 if $1 was 'postpone', 0
8845 # if it was 'compile'.
e22ea7cc 8846 my ( $subname, $break ) = ( $2, $1 eq 'postpone' );
69893cff
RGS
8847
8848 # De-Perl4-ify the name - ' separators to ::.
8849 $subname =~ s/\'/::/g;
8850
8851 # Qualify it into the current package unless it's already qualified.
8852 $subname = "${'package'}::" . $subname
e22ea7cc 8853 unless $subname =~ /::/;
69893cff
RGS
8854
8855 # Add main if it starts with ::.
e22ea7cc 8856 $subname = "main" . $subname if substr( $subname, 0, 2 ) eq "::";
69893cff
RGS
8857
8858 # Save the break type for this sub.
8859 $postponed{$subname} = $break ? "break +0 if $cond" : "compile";
8860 } ## end elsif ($cmd =~ ...
e22ea7cc 8861
69893cff 8862 # b <sub name> [<condition>]
e22ea7cc 8863 elsif ( $cmd =~ /^([':A-Za-z_][':\w]*(?:\[.*\])?)\s*(.*)/ ) {
69893cff
RGS
8864 my $subname = $1;
8865 my $cond = length $2 ? $2 : '1';
e22ea7cc
RF
8866 &cmd_b_sub( $subname, $cond );
8867 }
69893cff
RGS
8868
8869 # b <line> [<condition>].
e22ea7cc 8870 elsif ( $cmd =~ /^(\d*)\s*(.*)/ ) {
69893cff
RGS
8871 my $i = $1 || $dbline;
8872 my $cond = length $2 ? $2 : '1';
e22ea7cc 8873 &cmd_b_line( $i, $cond );
69893cff
RGS
8874 }
8875} ## end sub cmd_pre580_b
8876
8877=head2 Old C<D> command.
8878
8879Delete all breakpoints unconditionally.
8880
8881=cut
492652be
RF
8882
8883sub cmd_pre580_D {
69893cff
RGS
8884 my $xcmd = shift;
8885 my $cmd = shift;
e22ea7cc 8886 if ( $cmd =~ /^\s*$/ ) {
69893cff
RGS
8887 print $OUT "Deleting all breakpoints...\n";
8888
8889 # %had_breakpoints lists every file that had at least one
8890 # breakpoint in it.
8891 my $file;
e22ea7cc
RF
8892 for $file ( keys %had_breakpoints ) {
8893
69893cff 8894 # Switch to the desired file temporarily.
e22ea7cc 8895 local *dbline = $main::{ '_<' . $file };
69893cff
RGS
8896
8897 my $max = $#dbline;
8898 my $was;
8899
8900 # For all lines in this file ...
e22ea7cc
RF
8901 for ( $i = 1 ; $i <= $max ; $i++ ) {
8902
69893cff 8903 # If there's a breakpoint or action on this line ...
e22ea7cc
RF
8904 if ( defined $dbline{$i} ) {
8905
69893cff
RGS
8906 # ... remove the breakpoint.
8907 $dbline{$i} =~ s/^[^\0]+//;
e22ea7cc
RF
8908 if ( $dbline{$i} =~ s/^\0?$// ) {
8909
69893cff
RGS
8910 # Remove the entry altogether if no action is there.
8911 delete $dbline{$i};
8912 }
8913 } ## end if (defined $dbline{$i...
8914 } ## end for ($i = 1 ; $i <= $max...
8915
8916 # If, after we turn off the "there were breakpoints in this file"
e22ea7cc 8917 # bit, the entry in %had_breakpoints for this file is zero,
69893cff 8918 # we should remove this file from the hash.
e22ea7cc 8919 if ( not $had_breakpoints{$file} &= ~1 ) {
69893cff
RGS
8920 delete $had_breakpoints{$file};
8921 }
8922 } ## end for $file (keys %had_breakpoints)
8923
8924 # Kill off all the other breakpoints that are waiting for files that
8925 # haven't been loaded yet.
8926 undef %postponed;
8927 undef %postponed_file;
8928 undef %break_on_load;
8929 } ## end if ($cmd =~ /^\s*$/)
8930} ## end sub cmd_pre580_D
8931
8932=head2 Old C<h> command
8933
8934Print help. Defaults to printing the long-form help; the 5.8 version
8935prints the summary by default.
8936
8937=cut
492652be
RF
8938
8939sub cmd_pre580_h {
69893cff
RGS
8940 my $xcmd = shift;
8941 my $cmd = shift;
8942
8943 # Print the *right* help, long format.
e22ea7cc 8944 if ( $cmd =~ /^\s*$/ ) {
69893cff
RGS
8945 print_help($pre580_help);
8946 }
8947
e22ea7cc
RF
8948 # 'h h' - explicitly-requested summary.
8949 elsif ( $cmd =~ /^h\s*/ ) {
69893cff
RGS
8950 print_help($pre580_summary);
8951 }
8952
8953 # Find and print a command's help.
e22ea7cc
RF
8954 elsif ( $cmd =~ /^h\s+(\S.*)$/ ) {
8955 my $asked = $1; # for proper errmsg
8956 my $qasked = quotemeta($asked); # for searching
8957 # XXX: finds CR but not <CR>
8958 if (
8959 $pre580_help =~ /^
69893cff
RGS
8960 <? # Optional '<'
8961 (?:[IB]<) # Optional markup
8962 $qasked # The command name
e22ea7cc
RF
8963 /mx
8964 )
8965 {
69893cff
RGS
8966
8967 while (
8968 $pre580_help =~ /^
8969 ( # The command help:
8970 <? # Optional '<'
8971 (?:[IB]<) # Optional markup
8972 $qasked # The command name
8973 ([\s\S]*?) # Lines starting with tabs
8974 \n # Final newline
8975 )
e22ea7cc
RF
8976 (?!\s)/mgx
8977 ) # Line not starting with space
8978 # (Next command's help)
69893cff
RGS
8979 {
8980 print_help($1);
8981 }
8982 } ## end if ($pre580_help =~ /^<?(?:[IB]<)$qasked/m)
8983
8984 # Help not found.
8985 else {
8986 print_help("B<$asked> is not a debugger command.\n");
8987 }
8988 } ## end elsif ($cmd =~ /^h\s+(\S.*)$/)
8989} ## end sub cmd_pre580_h
8990
8991=head2 Old C<W> command
8992
8993C<W E<lt>exprE<gt>> adds a watch expression, C<W> deletes them all.
8994
8995=cut
492652be
RF
8996
8997sub cmd_pre580_W {
69893cff
RGS
8998 my $xcmd = shift;
8999 my $cmd = shift;
9000
9001 # Delete all watch expressions.
e22ea7cc
RF
9002 if ( $cmd =~ /^$/ ) {
9003
69893cff
RGS
9004 # No watching is going on.
9005 $trace &= ~2;
e22ea7cc 9006
69893cff
RGS
9007 # Kill all the watch expressions and values.
9008 @to_watch = @old_watch = ();
9009 }
9010
9011 # Add a watch expression.
e22ea7cc
RF
9012 elsif ( $cmd =~ /^(.*)/s ) {
9013
69893cff
RGS
9014 # add it to the list to be watched.
9015 push @to_watch, $1;
9016
e22ea7cc 9017 # Get the current value of the expression.
69893cff
RGS
9018 # Doesn't handle expressions returning list values!
9019 $evalarg = $1;
9020 my ($val) = &eval;
e22ea7cc 9021 $val = ( defined $val ) ? "'$val'" : 'undef';
69893cff
RGS
9022
9023 # Save it.
9024 push @old_watch, $val;
9025
9026 # We're watching stuff.
9027 $trace |= 2;
9028
9029 } ## end elsif ($cmd =~ /^(.*)/s)
9030} ## end sub cmd_pre580_W
9031
9032=head1 PRE-AND-POST-PROMPT COMMANDS AND ACTIONS
9033
9034The debugger used to have a bunch of nearly-identical code to handle
9035the pre-and-post-prompt action commands. C<cmd_pre590_prepost> and
9036C<cmd_prepost> unify all this into one set of code to handle the
9037appropriate actions.
9038
9039=head2 C<cmd_pre590_prepost>
9040
9041A small wrapper around C<cmd_prepost>; it makes sure that the default doesn't
9042do something destructive. In pre 5.8 debuggers, the default action was to
9043delete all the actions.
9044
9045=cut
492652be 9046
35408c4e 9047sub cmd_pre590_prepost {
69893cff
RGS
9048 my $cmd = shift;
9049 my $line = shift || '*';
9050 my $dbline = shift;
35408c4e 9051
69893cff
RGS
9052 return &cmd_prepost( $cmd, $line, $dbline );
9053} ## end sub cmd_pre590_prepost
eda6e075 9054
69893cff
RGS
9055=head2 C<cmd_prepost>
9056
9057Actually does all the handling foe C<E<lt>>, C<E<gt>>, C<{{>, C<{>, etc.
9058Since the lists of actions are all held in arrays that are pointed to by
9059references anyway, all we have to do is pick the right array reference and
9060then use generic code to all, delete, or list actions.
9061
9062=cut
9063
e22ea7cc
RF
9064sub cmd_prepost {
9065 my $cmd = shift;
69893cff
RGS
9066
9067 # No action supplied defaults to 'list'.
e22ea7cc
RF
9068 my $line = shift || '?';
9069
9070 # Figure out what to put in the prompt.
69893cff
RGS
9071 my $which = '';
9072
9073 # Make sure we have some array or another to address later.
9074 # This means that if ssome reason the tests fail, we won't be
9075 # trying to stash actions or delete them from the wrong place.
e22ea7cc 9076 my $aref = [];
69893cff 9077
e22ea7cc 9078 # < - Perl code to run before prompt.
69893cff
RGS
9079 if ( $cmd =~ /^\</o ) {
9080 $which = 'pre-perl';
9081 $aref = $pre;
9082 }
9083
9084 # > - Perl code to run after prompt.
9085 elsif ( $cmd =~ /^\>/o ) {
9086 $which = 'post-perl';
9087 $aref = $post;
9088 }
9089
9090 # { - first check for properly-balanced braces.
9091 elsif ( $cmd =~ /^\{/o ) {
9092 if ( $cmd =~ /^\{.*\}$/o && unbalanced( substr( $cmd, 1 ) ) ) {
9093 print $OUT
9094"$cmd is now a debugger command\nuse `;$cmd' if you mean Perl code\n";
9095 }
9096
9097 # Properly balanced. Pre-prompt debugger actions.
9098 else {
9099 $which = 'pre-debugger';
9100 $aref = $pretype;
9101 }
9102 } ## end elsif ( $cmd =~ /^\{/o )
9103
9104 # Did we find something that makes sense?
9105 unless ($which) {
9106 print $OUT "Confused by command: $cmd\n";
9107 }
9108
e22ea7cc 9109 # Yes.
69893cff 9110 else {
e22ea7cc 9111
69893cff
RGS
9112 # List actions.
9113 if ( $line =~ /^\s*\?\s*$/o ) {
9114 unless (@$aref) {
e22ea7cc 9115
69893cff
RGS
9116 # Nothing there. Complain.
9117 print $OUT "No $which actions.\n";
9118 }
9119 else {
e22ea7cc 9120
69893cff
RGS
9121 # List the actions in the selected list.
9122 print $OUT "$which commands:\n";
9123 foreach my $action (@$aref) {
9124 print $OUT "\t$cmd -- $action\n";
9125 }
9126 } ## end else
9127 } ## end if ( $line =~ /^\s*\?\s*$/o)
9128
9129 # Might be a delete.
9130 else {
9131 if ( length($cmd) == 1 ) {
9132 if ( $line =~ /^\s*\*\s*$/o ) {
e22ea7cc
RF
9133
9134 # It's a delete. Get rid of the old actions in the
69893cff
RGS
9135 # selected list..
9136 @$aref = ();
9137 print $OUT "All $cmd actions cleared.\n";
9138 }
9139 else {
e22ea7cc 9140
69893cff
RGS
9141 # Replace all the actions. (This is a <, >, or {).
9142 @$aref = action($line);
9143 }
9144 } ## end if ( length($cmd) == 1)
e22ea7cc
RF
9145 elsif ( length($cmd) == 2 ) {
9146
69893cff
RGS
9147 # Add the action to the line. (This is a <<, >>, or {{).
9148 push @$aref, action($line);
9149 }
9150 else {
e22ea7cc 9151
69893cff
RGS
9152 # <<<, >>>>, {{{{{{ ... something not a command.
9153 print $OUT
9154 "Confused by strange length of $which command($cmd)...\n";
9155 }
9156 } ## end else [ if ( $line =~ /^\s*\?\s*$/o)
9157 } ## end else
9158} ## end sub cmd_prepost
9159
69893cff
RGS
9160=head1 C<DB::fake>
9161
9162Contains the C<at_exit> routine that the debugger uses to issue the
9163C<Debugged program terminated ...> message after the program completes. See
9164the C<END> block documentation for more details.
9165
9166=cut
35408c4e 9167
55497cff 9168package DB::fake;
9169
9170sub at_exit {
e22ea7cc 9171 "Debugged program terminated. Use `q' to quit or `R' to restart.";
55497cff 9172}
9173
69893cff 9174package DB; # Do not trace this 1; below!
36477c24 9175
d338d6fe 91761;
69893cff 9177
7fddc82f 9178