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