X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FActionChain.pm;h=4f72839798fe637fb2244827759b3eef0ffea443;hp=5e222c23db665c4db4d27a0f0f3bb0f4dfe5b4a2;hb=b007fcc611c8584b634e27a60ebfe5b6f518601a;hpb=566678d0245e49d7f2f1abce553b5bdb87879086 diff --git a/lib/Catalyst/ActionChain.pm b/lib/Catalyst/ActionChain.pm index 5e222c2..4f72839 100644 --- a/lib/Catalyst/ActionChain.pm +++ b/lib/Catalyst/ActionChain.pm @@ -61,6 +61,28 @@ sub number_of_captures { return $captures; } +sub match_captures { + my ($self, $c, $captures) = @_; + my @captures = @{$captures||[]}; + + foreach my $link(@{$self->chain}) { + my @local_captures = splice @captures,0,$link->number_of_captures; + return unless $link->match_captures($c, \@local_captures); + } + return 1; +} +sub match_captures_constraints { + my ($self, $c, $captures) = @_; + my @captures = @{$captures||[]}; + + foreach my $link(@{$self->chain}) { + my @local_captures = splice @captures,0,$link->number_of_captures; + next unless $link->has_captures_constraints; + return unless $link->match_captures_constraints($c, \@local_captures); + } + return 1; +} + # the scheme defined at the end of the chain is the one we use # but warn if too many. @@ -103,6 +125,10 @@ Catalyst::ActionChain object representing a chain of these actions Returns the total number of captures for the entire chain of actions. +=head2 match_captures + +Match all the captures that this chain encloses, if any. + =head2 scheme Any defined scheme for the actionchain