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