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