- First part of dispatcher refactor
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Dispatcher.pm
CommitLineData
68a748b9 1package Catalyst::Dispatcher;
1abd6db7 2
3use strict;
fbcc39ad 4use base 'Class::Accessor::Fast';
a2f2cde9 5use Catalyst::Exception;
f05af9ba 6use Catalyst::Utils;
fbcc39ad 7use Catalyst::Action;
1abd6db7 8use Text::ASCIITable;
1abd6db7 9use Tree::Simple;
10use Tree::Simple::Visitor::FindByPath;
11
fbcc39ad 12# Stringify to class
13use overload '""' => sub { return ref shift }, fallback => 1;
14
15__PACKAGE__->mk_accessors(qw/actions tree/);
1abd6db7 16
1abd6db7 17=head1 NAME
18
9c053379 19Catalyst::Dispatcher - The Catalyst Dispatcher
1abd6db7 20
21=head1 SYNOPSIS
22
23See L<Catalyst>.
24
25=head1 DESCRIPTION
26
27=head1 METHODS
28
29=over 4
30
fbcc39ad 31=item $self->detach( $c, $command [, \@arguments ] )
6ef62eb2 32
33=cut
34
35sub detach {
fbcc39ad 36 my ( $self, $c, $command, @args ) = @_;
bd7d2e94 37 $c->forward( $command, @args ) if $command;
fbcc39ad 38 die $Catalyst::DETACH;
6ef62eb2 39}
40
fbcc39ad 41=item $self->dispatch($c)
1abd6db7 42
43=cut
44
45sub dispatch {
fbcc39ad 46 my ( $self, $c ) = @_;
1abd6db7 47 my $action = $c->req->action;
48 my $namespace = '';
49 $namespace = ( join( '/', @{ $c->req->args } ) || '/' )
50 if $action eq 'default';
99fe1710 51
1abd6db7 52 unless ($namespace) {
53 if ( my $result = $c->get_action($action) ) {
fbcc39ad 54 $namespace =
55 Catalyst::Utils::class2prefix( $result->[0]->[0]->namespace,
e494bd6b 56 $c->config->{case_sensitive} );
1abd6db7 57 }
58 }
99fe1710 59
1abd6db7 60 my $default = $action eq 'default' ? $namespace : undef;
2d16b61a 61 my $results = $c->get_action( $action, $default, $default ? 1 : 0 );
1abd6db7 62 $namespace ||= '/';
99fe1710 63
1abd6db7 64 if ( @{$results} ) {
65
fbcc39ad 66 # Errors break the normal flow and the end action is instantly run
67 my $error = 0;
68
1abd6db7 69 # Execute last begin
70 $c->state(1);
2d16b61a 71 if ( my $begin = @{ $c->get_action( 'begin', $namespace, 1 ) }[-1] ) {
fbcc39ad 72 $begin->[0]->execute($c);
73 $error++ if scalar @{ $c->error };
1abd6db7 74 }
75
76 # Execute the auto chain
1196a46d 77 my $autorun = 0;
9ddd9d05 78 for my $auto ( @{ $c->get_action( 'auto', $namespace, 1 ) } ) {
fbcc39ad 79 last if $error;
9ddd9d05 80 $autorun++;
fbcc39ad 81 $auto->[0]->execute($c);
82 $error++ if scalar @{ $c->error };
1abd6db7 83 last unless $c->state;
84 }
85
86 # Execute the action or last default
e5f21aa2 87 my $mkay = $autorun ? $c->state ? 1 : 0 : 1;
61cfdd57 88 if ( ( my $action = $c->req->action ) && $mkay ) {
fbcc39ad 89 unless ($error) {
90 if ( my $result =
91 @{ $c->get_action( $action, $default, 1 ) }[-1] )
92 {
93 $result->[0]->execute($c);
94 $error++ if scalar @{ $c->error };
95 }
1abd6db7 96 }
97 }
98
99 # Execute last end
2d16b61a 100 if ( my $end = @{ $c->get_action( 'end', $namespace, 1 ) }[-1] ) {
fbcc39ad 101 $end->[0]->execute($c);
1abd6db7 102 }
fbcc39ad 103 }
104
105 else {
1abd6db7 106 my $path = $c->req->path;
107 my $error = $path
108 ? qq/Unknown resource "$path"/
109 : "No default action defined";
110 $c->log->error($error) if $c->debug;
111 $c->error($error);
112 }
113}
114
fbcc39ad 115=item $self->forward( $c, $command [, \@arguments ] )
1abd6db7 116
117=cut
118
119sub forward {
fbcc39ad 120 my $self = shift;
1abd6db7 121 my $c = shift;
122 my $command = shift;
99fe1710 123
1abd6db7 124 unless ($command) {
125 $c->log->debug('Nothing to forward to') if $c->debug;
126 return 0;
127 }
99fe1710 128
71c3bcc3 129 # Relative forwards from detach
fbcc39ad 130 my $caller = ( caller(1) )[0]->isa('Catalyst::Dispatcher')
131 && ( ( caller(2) )[3] =~ /::detach$/ ) ? caller(3) : caller(1);
71c3bcc3 132
e0fc6749 133 my $arguments = ( ref( $_[-1] ) eq 'ARRAY' ) ? pop(@_) : $c->req->args;
99fe1710 134
fbcc39ad 135 my $results = [];
136
8199eac3 137 my $command_copy = $command;
138
139 unless ( $command_copy =~ s/^\/// ) {
5d68b17b 140 my $namespace =
141 Catalyst::Utils::class2prefix( $caller, $c->config->{case_sensitive} ) || '';
142 $command_copy = "${namespace}/${command}";
1abd6db7 143 }
99fe1710 144
8199eac3 145 unless ( $command_copy =~ /\// ) {
146 $results = $c->get_action( $command_copy, '/' );
147 }
e494bd6b 148 else {
8199eac3 149 my @extra_args;
150 DESCEND: while ( $command_copy =~ s/^(.*)\/(\w+)$/$1/ ) {
151 my $tail = $2;
152 $results = $c->get_action( $tail, $1 );
153 if ( @{$results} ) {
154 $command = $tail;
155 push( @{$arguments}, @extra_args );
156 last DESCEND;
157 }
158 unshift( @extra_args, $tail );
159 }
e494bd6b 160 }
99fe1710 161
1abd6db7 162 unless ( @{$results} ) {
bd7d2e94 163
fbcc39ad 164 unless ( $c->components->{$command} ) {
bd7d2e94 165 my $error =
166qq/Couldn't forward to command "$command". Invalid action or component./;
3b2ed580 167 $c->error($error);
168 $c->log->debug($error) if $c->debug;
1abd6db7 169 return 0;
170 }
bd7d2e94 171
1f6bb799 172 my $class = $command;
1abd6db7 173 my $method = shift || 'process';
99fe1710 174
1f6bb799 175 if ( my $code = $c->components->{$class}->can($method) ) {
fbcc39ad 176 my $action = Catalyst::Action->new(
177 {
178 code => $code,
179 reverse => "$class->$method",
180 namespace => $class,
181 }
182 );
183 $results = [ [$action] ];
184 }
185
186 else {
bd7d2e94 187 my $error =
188 qq/Couldn't forward to "$class". Does not implement "$method"/;
3b2ed580 189 $c->error($error);
190 $c->log->debug($error)
1abd6db7 191 if $c->debug;
192 return 0;
193 }
99fe1710 194
1abd6db7 195 }
bd7d2e94 196
197 local $c->request->{arguments} = [ @{$arguments} ];
99fe1710 198
1abd6db7 199 for my $result ( @{$results} ) {
fbcc39ad 200 $result->[0]->execute($c);
e0fc6749 201 return if scalar @{ $c->error };
1abd6db7 202 last unless $c->state;
203 }
99fe1710 204
1abd6db7 205 return $c->state;
206}
207
fbcc39ad 208=item $self->prepare_action($c)
209
210=cut
211
212sub prepare_action {
213 my ( $self, $c ) = @_;
214 my $path = $c->req->path;
215 my @path = split /\//, $c->req->path;
216 $c->req->args( \my @args );
217
218 while (@path) {
219 $path = join '/', @path;
220 if ( my $result = ${ $c->get_action($path) }[0] ) {
221
222 # It's a regex
223 if ($#$result) {
224 my $match = $result->[1];
225 my @snippets = @{ $result->[2] };
226 $c->log->debug(
227 qq/Requested action is "$path" and matched "$match"/)
228 if $c->debug;
229 $c->log->debug(
230 'Snippets are "' . join( ' ', @snippets ) . '"' )
231 if ( $c->debug && @snippets );
232 $c->req->action($match);
233 $c->req->snippets( \@snippets );
234 }
235
236 else {
237 $c->req->action($path);
238 $c->log->debug(qq/Requested action is "$path"/) if $c->debug;
239 }
1abd6db7 240
fbcc39ad 241 $c->req->match($path);
242 last;
243 }
244 unshift @args, pop @path;
245 }
246
247 unless ( $c->req->action ) {
248 $c->req->action('default');
249 $c->req->match('');
250 }
251
252 $c->log->debug( 'Arguments are "' . join( '/', @args ) . '"' )
253 if ( $c->debug && @args );
254}
255
256=item $self->get_action( $c, $action, $namespace, $inherit )
1abd6db7 257
258=cut
259
260sub get_action {
fbcc39ad 261 my ( $self, $c, $action, $namespace, $inherit ) = @_;
1abd6db7 262 return [] unless $action;
263 $namespace ||= '';
2d16b61a 264 $inherit ||= 0;
99fe1710 265
1abd6db7 266 if ($namespace) {
267 $namespace = '' if $namespace eq '/';
fbcc39ad 268 my $parent = $self->tree;
1abd6db7 269 my @results;
99fe1710 270
2d16b61a 271 if ($inherit) {
d1b0d31d 272 #my $result =
273 # $self->actions->{private}->{ $parent->getUID }->{$action};
274 #push @results, [$result] if $result;
1abd6db7 275 my $visitor = Tree::Simple::Visitor::FindByPath->new;
99fe1710 276
d1b0d31d 277 #warn "${namespace} ${action}";
278 my @path = split(/\//, $namespace);
279 $visitor->setSearchPath( @path );
280 $parent->accept($visitor);
281
282 #warn join(', ', map { $_->getNodeValue } $visitor->getResults);
283
284 my @match = $visitor->getResults;
285 @match = ($parent) unless @match;
286
287 if (!defined $visitor->getResult) {
288 my $extra = $path[(scalar @match) - 1];
289 last unless $extra;
290 $visitor->setSearchPath($extra);
291 $match[-1]->accept($visitor);
292 push(@match, $visitor->getResult) if defined $visitor->getResult;
1abd6db7 293 }
99fe1710 294
d1b0d31d 295 foreach my $child (@match) {
296 my $node = $self->actions->{private}->{$child->getUID};
297 next unless $node;
298 push(@results, [ $node->{$action} ]) if defined $node->{$action};
299 }
300
301 #SEARCH:
302 # for my $part ( split '/', $namespace ) {
303 # $visitor->setSearchPath($part);
304 # $parent->accept($visitor);
305 # my $child = $visitor->getResult;
306 # my $uid = $child->getUID if $child;
307 # my $match = $self->actions->{private}->{$uid}->{$action}
308 # if $uid;
309 # push @results, [$match] if $match;
310 # if ($child) {
311 # $parent = $child;
312 # }
313 # else {
314 # last SEARCH;
315 # }
316 # }
317
1abd6db7 318 }
99fe1710 319
1abd6db7 320 else {
99fe1710 321
1abd6db7 322 if ($namespace) {
323 my $visitor = Tree::Simple::Visitor::FindByPath->new;
324 $visitor->setSearchPath( split '/', $namespace );
325 $parent->accept($visitor);
326 my $child = $visitor->getResult;
327 my $uid = $child->getUID if $child;
fbcc39ad 328 my $match = $self->actions->{private}->{$uid}->{$action}
1abd6db7 329 if $uid;
330 push @results, [$match] if $match;
331 }
99fe1710 332
1abd6db7 333 else {
334 my $result =
fbcc39ad 335 $self->actions->{private}->{ $parent->getUID }->{$action};
1abd6db7 336 push @results, [$result] if $result;
337 }
99fe1710 338
1abd6db7 339 }
340 return \@results;
341 }
99fe1710 342
fbcc39ad 343 elsif ( my $p = $self->actions->{plain}->{$action} ) { return [ [$p] ] }
344 elsif ( my $r = $self->actions->{regex}->{$action} ) { return [ [$r] ] }
99fe1710 345
1abd6db7 346 else {
99fe1710 347
fbcc39ad 348 for my $i ( 0 .. $#{ $self->actions->{compiled} } ) {
349 my $name = $self->actions->{compiled}->[$i]->[0];
350 my $regex = $self->actions->{compiled}->[$i]->[1];
99fe1710 351
2d752b2a 352 if ( my @snippets = ( $action =~ $regex ) ) {
fbcc39ad 353 return [
354 [ $self->actions->{regex}->{$name}, $name, \@snippets ] ];
1abd6db7 355 }
99fe1710 356
1abd6db7 357 }
358 }
359 return [];
360}
361
fbcc39ad 362=item $self->set_action( $c, $action, $code, $namespace, $attrs )
1abd6db7 363
364=cut
365
366sub set_action {
fbcc39ad 367 my ( $self, $c, $method, $code, $namespace, $attrs ) = @_;
1abd6db7 368
e494bd6b 369 my $prefix =
370 Catalyst::Utils::class2prefix( $namespace, $c->config->{case_sensitive} )
371 || '';
1abd6db7 372 my %flags;
373
374 for my $attr ( @{$attrs} ) {
0299ba22 375 if ( $attr =~ /^(Local|Relative)$/ ) { $flags{local}++ }
376 elsif ( $attr =~ /^(Global|Absolute)$/ ) { $flags{global}++ }
749472d6 377 elsif ( $attr =~ /^Path\(\s*(.+)\s*\)$/i ) {
378 push @{ $flags{path} }, $1;
379 }
380 elsif ( $attr =~ /^Private$/i ) { $flags{private}++ }
0299ba22 381 elsif ( $attr =~ /^(Regex|Regexp)\(\s*(.+)\s*\)$/i ) {
749472d6 382 push @{ $flags{regex} }, $2;
0299ba22 383 }
1abd6db7 384 }
385
d0e524d2 386 if ( $flags{private} && ( keys %flags > 1 ) ) {
8d4e224b 387 $c->log->debug( 'Bad action definition "'
d0e524d2 388 . join( ' ', @{$attrs} )
8d4e224b 389 . qq/" for "$namespace->$method"/ )
390 if $c->debug;
d0e524d2 391 return;
392 }
1abd6db7 393 return unless keys %flags;
394
fbcc39ad 395 my $parent = $self->tree;
1abd6db7 396 my $visitor = Tree::Simple::Visitor::FindByPath->new;
99fe1710 397
1abd6db7 398 for my $part ( split '/', $prefix ) {
399 $visitor->setSearchPath($part);
400 $parent->accept($visitor);
401 my $child = $visitor->getResult;
99fe1710 402
1abd6db7 403 unless ($child) {
404 $child = $parent->addChild( Tree::Simple->new($part) );
405 $visitor->setSearchPath($part);
406 $parent->accept($visitor);
407 $child = $visitor->getResult;
408 }
99fe1710 409
1abd6db7 410 $parent = $child;
411 }
99fe1710 412
fbcc39ad 413 my $reverse = $prefix ? "$prefix/$method" : $method;
414
415 my $action = Catalyst::Action->new(
416 {
417 code => $code,
418 reverse => $reverse,
419 namespace => $namespace,
420 }
421 );
422
423 my $uid = $parent->getUID;
424 $self->actions->{private}->{$uid}->{$method} = $action;
425
749472d6 426 my @path;
427 for my $path ( @{ $flags{path} } ) {
428 $path =~ s/^\w+//;
429 $path =~ s/\w+$//;
430 if ( $path =~ /^\s*'(.*)'\s*$/ ) { $path = $1 }
431 if ( $path =~ /^\s*"(.*)"\s*$/ ) { $path = $1 }
432 push @path, $path;
1abd6db7 433 }
749472d6 434 $flags{path} = \@path;
435
436 my @regex;
437 for my $regex ( @{ $flags{regex} } ) {
438 $regex =~ s/^\w+//;
439 $regex =~ s/\w+$//;
440 if ( $regex =~ /^\s*'(.*)'\s*$/ ) { $regex = $1 }
441 if ( $regex =~ /^\s*"(.*)"\s*$/ ) { $regex = $1 }
442 push @regex, $regex;
1abd6db7 443 }
749472d6 444 $flags{regex} = \@regex;
1abd6db7 445
749472d6 446 if ( $flags{local} || $flags{global} ) {
447 push( @{ $flags{path} }, $prefix ? "/$prefix/$method" : "/$method" )
448 if $flags{local};
99fe1710 449
749472d6 450 push( @{ $flags{path} }, "/$method" ) if $flags{global};
451 }
99fe1710 452
749472d6 453 for my $path ( @{ $flags{path} } ) {
454 if ( $path =~ /^\// ) { $path =~ s/^\/// }
455 else { $path = $prefix ? "$prefix/$path" : $path }
456 $self->actions->{plain}->{$path} = $action;
1abd6db7 457 }
99fe1710 458
749472d6 459 for my $regex ( @{ $flags{regex} } ) {
fbcc39ad 460 push @{ $self->actions->{compiled} }, [ $regex, qr#$regex# ];
461 $self->actions->{regex}->{$regex} = $action;
1abd6db7 462 }
1abd6db7 463}
464
fbcc39ad 465=item $self->setup_actions( $class, $component )
1abd6db7 466
467=cut
468
469sub setup_actions {
fbcc39ad 470 my ( $self, $class ) = @_;
99fe1710 471
12e28165 472 # These are the core structures
473 $self->actions(
474 {
475 plain => {},
476 private => {},
477 regex => {},
fbcc39ad 478 compiled => []
12e28165 479 }
480 );
481
482 # We use a tree
483 $self->tree( Tree::Simple->new( 0, Tree::Simple->ROOT ) );
e494bd6b 484
fbcc39ad 485 for my $comp ( keys %{ $class->components } ) {
e494bd6b 486
487 # We only setup components that inherit from Catalyst::Base
a268a011 488 next unless $comp->isa('Catalyst::Base');
99fe1710 489
812a28c9 490 for my $action ( @{ Catalyst::Utils::reflect_actions($comp) } ) {
1abd6db7 491 my ( $code, $attrs ) = @{$action};
492 my $name = '';
493 no strict 'refs';
494 my @cache = ( $comp, @{"$comp\::ISA"} );
495 my %namespaces;
99fe1710 496
1abd6db7 497 while ( my $namespace = shift @cache ) {
498 $namespaces{$namespace}++;
499 for my $isa ( @{"$comp\::ISA"} ) {
500 next if $namespaces{$isa};
501 push @cache, $isa;
502 $namespaces{$isa}++;
503 }
504 }
99fe1710 505
1abd6db7 506 for my $namespace ( keys %namespaces ) {
99fe1710 507
1abd6db7 508 for my $sym ( values %{ $namespace . '::' } ) {
99fe1710 509
1abd6db7 510 if ( *{$sym}{CODE} && *{$sym}{CODE} == $code ) {
99fe1710 511
1abd6db7 512 $name = *{$sym}{NAME};
fbcc39ad 513 $class->set_action( $name, $code, $comp, $attrs );
1abd6db7 514 last;
515 }
99fe1710 516
1abd6db7 517 }
99fe1710 518
1abd6db7 519 }
99fe1710 520
1abd6db7 521 }
99fe1710 522
1abd6db7 523 }
e494bd6b 524
fbcc39ad 525 return unless $class->debug;
99fe1710 526
1abd6db7 527 my $actions = $self->actions;
528 my $privates = Text::ASCIITable->new;
5fbed090 529 $privates->setCols( 'Private', 'Class' );
530 $privates->setColWidth( 'Private', 36, 1 );
531 $privates->setColWidth( 'Class', 37, 1 );
99fe1710 532
1abd6db7 533 my $walker = sub {
534 my ( $walker, $parent, $prefix ) = @_;
535 $prefix .= $parent->getNodeValue || '';
536 $prefix .= '/' unless $prefix =~ /\/$/;
537 my $uid = $parent->getUID;
99fe1710 538
1abd6db7 539 for my $action ( keys %{ $actions->{private}->{$uid} } ) {
fbcc39ad 540 my $action_obj = $actions->{private}->{$uid}->{$action};
541 $privates->addRow( "$prefix$action", $action_obj->namespace );
1abd6db7 542 }
99fe1710 543
1abd6db7 544 $walker->( $walker, $_, $prefix ) for $parent->getAllChildren;
545 };
99fe1710 546
1abd6db7 547 $walker->( $walker, $self->tree, '' );
fbcc39ad 548 $class->log->debug( "Loaded private actions:\n" . $privates->draw )
a268a011 549 if ( @{ $privates->{tbl_rows} } );
99fe1710 550
1abd6db7 551 my $publics = Text::ASCIITable->new;
552 $publics->setCols( 'Public', 'Private' );
699e1247 553 $publics->setColWidth( 'Public', 36, 1 );
554 $publics->setColWidth( 'Private', 37, 1 );
99fe1710 555
1abd6db7 556 for my $plain ( sort keys %{ $actions->{plain} } ) {
fbcc39ad 557 my $action = $actions->{plain}->{$plain};
558 $publics->addRow( "/$plain", "/$action" );
1abd6db7 559 }
99fe1710 560
fbcc39ad 561 $class->log->debug( "Loaded public actions:\n" . $publics->draw )
a268a011 562 if ( @{ $publics->{tbl_rows} } );
99fe1710 563
1abd6db7 564 my $regexes = Text::ASCIITable->new;
565 $regexes->setCols( 'Regex', 'Private' );
699e1247 566 $regexes->setColWidth( 'Regex', 36, 1 );
567 $regexes->setColWidth( 'Private', 37, 1 );
99fe1710 568
1abd6db7 569 for my $regex ( sort keys %{ $actions->{regex} } ) {
fbcc39ad 570 my $action = $actions->{regex}->{$regex};
571 $regexes->addRow( $regex, "/$action" );
1abd6db7 572 }
99fe1710 573
fbcc39ad 574 $class->log->debug( "Loaded regex actions:\n" . $regexes->draw )
a268a011 575 if ( @{ $regexes->{tbl_rows} } );
1abd6db7 576}
577
1abd6db7 578=back
579
580=head1 AUTHOR
581
582Sebastian Riedel, C<sri@cpan.org>
583
584=head1 COPYRIGHT
585
586This program is free software, you can redistribute it and/or modify it under
587the same terms as Perl itself.
588
589=cut
590
5911;