X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=99bbba7790920c3c4ad960e0e6c339589b0ee7db;hb=9edb1eb325435873ed55f643d671cb050bd8b659;hp=3c6404ac6ada133f95dd0a055f9fc6198e459902;hpb=71c3bcc37c15d47d5070525780876daf38309d9a;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index 3c6404a..99bbba7 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -33,6 +33,7 @@ Like C but doesn't return. sub detach { my ( $c, $command, @args ) = @_; $c->forward( $command, @args ) if $command; + # die with DETACH signal, which will be caught in dispatching. die $Catalyst::Engine::DETACH; } @@ -92,9 +93,7 @@ sub dispatch { $c->execute( @{ $end->[0] } ); return if scalar @{ $c->error }; } - } - - else { + } else { my $path = $c->req->path; my $error = $path ? qq/Unknown resource "$path"/ @@ -152,7 +151,7 @@ sub forward { unless ( @{$results} ) { - unless ( $c->components->{$command} ) { + unless ( defined( $c->components->{$command} ) ) { my $error = qq/Couldn't forward to command "$command". Invalid action or component./; $c->error($error); @@ -166,9 +165,7 @@ qq/Couldn't forward to command "$command". Invalid action or component./; if ( my $code = $c->components->{$class}->can($method) ) { $c->actions->{reverse}->{"$code"} = "$class->$method"; $results = [ [ [ $class, $code ] ] ]; - } - - else { + } else { my $error = qq/Couldn't forward to "$class". Does not implement "$method"/; $c->error($error); @@ -212,6 +209,7 @@ sub get_action { push @results, [$result] if $result; my $visitor = Tree::Simple::Visitor::FindByPath->new; + SEARCH: for my $part ( split '/', $namespace ) { $visitor->setSearchPath($part); $parent->accept($visitor); @@ -219,7 +217,12 @@ sub get_action { my $uid = $child->getUID if $child; my $match = $c->actions->{private}->{$uid}->{$action} if $uid; push @results, [$match] if $match; - $parent = $child if $child; + if ($child) { + $parent = $child; + } + else { + last SEARCH; + } } } @@ -425,6 +428,7 @@ sub setup_actions { my $actions = $self->actions; my $privates = Text::ASCIITable->new; + undef $privates->{tiedarr}; # work-around for a memory leak $privates->setCols( 'Private', 'Class' ); $privates->setColWidth( 'Private', 36, 1 ); $privates->setColWidth( 'Class', 37, 1 ); @@ -448,6 +452,7 @@ sub setup_actions { if ( @{ $privates->{tbl_rows} } ); my $publics = Text::ASCIITable->new; + undef $publics->{tiedarr}; # work-around for a memory leak $publics->setCols( 'Public', 'Private' ); $publics->setColWidth( 'Public', 36, 1 ); $publics->setColWidth( 'Private', 37, 1 ); @@ -463,6 +468,7 @@ sub setup_actions { if ( @{ $publics->{tbl_rows} } ); my $regexes = Text::ASCIITable->new; + undef $regexes->{tiedarr}; # work-around for a memory leak $regexes->setCols( 'Regex', 'Private' ); $regexes->setColWidth( 'Regex', 36, 1 ); $regexes->setColWidth( 'Private', 37, 1 );