Bump required Module::Install version in everything. janus++
[catagits/Catalyst-Runtime.git] / lib / Catalyst.pm
1 package Catalyst;
2
3 use strict;
4 use base 'Catalyst::Component';
5 use bytes;
6 use Catalyst::Exception;
7 use Catalyst::Log;
8 use Catalyst::Request;
9 use Catalyst::Request::Upload;
10 use Catalyst::Response;
11 use Catalyst::Utils;
12 use Catalyst::Controller;
13 use Devel::InnerPackage ();
14 use File::stat;
15 use Module::Pluggable::Object ();
16 use NEXT;
17 use Text::SimpleTable ();
18 use Path::Class::Dir ();
19 use Path::Class::File ();
20 use Time::HiRes qw/gettimeofday tv_interval/;
21 use URI ();
22 use URI::http;
23 use URI::https;
24 use Scalar::Util qw/weaken blessed/;
25 use Tree::Simple qw/use_weak_refs/;
26 use Tree::Simple::Visitor::FindByUID;
27 use attributes;
28 use utf8;
29 use Carp qw/croak carp/;
30
31 BEGIN { require 5.008001; }
32
33 __PACKAGE__->mk_accessors(
34     qw/counter request response state action stack namespace stats/
35 );
36
37 sub depth { scalar @{ shift->stack || [] }; }
38
39 # Laziness++
40 *comp = \&component;
41 *req  = \&request;
42 *res  = \&response;
43
44 # For backwards compatibility
45 *finalize_output = \&finalize_body;
46
47 # For statistics
48 our $COUNT     = 1;
49 our $START     = time;
50 our $RECURSION = 1000;
51 our $DETACH    = "catalyst_detach\n";
52
53 __PACKAGE__->mk_classdata($_)
54   for qw/components arguments dispatcher engine log dispatcher_class
55   engine_class context_class request_class response_class stats_class 
56   setup_finished/;
57
58 __PACKAGE__->dispatcher_class('Catalyst::Dispatcher');
59 __PACKAGE__->engine_class('Catalyst::Engine::CGI');
60 __PACKAGE__->request_class('Catalyst::Request');
61 __PACKAGE__->response_class('Catalyst::Response');
62 __PACKAGE__->stats_class('Catalyst::Stats');
63
64 # Remember to update this in Catalyst::Runtime as well!
65
66 our $VERSION = '5.7099_03';
67
68 sub import {
69     my ( $class, @arguments ) = @_;
70
71     # We have to limit $class to Catalyst to avoid pushing Catalyst upon every
72     # callers @ISA.
73     return unless $class eq 'Catalyst';
74
75     my $caller = caller(0);
76
77     unless ( $caller->isa('Catalyst') ) {
78         no strict 'refs';
79         push @{"$caller\::ISA"}, $class, 'Catalyst::Controller';
80     }
81
82     $caller->arguments( [@arguments] );
83     $caller->setup_home;
84 }
85
86 =head1 NAME
87
88 Catalyst - The Elegant MVC Web Application Framework
89
90 =head1 SYNOPSIS
91
92 See the L<Catalyst::Manual> distribution for comprehensive
93 documentation and tutorials.
94
95     # Install Catalyst::Devel for helpers and other development tools
96     # use the helper to create a new application
97     catalyst.pl MyApp
98
99     # add models, views, controllers
100     script/myapp_create.pl model MyDatabase DBIC::Schema create=static dbi:SQLite:/path/to/db
101     script/myapp_create.pl view MyTemplate TT
102     script/myapp_create.pl controller Search
103
104     # built in testserver -- use -r to restart automatically on changes
105     # --help to see all available options
106     script/myapp_server.pl
107
108     # command line testing interface
109     script/myapp_test.pl /yada
110
111     ### in lib/MyApp.pm
112     use Catalyst qw/-Debug/; # include plugins here as well
113     
114     ### In lib/MyApp/Controller/Root.pm (autocreated)
115     sub foo : Global { # called for /foo, /foo/1, /foo/1/2, etc.
116         my ( $self, $c, @args ) = @_; # args are qw/1 2/ for /foo/1/2
117         $c->stash->{template} = 'foo.tt'; # set the template
118         # lookup something from db -- stash vars are passed to TT
119         $c->stash->{data} = 
120           $c->model('Database::Foo')->search( { country => $args[0] } );
121         if ( $c->req->params->{bar} ) { # access GET or POST parameters
122             $c->forward( 'bar' ); # process another action
123             # do something else after forward returns            
124         }
125     }
126     
127     # The foo.tt TT template can use the stash data from the database
128     [% WHILE (item = data.next) %]
129         [% item.foo %]
130     [% END %]
131     
132     # called for /bar/of/soap, /bar/of/soap/10, etc.
133     sub bar : Path('/bar/of/soap') { ... }
134
135     # called for all actions, from the top-most controller downwards
136     sub auto : Private { 
137         my ( $self, $c ) = @_;
138         if ( !$c->user_exists ) { # Catalyst::Plugin::Authentication
139             $c->res->redirect( '/login' ); # require login
140             return 0; # abort request and go immediately to end()
141         }
142         return 1; # success; carry on to next action
143     }
144     
145     # called after all actions are finished
146     sub end : Private { 
147         my ( $self, $c ) = @_;
148         if ( scalar @{ $c->error } ) { ... } # handle errors
149         return if $c->res->body; # already have a response
150         $c->forward( 'MyApp::View::TT' ); # render template
151     }
152
153     ### in MyApp/Controller/Foo.pm
154     # called for /foo/bar
155     sub bar : Local { ... }
156     
157     # called for /blargle
158     sub blargle : Global { ... }
159     
160     # an index action matches /foo, but not /foo/1, etc.
161     sub index : Private { ... }
162     
163     ### in MyApp/Controller/Foo/Bar.pm
164     # called for /foo/bar/baz
165     sub baz : Local { ... }
166     
167     # first Root auto is called, then Foo auto, then this
168     sub auto : Private { ... }
169     
170     # powerful regular expression paths are also possible
171     sub details : Regex('^product/(\w+)/details$') {
172         my ( $self, $c ) = @_;
173         # extract the (\w+) from the URI
174         my $product = $c->req->captures->[0];
175     }
176
177 See L<Catalyst::Manual::Intro> for additional information.
178
179 =head1 DESCRIPTION
180
181 Catalyst is a modern framework for making web applications without the
182 pain usually associated with this process. This document is a reference
183 to the main Catalyst application. If you are a new user, we suggest you
184 start with L<Catalyst::Manual::Tutorial> or L<Catalyst::Manual::Intro>.
185
186 See L<Catalyst::Manual> for more documentation.
187
188 Catalyst plugins can be loaded by naming them as arguments to the "use
189 Catalyst" statement. Omit the C<Catalyst::Plugin::> prefix from the
190 plugin name, i.e., C<Catalyst::Plugin::My::Module> becomes
191 C<My::Module>.
192
193     use Catalyst qw/My::Module/;
194
195 If your plugin starts with a name other than C<Catalyst::Plugin::>, you can
196 fully qualify the name by using a unary plus:
197
198     use Catalyst qw/
199         My::Module
200         +Fully::Qualified::Plugin::Name
201     /;
202
203 Special flags like C<-Debug> and C<-Engine> can also be specified as
204 arguments when Catalyst is loaded:
205
206     use Catalyst qw/-Debug My::Module/;
207
208 The position of plugins and flags in the chain is important, because
209 they are loaded in the order in which they appear.
210
211 The following flags are supported:
212
213 =head2 -Debug
214
215 Enables debug output. You can also force this setting from the system
216 environment with CATALYST_DEBUG or <MYAPP>_DEBUG. The environment
217 settings override the application, with <MYAPP>_DEBUG having the highest
218 priority.
219
220 =head2 -Engine
221
222 Forces Catalyst to use a specific engine. Omit the
223 C<Catalyst::Engine::> prefix of the engine name, i.e.:
224
225     use Catalyst qw/-Engine=CGI/;
226
227 =head2 -Home
228
229 Forces Catalyst to use a specific home directory, e.g.:
230
231     use Catalyst qw[-Home=/usr/mst];
232
233 This can also be done in the shell environment by setting either the
234 C<CATALYST_HOME> environment variable or C<MYAPP_HOME>; where C<MYAPP>
235 is replaced with the uppercased name of your application, any "::" in
236 the name will be replaced with underscores, e.g. MyApp::Web should use
237 MYAPP_WEB_HOME. If both variables are set, the MYAPP_HOME one will be used.
238
239 =head2 -Log
240
241 Specifies log level.
242
243 =head2 -Stats
244
245 Enables statistics collection and reporting. You can also force this setting
246 from the system environment with CATALYST_STATS or <MYAPP>_STATS. The
247 environment settings override the application, with <MYAPP>_STATS having the
248 highest priority.
249
250 e.g. 
251
252    use Catalyst qw/-Stats=1/
253
254 =head1 METHODS
255
256 =head2 INFORMATION ABOUT THE CURRENT REQUEST
257
258 =head2 $c->action
259
260 Returns a L<Catalyst::Action> object for the current action, which
261 stringifies to the action name. See L<Catalyst::Action>.
262
263 =head2 $c->namespace
264
265 Returns the namespace of the current action, i.e., the URI prefix
266 corresponding to the controller of the current action. For example:
267
268     # in Controller::Foo::Bar
269     $c->namespace; # returns 'foo/bar';
270
271 =head2 $c->request
272
273 =head2 $c->req
274
275 Returns the current L<Catalyst::Request> object, giving access to
276 information about the current client request (including parameters,
277 cookies, HTTP headers, etc.). See L<Catalyst::Request>.
278
279 =head2 REQUEST FLOW HANDLING
280
281 =head2 $c->forward( $action [, \@arguments ] )
282
283 =head2 $c->forward( $class, $method, [, \@arguments ] )
284
285 Forwards processing to another action, by its private name. If you give a
286 class name but no method, C<process()> is called. You may also optionally
287 pass arguments in an arrayref. The action will receive the arguments in
288 C<@_> and C<< $c->req->args >>. Upon returning from the function,
289 C<< $c->req->args >> will be restored to the previous values.
290
291 Any data C<return>ed from the action forwarded to, will be returned by the
292 call to forward.
293
294     my $foodata = $c->forward('/foo');
295     $c->forward('index');
296     $c->forward(qw/MyApp::Model::DBIC::Foo do_stuff/);
297     $c->forward('MyApp::View::TT');
298
299 Note that forward implies an C<<eval { }>> around the call (actually
300 C<execute> does), thus de-fatalizing all 'dies' within the called
301 action. If you want C<die> to propagate you need to do something like:
302
303     $c->forward('foo');
304     die $c->error if $c->error;
305
306 Or make sure to always return true values from your actions and write
307 your code like this:
308
309     $c->forward('foo') || return;
310
311 =cut
312
313 sub forward { my $c = shift; $c->dispatcher->forward( $c, @_ ) }
314
315 =head2 $c->detach( $action [, \@arguments ] )
316
317 =head2 $c->detach( $class, $method, [, \@arguments ] )
318
319 =head2 $c->detach()
320
321 The same as C<forward>, but doesn't return to the previous action when 
322 processing is finished. 
323
324 When called with no arguments it escapes the processing chain entirely.
325
326 =cut
327
328 sub detach { my $c = shift; $c->dispatcher->detach( $c, @_ ) }
329
330 =head2 $c->response
331
332 =head2 $c->res
333
334 Returns the current L<Catalyst::Response> object, see there for details.
335
336 =head2 $c->stash
337
338 Returns a hashref to the stash, which may be used to store data and pass
339 it between components during a request. You can also set hash keys by
340 passing arguments. The stash is automatically sent to the view. The
341 stash is cleared at the end of a request; it cannot be used for
342 persistent storage (for this you must use a session; see
343 L<Catalyst::Plugin::Session> for a complete system integrated with
344 Catalyst).
345
346     $c->stash->{foo} = $bar;
347     $c->stash( { moose => 'majestic', qux => 0 } );
348     $c->stash( bar => 1, gorch => 2 ); # equivalent to passing a hashref
349     
350     # stash is automatically passed to the view for use in a template
351     $c->forward( 'MyApp::View::TT' );
352
353 =cut
354
355 sub stash {
356     my $c = shift;
357     if (@_) {
358         my $stash = @_ > 1 ? {@_} : $_[0];
359         croak('stash takes a hash or hashref') unless ref $stash;
360         foreach my $key ( keys %$stash ) {
361             $c->{stash}->{$key} = $stash->{$key};
362         }
363     }
364     return $c->{stash};
365 }
366
367 =head2 $c->error
368
369 =head2 $c->error($error, ...)
370
371 =head2 $c->error($arrayref)
372
373 Returns an arrayref containing error messages.  If Catalyst encounters an
374 error while processing a request, it stores the error in $c->error.  This
375 method should only be used to store fatal error messages.
376
377     my @error = @{ $c->error };
378
379 Add a new error.
380
381     $c->error('Something bad happened');
382
383 =cut
384
385 sub error {
386     my $c = shift;
387     if ( $_[0] ) {
388         my $error = ref $_[0] eq 'ARRAY' ? $_[0] : [@_];
389         croak @$error unless ref $c;
390         push @{ $c->{error} }, @$error;
391     }
392     elsif ( defined $_[0] ) { $c->{error} = undef }
393     return $c->{error} || [];
394 }
395
396
397 =head2 $c->state
398
399 Contains the return value of the last executed action.
400
401 =head2 $c->clear_errors
402
403 Clear errors.  You probably don't want to clear the errors unless you are
404 implementing a custom error screen.
405
406 This is equivalent to running
407
408     $c->error(0);
409
410 =cut
411
412 sub clear_errors {
413     my $c = shift;
414     $c->error(0);
415 }
416
417 # search components given a name and some prefixes
418 sub _comp_search_prefixes {
419     my ( $c, $name, @prefixes ) = @_;
420     my $appclass = ref $c || $c;
421     my $filter   = "^${appclass}::(" . join( '|', @prefixes ) . ')::';
422
423     # map the original component name to the sub part that we will search against
424     my %eligible = map { my $n = $_; $n =~ s{^$appclass\::[^:]+::}{}; $_ => $n; }
425         grep { /$filter/ } keys %{ $c->components };
426
427     # undef for a name will return all
428     return keys %eligible if !defined $name;
429
430     my $query  = ref $name ? $name : qr/^$name$/i;
431     my @result = grep { $eligible{$_} =~ m{$query} } keys %eligible;
432
433     return map { $c->components->{ $_ } } @result if @result;
434
435     # if we were given a regexp to search against, we're done.
436     return if ref $name;
437
438     # regexp fallback
439     $query  = qr/$name/i;
440     @result = map { $c->components->{ $_ } } grep { $eligible{ $_ } =~ m{$query} } keys %eligible;
441
442     # no results? try against full names
443     if( !@result ) {
444         @result = map { $c->components->{ $_ } } grep { m{$query} } keys %eligible;
445     }
446
447     # don't warn if we didn't find any results, it just might not exist
448     if( @result ) {
449         $c->log->warn( qq(Found results for "${name}" using regexp fallback.) );
450         $c->log->warn( 'Relying on the regexp fallback behavior for component resolution is unreliable and unsafe.' );
451         $c->log->warn( 'If you really want to search, pass in a regexp as the argument.' );
452     }
453
454     return @result;
455 }
456
457 # Find possible names for a prefix 
458 sub _comp_names {
459     my ( $c, @prefixes ) = @_;
460     my $appclass = ref $c || $c;
461
462     my $filter = "^${appclass}::(" . join( '|', @prefixes ) . ')::';
463
464     my @names = map { s{$filter}{}; $_; } $c->_comp_search_prefixes( undef, @prefixes );
465     return @names;
466 }
467
468 # Filter a component before returning by calling ACCEPT_CONTEXT if available
469 sub _filter_component {
470     my ( $c, $comp, @args ) = @_;
471
472     if ( eval { $comp->can('ACCEPT_CONTEXT'); } ) {
473         return $comp->ACCEPT_CONTEXT( $c, @args );
474     }
475     
476     return $comp;
477 }
478
479 =head2 COMPONENT ACCESSORS
480
481 =head2 $c->controller($name)
482
483 Gets a L<Catalyst::Controller> instance by name.
484
485     $c->controller('Foo')->do_stuff;
486
487 If the name is omitted, will return the controller for the dispatched
488 action.
489
490 If you want to search for controllers, pass in a regexp as the argument.
491
492     # find all controllers that start with Foo
493     my @foo_controllers = $c->controller(qr{^Foo});
494
495
496 =cut
497
498 sub controller {
499     my ( $c, $name, @args ) = @_;
500
501     if( $name ) {
502         my @result = $c->_comp_search_prefixes( $name, qw/Controller C/ );
503         return map { $c->_filter_component( $_, @args ) } @result if ref $name;
504         return $c->_filter_component( $result[ 0 ], @args );
505     }
506
507     return $c->component( $c->action->class );
508 }
509
510 =head2 $c->model($name)
511
512 Gets a L<Catalyst::Model> instance by name.
513
514     $c->model('Foo')->do_stuff;
515
516 Any extra arguments are directly passed to ACCEPT_CONTEXT.
517
518 If the name is omitted, it will look for 
519  - a model object in $c->stash->{current_model_instance}, then
520  - a model name in $c->stash->{current_model}, then
521  - a config setting 'default_model', or
522  - check if there is only one model, and return it if that's the case.
523
524 If you want to search for models, pass in a regexp as the argument.
525
526     # find all models that start with Foo
527     my @foo_models = $c->model(qr{^Foo});
528
529 =cut
530
531 sub model {
532     my ( $c, $name, @args ) = @_;
533
534     if( $name ) {
535         my @result = $c->_comp_search_prefixes( $name, qw/Model M/ );
536         return map { $c->_filter_component( $_, @args ) } @result if ref $name;
537         return $c->_filter_component( $result[ 0 ], @args );
538     }
539
540     if (ref $c) {
541         return $c->stash->{current_model_instance} 
542           if $c->stash->{current_model_instance};
543         return $c->model( $c->stash->{current_model} )
544           if $c->stash->{current_model};
545     }
546     return $c->model( $c->config->{default_model} )
547       if $c->config->{default_model};
548
549     my( $comp, $rest ) = $c->_comp_search_prefixes( undef, qw/Model M/);
550
551     if( $rest ) {
552         $c->log->warn( 'Calling $c->model() will return a random model unless you specify one of:' );
553         $c->log->warn( '* $c->config->{default_model} # the name of the default model to use' );
554         $c->log->warn( '* $c->stash->{current_model} # the name of the model to use for this request' );
555         $c->log->warn( '* $c->stash->{current_model_instance} # the instance of the model to use for this request' );
556         $c->log->warn( 'NB: in version 5.80, the "random" behavior will not work at all.' );
557     }
558
559     return $c->_filter_component( $comp );
560 }
561
562
563 =head2 $c->view($name)
564
565 Gets a L<Catalyst::View> instance by name.
566
567     $c->view('Foo')->do_stuff;
568
569 Any extra arguments are directly passed to ACCEPT_CONTEXT.
570
571 If the name is omitted, it will look for 
572  - a view object in $c->stash->{current_view_instance}, then
573  - a view name in $c->stash->{current_view}, then
574  - a config setting 'default_view', or
575  - check if there is only one view, and return it if that's the case.
576
577 If you want to search for views, pass in a regexp as the argument.
578
579     # find all views that start with Foo
580     my @foo_views = $c->view(qr{^Foo});
581
582 =cut
583
584 sub view {
585     my ( $c, $name, @args ) = @_;
586
587     if( $name ) {
588         my @result = $c->_comp_search_prefixes( $name, qw/View V/ );
589         return map { $c->_filter_component( $_, @args ) } @result if ref $name;
590         return $c->_filter_component( $result[ 0 ], @args );
591     }
592
593     if (ref $c) {
594         return $c->stash->{current_view_instance} 
595           if $c->stash->{current_view_instance};
596         return $c->view( $c->stash->{current_view} )
597           if $c->stash->{current_view};
598     }
599     return $c->view( $c->config->{default_view} )
600       if $c->config->{default_view};
601
602     my( $comp, $rest ) = $c->_comp_search_prefixes( undef, qw/View V/);
603
604     if( $rest ) {
605         $c->log->warn( 'Calling $c->view() will return a random view unless you specify one of:' );
606         $c->log->warn( '* $c->config->{default_view} # the name of the default view to use' );
607         $c->log->warn( '* $c->stash->{current_view} # the name of the view to use for this request' );
608         $c->log->warn( '* $c->stash->{current_view_instance} # the instance of the view to use for this request' );
609         $c->log->warn( 'NB: in version 5.80, the "random" behavior will not work at all.' );
610     }
611
612     return $c->_filter_component( $comp );
613 }
614
615 =head2 $c->controllers
616
617 Returns the available names which can be passed to $c->controller
618
619 =cut
620
621 sub controllers {
622     my ( $c ) = @_;
623     return $c->_comp_names(qw/Controller C/);
624 }
625
626 =head2 $c->models
627
628 Returns the available names which can be passed to $c->model
629
630 =cut
631
632 sub models {
633     my ( $c ) = @_;
634     return $c->_comp_names(qw/Model M/);
635 }
636
637
638 =head2 $c->views
639
640 Returns the available names which can be passed to $c->view
641
642 =cut
643
644 sub views {
645     my ( $c ) = @_;
646     return $c->_comp_names(qw/View V/);
647 }
648
649 =head2 $c->comp($name)
650
651 =head2 $c->component($name)
652
653 Gets a component object by name. This method is not recommended,
654 unless you want to get a specific component by full
655 class. C<< $c->controller >>, C<< $c->model >>, and C<< $c->view >>
656 should be used instead.
657
658 If C<$name> is a regexp, a list of components matched against the full
659 component name will be returned.
660
661 =cut
662
663 sub component {
664     my ( $c, $name, @args ) = @_;
665
666     if( $name ) {
667         my $comps = $c->components;
668
669         if( !ref $name ) {
670             # is it the exact name?
671             return $c->_filter_component( $comps->{ $name }, @args )
672                        if exists $comps->{ $name };
673
674             # perhaps we just omitted "MyApp"?
675             my $composed = ( ref $c || $c ) . "::${name}";
676             return $c->_filter_component( $comps->{ $composed }, @args )
677                        if exists $comps->{ $composed };
678
679             # search all of the models, views and controllers
680             my( $comp ) = $c->_comp_search_prefixes( $name, qw/Model M Controller C View V/ );
681             return $c->_filter_component( $comp, @args ) if $comp;
682         }
683
684         # This is here so $c->comp( '::M::' ) works
685         my $query = ref $name ? $name : qr{$name}i;
686
687         my @result = grep { m{$query} } keys %{ $c->components };
688         return map { $c->_filter_component( $_, @args ) } @result if ref $name;
689
690         if( $result[ 0 ] ) {
691             $c->log->warn( qq(Found results for "${name}" using regexp fallback.) );
692             $c->log->warn( 'Relying on the regexp fallback behavior for component resolution' );
693             $c->log->warn( 'is unreliable and unsafe. You have been warned' );
694             return $c->_filter_component( $result[ 0 ], @args );
695         }
696
697         # I would expect to return an empty list here, but that breaks back-compat
698     }
699
700     # fallback
701     return sort keys %{ $c->components };
702 }
703
704 =head2 CLASS DATA AND HELPER CLASSES
705
706 =head2 $c->config
707
708 Returns or takes a hashref containing the application's configuration.
709
710     __PACKAGE__->config( { db => 'dsn:SQLite:foo.db' } );
711
712 You can also use a C<YAML>, C<XML> or C<Config::General> config file
713 like myapp.yml in your applications home directory. See
714 L<Catalyst::Plugin::ConfigLoader>.
715
716     ---
717     db: dsn:SQLite:foo.db
718
719
720 =cut
721
722 sub config {
723     my $c = shift;
724
725     $c->log->warn("Setting config after setup has been run is not a good idea.")
726       if ( @_ and $c->setup_finished );
727
728     $c->NEXT::config(@_);
729 }
730
731 =head2 $c->log
732
733 Returns the logging object instance. Unless it is already set, Catalyst
734 sets this up with a L<Catalyst::Log> object. To use your own log class,
735 set the logger with the C<< __PACKAGE__->log >> method prior to calling
736 C<< __PACKAGE__->setup >>.
737
738  __PACKAGE__->log( MyLogger->new );
739  __PACKAGE__->setup;
740
741 And later:
742
743     $c->log->info( 'Now logging with my own logger!' );
744
745 Your log class should implement the methods described in
746 L<Catalyst::Log>.
747
748
749 =head2 $c->debug
750
751 Overload to enable debug messages (same as -Debug option).
752
753 Note that this is a static method, not an accessor and should be overloaded
754 by declaring "sub debug { 1 }" in your MyApp.pm, not by calling $c->debug(1).
755
756 =cut
757
758 sub debug { 0 }
759
760 =head2 $c->dispatcher
761
762 Returns the dispatcher instance. Stringifies to class name. See
763 L<Catalyst::Dispatcher>.
764
765 =head2 $c->engine
766
767 Returns the engine instance. Stringifies to the class name. See
768 L<Catalyst::Engine>.
769
770
771 =head2 UTILITY METHODS
772
773 =head2 $c->path_to(@path)
774
775 Merges C<@path> with C<< $c->config->{home} >> and returns a
776 L<Path::Class::Dir> object.
777
778 For example:
779
780     $c->path_to( 'db', 'sqlite.db' );
781
782 =cut
783
784 sub path_to {
785     my ( $c, @path ) = @_;
786     my $path = Path::Class::Dir->new( $c->config->{home}, @path );
787     if ( -d $path ) { return $path }
788     else { return Path::Class::File->new( $c->config->{home}, @path ) }
789 }
790
791 =head2 $c->plugin( $name, $class, @args )
792
793 Helper method for plugins. It creates a classdata accessor/mutator and
794 loads and instantiates the given class.
795
796     MyApp->plugin( 'prototype', 'HTML::Prototype' );
797
798     $c->prototype->define_javascript_functions;
799
800 =cut
801
802 sub plugin {
803     my ( $class, $name, $plugin, @args ) = @_;
804     $class->_register_plugin( $plugin, 1 );
805
806     eval { $plugin->import };
807     $class->mk_classdata($name);
808     my $obj;
809     eval { $obj = $plugin->new(@args) };
810
811     if ($@) {
812         Catalyst::Exception->throw( message =>
813               qq/Couldn't instantiate instant plugin "$plugin", "$@"/ );
814     }
815
816     $class->$name($obj);
817     $class->log->debug(qq/Initialized instant plugin "$plugin" as "$name"/)
818       if $class->debug;
819 }
820
821 =head2 MyApp->setup
822
823 Initializes the dispatcher and engine, loads any plugins, and loads the
824 model, view, and controller components. You may also specify an array
825 of plugins to load here, if you choose to not load them in the C<use
826 Catalyst> line.
827
828     MyApp->setup;
829     MyApp->setup( qw/-Debug/ );
830
831 =cut
832
833 sub setup {
834     my ( $class, @arguments ) = @_;
835
836     $class->log->warn("Running setup twice is not a good idea.")
837       if ( $class->setup_finished );
838
839     unless ( $class->isa('Catalyst') ) {
840
841         Catalyst::Exception->throw(
842             message => qq/'$class' does not inherit from Catalyst/ );
843     }
844
845     if ( $class->arguments ) {
846         @arguments = ( @arguments, @{ $class->arguments } );
847     }
848
849     # Process options
850     my $flags = {};
851
852     foreach (@arguments) {
853
854         if (/^-Debug$/) {
855             $flags->{log} =
856               ( $flags->{log} ) ? 'debug,' . $flags->{log} : 'debug';
857         }
858         elsif (/^-(\w+)=?(.*)$/) {
859             $flags->{ lc $1 } = $2;
860         }
861         else {
862             push @{ $flags->{plugins} }, $_;
863         }
864     }
865
866     $class->setup_home( delete $flags->{home} );
867
868     $class->setup_log( delete $flags->{log} );
869     $class->setup_plugins( delete $flags->{plugins} );
870     $class->setup_dispatcher( delete $flags->{dispatcher} );
871     $class->setup_engine( delete $flags->{engine} );
872     $class->setup_stats( delete $flags->{stats} );
873
874     for my $flag ( sort keys %{$flags} ) {
875
876         if ( my $code = $class->can( 'setup_' . $flag ) ) {
877             &$code( $class, delete $flags->{$flag} );
878         }
879         else {
880             $class->log->warn(qq/Unknown flag "$flag"/);
881         }
882     }
883
884     eval { require Catalyst::Devel; };
885     if( !$@ && $ENV{CATALYST_SCRIPT_GEN} && ( $ENV{CATALYST_SCRIPT_GEN} < $Catalyst::Devel::CATALYST_SCRIPT_GEN ) ) {
886         $class->log->warn(<<"EOF");
887 You are running an old script!
888
889   Please update by running (this will overwrite existing files):
890     catalyst.pl -force -scripts $class
891
892   or (this will not overwrite existing files):
893     catalyst.pl -scripts $class
894
895 EOF
896     }
897     
898     if ( $class->debug ) {
899         my @plugins = map { "$_  " . ( $_->VERSION || '' ) } $class->registered_plugins;
900
901         if (@plugins) {
902             my $t = Text::SimpleTable->new(74);
903             $t->row($_) for @plugins;
904             $class->log->debug( "Loaded plugins:\n" . $t->draw . "\n" );
905         }
906
907         my $dispatcher = $class->dispatcher;
908         my $engine     = $class->engine;
909         my $home       = $class->config->{home};
910
911         $class->log->debug(qq/Loaded dispatcher "$dispatcher"/);
912         $class->log->debug(qq/Loaded engine "$engine"/);
913
914         $home
915           ? ( -d $home )
916           ? $class->log->debug(qq/Found home "$home"/)
917           : $class->log->debug(qq/Home "$home" doesn't exist/)
918           : $class->log->debug(q/Couldn't find home/);
919     }
920
921     # Call plugins setup
922     {
923         no warnings qw/redefine/;
924         local *setup = sub { };
925         $class->setup;
926     }
927
928     # Initialize our data structure
929     $class->components( {} );
930
931     $class->setup_components;
932
933     if ( $class->debug ) {
934         my $t = Text::SimpleTable->new( [ 63, 'Class' ], [ 8, 'Type' ] );
935         for my $comp ( sort keys %{ $class->components } ) {
936             my $type = ref $class->components->{$comp} ? 'instance' : 'class';
937             $t->row( $comp, $type );
938         }
939         $class->log->debug( "Loaded components:\n" . $t->draw . "\n" )
940           if ( keys %{ $class->components } );
941     }
942
943     # Add our self to components, since we are also a component
944     $class->components->{$class} = $class;
945
946     $class->setup_actions;
947
948     if ( $class->debug ) {
949         my $name = $class->config->{name} || 'Application';
950         $class->log->info("$name powered by Catalyst $Catalyst::VERSION");
951     }
952     $class->log->_flush() if $class->log->can('_flush');
953
954     $class->setup_finished(1);
955 }
956
957 =head2 $c->uri_for( $action, \@captures?, @args?, \%query_values? )
958
959 =head2 $c->uri_for( $path, @args?, \%query_values? )
960
961 =over
962
963 =item $action
964
965 A Catalyst::Action object representing the Catalyst action you want to
966 create a URI for. To get one for an action in the current controller,
967 use C<< $c->action('someactionname') >>. To get one from different
968 controller, fetch the controller using C<< $c->controller() >>, then
969 call C<action_for> on it.
970
971 This method must be used to create URIs for
972 L<Catalyst::DispatchType::Chained> actions.
973
974 =item $path
975
976 The actual path you wish to create a URI for, this is a public path,
977 not a private action path.
978
979 =item \@captures
980
981 If provided, this argument is used to insert values into a I<Chained>
982 action in the parts where the definitions contain I<CaptureArgs>. If
983 not needed, leave out this argument.
984
985 =item @args
986
987 If provided, this is used as a list of further path sections to append
988 to the URI. In a I<Chained> action these are the equivalent to the
989 endpoint L<Args>.
990
991 =item \%query_values
992
993 If provided, the query_values hashref is used to add query parameters
994 to the URI, with the keys as the names, and the values as the values.
995
996 =back
997
998 Returns a L<URI> object.
999
1000   ## Ex 1: a path with args and a query parameter
1001   $c->uri_for('user/list', 'short', { page => 2});
1002   ## -> ($c->req->base is 'http://localhost:3000/'
1003   URI->new('http://localhost:3000/user/list/short?page=2)
1004
1005   ## Ex 2: a chained view action that captures the user id
1006   ## In controller:
1007   sub user : Chained('/'): PathPart('myuser'): CaptureArgs(1) {}
1008   sub viewuser : Chained('user'): PathPart('view') {}
1009
1010   ## In uri creating code:
1011   my $uaction = $c->controller('Users')->action_for('viewuser');
1012   $c->uri_for($uaction, [ 42 ]);
1013   ## outputs:
1014   URI->new('http://localhost:3000/myuser/42/view')
1015
1016 Creates a URI object using C<< $c->request->base >> and a path. If an
1017 Action object is given instead of a path, the path is constructed
1018 using C<< $c->dispatcher->uri_for_action >> and passing it the
1019 @captures array, if supplied.
1020
1021 If any query parameters are passed they are added to the end of the
1022 URI in the usual way.
1023
1024 Note that uri_for is destructive to the passed query values hashref.
1025 Subsequent calls with the same hashref may have unintended results.
1026
1027 =cut
1028
1029 sub uri_for {
1030     my ( $c, $path, @args ) = @_;
1031
1032     if ( Scalar::Util::blessed($path) ) { # action object
1033         my $captures = ( scalar @args && ref $args[0] eq 'ARRAY'
1034                          ? shift(@args)
1035                          : [] );
1036         $path = $c->dispatcher->uri_for_action($path, $captures);
1037         return undef unless defined($path);
1038         $path = '/' if $path eq '';
1039     }
1040
1041     undef($path) if (defined $path && $path eq '');
1042
1043     my $params =
1044       ( scalar @args && ref $args[$#args] eq 'HASH' ? pop @args : {} );
1045
1046     carp "uri_for called with undef argument" if grep { ! defined $_ } @args;
1047     s/([^$URI::uric])/$URI::Escape::escapes{$1}/go for @args;
1048
1049     unshift(@args, $path);
1050
1051     unless (defined $path && $path =~ s!^/!!) { # in-place strip
1052         my $namespace = $c->namespace;
1053         if (defined $path) { # cheesy hack to handle path '../foo'
1054            $namespace =~ s{(?:^|/)[^/]+$}{} while $args[0] =~ s{^\.\./}{};
1055         }
1056         unshift(@args, $namespace || '');
1057     }
1058     
1059     # join args with '/', or a blank string
1060     my $args = join('/', grep { defined($_) } @args);
1061     $args =~ s/\?/%3F/g; # STUPID STUPID SPECIAL CASE
1062     $args =~ s!^/!!;
1063     my $base = $c->req->base;
1064     my $class = ref($base);
1065     $base =~ s{(?<!/)$}{/};
1066
1067     my $query = '';
1068
1069     if (my @keys = keys %$params) {
1070       # somewhat lifted from URI::_query's query_form
1071       $query = '?'.join('&', map {
1072           my $val = $params->{$_};
1073           s/([;\/?:@&=+,\$\[\]%])/$URI::Escape::escapes{$1}/go;
1074           s/ /+/g;
1075           my $key = $_;
1076           $val = '' unless defined $val;
1077           (map {
1078               $_ = "$_";
1079               utf8::encode( $_ ) if utf8::is_utf8($_);
1080               # using the URI::Escape pattern here so utf8 chars survive
1081               s/([^A-Za-z0-9\-_.!~*'() ])/$URI::Escape::escapes{$1}/go;
1082               s/ /+/g;
1083               "${key}=$_"; } ( ref $val eq 'ARRAY' ? @$val : $val ));
1084       } @keys);
1085     }
1086
1087     my $res = bless(\"${base}${args}${query}", $class);
1088     $res;
1089 }
1090
1091 =head2 $c->welcome_message
1092
1093 Returns the Catalyst welcome HTML page.
1094
1095 =cut
1096
1097 sub welcome_message {
1098     my $c      = shift;
1099     my $name   = $c->config->{name};
1100     my $logo   = $c->uri_for('/static/images/catalyst_logo.png');
1101     my $prefix = Catalyst::Utils::appprefix( ref $c );
1102     $c->response->content_type('text/html; charset=utf-8');
1103     return <<"EOF";
1104 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
1105     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1106 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1107     <head>
1108     <meta http-equiv="Content-Language" content="en" />
1109     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
1110         <title>$name on Catalyst $VERSION</title>
1111         <style type="text/css">
1112             body {
1113                 color: #000;
1114                 background-color: #eee;
1115             }
1116             div#content {
1117                 width: 640px;
1118                 margin-left: auto;
1119                 margin-right: auto;
1120                 margin-top: 10px;
1121                 margin-bottom: 10px;
1122                 text-align: left;
1123                 background-color: #ccc;
1124                 border: 1px solid #aaa;
1125             }
1126             p, h1, h2 {
1127                 margin-left: 20px;
1128                 margin-right: 20px;
1129                 font-family: verdana, tahoma, sans-serif;
1130             }
1131             a {
1132                 font-family: verdana, tahoma, sans-serif;
1133             }
1134             :link, :visited {
1135                     text-decoration: none;
1136                     color: #b00;
1137                     border-bottom: 1px dotted #bbb;
1138             }
1139             :link:hover, :visited:hover {
1140                     color: #555;
1141             }
1142             div#topbar {
1143                 margin: 0px;
1144             }
1145             pre {
1146                 margin: 10px;
1147                 padding: 8px;
1148             }
1149             div#answers {
1150                 padding: 8px;
1151                 margin: 10px;
1152                 background-color: #fff;
1153                 border: 1px solid #aaa;
1154             }
1155             h1 {
1156                 font-size: 0.9em;
1157                 font-weight: normal;
1158                 text-align: center;
1159             }
1160             h2 {
1161                 font-size: 1.0em;
1162             }
1163             p {
1164                 font-size: 0.9em;
1165             }
1166             p img {
1167                 float: right;
1168                 margin-left: 10px;
1169             }
1170             span#appname {
1171                 font-weight: bold;
1172                 font-size: 1.6em;
1173             }
1174         </style>
1175     </head>
1176     <body>
1177         <div id="content">
1178             <div id="topbar">
1179                 <h1><span id="appname">$name</span> on <a href="http://catalyst.perl.org">Catalyst</a>
1180                     $VERSION</h1>
1181              </div>
1182              <div id="answers">
1183                  <p>
1184                  <img src="$logo" alt="Catalyst Logo" />
1185                  </p>
1186                  <p>Welcome to the  world of Catalyst.
1187                     This <a href="http://en.wikipedia.org/wiki/MVC">MVC</a>
1188                     framework will make web development something you had
1189                     never expected it to be: Fun, rewarding, and quick.</p>
1190                  <h2>What to do now?</h2>
1191                  <p>That really depends  on what <b>you</b> want to do.
1192                     We do, however, provide you with a few starting points.</p>
1193                  <p>If you want to jump right into web development with Catalyst
1194                     you might want to start with a tutorial.</p>
1195 <pre>perldoc <a href="http://cpansearch.perl.org/dist/Catalyst-Manual/lib/Catalyst/Manual/Tutorial.pod">Catalyst::Manual::Tutorial</a></code>
1196 </pre>
1197 <p>Afterwards you can go on to check out a more complete look at our features.</p>
1198 <pre>
1199 <code>perldoc <a href="http://cpansearch.perl.org/dist/Catalyst-Manual/lib/Catalyst/Manual/Intro.pod">Catalyst::Manual::Intro</a>
1200 <!-- Something else should go here, but the Catalyst::Manual link seems unhelpful -->
1201 </code></pre>
1202                  <h2>What to do next?</h2>
1203                  <p>Next it's time to write an actual application. Use the
1204                     helper scripts to generate <a href="http://cpansearch.perl.org/search?query=Catalyst%3A%3AController%3A%3A&amp;mode=all">controllers</a>,
1205                     <a href="http://cpansearch.perl.org/search?query=Catalyst%3A%3AModel%3A%3A&amp;mode=all">models</a>, and
1206                     <a href="http://cpansearch.perl.org/search?query=Catalyst%3A%3AView%3A%3A&amp;mode=all">views</a>;
1207                     they can save you a lot of work.</p>
1208                     <pre><code>script/${prefix}_create.pl -help</code></pre>
1209                     <p>Also, be sure to check out the vast and growing
1210                     collection of <a href="http://cpansearch.perl.org/search?query=Catalyst%3A%3APlugin%3A%3A&amp;mode=all">plugins for Catalyst on CPAN</a>;
1211                     you are likely to find what you need there.
1212                     </p>
1213
1214                  <h2>Need help?</h2>
1215                  <p>Catalyst has a very active community. Here are the main places to
1216                     get in touch with us.</p>
1217                  <ul>
1218                      <li>
1219                          <a href="http://dev.catalyst.perl.org">Wiki</a>
1220                      </li>
1221                      <li>
1222                          <a href="http://lists.rawmode.org/mailman/listinfo/catalyst">Mailing-List</a>
1223                      </li>
1224                      <li>
1225                          <a href="irc://irc.perl.org/catalyst">IRC channel #catalyst on irc.perl.org</a>
1226                      </li>
1227                  </ul>
1228                  <h2>In conclusion</h2>
1229                  <p>The Catalyst team hopes you will enjoy using Catalyst as much 
1230                     as we enjoyed making it. Please contact us if you have ideas
1231                     for improvement or other feedback.</p>
1232              </div>
1233          </div>
1234     </body>
1235 </html>
1236 EOF
1237 }
1238
1239 =head1 INTERNAL METHODS
1240
1241 These methods are not meant to be used by end users.
1242
1243 =head2 $c->components
1244
1245 Returns a hash of components.
1246
1247 =head2 $c->context_class
1248
1249 Returns or sets the context class.
1250
1251 =head2 $c->counter
1252
1253 Returns a hashref containing coderefs and execution counts (needed for
1254 deep recursion detection).
1255
1256 =head2 $c->depth
1257
1258 Returns the number of actions on the current internal execution stack.
1259
1260 =head2 $c->dispatch
1261
1262 Dispatches a request to actions.
1263
1264 =cut
1265
1266 sub dispatch { my $c = shift; $c->dispatcher->dispatch( $c, @_ ) }
1267
1268 =head2 $c->dispatcher_class
1269
1270 Returns or sets the dispatcher class.
1271
1272 =head2 $c->dump_these
1273
1274 Returns a list of 2-element array references (name, structure) pairs
1275 that will be dumped on the error page in debug mode.
1276
1277 =cut
1278
1279 sub dump_these {
1280     my $c = shift;
1281     [ Request => $c->req ], 
1282     [ Response => $c->res ], 
1283     [ Stash => $c->stash ],
1284     [ Config => $c->config ];
1285 }
1286
1287 =head2 $c->engine_class
1288
1289 Returns or sets the engine class.
1290
1291 =head2 $c->execute( $class, $coderef )
1292
1293 Execute a coderef in given class and catch exceptions. Errors are available
1294 via $c->error.
1295
1296 =cut
1297
1298 sub execute {
1299     my ( $c, $class, $code ) = @_;
1300     $class = $c->component($class) || $class;
1301     $c->state(0);
1302
1303     if ( $c->depth >= $RECURSION ) {
1304         my $action = "$code";
1305         $action = "/$action" unless $action =~ /->/;
1306         my $error = qq/Deep recursion detected calling "$action"/;
1307         $c->log->error($error);
1308         $c->error($error);
1309         $c->state(0);
1310         return $c->state;
1311     }
1312
1313     my $stats_info = $c->_stats_start_execute( $code ) if $c->use_stats;
1314
1315     push( @{ $c->stack }, $code );
1316     
1317     eval { $c->state( &$code( $class, $c, @{ $c->req->args } ) || 0 ) };
1318
1319     $c->_stats_finish_execute( $stats_info ) if $c->use_stats and $stats_info;
1320     
1321     my $last = pop( @{ $c->stack } );
1322
1323     if ( my $error = $@ ) {
1324         if ( !ref($error) and $error eq $DETACH ) {
1325             die $DETACH if($c->depth > 1);
1326         }
1327         else {
1328             unless ( ref $error ) {
1329                 no warnings 'uninitialized';
1330                 chomp $error;
1331                 my $class = $last->class;
1332                 my $name  = $last->name;
1333                 $error = qq/Caught exception in $class->$name "$error"/;
1334             }
1335             $c->error($error);
1336             $c->state(0);
1337         }
1338     }
1339     return $c->state;
1340 }
1341
1342 sub _stats_start_execute {
1343     my ( $c, $code ) = @_;
1344
1345     return if ( ( $code->name =~ /^_.*/ )
1346         && ( !$c->config->{show_internal_actions} ) );
1347
1348     $c->counter->{"$code"}++;
1349
1350     my $action = "$code";
1351     $action = "/$action" unless $action =~ /->/;
1352
1353     # determine if the call was the result of a forward
1354     # this is done by walking up the call stack and looking for a calling
1355     # sub of Catalyst::forward before the eval
1356     my $callsub = q{};
1357     for my $index ( 2 .. 11 ) {
1358         last
1359         if ( ( caller($index) )[0] eq 'Catalyst'
1360             && ( caller($index) )[3] eq '(eval)' );
1361
1362         if ( ( caller($index) )[3] =~ /forward$/ ) {
1363             $callsub = ( caller($index) )[3];
1364             $action  = "-> $action";
1365             last;
1366         }
1367     }
1368
1369     my $uid = "$code" . $c->counter->{"$code"};
1370
1371     # is this a root-level call or a forwarded call?
1372     if ( $callsub =~ /forward$/ ) {
1373
1374         # forward, locate the caller
1375         if ( my $parent = $c->stack->[-1] ) {
1376             $c->stats->profile(
1377                 begin  => $action, 
1378                 parent => "$parent" . $c->counter->{"$parent"},
1379                 uid    => $uid,
1380             );
1381         }
1382         else {
1383
1384             # forward with no caller may come from a plugin
1385             $c->stats->profile(
1386                 begin => $action,
1387                 uid   => $uid,
1388             );
1389         }
1390     }
1391     else {
1392         
1393         # root-level call
1394         $c->stats->profile(
1395             begin => $action,
1396             uid   => $uid,
1397         );
1398     }
1399     return $action;
1400
1401 }
1402
1403 sub _stats_finish_execute {
1404     my ( $c, $info ) = @_;
1405     $c->stats->profile( end => $info );
1406 }
1407
1408 =head2 $c->_localize_fields( sub { }, \%keys );
1409
1410 =cut
1411
1412 sub _localize_fields {
1413     my ( $c, $localized, $code ) = ( @_ );
1414
1415     my $request = delete $localized->{request} || {};
1416     my $response = delete $localized->{response} || {};
1417     
1418     local @{ $c }{ keys %$localized } = values %$localized;
1419     local @{ $c->request }{ keys %$request } = values %$request;
1420     local @{ $c->response }{ keys %$response } = values %$response;
1421
1422     $code->();
1423 }
1424
1425 =head2 $c->finalize
1426
1427 Finalizes the request.
1428
1429 =cut
1430
1431 sub finalize {
1432     my $c = shift;
1433
1434     for my $error ( @{ $c->error } ) {
1435         $c->log->error($error);
1436     }
1437
1438     # Allow engine to handle finalize flow (for POE)
1439     if ( $c->engine->can('finalize') ) {
1440         $c->engine->finalize($c);
1441     }
1442     else {
1443
1444         $c->finalize_uploads;
1445
1446         # Error
1447         if ( $#{ $c->error } >= 0 ) {
1448             $c->finalize_error;
1449         }
1450
1451         $c->finalize_headers;
1452
1453         # HEAD request
1454         if ( $c->request->method eq 'HEAD' ) {
1455             $c->response->body('');
1456         }
1457
1458         $c->finalize_body;
1459     }
1460     
1461     if ($c->use_stats) {        
1462         my $elapsed = sprintf '%f', $c->stats->elapsed;
1463         my $av = $elapsed == 0 ? '??' : sprintf '%.3f', 1 / $elapsed;
1464         $c->log->info(
1465             "Request took ${elapsed}s ($av/s)\n" . $c->stats->report . "\n" );        
1466     }
1467
1468     return $c->response->status;
1469 }
1470
1471 =head2 $c->finalize_body
1472
1473 Finalizes body.
1474
1475 =cut
1476
1477 sub finalize_body { my $c = shift; $c->engine->finalize_body( $c, @_ ) }
1478
1479 =head2 $c->finalize_cookies
1480
1481 Finalizes cookies.
1482
1483 =cut
1484
1485 sub finalize_cookies { my $c = shift; $c->engine->finalize_cookies( $c, @_ ) }
1486
1487 =head2 $c->finalize_error
1488
1489 Finalizes error.
1490
1491 =cut
1492
1493 sub finalize_error { my $c = shift; $c->engine->finalize_error( $c, @_ ) }
1494
1495 =head2 $c->finalize_headers
1496
1497 Finalizes headers.
1498
1499 =cut
1500
1501 sub finalize_headers {
1502     my $c = shift;
1503
1504     # Check if we already finalized headers
1505     return if $c->response->{_finalized_headers};
1506
1507     # Handle redirects
1508     if ( my $location = $c->response->redirect ) {
1509         $c->log->debug(qq/Redirecting to "$location"/) if $c->debug;
1510         $c->response->header( Location => $location );
1511         
1512         if ( !$c->response->body ) {
1513             # Add a default body if none is already present
1514             $c->response->body(
1515                 qq{<html><body><p>This item has moved <a href="$location">here</a>.</p></body></html>}
1516             );
1517         }
1518     }
1519
1520     # Content-Length
1521     if ( $c->response->body && !$c->response->content_length ) {
1522
1523         # get the length from a filehandle
1524         if ( blessed( $c->response->body ) && $c->response->body->can('read') )
1525         {
1526             my $stat = stat $c->response->body;
1527             if ( $stat && $stat->size > 0 ) {
1528                 $c->response->content_length( $stat->size );
1529             }
1530             else {
1531                 $c->log->warn('Serving filehandle without a content-length');
1532             }
1533         }
1534         else {
1535             # everything should be bytes at this point, but just in case
1536             $c->response->content_length( bytes::length( $c->response->body ) );
1537         }
1538     }
1539
1540     # Errors
1541     if ( $c->response->status =~ /^(1\d\d|[23]04)$/ ) {
1542         $c->response->headers->remove_header("Content-Length");
1543         $c->response->body('');
1544     }
1545
1546     $c->finalize_cookies;
1547
1548     $c->engine->finalize_headers( $c, @_ );
1549
1550     # Done
1551     $c->response->{_finalized_headers} = 1;
1552 }
1553
1554 =head2 $c->finalize_output
1555
1556 An alias for finalize_body.
1557
1558 =head2 $c->finalize_read
1559
1560 Finalizes the input after reading is complete.
1561
1562 =cut
1563
1564 sub finalize_read { my $c = shift; $c->engine->finalize_read( $c, @_ ) }
1565
1566 =head2 $c->finalize_uploads
1567
1568 Finalizes uploads. Cleans up any temporary files.
1569
1570 =cut
1571
1572 sub finalize_uploads { my $c = shift; $c->engine->finalize_uploads( $c, @_ ) }
1573
1574 =head2 $c->get_action( $action, $namespace )
1575
1576 Gets an action in a given namespace.
1577
1578 =cut
1579
1580 sub get_action { my $c = shift; $c->dispatcher->get_action(@_) }
1581
1582 =head2 $c->get_actions( $action, $namespace )
1583
1584 Gets all actions of a given name in a namespace and all parent
1585 namespaces.
1586
1587 =cut
1588
1589 sub get_actions { my $c = shift; $c->dispatcher->get_actions( $c, @_ ) }
1590
1591 =head2 $c->handle_request( $class, @arguments )
1592
1593 Called to handle each HTTP request.
1594
1595 =cut
1596
1597 sub handle_request {
1598     my ( $class, @arguments ) = @_;
1599
1600     # Always expect worst case!
1601     my $status = -1;
1602     eval {
1603         if ($class->debug) {
1604             my $secs = time - $START || 1;
1605             my $av = sprintf '%.3f', $COUNT / $secs;
1606             my $time = localtime time;
1607             $class->log->info("*** Request $COUNT ($av/s) [$$] [$time] ***");
1608         }
1609
1610         my $c = $class->prepare(@arguments);
1611         $c->dispatch;
1612         $status = $c->finalize;   
1613     };
1614
1615     if ( my $error = $@ ) {
1616         chomp $error;
1617         $class->log->error(qq/Caught exception in engine "$error"/);
1618     }
1619
1620     $COUNT++;
1621     $class->log->_flush() if $class->log->can('_flush');
1622     return $status;
1623 }
1624
1625 =head2 $c->prepare( @arguments )
1626
1627 Creates a Catalyst context from an engine-specific request (Apache, CGI,
1628 etc.).
1629
1630 =cut
1631
1632 sub prepare {
1633     my ( $class, @arguments ) = @_;
1634
1635     $class->context_class( ref $class || $class ) unless $class->context_class;
1636     my $c = $class->context_class->new(
1637         {
1638             counter => {},
1639             stack   => [],
1640             request => $class->request_class->new(
1641                 {
1642                     arguments        => [],
1643                     body_parameters  => {},
1644                     cookies          => {},
1645                     headers          => HTTP::Headers->new,
1646                     parameters       => {},
1647                     query_parameters => {},
1648                     secure           => 0,
1649                     captures         => [],
1650                     uploads          => {}
1651                 }
1652             ),
1653             response => $class->response_class->new(
1654                 {
1655                     body    => '',
1656                     cookies => {},
1657                     headers => HTTP::Headers->new(),
1658                     status  => 200
1659                 }
1660             ),
1661             stash => {},
1662             state => 0
1663         }
1664     );
1665
1666     $c->stats($class->stats_class->new)->enable($c->use_stats);
1667     if ( $c->debug ) {
1668         $c->res->headers->header( 'X-Catalyst' => $Catalyst::VERSION );            
1669     }
1670
1671     # For on-demand data
1672     $c->request->{_context}  = $c;
1673     $c->response->{_context} = $c;
1674     weaken( $c->request->{_context} );
1675     weaken( $c->response->{_context} );
1676
1677     # Allow engine to direct the prepare flow (for POE)
1678     if ( $c->engine->can('prepare') ) {
1679         $c->engine->prepare( $c, @arguments );
1680     }
1681     else {
1682         $c->prepare_request(@arguments);
1683         $c->prepare_headers;
1684         $c->prepare_connection;
1685         $c->prepare_query_parameters;
1686         $c->prepare_cookies;
1687         $c->prepare_path;
1688
1689         # Prepare the body for reading, either by prepare_body
1690         # or the user, if they are using $c->read
1691         $c->prepare_read;
1692         
1693         # Parse the body unless the user wants it on-demand
1694         unless ( $c->config->{parse_on_demand} ) {
1695             $c->prepare_body;
1696         }
1697     }
1698
1699     my $method  = $c->req->method  || '';
1700     my $path    = $c->req->path;
1701     $path       = '/' unless length $path;
1702     my $address = $c->req->address || '';
1703
1704     $c->log->debug(qq/"$method" request for "$path" from "$address"/)
1705       if $c->debug;
1706
1707     $c->prepare_action;
1708
1709     return $c;
1710 }
1711
1712 =head2 $c->prepare_action
1713
1714 Prepares action. See L<Catalyst::Dispatcher>.
1715
1716 =cut
1717
1718 sub prepare_action { my $c = shift; $c->dispatcher->prepare_action( $c, @_ ) }
1719
1720 =head2 $c->prepare_body
1721
1722 Prepares message body.
1723
1724 =cut
1725
1726 sub prepare_body {
1727     my $c = shift;
1728
1729     # Do we run for the first time?
1730     return if defined $c->request->{_body};
1731
1732     # Initialize on-demand data
1733     $c->engine->prepare_body( $c, @_ );
1734     $c->prepare_parameters;
1735     $c->prepare_uploads;
1736
1737     if ( $c->debug && keys %{ $c->req->body_parameters } ) {
1738         my $t = Text::SimpleTable->new( [ 35, 'Parameter' ], [ 36, 'Value' ] );
1739         for my $key ( sort keys %{ $c->req->body_parameters } ) {
1740             my $param = $c->req->body_parameters->{$key};
1741             my $value = defined($param) ? $param : '';
1742             $t->row( $key,
1743                 ref $value eq 'ARRAY' ? ( join ', ', @$value ) : $value );
1744         }
1745         $c->log->debug( "Body Parameters are:\n" . $t->draw );
1746     }
1747 }
1748
1749 =head2 $c->prepare_body_chunk( $chunk )
1750
1751 Prepares a chunk of data before sending it to L<HTTP::Body>.
1752
1753 See L<Catalyst::Engine>.
1754
1755 =cut
1756
1757 sub prepare_body_chunk {
1758     my $c = shift;
1759     $c->engine->prepare_body_chunk( $c, @_ );
1760 }
1761
1762 =head2 $c->prepare_body_parameters
1763
1764 Prepares body parameters.
1765
1766 =cut
1767
1768 sub prepare_body_parameters {
1769     my $c = shift;
1770     $c->engine->prepare_body_parameters( $c, @_ );
1771 }
1772
1773 =head2 $c->prepare_connection
1774
1775 Prepares connection.
1776
1777 =cut
1778
1779 sub prepare_connection {
1780     my $c = shift;
1781     $c->engine->prepare_connection( $c, @_ );
1782 }
1783
1784 =head2 $c->prepare_cookies
1785
1786 Prepares cookies.
1787
1788 =cut
1789
1790 sub prepare_cookies { my $c = shift; $c->engine->prepare_cookies( $c, @_ ) }
1791
1792 =head2 $c->prepare_headers
1793
1794 Prepares headers.
1795
1796 =cut
1797
1798 sub prepare_headers { my $c = shift; $c->engine->prepare_headers( $c, @_ ) }
1799
1800 =head2 $c->prepare_parameters
1801
1802 Prepares parameters.
1803
1804 =cut
1805
1806 sub prepare_parameters {
1807     my $c = shift;
1808     $c->prepare_body_parameters;
1809     $c->engine->prepare_parameters( $c, @_ );
1810 }
1811
1812 =head2 $c->prepare_path
1813
1814 Prepares path and base.
1815
1816 =cut
1817
1818 sub prepare_path { my $c = shift; $c->engine->prepare_path( $c, @_ ) }
1819
1820 =head2 $c->adjust_request_for_proxy
1821
1822 Adjusts the request to account for a frontend proxy.
1823
1824 =cut
1825
1826 sub adjust_request_for_proxy { my $c = shift; $c->engine->adjust_request_for_proxy( $c, @_ ) }
1827
1828 =head2 $c->prepare_query_parameters
1829
1830 Prepares query parameters.
1831
1832 =cut
1833
1834 sub prepare_query_parameters {
1835     my $c = shift;
1836
1837     $c->engine->prepare_query_parameters( $c, @_ );
1838
1839     if ( $c->debug && keys %{ $c->request->query_parameters } ) {
1840         my $t = Text::SimpleTable->new( [ 35, 'Parameter' ], [ 36, 'Value' ] );
1841         for my $key ( sort keys %{ $c->req->query_parameters } ) {
1842             my $param = $c->req->query_parameters->{$key};
1843             my $value = defined($param) ? $param : '';
1844             $t->row( $key,
1845                 ref $value eq 'ARRAY' ? ( join ', ', @$value ) : $value );
1846         }
1847         $c->log->debug( "Query Parameters are:\n" . $t->draw );
1848     }
1849 }
1850
1851 =head2 $c->prepare_read
1852
1853 Prepares the input for reading.
1854
1855 =cut
1856
1857 sub prepare_read { my $c = shift; $c->engine->prepare_read( $c, @_ ) }
1858
1859 =head2 $c->prepare_request
1860
1861 Prepares the engine request.
1862
1863 =cut
1864
1865 sub prepare_request { my $c = shift; $c->engine->prepare_request( $c, @_ ) }
1866
1867 =head2 $c->prepare_uploads
1868
1869 Prepares uploads.
1870
1871 =cut
1872
1873 sub prepare_uploads {
1874     my $c = shift;
1875
1876     $c->engine->prepare_uploads( $c, @_ );
1877
1878     if ( $c->debug && keys %{ $c->request->uploads } ) {
1879         my $t = Text::SimpleTable->new(
1880             [ 12, 'Parameter' ],
1881             [ 26, 'Filename' ],
1882             [ 18, 'Type' ],
1883             [ 9,  'Size' ]
1884         );
1885         for my $key ( sort keys %{ $c->request->uploads } ) {
1886             my $upload = $c->request->uploads->{$key};
1887             for my $u ( ref $upload eq 'ARRAY' ? @{$upload} : ($upload) ) {
1888                 $t->row( $key, $u->filename, $u->type, $u->size );
1889             }
1890         }
1891         $c->log->debug( "File Uploads are:\n" . $t->draw );
1892     }
1893 }
1894
1895 =head2 $c->prepare_write
1896
1897 Prepares the output for writing.
1898
1899 =cut
1900
1901 sub prepare_write { my $c = shift; $c->engine->prepare_write( $c, @_ ) }
1902
1903 =head2 $c->request_class
1904
1905 Returns or sets the request class.
1906
1907 =head2 $c->response_class
1908
1909 Returns or sets the response class.
1910
1911 =head2 $c->read( [$maxlength] )
1912
1913 Reads a chunk of data from the request body. This method is designed to
1914 be used in a while loop, reading C<$maxlength> bytes on every call.
1915 C<$maxlength> defaults to the size of the request if not specified.
1916
1917 You have to set C<< MyApp->config->{parse_on_demand} >> to use this
1918 directly.
1919
1920 Warning: If you use read(), Catalyst will not process the body,
1921 so you will not be able to access POST parameters or file uploads via
1922 $c->request.  You must handle all body parsing yourself.
1923
1924 =cut
1925
1926 sub read { my $c = shift; return $c->engine->read( $c, @_ ) }
1927
1928 =head2 $c->run
1929
1930 Starts the engine.
1931
1932 =cut
1933
1934 sub run { my $c = shift; return $c->engine->run( $c, @_ ) }
1935
1936 =head2 $c->set_action( $action, $code, $namespace, $attrs )
1937
1938 Sets an action in a given namespace.
1939
1940 =cut
1941
1942 sub set_action { my $c = shift; $c->dispatcher->set_action( $c, @_ ) }
1943
1944 =head2 $c->setup_actions($component)
1945
1946 Sets up actions for a component.
1947
1948 =cut
1949
1950 sub setup_actions { my $c = shift; $c->dispatcher->setup_actions( $c, @_ ) }
1951
1952 =head2 $c->setup_components
1953
1954 Sets up components. Specify a C<setup_components> config option to pass
1955 additional options directly to L<Module::Pluggable>. To add additional
1956 search paths, specify a key named C<search_extra> as an array
1957 reference. Items in the array beginning with C<::> will have the
1958 application class name prepended to them.
1959
1960 All components found will also have any 
1961 L<Devel::InnerPackage|inner packages> loaded and set up as components.
1962 Note, that modules which are B<not> an I<inner package> of the main
1963 file namespace loaded will not be instantiated as components.
1964
1965 =cut
1966
1967 sub setup_components {
1968     my $class = shift;
1969
1970     my @paths   = qw( ::Controller ::C ::Model ::M ::View ::V );
1971     my $config  = $class->config->{ setup_components };
1972     my $extra   = delete $config->{ search_extra } || [];
1973     
1974     push @paths, @$extra;
1975         
1976     my $locator = Module::Pluggable::Object->new(
1977         search_path => [ map { s/^(?=::)/$class/; $_; } @paths ],
1978         %$config
1979     );
1980
1981     my @comps = sort { length $a <=> length $b } $locator->plugins;
1982     my %comps = map { $_ => 1 } @comps;
1983     
1984     for my $component ( @comps ) {
1985
1986         # We pass ignore_loaded here so that overlay files for (e.g.)
1987         # Model::DBI::Schema sub-classes are loaded - if it's in @comps
1988         # we know M::P::O found a file on disk so this is safe
1989
1990         Catalyst::Utils::ensure_class_loaded( $component, { ignore_loaded => 1 } );
1991
1992         my $module  = $class->setup_component( $component );
1993         my %modules = (
1994             $component => $module,
1995             map {
1996                 $_ => $class->setup_component( $_ )
1997             } grep { 
1998               not exists $comps{$_}
1999             } Devel::InnerPackage::list_packages( $component )
2000         );
2001         
2002         for my $key ( keys %modules ) {
2003             $class->components->{ $key } = $modules{ $key };
2004         }
2005     }
2006 }
2007
2008 =head2 $c->setup_component
2009
2010 =cut
2011
2012 sub setup_component {
2013     my( $class, $component ) = @_;
2014
2015     unless ( $component->can( 'COMPONENT' ) ) {
2016         return $component;
2017     }
2018
2019     my $suffix = Catalyst::Utils::class2classsuffix( $component );
2020     my $config = $class->config->{ $suffix } || {};
2021
2022     my $instance = eval { $component->COMPONENT( $class, $config ); };
2023
2024     if ( my $error = $@ ) {
2025         chomp $error;
2026         Catalyst::Exception->throw(
2027             message => qq/Couldn't instantiate component "$component", "$error"/
2028         );
2029     }
2030
2031     Catalyst::Exception->throw(
2032         message =>
2033         qq/Couldn't instantiate component "$component", "COMPONENT() didn't return an object-like value"/
2034     ) unless eval { $instance->can( 'can' ) };
2035
2036     return $instance;
2037 }
2038
2039 =head2 $c->setup_dispatcher
2040
2041 Sets up dispatcher.
2042
2043 =cut
2044
2045 sub setup_dispatcher {
2046     my ( $class, $dispatcher ) = @_;
2047
2048     if ($dispatcher) {
2049         $dispatcher = 'Catalyst::Dispatcher::' . $dispatcher;
2050     }
2051
2052     if ( my $env = Catalyst::Utils::env_value( $class, 'DISPATCHER' ) ) {
2053         $dispatcher = 'Catalyst::Dispatcher::' . $env;
2054     }
2055
2056     unless ($dispatcher) {
2057         $dispatcher = $class->dispatcher_class;
2058     }
2059
2060     unless (Class::Inspector->loaded($dispatcher)) {
2061         require Class::Inspector->filename($dispatcher);
2062     }
2063
2064     # dispatcher instance
2065     $class->dispatcher( $dispatcher->new );
2066 }
2067
2068 =head2 $c->setup_engine
2069
2070 Sets up engine.
2071
2072 =cut
2073
2074 sub setup_engine {
2075     my ( $class, $engine ) = @_;
2076
2077     if ($engine) {
2078         $engine = 'Catalyst::Engine::' . $engine;
2079     }
2080
2081     if ( my $env = Catalyst::Utils::env_value( $class, 'ENGINE' ) ) {
2082         $engine = 'Catalyst::Engine::' . $env;
2083     }
2084
2085     if ( $ENV{MOD_PERL} ) {
2086
2087         # create the apache method
2088         {
2089             no strict 'refs';
2090             *{"$class\::apache"} = sub { shift->engine->apache };
2091         }
2092
2093         my ( $software, $version ) =
2094           $ENV{MOD_PERL} =~ /^(\S+)\/(\d+(?:[\.\_]\d+)+)/;
2095
2096         $version =~ s/_//g;
2097         $version =~ s/(\.[^.]+)\./$1/g;
2098
2099         if ( $software eq 'mod_perl' ) {
2100
2101             if ( !$engine ) {
2102
2103                 if ( $version >= 1.99922 ) {
2104                     $engine = 'Catalyst::Engine::Apache2::MP20';
2105                 }
2106
2107                 elsif ( $version >= 1.9901 ) {
2108                     $engine = 'Catalyst::Engine::Apache2::MP19';
2109                 }
2110
2111                 elsif ( $version >= 1.24 ) {
2112                     $engine = 'Catalyst::Engine::Apache::MP13';
2113                 }
2114
2115                 else {
2116                     Catalyst::Exception->throw( message =>
2117                           qq/Unsupported mod_perl version: $ENV{MOD_PERL}/ );
2118                 }
2119
2120             }
2121
2122             # install the correct mod_perl handler
2123             if ( $version >= 1.9901 ) {
2124                 *handler = sub  : method {
2125                     shift->handle_request(@_);
2126                 };
2127             }
2128             else {
2129                 *handler = sub ($$) { shift->handle_request(@_) };
2130             }
2131
2132         }
2133
2134         elsif ( $software eq 'Zeus-Perl' ) {
2135             $engine = 'Catalyst::Engine::Zeus';
2136         }
2137
2138         else {
2139             Catalyst::Exception->throw(
2140                 message => qq/Unsupported mod_perl: $ENV{MOD_PERL}/ );
2141         }
2142     }
2143
2144     unless ($engine) {
2145         $engine = $class->engine_class;
2146     }
2147
2148     unless (Class::Inspector->loaded($engine)) {
2149         require Class::Inspector->filename($engine);
2150     }
2151
2152     # check for old engines that are no longer compatible
2153     my $old_engine;
2154     if ( $engine->isa('Catalyst::Engine::Apache')
2155         && !Catalyst::Engine::Apache->VERSION )
2156     {
2157         $old_engine = 1;
2158     }
2159
2160     elsif ( $engine->isa('Catalyst::Engine::Server::Base')
2161         && Catalyst::Engine::Server->VERSION le '0.02' )
2162     {
2163         $old_engine = 1;
2164     }
2165
2166     elsif ($engine->isa('Catalyst::Engine::HTTP::POE')
2167         && $engine->VERSION eq '0.01' )
2168     {
2169         $old_engine = 1;
2170     }
2171
2172     elsif ($engine->isa('Catalyst::Engine::Zeus')
2173         && $engine->VERSION eq '0.01' )
2174     {
2175         $old_engine = 1;
2176     }
2177
2178     if ($old_engine) {
2179         Catalyst::Exception->throw( message =>
2180               qq/Engine "$engine" is not supported by this version of Catalyst/
2181         );
2182     }
2183
2184     # engine instance
2185     $class->engine( $engine->new );
2186 }
2187
2188 =head2 $c->setup_home
2189
2190 Sets up the home directory.
2191
2192 =cut
2193
2194 sub setup_home {
2195     my ( $class, $home ) = @_;
2196
2197     if ( my $env = Catalyst::Utils::env_value( $class, 'HOME' ) ) {
2198         $home = $env;
2199     }
2200
2201     unless ($home) {
2202         $home = Catalyst::Utils::home($class);
2203     }
2204
2205     if ($home) {
2206         $class->config->{home} ||= $home;
2207         $class->config->{root} ||= Path::Class::Dir->new($home)->subdir('root');
2208     }
2209 }
2210
2211 =head2 $c->setup_log
2212
2213 Sets up log.
2214
2215 =cut
2216
2217 sub setup_log {
2218     my ( $class, $debug ) = @_;
2219
2220     unless ( $class->log ) {
2221         $class->log( Catalyst::Log->new );
2222     }
2223
2224     my $env_debug = Catalyst::Utils::env_value( $class, 'DEBUG' );
2225     if ( defined($env_debug) ? $env_debug : $debug ) {
2226         no strict 'refs';
2227         *{"$class\::debug"} = sub { 1 };
2228         $class->log->debug('Debug messages enabled');
2229     }
2230 }
2231
2232 =head2 $c->setup_plugins
2233
2234 Sets up plugins.
2235
2236 =cut
2237
2238 =head2 $c->setup_stats
2239
2240 Sets up timing statistics class.
2241
2242 =cut
2243
2244 sub setup_stats {
2245     my ( $class, $stats ) = @_;
2246
2247     Catalyst::Utils::ensure_class_loaded($class->stats_class);
2248
2249     my $env = Catalyst::Utils::env_value( $class, 'STATS' );
2250     if ( defined($env) ? $env : ($stats || $class->debug ) ) {
2251         no strict 'refs';
2252         *{"$class\::use_stats"} = sub { 1 };
2253         $class->log->debug('Statistics enabled');
2254     }
2255 }
2256
2257
2258 =head2 $c->registered_plugins 
2259
2260 Returns a sorted list of the plugins which have either been stated in the
2261 import list or which have been added via C<< MyApp->plugin(@args); >>.
2262
2263 If passed a given plugin name, it will report a boolean value indicating
2264 whether or not that plugin is loaded.  A fully qualified name is required if
2265 the plugin name does not begin with C<Catalyst::Plugin::>.
2266
2267  if ($c->registered_plugins('Some::Plugin')) {
2268      ...
2269  }
2270
2271 =cut
2272
2273 {
2274
2275     sub registered_plugins {
2276         my $proto = shift;
2277         return sort keys %{ $proto->_plugins } unless @_;
2278         my $plugin = shift;
2279         return 1 if exists $proto->_plugins->{$plugin};
2280         return exists $proto->_plugins->{"Catalyst::Plugin::$plugin"};
2281     }
2282
2283     sub _register_plugin {
2284         my ( $proto, $plugin, $instant ) = @_;
2285         my $class = ref $proto || $proto;
2286
2287         # no ignore_loaded here, the plugin may already have been
2288         # defined in memory and we don't want to error on "no file" if so
2289
2290         Catalyst::Utils::ensure_class_loaded( $plugin );
2291
2292         $proto->_plugins->{$plugin} = 1;
2293         unless ($instant) {
2294             no strict 'refs';
2295             unshift @{"$class\::ISA"}, $plugin;
2296         }
2297         return $class;
2298     }
2299
2300     sub setup_plugins {
2301         my ( $class, $plugins ) = @_;
2302
2303         $class->_plugins( {} ) unless $class->_plugins;
2304         $plugins ||= [];
2305         for my $plugin ( reverse @$plugins ) {
2306
2307             unless ( $plugin =~ s/\A\+// ) {
2308                 $plugin = "Catalyst::Plugin::$plugin";
2309             }
2310
2311             $class->_register_plugin($plugin);
2312         }
2313     }
2314 }
2315
2316 =head2 $c->stack
2317
2318 Returns an arrayref of the internal execution stack (actions that are
2319 currently executing).
2320
2321 =head2 $c->stats_class
2322
2323 Returns or sets the stats (timing statistics) class.
2324
2325 =head2 $c->use_stats
2326
2327 Returns 1 when stats collection is enabled.  Stats collection is enabled
2328 when the -Stats options is set, debug is on or when the <MYAPP>_STATS
2329 environment variable is set.
2330
2331 Note that this is a static method, not an accessor and should be overloaded
2332 by declaring "sub use_stats { 1 }" in your MyApp.pm, not by calling $c->use_stats(1).
2333
2334 =cut
2335
2336 sub use_stats { 0 }
2337
2338
2339 =head2 $c->write( $data )
2340
2341 Writes $data to the output stream. When using this method directly, you
2342 will need to manually set the C<Content-Length> header to the length of
2343 your output data, if known.
2344
2345 =cut
2346
2347 sub write {
2348     my $c = shift;
2349
2350     # Finalize headers if someone manually writes output
2351     $c->finalize_headers;
2352
2353     return $c->engine->write( $c, @_ );
2354 }
2355
2356 =head2 version
2357
2358 Returns the Catalyst version number. Mostly useful for "powered by"
2359 messages in template systems.
2360
2361 =cut
2362
2363 sub version { return $Catalyst::VERSION }
2364
2365 =head1 INTERNAL ACTIONS
2366
2367 Catalyst uses internal actions like C<_DISPATCH>, C<_BEGIN>, C<_AUTO>,
2368 C<_ACTION>, and C<_END>. These are by default not shown in the private
2369 action table, but you can make them visible with a config parameter.
2370
2371     MyApp->config->{show_internal_actions} = 1;
2372
2373 =head1 CASE SENSITIVITY
2374
2375 By default Catalyst is not case sensitive, so C<MyApp::C::FOO::Bar> is
2376 mapped to C</foo/bar>. You can activate case sensitivity with a config
2377 parameter.
2378
2379     MyApp->config->{case_sensitive} = 1;
2380
2381 This causes C<MyApp::C::Foo::Bar> to map to C</Foo/Bar>.
2382
2383 =head1 ON-DEMAND PARSER
2384
2385 The request body is usually parsed at the beginning of a request,
2386 but if you want to handle input yourself, you can enable on-demand
2387 parsing with a config parameter.
2388
2389     MyApp->config->{parse_on_demand} = 1;
2390     
2391 =head1 PROXY SUPPORT
2392
2393 Many production servers operate using the common double-server approach,
2394 with a lightweight frontend web server passing requests to a larger
2395 backend server. An application running on the backend server must deal
2396 with two problems: the remote user always appears to be C<127.0.0.1> and
2397 the server's hostname will appear to be C<localhost> regardless of the
2398 virtual host that the user connected through.
2399
2400 Catalyst will automatically detect this situation when you are running
2401 the frontend and backend servers on the same machine. The following
2402 changes are made to the request.
2403
2404 =over 4
2405
2406 =item * X-Forwarded-For
2407
2408 The IP address in C<< $c->req->address >> is set to the user's real IP
2409 address, as read from the X-Forwarded-For header.
2410
2411 =item * X-Forwarded-Host
2412
2413 The host value for C<< $c->req->base >> and C<< $c->req->uri >> is set
2414 to the real host, as read from the X-Forwarded-Host header. The value
2415 of C<< $c->req->hostname >> is also adjusted accordingly.
2416
2417 =item * X-Forwarded-Port
2418
2419 The port value for C<< $c->req->base >> and C<< $c->req->uri >> is set
2420 to the real port, as read from the X-Forwarded-Port header.
2421
2422 =item * X-Forwarded-Path
2423
2424 If this is set, the value of the X-Forwarded-Path header is
2425 I<prepended> to the path value of C<< $c->req->base >> and C<<
2426 $c->req->uri >>.
2427
2428 =item * X-Forwarded-Is-SSL
2429
2430 If this is set, the scheme value of C<< $c->req->base >> and C<<
2431 $c->req->uri >> is set to "https". Additional, C<< $c->req->protocol
2432 >> is also set to "https", and C<< $c->req->secure >> is set to a true
2433 value.
2434
2435 =back
2436
2437 Obviously, your web server must support these headers for this to work.
2438
2439 In a more complex server farm environment where you may have your
2440 frontend proxy server(s) on different machines, you will need to set a
2441 configuration option to tell Catalyst to read the proxied data from the
2442 headers.
2443
2444     MyApp->config->{using_frontend_proxy} = 1;
2445     
2446 If you do not wish to use the proxy support at all, you may set:
2447
2448     MyApp->config->{ignore_frontend_proxy} = 1;
2449
2450 =head1 THREAD SAFETY
2451
2452 Catalyst has been tested under Apache 2's threading C<mpm_worker>,
2453 C<mpm_winnt>, and the standalone forking HTTP server on Windows. We
2454 believe the Catalyst core to be thread-safe.
2455
2456 If you plan to operate in a threaded environment, remember that all other
2457 modules you are using must also be thread-safe. Some modules, most notably
2458 L<DBD::SQLite>, are not thread-safe.
2459
2460 =head1 SUPPORT
2461
2462 IRC:
2463
2464     Join #catalyst on irc.perl.org.
2465
2466 Mailing Lists:
2467
2468     http://lists.rawmode.org/mailman/listinfo/catalyst
2469     http://lists.rawmode.org/mailman/listinfo/catalyst-dev
2470
2471 Web:
2472
2473     http://catalyst.perl.org
2474
2475 Wiki:
2476
2477     http://dev.catalyst.perl.org
2478
2479 =head1 SEE ALSO
2480
2481 =head2 L<Task::Catalyst> - All you need to start with Catalyst
2482
2483 =head2 L<Catalyst::Manual> - The Catalyst Manual
2484
2485 =head2 L<Catalyst::Component>, L<Catalyst::Base> - Base classes for components
2486
2487 =head2 L<Catalyst::Engine> - Core engine
2488
2489 =head2 L<Catalyst::Log> - Log class.
2490
2491 =head2 L<Catalyst::Request> - Request object
2492
2493 =head2 L<Catalyst::Response> - Response object
2494
2495 =head2 L<Catalyst::Test> - The test suite.
2496
2497 =head1 PROJECT FOUNDER
2498
2499 sri: Sebastian Riedel <sri@cpan.org>
2500
2501 =head1 CONTRIBUTORS
2502
2503 abw: Andy Wardley
2504
2505 acme: Leon Brocard <leon@astray.com>
2506
2507 Andrew Bramble
2508
2509 Andrew Ford
2510
2511 Andrew Ruthven
2512
2513 andyg: Andy Grundman <andy@hybridized.org>
2514
2515 audreyt: Audrey Tang
2516
2517 bricas: Brian Cassidy <bricas@cpan.org>
2518
2519 chansen: Christian Hansen
2520
2521 chicks: Christopher Hicks
2522
2523 dkubb: Dan Kubb <dan.kubb-cpan@onautopilot.com>
2524
2525 Drew Taylor
2526
2527 esskar: Sascha Kiefer
2528
2529 fireartist: Carl Franks <cfranks@cpan.org>
2530
2531 gabb: Danijel Milicevic
2532
2533 Gary Ashton Jones
2534
2535 Geoff Richards
2536
2537 jcamacho: Juan Camacho
2538
2539 Jody Belka
2540
2541 Johan Lindstrom
2542
2543 jon: Jon Schutz <jjschutz@cpan.org>
2544
2545 marcus: Marcus Ramberg <mramberg@cpan.org>
2546
2547 miyagawa: Tatsuhiko Miyagawa <miyagawa@bulknews.net>
2548
2549 mst: Matt S. Trout <mst@shadowcatsystems.co.uk>
2550
2551 mugwump: Sam Vilain
2552
2553 naughton: David Naughton
2554
2555 ningu: David Kamholz <dkamholz@cpan.org>
2556
2557 nothingmuch: Yuval Kogman <nothingmuch@woobling.org>
2558
2559 numa: Dan Sully <daniel@cpan.org>
2560
2561 obra: Jesse Vincent
2562
2563 omega: Andreas Marienborg
2564
2565 phaylon: Robert Sedlacek <phaylon@dunkelheit.at>
2566
2567 sky: Arthur Bergman
2568
2569 the_jester: Jesse Sheidlower
2570
2571 Ulf Edvinsson
2572
2573 willert: Sebastian Willert <willert@cpan.org>
2574
2575 =head1 LICENSE
2576
2577 This library is free software, you can redistribute it and/or modify it under
2578 the same terms as Perl itself.
2579
2580 =cut
2581
2582 1;