X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=23e15a0128d7d85ae1d9ab2df8ed5ce520151e29;hb=b7aebc12ed41dfdc490edb1d94ae1b55dac0fc46;hp=18ddc4bcb8546a1c4c9444ff52896858a6f6b59f;hpb=5d68b17be4061c87f93f9c53226cb53d4597eff2;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index 18ddc4b..23e15a0 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -5,6 +5,7 @@ use base 'Class::Accessor::Fast'; use Catalyst::Exception; use Catalyst::Utils; use Catalyst::Action; +use Catalyst::ActionContainer; use Text::ASCIITable; use Tree::Simple; use Tree::Simple::Visitor::FindByPath; @@ -264,54 +265,42 @@ 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 = $child->getNodeValue->actions; + push(@results, [ $node->{$action} ]) if defined $node->{$action}; } return \@results; } @@ -371,19 +360,23 @@ sub set_action { my $parent = $self->tree; my $visitor = Tree::Simple::Visitor::FindByPath->new; - for my $part ( split '/', $prefix ) { - $visitor->setSearchPath($part); - $parent->accept($visitor); - my $child = $visitor->getResult; - - unless ($child) { - $child = $parent->addChild( Tree::Simple->new($part) ); + if ($prefix) { + for my $part ( split '/', $prefix ) { $visitor->setSearchPath($part); $parent->accept($visitor); - $child = $visitor->getResult; + my $child = $visitor->getResult; + + unless ($child) { + my $container = Catalyst::ActionContainer->new( + { part => $part, actions => {} }); + $child = $parent->addChild( Tree::Simple->new($container) ); + $visitor->setSearchPath($part); + $parent->accept($visitor); + $child = $visitor->getResult; + } + + $parent = $child; } - - $parent = $child; } my $reverse = $prefix ? "$prefix/$method" : $method; @@ -396,8 +389,7 @@ sub set_action { } ); - my $uid = $parent->getUID; - $self->actions->{private}->{$uid}->{$method} = $action; + $parent->getNodeValue->actions->{$method} = $action; my @path; for my $path ( @{ $flags{path} } ) { @@ -456,7 +448,9 @@ sub setup_actions { ); # We use a tree - $self->tree( Tree::Simple->new( 0, Tree::Simple->ROOT ) ); + my $container = Catalyst::ActionContainer->new( + { part => '/', actions => {} } ); + $self->tree( Tree::Simple->new( $container, Tree::Simple->ROOT ) ); for my $comp ( keys %{ $class->components } ) { @@ -510,10 +504,10 @@ sub setup_actions { my ( $walker, $parent, $prefix ) = @_; $prefix .= $parent->getNodeValue || ''; $prefix .= '/' unless $prefix =~ /\/$/; - my $uid = $parent->getUID; + my $node = $parent->getNodeValue->actions; - for my $action ( keys %{ $actions->{private}->{$uid} } ) { - my $action_obj = $actions->{private}->{$uid}->{$action}; + for my $action ( keys %{ $node } ) { + my $action_obj = $node->{$action}; $privates->addRow( "$prefix$action", $action_obj->namespace ); }