X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst.pm;h=1a7e76c01d863cde64cdf7e6777cee9e59ffe8e8;hp=e093ddb0fa56448811ff02836f30b8dfb3ac5144;hb=56d8daebfb3b83c215625ae0fd3fddce455851c6;hpb=6aaa1c60d7f01f1d375f116198bfae33dd252e2e diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index e093ddb..1a7e76c 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -219,7 +219,7 @@ Specifies log level. =head1 METHODS -=head2 Information about the current request +=head2 INFORMATION ABOUT THE CURRENT REQUEST =head2 $c->action @@ -241,7 +241,7 @@ corresponding to the controller of the current action. For example: Returns the current L object. See L. -=head2 Processing and response to the current request +=head2 PROCESSING AND RESPONSE TO THE CURRENT REQUEST =head2 $c->forward( $action [, \@arguments ] ) @@ -258,7 +258,7 @@ call to forward. my $foodata = $c->forward('/foo'); $c->forward('index'); - $c->forward(qw/MyApp::Model::CDBI::Foo do_stuff/); + $c->forward(qw/MyApp::Model::DBIC::Foo do_stuff/); $c->forward('MyApp::View::TT'); =cut @@ -291,11 +291,6 @@ Add a new error. $c->error('Something bad happened'); -Clear errors. You probably don't want to clear the errors unless you are -implementing a custom error screen. - - $c->error(0); - =cut sub error { @@ -308,6 +303,22 @@ sub error { return $c->{error} || []; } +=head2 $c->clear_errors + +Clear errors. You probably don't want to clear the errors unless you are +implementing a custom error screen. + +This is equivalent to running + + $c->error(0); + +=cut + +sub clear_errors { + my $c = shift; + $c->error(0); +} + =head2 $c->response =head2 $c->res @@ -399,7 +410,18 @@ sub _comp_prefixes { return $comp; } -=head2 Component Accessors +# Return a component if only one matches. +sub _comp_singular { + my ($c, @prefixes) = @_; + + my $appclass = ref $c || $c; + + my ($comp,$rest) = map { $c->_comp_search("^${appclass}::${_}::") } + @prefixes; + return $comp unless $rest; +} + +=head2 COMPONENT ACCESSORS =head2 $c->comp($name) @@ -443,11 +465,15 @@ Gets a L instance by name. $c->controller('Foo')->do_stuff; +If name is omitted, will return the controller for the dispatched action. + =cut sub controller { my ( $c, $name ) = @_; - return $c->_comp_prefixes($name, qw/Controller C/); + return $c->_comp_prefixes($name, qw/Controller C/) + if ($name); + return $c->component($c->action->class); } =head2 $c->model($name) @@ -456,11 +482,19 @@ Gets a L instance by name. $c->model('Foo')->do_stuff; +If the name is omitted, it will look for a config setting 'default_model', +or check if there is only one model, and forward to it if that's the case. + =cut sub model { my ( $c, $name ) = @_; - return $c->_comp_prefixes($name, qw/Model M/); + return $c->_comp_prefixes($name, qw/Model M/) + if $name; + return $c->comp($c->config->{default_model}) + if $c->config->{default_model}; + return $c->_comp_singular(qw/Model M/); + } =head2 $c->view($name) @@ -469,11 +503,18 @@ Gets a L instance by name. $c->view('Foo')->do_stuff; +If the name is omitted, it will look for a config setting 'default_view', +or check if there is only one view, and forward to it if that's the case. + =cut sub view { my ( $c, $name ) = @_; - return $c->_comp_prefixes($name, qw/View V/); + return $c->_comp_prefixes($name, qw/View V/) + if $name; + return $c->comp($c->config->{default_view}) + if $c->config->{default_view}; + return $c->_comp_singular(qw/View V/); } =head2 Class data and helper classes @@ -538,7 +579,7 @@ L man page. =cut -=head2 Utility methods +=head2 UTILITY METHODS =head2 $c->path_to(@path) @@ -971,19 +1012,22 @@ sub execute { $class = $c->component($class) || $class; $c->state(0); + if ($c->depth >= $RECURSION) { + my $action = "$code"; + $action = "/$action" unless $action =~ /\-\>/; + my $error = qq/Deep recursion detected calling "$action"/; + $c->log->error($error); + $c->error($error); + $c->state(0); + return $c->state; + } + + if ( $c->debug ) { my $action = "$code"; $action = "/$action" unless $action =~ /\-\>/; $c->counter->{"$code"}++; - if ( $c->counter->{"$code"} > $RECURSION ) { - my $error = qq/Deep recursion detected in "$action"/; - $c->log->error($error); - $c->error($error); - $c->state(0); - return $c->state; - } - # determine if the call was the result of a forward # this is done by walking up the call stack and looking for a calling # sub of Catalyst::forward before the eval @@ -1229,7 +1273,7 @@ namespaces. sub get_actions { my $c = shift; $c->dispatcher->get_actions( $c, @_ ) } -=head2 handle_request( $class, @arguments ) +=head2 $c->handle_request( $class, @arguments ) Called to handle each HTTP request. @@ -1939,7 +1983,8 @@ the plugin name does not begin with C. =head2 $c->stack -Returns the stack. +Returns an arrayref of the internal execution stack (actions that are currently +executing). =head2 $c->write( $data )