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