3 perldebtut - Perl debugging tutorial
7 A (very) lightweight introduction in the use of the perl debugger, and a
8 pointer to existing, deeper sources of information on the subject of debugging
11 There's an extraordinary number of people out there who don't appear to know
12 anything about using the perl debugger, though they use the language every
19 First of all, there's a few things you can do to make your life a lot more
20 straightforward when it comes to debugging perl programs, without using the
21 debugger at all. To demonstrate, here's a simple script with a problem:
25 $var1 = 'Hello World'; # always wanted to do that :-)
31 While this compiles and runs happily, it probably won't do what's expected,
32 namely it doesn't print "Hello World\n" at all; It will on the other hand do
33 exactly what it was told to do, computers being a bit that way inclined. That
34 is, it will print out a newline character, and you'll get what looks like a
35 blank line. It looks like there's 2 variables when (because of the typo)
42 To catch this kind of problem, we can force each variable to be declared
43 before use by pulling in the strict module, by putting 'use strict;' after the
44 first line of the script.
46 Now when you run it, perl complains about the 3 undeclared variables and we
47 get four error messages because one variable is referenced twice:
49 Global symbol "$var1" requires explicit package name at ./t1 line 4.
50 Global symbol "$var2" requires explicit package name at ./t1 line 5.
51 Global symbol "$varl" requires explicit package name at ./t1 line 5.
52 Global symbol "$var2" requires explicit package name at ./t1 line 7.
53 Execution of ./hello aborted due to compilation errors.
55 Luvverly! and to fix this we declare all variables explicitly and now our
56 script looks like this:
61 my $var1 = 'Hello World';
68 We then do (always a good idea) a syntax check before we try to run it again:
73 And now when we run it, we get "\n" still, but at least we know why. Just
74 getting this script to compile has exposed the '$varl' (with the letter 'l)
75 variable, and simply changing $varl to $var1 solves the problem.
78 =head1 Looking at data and -w and w
80 Ok, but how about when you want to really see your data, what's in that
81 dynamic variable, just before using it?
89 'tom' => qw(and jerry),
90 'welcome' => q(Hello World),
93 my @data = keys %data;
95 print "$data{$key}\n";
98 Looks OK, after it's been through the syntax check (perl -c scriptname), we
99 run it and all we get is a blank line again! Hmmmm.
101 One common debugging approach here, would be to liberally sprinkle a few print
102 statements, to add a check just before we print out our data, and another just
105 print "All OK\n" if grep($key, keys %data);
106 print "$data{$key}\n";
107 print "done: '$data{$key}'\n";
116 After much staring at the same piece of code and not seeing the wood for the
117 trees for some time, we get a cup of coffee and try another approach. That
118 is, we bring in the cavalry by giving perl the 'B<-d>' switch on the command
122 Default die handler restored.
124 Loading DB routines from perl5db.pl version 1.07
125 Editor support available.
127 Enter h or `h h' for help, or `man perldebug' for more help.
129 main::(./data:4): my $key = 'welcome';
131 Now, what we've done here is to launch the built-in perl debugger on our
132 script. It's stopped at the first line of executable code and is waiting for
135 Before we go any further, you'll want to know how to quit the debugger: use
136 just the letter 'B<q>', not the words 'quit' or 'exit':
141 That's it, you're back on home turf again.
146 Fire the debugger up again on your script and we'll look at the help menu.
147 There's a couple of ways of calling help: a simple 'B<h>' will get you a long
148 scrolled list of help, 'B<|h>' (pipe-h) will pipe the help through your pager
149 ('more' or 'less' probably), and finally, 'B<h h>' (h-space-h) will give you a
150 helpful mini-screen snapshot:
153 List/search source lines: Control script execution:
154 l [ln|sub] List source code T Stack trace
155 - or . List previous/current line s [expr] Single step [in expr]
156 w [line] List around line n [expr] Next, steps over subs
157 f filename View source in file <CR/Enter> Repeat last n or s
158 /pattern/ ?patt? Search forw/backw r Return from subroutine
159 v Show versions of modules c [ln|sub] Continue until position
160 Debugger controls: L List
162 O [...] Set debugger options t [expr] Toggle trace [trace expr]
163 <[<]|{[{]|>[>] [cmd] Do pre/post-prompt b [ln|event|sub] [cnd] Set breakpoint
164 ! [N|pat] Redo a previous command d [ln] or D Delete a/all breakpoints
165 H [-num] Display last num commands a [ln] cmd Do cmd before line
166 = [a val] Define/list an alias W expr Add a watch expression
167 h [db_cmd] Get help on command A or W Delete all actions/watch
168 |[|]db_cmd Send output to pager ![!] syscmd Run cmd in a subprocess
169 q or ^D Quit R Attempt a restart
170 Data Examination: expr Execute perl code, also see: s,n,t expr
171 x|m expr Evals expr in list context, dumps the result or lists methods.
172 p expr Print expression (uses script's current package).
173 S [[!]pat] List subroutine names [not] matching pattern
174 V [Pk [Vars]] List Variables in Package. Vars can be ~pattern or !pattern.
175 X [Vars] Same as "V current_package [Vars]".
176 For more help, type h cmd_letter, or run man perldebug for all docs.
178 More confusing options than you can shake a big stick at! It's not as bad as
179 it looks and it's very useful to know more about all of it, and fun too!
181 There's a couple of useful ones to know about straight away. You wouldn't
182 think we're using any libraries at all at the moment, but 'B<v>' will show
183 which modules are currently loaded, by the debugger as well your script.
184 'B<V>' and 'B<X>' show variables in the program by package scope and can be
185 constrained by pattern. 'B<m>' shows methods and 'B<S>' shows all subroutines
194 Using 'X' and cousins requires you not to use the type identifiers ($@%), just
198 FileHandle(stderr) => fileno(2)
200 Remember we're in our tiny program with a problem, we should have a look at
201 where we are, and what our data looks like. First of all let's have a window
202 on our present position (the first line of code in this case), via the letter
209 4==> my $key = 'welcome';
211 6 'this' => qw(that),
212 7 'tom' => qw(and jerry),
213 8 'welcome' => q(Hello World),
214 9 'zip' => q(welcome),
217 At line number 4 is a helpful pointer, that tells you where you are now. To
218 see more code, type 'w' again:
221 8 'welcome' => q(Hello World),
222 9 'zip' => q(welcome),
224 11: my @data = keys %data;
225 12: print "All OK\n" if grep($key, keys %data);
226 13: print "$data{$key}\n";
227 14: print "done: '$data{$key}'\n";
230 And if you wanted to list line 5 again, type 'l 5', (note the space):
235 In this case, there's not much to see, but of course normally there's pages of
236 stuff to wade through, and 'l' can be very useful. To reset your view to the
237 line we're about to execute, type a lone period '.':
240 main::(./data_a:4): my $key = 'welcome';
242 The line shown is the one that is about to be executed B<next>, it hasn't
243 happened yet. So while we can print a variable with the letter 'B<p>', at
244 this point all we'd get is an empty (undefined) value back. What we need to
245 do is to step through the next executable statement with an 'B<s>':
248 main::(./data_a:5): my %data = (
249 main::(./data_a:6): 'this' => qw(that),
250 main::(./data_a:7): 'tom' => qw(and jerry),
251 main::(./data_a:8): 'welcome' => q(Hello World),
252 main::(./data_a:9): 'zip' => q(welcome),
253 main::(./data_a:10): );
255 Now we can have a look at that first ($key) variable:
260 line 13 is where the action is, so let's continue down to there via the letter
261 'B<c>', which by the way, inserts a 'one-time-only' breakpoint at the given
266 main::(./data_a:13): print "$data{$key}\n";
268 We've gone past our check (where 'All OK' was printed) and have stopped just
269 before the meat of our task. We could try to print out a couple of variables
270 to see what is happening:
274 Not much in there, lets have a look at our hash:
277 Hello Worldziptomandwelcomejerrywelcomethisthat
280 Hello Worldtomwelcomejerrythis
282 Well, this isn't very easy to read, and using the helpful manual (B<h h>), the
283 'B<x>' command looks promising:
297 That's not much help, a couple of welcomes in there, but no indication of
298 which are keys, and which are values, it's just a listed array dump and, in
299 this case, not particularly helpful. The trick here, is to use a B<reference>
300 to the data structure:
304 'Hello World' => 'zip'
310 The reference is truly dumped and we can finally see what we're dealing with.
311 Our quoting was perfectly valid but wrong for our purposes, with 'and jerry'
312 being treated as 2 separate words rather than a phrase, thus throwing the
313 evenly paired hash structure out of alignment.
315 The 'B<-w>' switch would have told us about this, had we used it at the start,
316 and saved us a lot of trouble:
319 Odd number of elements in hash assignment at ./data line 5.
321 We fix our quoting: 'tom' => q(and jerry), and run it again, this time we get
328 While we're here, take a closer look at the 'B<x>' command, it's really useful
329 and will merrily dump out nested references, complete objects, partial objects
330 - just about whatever you throw at it:
332 Let's make a quick object and x-plode it, first we'll start the the debugger:
333 it wants some form of input from STDIN, so we give it something non-commital,
337 Default die handler restored.
339 Loading DB routines from perl5db.pl version 1.07
340 Editor support available.
342 Enter h or `h h' for help, or `man perldebug' for more help.
346 Now build an on-the-fly object over a couple of lines (note the backslash):
348 DB<1> $obj = bless({'unique_id'=>'123', 'attr'=> \
349 cont: {'col' => 'black', 'things' => [qw(this that etc)]}}, 'MY_class')
351 And let's have a look at it:
354 0 MY_class=HASH(0x828ad98)
355 'attr' => HASH(0x828ad68)
357 'things' => ARRAY(0x828abb8)
364 Useful, huh? You can eval nearly anything in there, and experiment with bits
365 of code or regexes until the cows come home:
367 DB<3> @data = qw(this that the other atheism leather theory scythe)
369 DB<4> p 'saw -> '.($cnt += map { print "\t:\t$_\n" } grep(/the/, sort @data))
378 If you want to see the command History, type an 'B<H>':
381 4: p 'saw -> '.($cnt += map { print "\t:\t$_\n" } grep(/the/, sort @data))
382 3: @data = qw(this that the other atheism leather theory scythe)
384 1: $obj = bless({'unique_id'=>'123', 'attr'=>
385 {'col' => 'black', 'things' => [qw(this that etc)]}}, 'MY_class')
388 And if you want to repeat any previous command, use the exclamation: 'B<!>':
391 p 'saw -> '.($cnt += map { print "$_\n" } grep(/the/, sort @data))
400 For more on references see L<perlref> and L<perlreftut>
403 =head1 Stepping through code
405 Here's a simple program which converts between Celsius and Fahrenheit, it too
411 my $arg = $ARGV[0] || '-c20';
413 if ($arg =~ /^\-(c|f)((\-|\+)*\d+(\.\d+)*)$/) {
414 my ($deg, $num) = ($1, $2);
415 my ($in, $out) = ($num, $num);
423 $out = sprintf('%0.2f', $out);
424 $out =~ s/^((\-|\+)*\d+)\.0+$/$1/;
427 print "Usage: $0 -[c|f] num\n";
433 my $c = 5 * $f - 32 / 9;
439 my $f = 9 * $c / 5 + 32;
444 For some reason, the Fahrenheit to Celsius conversion fails to return the
445 expected output. This is what it does:
453 Not very consistent! We'll set a breakpoint in the code manually and run it
454 under the debugger to see what's going on. A breakpoint is a flag, to which
455 the debugger will run without interruption, when it reaches the breakpoint, it
456 will stop execution and offer a prompt for further interaction. In normal
457 use, these debugger commands are completely ignored, and they are safe - if a
458 little messy, to leave in production code.
460 my ($in, $out) = ($num, $num);
461 $DB::single=2; # insert at line 9!
465 > perl -d temp -f33.3
466 Default die handler restored.
468 Loading DB routines from perl5db.pl version 1.07
469 Editor support available.
471 Enter h or `h h' for help, or `man perldebug' for more help.
473 main::(temp:4): my $arg = $ARGV[0] || '-c100';
475 We'll simply continue down to our pre-set breakpoint with a 'B<c>':
478 main::(temp:10): if ($deg eq 'c') {
480 Followed by a window command to see where we are:
483 7: my ($deg, $num) = ($1, $2);
484 8: my ($in, $out) = ($num, $num);
486 10==> if ($deg eq 'c') {
488 12: $out = &c2f($num);
491 15: $out = &f2c($num);
494 And a print to show what values we're currently using:
499 We can put another break point on any line beginning with a colon, we'll use
500 line 17 as that's just as we come out of the subroutine, and we'd like to
501 pause there later on:
505 There's no feedback from this, but you can see what breakpoints are set by
506 using the list 'L' command:
510 17: print "$out $deg\n";
513 Note that to delete a breakpoint you use 'd' or 'D'.
515 Now we'll continue down into our subroutine, this time rather than by line
516 number, we'll use the subroutine name, followed by the now familiar 'w':
519 main::f2c(temp:30): my $f = shift;
526 28: my $c = 5 * $f - 32 / 9;
534 Note that if there was a subroutine call between us and line 29, and we wanted
535 to B<single-step> through it, we could use the 'B<s>' command, and to step
536 over it we would use 'B<n>' which would execute the sub, but not descend into
537 it for inspection. In this case though, we simply continue down to line 29:
540 main::f2c(temp:29): return $c;
542 And have a look at the return value:
547 This is not the right answer at all, but the sum looks correct. I wonder if
548 it's anything to do with operator precedence? We'll try a couple of other
549 possibilities with our sum:
551 DB<6> p (5 * $f - 32 / 9)
554 DB<7> p 5 * $f - (32 / 9)
557 DB<8> p (5 * $f) - 32 / 9
560 DB<9> p 5 * ($f - 32) / 9
563 :-) that's more like it! Ok, now we can set our return variable and we'll
564 return out of the sub with an 'r':
566 DB<10> $c = 5 * ($f - 32) / 9
569 scalar context return from main::f2c: 0.722222222222221
571 Looks good, let's just continue off the end of the script:
575 Debugged program terminated. Use q to quit or R to restart,
576 use O inhibit_exit to avoid stopping after program termination,
577 h q, h R or h O to get additional info.
579 A quick fix to the offending line (insert the missing parentheses) in the
580 actual program and we're finished.
583 =head1 Placeholder for a, w, t, T
585 Actions, watch variables, stack traces etc.: on the TODO list.
596 =head1 REGULAR EXPRESSIONS
598 Ever wanted to know what a regex looked like? You'll need perl compiled with
599 the DEBUGGING flag for this one:
601 > perl -Dr -e '/^pe(a)*rl$/i'
602 Compiling REx `^pe(a)*rl$'
608 4: CURLYN[1] {0,32767}(14)
616 floating `'$ at 4..2147483647 (checking floating) stclass `EXACTF <pe>'
617 anchored(BOL) minlen 4
618 Omitting $` $& $' support.
622 Freeing REx: `^pe(a)*rl$'
624 Did you really want to know? :-)
625 For more gory details on getting regular expressions to work, have a look at
626 L<perlre>, L<perlretut>, and to decode the mysterious labels (BOL and CURLYN,
627 etc. above), see L<perldebguts>.
632 To get all the output from your error log, and not miss any messages via
633 helpful operating system buffering, insert a line like this, at the start of
638 To watch the tail of a dynamically growing logfile, (from the command line):
642 Wrapping all die calls in a handler routine can be useful to see how, and from
643 where, they're being called, L<perlvar> has more information:
645 BEGIN { $SIG{__DIE__} = sub { require Carp; Carp::confess(@_) } }
647 Various useful techniques for the redirection of STDOUT and STDERR filehandles
648 are explained in L<perlopentut> and L<perlfaq8>.
653 Just a quick hint here for all those CGI programmers who can't figure out how
654 on earth to get past that 'waiting for input' prompt, when running their CGI
655 script from the command-line, try something like this:
657 > perl -d my_cgi.pl -nodebug
659 Of course L<CGI> and L<perlfaq9> will tell you more.
664 The command line interface is tightly integrated with an B<emacs> extension
665 and there's a B<vi> interface too.
667 You don't have to do this all on the command line, though, there are a few GUI
668 options out there. The nice thing about these is you can wave a mouse over a
669 variable and a dump of it's data will appear in an appropriate window, or in a
670 popup balloon, no more tiresome typing of 'x $varname' :-)
672 In particular have a hunt around for the following:
674 B<ptkdb> perlTK based wrapper for the built-in debugger
676 B<ddd> data display debugger
678 B<PerlDevKit> and B<PerlBuilder> are NT specific
680 NB. (more info on these and others would be appreciated).
685 We've seen how to encourage good coding practices with B<use strict> and
686 B<-w>. We can run the perl debugger B<perl -d scriptname> to inspect your
687 data from within the perl debugger with the B<p> and B<x> commands. You can
688 walk through your code, set breakpoints with B<b> and step through that code
689 with B<s> or B<n>, continue with B<c> and return from a sub with B<r>. Fairly
690 intuitive stuff when you get down to it.
692 There is of course lots more to find out about, this has just scratched the
693 surface. The best way to learn more is to use perldoc to find out more about
694 the language, to read the on-line help (L<perldebug> is probably the next
695 place to go), and of course, experiment.
709 Richard Foley <richard@rfi.net> Copyright (c) 2000
714 Various people have made helpful suggestions and contributions, in particular:
716 Ronald J Kimball <rjk@linguist.dartmouth.edu>
718 Hugo van der Sanden <hv@crypt0.demon.co.uk>
720 Peter Scott <Peter@PSDT.com>