- First part of dispatcher refactor
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Dispatcher.pm
index eb4662c..504e905 100644 (file)
@@ -130,37 +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;
-                if ( $results = $c->get_action( $tail, $1 ) ) {
-                    $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} ) {
@@ -273,28 +269,52 @@ sub get_action {
         my @results;
 
         if ($inherit) {
-            my $result =
-              $self->actions->{private}->{ $parent->getUID }->{$action};
-            push @results, [$result] if $result;
+            #my $result =
+            #  $self->actions->{private}->{ $parent->getUID }->{$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);
-                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;
-                }
+            #warn "${namespace} ${action}";
+            my @path = split(/\//, $namespace);
+            $visitor->setSearchPath( @path );
+            $parent->accept($visitor);
+
+            #warn join(', ', map { $_->getNodeValue } $visitor->getResults);
+
+            my @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};
             }
 
+          #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 {
@@ -354,10 +374,12 @@ sub set_action {
     for my $attr ( @{$attrs} ) {
         if    ( $attr =~ /^(Local|Relative)$/ )    { $flags{local}++ }
         elsif ( $attr =~ /^(Global|Absolute)$/ )   { $flags{global}++ }
-        elsif ( $attr =~ /^Path\(\s*(.+)\s*\)$/i ) { $flags{path} = $1 }
-        elsif ( $attr =~ /^Private$/i )            { $flags{private}++ }
+        elsif ( $attr =~ /^Path\(\s*(.+)\s*\)$/i ) {
+            push @{ $flags{path} }, $1;
+        }
+        elsif ( $attr =~ /^Private$/i ) { $flags{private}++ }
         elsif ( $attr =~ /^(Regex|Regexp)\(\s*(.+)\s*\)$/i ) {
-            $flags{regex} = $2;
+            push @{ $flags{regex} }, $2;
         }
     }
 
@@ -388,8 +410,6 @@ sub set_action {
         $parent = $child;
     }
 
-    my $forward = $prefix ? "$prefix/$method" : $method;
-
     my $reverse = $prefix ? "$prefix/$method" : $method;
 
     my $action = Catalyst::Action->new(
@@ -403,35 +423,40 @@ sub set_action {
     my $uid = $parent->getUID;
     $self->actions->{private}->{$uid}->{$method} = $action;
 
-    if ( $flags{path} ) {
-        $flags{path} =~ s/^\w+//;
-        $flags{path} =~ s/\w+$//;
-        if ( $flags{path} =~ /^\s*'(.*)'\s*$/ ) { $flags{path} = $1 }
-        if ( $flags{path} =~ /^\s*"(.*)"\s*$/ ) { $flags{path} = $1 }
+    my @path;
+    for my $path ( @{ $flags{path} } ) {
+        $path =~ s/^\w+//;
+        $path =~ s/\w+$//;
+        if ( $path =~ /^\s*'(.*)'\s*$/ ) { $path = $1 }
+        if ( $path =~ /^\s*"(.*)"\s*$/ ) { $path = $1 }
+        push @path, $path;
     }
-
-    if ( $flags{regex} ) {
-        $flags{regex} =~ s/^\w+//;
-        $flags{regex} =~ s/\w+$//;
-        if ( $flags{regex} =~ /^\s*'(.*)'\s*$/ ) { $flags{regex} = $1 }
-        if ( $flags{regex} =~ /^\s*"(.*)"\s*$/ ) { $flags{regex} = $1 }
+    $flags{path} = \@path;
+
+    my @regex;
+    for my $regex ( @{ $flags{regex} } ) {
+        $regex =~ s/^\w+//;
+        $regex =~ s/\w+$//;
+        if ( $regex =~ /^\s*'(.*)'\s*$/ ) { $regex = $1 }
+        if ( $regex =~ /^\s*"(.*)"\s*$/ ) { $regex = $1 }
+        push @regex, $regex;
     }
+    $flags{regex} = \@regex;
 
-    if ( $flags{local} || $flags{global} || $flags{path} ) {
-        my $path     = $flags{path} || $method;
-        my $absolute = 0;
+    if ( $flags{local} || $flags{global} ) {
+        push( @{ $flags{path} }, $prefix ? "/$prefix/$method" : "/$method" )
+          if $flags{local};
 
-        if ( $path =~ /^\/(.+)/ ) {
-            $path     = $1;
-            $absolute = 1;
-        }
+        push( @{ $flags{path} }, "/$method" ) if $flags{global};
+    }
 
-        $absolute = 1 if $flags{global};
-        my $name = $absolute ? $path : $prefix ? "$prefix/$path" : $path;
-        $self->actions->{plain}->{$name} = $action;
+    for my $path ( @{ $flags{path} } ) {
+        if ( $path =~ /^\// ) { $path =~ s/^\/// }
+        else { $path = $prefix ? "$prefix/$path" : $path }
+        $self->actions->{plain}->{$path} = $action;
     }
 
-    if ( my $regex = $flags{regex} ) {
+    for my $regex ( @{ $flags{regex} } ) {
         push @{ $self->actions->{compiled} }, [ $regex, qr#$regex# ];
         $self->actions->{regex}->{$regex} = $action;
     }