From: Matt S Trout Date: Fri, 21 Oct 2005 23:32:52 +0000 (+0000) Subject: - Dispatcher refactor, part deux X-Git-Tag: 5.7099_04~1151 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=c8d9780f82693f5cefced14ecaa5445c0e22b9ca - Dispatcher refactor, part deux --- diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index 504e905..a3efc6e 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -264,78 +264,43 @@ sub get_action { $inherit ||= 0; if ($namespace) { - $namespace = '' if $namespace eq '/'; + my $parent = $self->tree; - my @results; + my @match; - if ($inherit) { - #my $result = - # $self->actions->{private}->{ $parent->getUID }->{$action}; - #push @results, [$result] if $result; - my $visitor = Tree::Simple::Visitor::FindByPath->new; + if ($namespace ne '/') { - #warn "${namespace} ${action}"; - my @path = split(/\//, $namespace); + my $visitor = Tree::Simple::Visitor::FindByPath->new; + my @path = split('/', $namespace); $visitor->setSearchPath( @path ); $parent->accept($visitor); - #warn join(', ', map { $_->getNodeValue } $visitor->getResults); + if ($inherit) { - my @match = $visitor->getResults; - @match = ($parent) unless @match; + @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; - } - - foreach my $child (@match) { - my $node = $self->actions->{private}->{$child->getUID}; - next unless $node; - push(@results, [ $node->{$action} ]) if defined $node->{$action}; + 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; } - #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; - # } - # } - } - else { - - 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; - } + @match = ($parent) unless @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; }