X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=a3efc6efbb840fa87e694a350c461e6d067e8deb;hb=c8d9780f82693f5cefced14ecaa5445c0e22b9ca;hp=b327adeffddc48605d80f2734c2dd803413cd706;hpb=805d0f30e1e7d43532004b3af625e8b8cc65f2b3;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index b327ade..a3efc6e 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -130,38 +130,33 @@ sub forward { my $caller = ( caller(1) )[0]->isa('Catalyst::Dispatcher') && ( ( caller(2) )[3] =~ /::detach$/ ) ? caller(3) : caller(1); - my $namespace = '/'; my $arguments = ( ref( $_[-1] ) eq 'ARRAY' ) ? pop(@_) : $c->req->args; my $results = []; - if ( $command =~ /^\// ) { - if ( $command =~ /^\/(\w+)$/ ) { - $results = $c->get_action( $1, $namespace ); - } - else { - my $command_copy = $command; - my @extra_args; - DESCEND: while ( $command_copy =~ s/^\/(.*)\/(\w+)$/\/$1/ ) { - my $tail = $2; - $results = $c->get_action( $tail, $1 ); - if ( @{$results} ) { - $command = $tail; - $namespace = $command_copy; - push( @{$arguments}, @extra_args ); - last DESCEND; - } - unshift( @extra_args, $tail ); - } - } - $command =~ s/^\///; + my $command_copy = $command; + + unless ( $command_copy =~ s/^\/// ) { + my $namespace = + Catalyst::Utils::class2prefix( $caller, $c->config->{case_sensitive} ) || ''; + $command_copy = "${namespace}/${command}"; } + unless ( $command_copy =~ /\// ) { + $results = $c->get_action( $command_copy, '/' ); + } else { - $namespace = - Catalyst::Utils::class2prefix( $caller, $c->config->{case_sensitive} ) - || '/'; - $results = $c->get_action( $command, $namespace ); + my @extra_args; + DESCEND: while ( $command_copy =~ s/^(.*)\/(\w+)$/$1/ ) { + my $tail = $2; + $results = $c->get_action( $tail, $1 ); + if ( @{$results} ) { + $command = $tail; + push( @{$arguments}, @extra_args ); + last DESCEND; + } + unshift( @extra_args, $tail ); + } } unless ( @{$results} ) { @@ -269,54 +264,43 @@ sub get_action { $inherit ||= 0; if ($namespace) { - $namespace = '' if $namespace eq '/'; + my $parent = $self->tree; - my @results; + my @match; + + if ($namespace ne '/') { - if ($inherit) { - my $result = - $self->actions->{private}->{ $parent->getUID }->{$action}; - push @results, [$result] if $result; my $visitor = Tree::Simple::Visitor::FindByPath->new; + my @path = split('/', $namespace); + $visitor->setSearchPath( @path ); + $parent->accept($visitor); - SEARCH: - for my $part ( split '/', $namespace ) { - $visitor->setSearchPath($part); - $parent->accept($visitor); - my $child = $visitor->getResult; - my $uid = $child->getUID if $child; - my $match = $self->actions->{private}->{$uid}->{$action} - if $uid; - push @results, [$match] if $match; - if ($child) { - $parent = $child; - } - else { - last SEARCH; + if ($inherit) { + + @match = $visitor->getResults; + @match = ($parent) unless @match; + + if (!defined $visitor->getResult) { + my $extra = $path[(scalar @match) - 1]; + last unless $extra; + $visitor->setSearchPath($extra); + $match[-1]->accept($visitor); + push(@match, $visitor->getResult) if defined $visitor->getResult; } + } else { + @match = ($visitor->getResult) if $visitor->getResult; } } - else { + @match = ($parent) unless @match; - if ($namespace) { - my $visitor = Tree::Simple::Visitor::FindByPath->new; - $visitor->setSearchPath( split '/', $namespace ); - $parent->accept($visitor); - my $child = $visitor->getResult; - my $uid = $child->getUID if $child; - my $match = $self->actions->{private}->{$uid}->{$action} - if $uid; - push @results, [$match] if $match; - } - - else { - my $result = - $self->actions->{private}->{ $parent->getUID }->{$action}; - push @results, [$result] if $result; - } + my @results; + foreach my $child (@match) { + my $node = $self->actions->{private}->{$child->getUID}; + next unless $node; + push(@results, [ $node->{$action} ]) if defined $node->{$action}; } return \@results; }