Switch from user 'root' to 'catalyst' on VM
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / 07_Debugging.pod
CommitLineData
d442cc9f 1=head1 NAME
2
3ab6187c 3Catalyst::Manual::Tutorial::07_Debugging - Catalyst Tutorial - Chapter 7: Debugging
3533daff 4
d442cc9f 5
6=head1 OVERVIEW
7
4b4d3884 8This is B<Chapter 7 of 10> for the Catalyst tutorial.
d442cc9f 9
10L<Tutorial Overview|Catalyst::Manual::Tutorial>
11
12=over 4
13
14=item 1
15
3ab6187c 16L<Introduction|Catalyst::Manual::Tutorial::01_Intro>
d442cc9f 17
18=item 2
19
3ab6187c 20L<Catalyst Basics|Catalyst::Manual::Tutorial::02_CatalystBasics>
d442cc9f 21
22=item 3
23
3ab6187c 24L<More Catalyst Basics|Catalyst::Manual::Tutorial::03_MoreCatalystBasics>
d442cc9f 25
26=item 4
27
3ab6187c 28L<Basic CRUD|Catalyst::Manual::Tutorial::04_BasicCRUD>
d442cc9f 29
30=item 5
31
3ab6187c 32L<Authentication|Catalyst::Manual::Tutorial::05_Authentication>
d442cc9f 33
34=item 6
35
3ab6187c 36L<Authorization|Catalyst::Manual::Tutorial::06_Authorization>
d442cc9f 37
38=item 7
39
3ab6187c 40B<07_Debugging>
d442cc9f 41
42=item 8
43
3ab6187c 44L<Testing|Catalyst::Manual::Tutorial::08_Testing>
d442cc9f 45
46=item 9
47
3ab6187c 48L<Advanced CRUD|Catalyst::Manual::Tutorial::09_AdvancedCRUD>
3533daff 49
50=item 10
51
3ab6187c 52L<Appendices|Catalyst::Manual::Tutorial::10_Appendices>
d442cc9f 53
54=back
55
56
57=head1 DESCRIPTION
58
bf4d990b 59This chapter of the tutorial takes a brief look at the primary options
d442cc9f 60available for troubleshooting Catalyst applications.
61
477a6d5b 62Source code for the tutorial in included in the F</home/catalyst/Final>
63directory of the Tutorial Virtual machine (one subdirectory per
64chapter). There are also instructions for downloading the code in
65L<Catalyst::Manual::Tutorial::01_Intro>.
66
67
d442cc9f 68Note that when it comes to debugging and troubleshooting, there are two
69camps:
70
71=over 4
72
73=item *
74
75Fans of C<log> and C<print> statements embedded in the code.
76
77=item *
78
79Fans of interactive debuggers.
80
81=back
82
83Catalyst is able to easily accommodate both styles of debugging.
84
1390ef0e 85
d442cc9f 86=head1 LOG STATEMENTS
87
bf4d990b 88Folks in the former group can use Catalyst's C<$c-E<gt>log> facility.
89(See L<Catalyst::Log> for more detail.) For example, if you add the
90following code to a controller action method:
d442cc9f 91
92 $c->log->info("Starting the foreach loop here");
3dba69ab 93
cae937d8 94 $c->log->debug("Value of \$id is: ".$id);
d442cc9f 95
96Then the Catalyst development server will display your message along
1390ef0e 97with the other debug output. To accomplish the same thing in a TT
98template view use:
d442cc9f 99
8a7c5151 100 [% c.log.debug("This is a test log message") %]
d442cc9f 101
bf4d990b 102As with many other logging facilities, a method is defined for each of
103the following "logging levels" (in increasing order of
ebde193e 104severity/importance):
105
106 $c->log->debug
107 $c->log->info
108 $c->log->warn
109 $c->log->error
110 $c->log->fatal
111
bf4d990b 112You can also use L<Data::Dumper> in both Catalyst code
113(C<use Data::Dumper; $c-E<gt>log-E<gt>debug("\$var is: ".Dumper($var));)>)
d442cc9f 114and TT templates (C<[% Dumper.dump(book) %]>.
115
0d360ef7 116B<NOTE:> Whether you are a logging fanatic or not, we strongly recommend
117that you take advantage of L<Log::Log4perl> or L<Log::Dispatch>. It's
118easy to use L<Catalyst::Log> with either of these and they will provide
119a huge amount of extra functionality that you will want in virtually
120every production application you run or support.
121
1390ef0e 122
d442cc9f 123=head1 RUNNING CATALYST UNDER THE PERL DEBUGGER
124
125Members of the interactive-debugger fan club will also be at home with
126Catalyst applications. One approach to this style of Perl debugging is
127to embed breakpoints in your code. For example, open
128C<lib/MyApp/Controller/Books.pm> in your editor and add the
129C<DB::single=1> line as follows inside the C<list> method (I like to
130"left-justify" my debug statements so I don't forget to remove them, but
131you can obviously indent them if you prefer):
132
ddfbd850 133 sub list :Local {
3533daff 134 # Retrieve the usual Perl OO '$self' for this object. $c is the Catalyst
d442cc9f 135 # 'Context' that's used to 'glue together' the various components
136 # that make up the application
137 my ($self, $c) = @_;
138
139 $DB::single=1;
aa7ff325 140
d442cc9f 141 # Retrieve all of the book records as book model objects and store in the
142 # stash where they can be accessed by the TT template
3b1fa91b 143 $c->stash->{books} = [$c->model('DB::Book')->all];
3dba69ab 144
d442cc9f 145 # Set the TT template to use. You will almost always want to do this
146 # in your action methods.
147 $c->stash->{template} = 'books/list.tt2';
148 }
149
bf4d990b 150This causes the Perl Debugger to enter "single step mode" when this
151command is encountered (it has no effect when Perl is run without the
152C<-d> flag).
d442cc9f 153
d0496197 154B<NOTE:> The C<DB> here is the Perl Debugger, not the DB model.
155
3b1fa91b 156If you haven't done it already, enable SQL logging as before:
157
158 $ export DBIC_TRACE=1
159
bf4d990b 160To now run the Catalyst development server under the Perl debugger,
161simply prepend C<perl -d> to the front of C<script/myapp_server.pl>:
d442cc9f 162
163 $ perl -d script/myapp_server.pl
164
165This will start the interactive debugger and produce output similar to:
166
167 $ perl -d script/myapp_server.pl
168
028b4e1a 169 Loading DB routines from perl5db.pl version 1.3
d442cc9f 170 Editor support available.
171
172 Enter h or `h h' for help, or `man perldebug' for more help.
173
028b4e1a 174 main::(script/myapp_server.pl:16): my $debug = 0;
d442cc9f 175
176 DB<1>
177
178Press the C<c> key and hit C<Enter> to continue executing the Catalyst
179development server under the debugger. Although execution speed will be
180slightly slower than normal, you should soon see the usual Catalyst
181startup debug information.
182
183Now point your browser to L<http://localhost:3000/books/list> and log
184in. Once the breakpoint is encountered in the
185C<MyApp::Controller::list> method, the console session running the
186development server will drop to the Perl debugger prompt:
187
477a6d5b 188 MyApp::Controller::Books::list(/home/catalyst/MyApp/script/../lib/MyApp/Controller/Books.pm:48):
3b1fa91b 189 48: $c->stash->{books} = [$c->model('DB::Book')->all];
d442cc9f 190
191 DB<1>
192
193You now have the full Perl debugger at your disposal. First use the
194C<next> feature by typing C<n> to execute the C<all> method on the Book
195model (C<n> jumps over method/subroutine calls; you can also use C<s> to
196C<single-step> into methods/subroutines):
197
198 DB<1> n
3b1fa91b 199 SELECT me.id, me.title, me.rating, me.created, me.updated FROM book me:
477a6d5b 200 MyApp::Controller::Books::list(/home/catalyst/MyApp/script/../lib/MyApp/Controller/Books.pm:53):
028b4e1a 201 53: $c->stash->{template} = 'books/list.tt2';
d442cc9f 202
203 DB<1>
204
205This takes you to the next line of code where the template name is set.
bf4d990b 206Notice that because we enabled C<DBIC_TRACE=1> earlier, SQL debug output
207also shows up in the development server debug information.
d442cc9f 208
209Next, list the methods available on our C<Book> model:
210
3b1fa91b 211 DB<1> m $c->model('DB::Book')
d442cc9f 212 ()
213 (0+
214 (bool
3b1fa91b 215 __result_class_accessor
028b4e1a 216 __source_handle_accessor
217 _add_alias
3b1fa91b 218 __bool
028b4e1a 219 _build_unique_query
220 _calculate_score
221 _collapse_cond
d442cc9f 222 <lines removed for brevity>
223
224 DB<2>
225
226We can also play with the model directly:
227
3b1fa91b 228 DB<2> x ($c->model('DB::Book')->all)[1]->title
229 SELECT me.id, me.title, me.rating, me.created, me.updated FROM book me:
d442cc9f 230 0 'TCP/IP Illustrated, Volume 1'
231
232This uses the Perl debugger C<x> command to display the title of a book.
233
234Next we inspect the C<books> element of the Catalyst C<stash> (the C<4>
235argument to the C<x> command limits the depth of the dump to 4 levels):
236
237 DB<3> x 4 $c->stash->{books}
238 0 ARRAY(0xa8f3b7c)
d0496197 239 0 MyApp::Model::DB::Book=HASH(0xb8e702c)
d442cc9f 240 '_column_data' => HASH(0xb8e5e2c)
3b1fa91b 241 'created' => '2009-05-08 10:19:46'
d442cc9f 242 'id' => 1
243 'rating' => 5
244 'title' => 'CCSP SNRS Exam Certification Guide'
3b1fa91b 245 'updated' => '2009-05-08 10:19:46'
d442cc9f 246 '_in_storage' => 1
247 <lines removed for brevity>
248
249Then enter the C<c> command to continue processing until the next
250breakpoint is hit (or the application exits):
251
252 DB<4> c
253 SELECT author.id, author.first_name, author.last_name FROM ...
254
255Finally, press C<Ctrl+C> to break out of the development server.
256Because we are running inside the Perl debugger, you will drop to the
bf4d990b 257debugger prompt.
3b1fa91b 258
259 ^CCatalyst::Engine::HTTP::run(/usr/local/share/perl/5.10.0/Catalyst/Engine/HTTP.pm:260):
260 260: while ( accept( Remote, $daemon ) ) {
261
262 DB<4>
263
bf4d990b 264Finally, press C<q> to exit the debugger and return to your OS shell
265prompt:
d442cc9f 266
267 DB<4> q
268 $
269
270For more information on using the Perl debugger, please see C<perldebug>
3b1fa91b 271and C<perldebtut>. For those daring souls out there, you can dive down
272even deeper into the magical depths of this fine debugger by checking
273out C<perldebguts>.
d442cc9f 274
3b1fa91b 275You can also type C<h> or C<h h> at the debugger prompt to view the
276built-in help screens.
277
bf4d990b 278For an excellent book covering all aspects of the Perl debugger, we
279highly recommend reading 'Pro Perl Debugging' by Richard Foley.
3b1fa91b 280
bf4d990b 281Oh yeah, before you forget, be sure to remove the C<DB::single=1> line
282you added above in C<lib/MyApp/Controller/Books.pm>.
d442cc9f 283
284=head1 DEBUGGING MODULES FROM CPAN
285
bf4d990b 286Although the techniques discussed above work well for code you are
287writing, what if you want to use print/log/warn messages or set
288breakpoints in code that you have installed from CPAN (or in module that
289ship with Perl)? One helpful approach is to place a copy of the module
290inside the C<lib> directory of your Catalyst project. When Catalyst
291loads, it will load from inside your C<lib> directory first, only
292turning to the global modules if a local copy cannot be found. You can
293then make modifications such as adding a C<$DB::single=1> to the local
294copy of the module without risking the copy in the original location.
295This can also be a great way to "locally override" bugs in modules while
d442cc9f 296you wait for a fix on CPAN.
297
bf4d990b 298Matt Trout has suggested the following shortcut to create a local copy
299of an installed module:
d442cc9f 300
301 mkdir -p lib/Module; cp `perldoc -l Module::Name` lib/Module/
302
bf4d990b 303Note: If you are following along in Debian 6 or Ubuntu, you will need to
304install the C<perl-doc> package to use the C<perldoc> command. Use
305C<sudo aptitude install perl-doc> to do that.
3533daff 306
bf4d990b 307For example, you could make a copy of
308L<Catalyst::Plugin::Authentication> with the following command:
d442cc9f 309
310 mkdir -p lib/Catalyst/Plugin; cp \
311 `perldoc -l Catalyst::Plugin::Authentication` lib/Catalyst/Plugin
312
3533daff 313You can then use the local copy inside your project to place logging
314messages and/or breakpoints for further study of that module.
315
bf4d990b 316B<Note:> Matt has also suggested the following tips for Perl debugging:
d442cc9f 317
318=over 4
319
320=item *
321
322Check the version of an installed module:
323
d672dfd7 324 perl -M<mod_name> -e 'print "$<mod_name>::VERSION\n"'
d442cc9f 325
326For example:
327
328 $ perl -MCatalyst::Plugin::Authentication -e \
329 'print $Catalyst::Plugin::Authentication::VERSION;'
330 0.07
331
3b1fa91b 332and if you are using bash aliases:
333
334 alias pmver="perl -le '\$m = shift; eval qq(require \$m) \
335 or die qq(module \"\$m\" is not installed\\n); \
336 print \$m->VERSION'"
337
d442cc9f 338=item *
339
340Check if a modules contains a given method:
341
342 perl -MModule::Name -e 'print Module::Name->can("method");'
343
344For example:
345
346 $ perl -MCatalyst::Plugin::Authentication -e \
3533daff 347 'print Catalyst::Plugin::Authentication->can("user");'
d442cc9f 348 CODE(0x9c8db2c)
349
350If the method exists, the Perl C<can> method returns a coderef.
351Otherwise, it returns undef and nothing will be printed.
352
353=back
354
355
1390ef0e 356=head1 TT DEBUGGING
357
bf4d990b 358If you run into issues during the rendering of your template, it might
359be helpful to enable TT C<DEBUG> options. You can do this in a Catalyst
360environment by adding a C<DEBUG> line to the C<__PACKAGE__->config>
1edbdee6 361declaration in C<lib/MyApp/View/HTML.pm>:
1390ef0e 362
363 __PACKAGE__->config({
364 TEMPLATE_EXTENSION => '.tt2',
365 DEBUG => 'undef',
366 });
367
bf4d990b 368There are a variety of options you can use, such as 'undef', 'all',
369'service', 'context', 'parser' and 'provider'. See
370L<Template::Constants> for more information (remove the C<DEBUG_>
371portion of the name shown in the TT docs and convert to lower case for
372use inside Catalyst).
1390ef0e 373
bf4d990b 374B<NOTE:> B<Please be sure to disable TT debug options before continuing
375with the tutorial> (especially the 'undef' option -- leaving this
376enabled will conflict with several of the conventions used by this
1390ef0e 377tutorial to leave some variables undefined on purpose).
378
3b1fa91b 379Happy debugging.
1390ef0e 380
24acc5d7 381
382You can jump to the next chapter of the tutorial here:
383L<Testing|Catalyst::Manual::Tutorial::08_Testing>
384
385
d442cc9f 386=head1 AUTHOR
387
388Kennedy Clark, C<hkclark@gmail.com>
389
53243324 390Feel free to contact the author for any errors or suggestions, but the
391best way to report issues is via the CPAN RT Bug system at
bb0999d3 392L<https://rt.cpan.org/Public/Dist/Display.html?Name=Catalyst-Manual>.
53243324 393
bb0999d3 394Copyright 2006-2011, Kennedy Clark, under the
ec3ef4ad 395Creative Commons Attribution Share-Alike License Version 3.0
1390ef0e 396(L<http://creativecommons.org/licenses/by-sa/3.0/us/>).