X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst.pm;h=b3cf87bd424b3388d725126bf79ba5411f950486;hp=ec1b2472b397183c120edf93525a5b805ced2193;hb=3d6d992a672c11c38a456aa3ef1d4f6862a0b445;hpb=6601f2ad5a8e7e9ab5633703a3e2b5307e402401 diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index ec1b247..b3cf87b 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -61,7 +61,7 @@ __PACKAGE__->response_class('Catalyst::Response'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.70_01'; +our $VERSION = '5.70_03'; sub import { my ( $class, @arguments ) = @_; @@ -1128,16 +1128,15 @@ sub execute { return $c->state; } - my $stats_info = $c->_stats_start_execute( $code ); + my $stats_info = $c->_stats_start_execute( $code ) if $c->debug; push( @{ $c->stack }, $code ); eval { $c->state( &$code( $class, $c, @{ $c->req->args } ) || 0 ) }; - $c->_stats_finish_execute( $stats_info ); + $c->_stats_finish_execute( $stats_info ) if $c->debug and $stats_info; - my $last = ${ $c->stack }[-1]; - pop( @{ $c->stack } ); + my $last = pop( @{ $c->stack } ); if ( my $error = $@ ) { if ( $error eq $DETACH ) { die $DETACH if $c->depth > 1 } @@ -1158,13 +1157,14 @@ sub execute { sub _stats_start_execute { my ( $c, $code ) = @_; - return unless $c->debug; + return if ( ( $code->name =~ /^_.*/ ) + && ( !$c->config->{show_internal_actions} ) ); - my $action = "$code"; - - $action = "/$action" unless $action =~ /\-\>/; $c->counter->{"$code"}++; + my $action = "$code"; + $action = "/$action" unless $action =~ /->/; + # 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 @@ -1190,73 +1190,42 @@ sub _stats_start_execute { ); $node->setUID( "$code" . $c->counter->{"$code"} ); - unless ( ( $code->name =~ /^_.*/ ) - && ( !$c->config->{show_internal_actions} ) ) - { - # is this a root-level call or a forwarded call? - if ( $callsub =~ /forward$/ ) { - - # forward, locate the caller - if ( my $parent = $c->stack->[-1] ) { - my $visitor = Tree::Simple::Visitor::FindByUID->new; - $visitor->searchForUID( - "$parent" . $c->counter->{"$parent"} ); - $c->stats->accept($visitor); - if ( my $result = $visitor->getResult ) { - $result->addChild($node); - } - } - else { - - # forward with no caller may come from a plugin - $c->stats->addChild($node); + # is this a root-level call or a forwarded call? + if ( $callsub =~ /forward$/ ) { + + # forward, locate the caller + if ( my $parent = $c->stack->[-1] ) { + my $visitor = Tree::Simple::Visitor::FindByUID->new; + $visitor->searchForUID( + "$parent" . $c->counter->{"$parent"} ); + $c->stats->accept($visitor); + if ( my $result = $visitor->getResult ) { + $result->addChild($node); } } else { - # root-level call + # forward with no caller may come from a plugin $c->stats->addChild($node); } } + else { - my $start = [gettimeofday]; - my $elapsed = tv_interval($start); + # root-level call + $c->stats->addChild($node); + } return { - code => $code, - elapsed => $elapsed, - start => $start, + start => [gettimeofday], node => $node, - } + }; } sub _stats_finish_execute { my ( $c, $info ) = @_; - - return unless $c->debug; - - my ( $code, $start, $elapsed ) = @{ $info }{qw/code start elapsed/}; - - unless ( ( $code->name =~ /^_.*/ ) - && ( !$c->config->{show_internal_actions} ) ) - { - - # FindByUID uses an internal die, so we save the existing error - my $error = $@; - - # locate the node in the tree and update the elapsed time - my $visitor = Tree::Simple::Visitor::FindByUID->new; - $visitor->searchForUID( "$code" . $c->counter->{"$code"} ); - $c->stats->accept($visitor); - if ( my $result = $visitor->getResult ) { - my $value = $result->getNodeValue; - $value->{elapsed} = sprintf( '%fs', $elapsed ); - $result->setNodeValue($value); - } - - # restore error - $@ = $error || undef; - } + my $elapsed = tv_interval $info->{start}; + my $value = $info->{node}->getNodeValue; + $value->{elapsed} = sprintf( '%fs', $elapsed ); } =head2 $c->_localize_fields( sub { }, \%keys ); @@ -1438,25 +1407,20 @@ sub handle_request { # Always expect worst case! my $status = -1; eval { - my $stats = ( $class->debug ) ? Tree::Simple->new: q{}; - - my $handler = sub { + if ($class->debug) { + my $start = [gettimeofday]; my $c = $class->prepare(@arguments); - $c->stats($stats); + $c->stats(Tree::Simple->new); $c->dispatch; - return $c->finalize; - }; + $status = $c->finalize; - if ( $class->debug ) { - my $start = [gettimeofday]; - $status = &$handler; my $elapsed = tv_interval $start; $elapsed = sprintf '%f', $elapsed; my $av = sprintf '%.3f', ( $elapsed == 0 ? '??' : ( 1 / $elapsed ) ); my $t = Text::SimpleTable->new( [ 62, 'Action' ], [ 9, 'Time' ] ); - $stats->traverse( + $c->stats->traverse( sub { my $action = shift; my $stat = $action->getNodeValue; @@ -1468,8 +1432,11 @@ sub handle_request { $class->log->info( "Request took ${elapsed}s ($av/s)\n" . $t->draw ); } - else { $status = &$handler } - + else { + my $c = $class->prepare(@arguments); + $c->dispatch; + $status = $c->finalize; + } }; if ( my $error = $@ ) {