multimethod dispatch
Matt S Trout [Sat, 3 Jun 2006 12:41:03 +0000 (12:41 +0000)]
Changes
lib/Catalyst/DispatchType/Path.pm
t/live_priorities.t

diff --git a/Changes b/Changes
index 191c627..d7c06b5 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,6 @@
 This file documents the revision history for Perl extension Catalyst.
 
+        - checked and tested :Args multimethod dispatch
         - added ability to set action attributes from controller config
         - added merge_config_hashes() as a convenience method
         - Swapped out CGI::Cookie in favour of CGI::Simple::Cookie
index 7f32b61..ac28382 100644 (file)
@@ -26,10 +26,11 @@ Debug output for Path dispatch points
 sub list {
     my ( $self, $c ) = @_;
     my $paths = Text::SimpleTable->new( [ 35, 'Path' ], [ 36, 'Private' ] );
-    for my $path ( sort keys %{ $self->{paths} } ) {
-        my $action = $self->{paths}->{$path};
-        $path = "/$path" unless $path eq '/';
-        $paths->row( "$path", "/$action" );
+    foreach my $path ( sort keys %{ $self->{paths} } ) {
+        foreach my $action ( @{ $self->{paths}->{$path} } ) {
+            $path = "/$path" unless $path eq '/';
+            $paths->row( "$path", "/$action" );
+        }
     }
     $c->log->debug( "Loaded Path actions:\n" . $paths->draw )
       if ( keys %{ $self->{paths} } );
@@ -45,8 +46,9 @@ sub match {
     my ( $self, $c, $path ) = @_;
 
     $path ||= '/';
-    if ( my $action = $self->{paths}->{$path} ) {
-        return 0 unless $action->match($c);
+
+    foreach my $action ( @{ $self->{paths}->{$path} || [] } ) {
+        next unless $action->match($c);
         $c->req->action($path);
         $c->req->match($path);
         $c->action($action);
@@ -86,7 +88,9 @@ sub register_path {
     $path = '/' unless length $path;
     $path = URI->new($path)->canonical;
 
-    $self->{paths}{$path} = $action;
+    unshift( @{ $self->{paths}{$path} ||= [] }, $action);
+
+    return 1;
 }
 
 =head1 AUTHOR
index 624aea2..785ae5d 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 use FindBin;
 use lib "$FindBin::Bin/lib";
 
-use Test::More tests => 22;
+use Test::More tests => 28;
 use Catalyst::Test 'TestApp';
 use Data::Dumper;
 
@@ -29,6 +29,11 @@ my @tests = (
     'index vs. Local',      { path => '/loc_vs_index',   expect => 'index' },
     'index vs. LocalRegex', { path => '/locre_vs_index', expect => 'index' },
     'index vs. Path',       { path => '/path_vs_index',  expect => 'index' },
+
+    'multimethod zero',     { path => '/multimethod',    expect => 'zero' },
+    'multimethod one',      { path => '/multimethod/1',  expect => 'one 1' },
+    'multimethod two',      { path => '/multimethod/1/2',
+                                                         expect => 'two 1 2' },
 );
 
 while ( @tests ) {