docs: updated Intro.pod and Tutorial.pod for modern Catalysts; more details of URL...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Dispatcher.pm
CommitLineData
68a748b9 1package Catalyst::Dispatcher;
1abd6db7 2
3use strict;
4use base 'Class::Data::Inheritable';
f05af9ba 5use Catalyst::Utils;
1abd6db7 6use Text::ASCIITable;
1abd6db7 7use Tree::Simple;
8use Tree::Simple::Visitor::FindByPath;
9
10__PACKAGE__->mk_classdata($_) for qw/actions tree/;
11
99fe1710 12# These are the core structures
1abd6db7 13__PACKAGE__->actions(
14 { plain => {}, private => {}, regex => {}, compiled => [], reverse => {} }
15);
99fe1710 16
17# We use a tree
1abd6db7 18__PACKAGE__->tree( Tree::Simple->new( 0, Tree::Simple->ROOT ) );
19
1abd6db7 20=head1 NAME
21
9c053379 22Catalyst::Dispatcher - The Catalyst Dispatcher
1abd6db7 23
24=head1 SYNOPSIS
25
26See L<Catalyst>.
27
28=head1 DESCRIPTION
29
30=head1 METHODS
31
32=over 4
33
34=item $c->dispatch
35
36Dispatch request to actions.
37
38=cut
39
40sub dispatch {
41 my $c = shift;
42 my $action = $c->req->action;
43 my $namespace = '';
44 $namespace = ( join( '/', @{ $c->req->args } ) || '/' )
45 if $action eq 'default';
99fe1710 46
1abd6db7 47 unless ($namespace) {
48 if ( my $result = $c->get_action($action) ) {
f05af9ba 49 $namespace =
50 Catalyst::Utils::class2prefix( $result->[0]->[0]->[0] );
1abd6db7 51 }
52 }
99fe1710 53
1abd6db7 54 my $default = $action eq 'default' ? $namespace : undef;
2d16b61a 55 my $results = $c->get_action( $action, $default, $default ? 1 : 0 );
1abd6db7 56 $namespace ||= '/';
99fe1710 57
1abd6db7 58 if ( @{$results} ) {
59
60 # Execute last begin
61 $c->state(1);
2d16b61a 62 if ( my $begin = @{ $c->get_action( 'begin', $namespace, 1 ) }[-1] ) {
1abd6db7 63 $c->execute( @{ $begin->[0] } );
64 return if scalar @{ $c->error };
65 }
66
67 # Execute the auto chain
3e93ee3b 68 my $auto;
2d16b61a 69 for $auto ( @{ $c->get_action( 'auto', $namespace, 1 ) } ) {
1abd6db7 70 $c->execute( @{ $auto->[0] } );
71 return if scalar @{ $c->error };
72 last unless $c->state;
73 }
74
75 # Execute the action or last default
3e93ee3b 76 my $mkay = defined $auto ? $c->state ? 1 : 0 : 1;
61cfdd57 77 if ( ( my $action = $c->req->action ) && $mkay ) {
2d16b61a 78 if ( my $result = @{ $c->get_action( $action, $default, 1 ) }[-1] )
79 {
1abd6db7 80 $c->execute( @{ $result->[0] } );
81 }
82 }
83
84 # Execute last end
2d16b61a 85 if ( my $end = @{ $c->get_action( 'end', $namespace, 1 ) }[-1] ) {
1abd6db7 86 $c->execute( @{ $end->[0] } );
87 return if scalar @{ $c->error };
88 }
89 }
99fe1710 90
1abd6db7 91 else {
92 my $path = $c->req->path;
93 my $error = $path
94 ? qq/Unknown resource "$path"/
95 : "No default action defined";
96 $c->log->error($error) if $c->debug;
97 $c->error($error);
98 }
99}
100
101=item $c->forward($command)
102
103Forward processing to a private action or a method from a class.
104If you define a class without method it will default to process().
105
106 $c->forward('/foo');
107 $c->forward('index');
108 $c->forward(qw/MyApp::Model::CDBI::Foo do_stuff/);
109 $c->forward('MyApp::View::TT');
110
111=cut
112
113sub forward {
114 my $c = shift;
115 my $command = shift;
99fe1710 116
1abd6db7 117 unless ($command) {
118 $c->log->debug('Nothing to forward to') if $c->debug;
119 return 0;
120 }
99fe1710 121
1abd6db7 122 my $caller = caller(0);
123 my $namespace = '/';
99fe1710 124
1abd6db7 125 if ( $command =~ /^\// ) {
db0ca23c 126 $command =~ /^\/(.*)\/(\w+)$/;
1abd6db7 127 $namespace = $1 || '/';
db0ca23c 128 $command = $2 || $command;
129 $command =~ s/^\///;
1abd6db7 130 }
99fe1710 131
f05af9ba 132 else { $namespace = Catalyst::Utils::class2prefix($caller) || '/' }
99fe1710 133
1abd6db7 134 my $results = $c->get_action( $command, $namespace );
99fe1710 135
1abd6db7 136 unless ( @{$results} ) {
cd677e12 137 my $class = $command || '';
812a28c9 138 my $path = $class . '.pm';
fe14cf78 139 $path =~ s/::/\//g;
99fe1710 140
812a28c9 141 unless ( $INC{$path} ) {
142 my $error =
143 qq/Couldn't forward to "$class". Invalid or not loaded./;
3b2ed580 144 $c->error($error);
145 $c->log->debug($error) if $c->debug;
1abd6db7 146 return 0;
147 }
812a28c9 148
3245f607 149 unless ( UNIVERSAL::isa( $class, 'Catalyst::Base' ) ) {
812a28c9 150 my $error =
151 qq/Can't forward to "$class". Class is not a Catalyst component./;
3245f607 152 $c->error($error);
153 $c->log->debug($error) if $c->debug;
812a28c9 154 return 0;
3245f607 155 }
99fe1710 156
1abd6db7 157 my $method = shift || 'process';
99fe1710 158
1abd6db7 159 if ( my $code = $class->can($method) ) {
160 $c->actions->{reverse}->{"$code"} = "$class->$method";
161 $results = [ [ [ $class, $code ] ] ];
162 }
99fe1710 163
1abd6db7 164 else {
812a28c9 165 my $error =
166 qq/Couldn't forward to "$class". Does not implement "$method"/;
3b2ed580 167 $c->error($error);
168 $c->log->debug($error)
1abd6db7 169 if $c->debug;
170 return 0;
171 }
99fe1710 172
1abd6db7 173 }
99fe1710 174
1abd6db7 175 for my $result ( @{$results} ) {
176 $c->execute( @{ $result->[0] } );
177 return if scalar @{ $c->error };
178 last unless $c->state;
179 }
99fe1710 180
1abd6db7 181 return $c->state;
182}
183
2d16b61a 184=item $c->get_action( $action, $namespace, $inherit )
1abd6db7 185
186Get an action in a given namespace.
187
188=cut
189
190sub get_action {
2d16b61a 191 my ( $c, $action, $namespace, $inherit ) = @_;
1abd6db7 192 return [] unless $action;
193 $namespace ||= '';
2d16b61a 194 $inherit ||= 0;
99fe1710 195
1abd6db7 196 if ($namespace) {
197 $namespace = '' if $namespace eq '/';
198 my $parent = $c->tree;
199 my @results;
99fe1710 200
2d16b61a 201 if ($inherit) {
1abd6db7 202 my $result = $c->actions->{private}->{ $parent->getUID }->{$action};
203 push @results, [$result] if $result;
204 my $visitor = Tree::Simple::Visitor::FindByPath->new;
99fe1710 205
1abd6db7 206 for my $part ( split '/', $namespace ) {
207 $visitor->setSearchPath($part);
208 $parent->accept($visitor);
209 my $child = $visitor->getResult;
210 my $uid = $child->getUID if $child;
211 my $match = $c->actions->{private}->{$uid}->{$action} if $uid;
212 push @results, [$match] if $match;
213 $parent = $child if $child;
214 }
99fe1710 215
1abd6db7 216 }
99fe1710 217
1abd6db7 218 else {
99fe1710 219
1abd6db7 220 if ($namespace) {
221 my $visitor = Tree::Simple::Visitor::FindByPath->new;
222 $visitor->setSearchPath( split '/', $namespace );
223 $parent->accept($visitor);
224 my $child = $visitor->getResult;
225 my $uid = $child->getUID if $child;
226 my $match = $c->actions->{private}->{$uid}->{$action}
227 if $uid;
228 push @results, [$match] if $match;
229 }
99fe1710 230
1abd6db7 231 else {
232 my $result =
233 $c->actions->{private}->{ $parent->getUID }->{$action};
234 push @results, [$result] if $result;
235 }
99fe1710 236
1abd6db7 237 }
238 return \@results;
239 }
99fe1710 240
1abd6db7 241 elsif ( my $p = $c->actions->{plain}->{$action} ) { return [ [$p] ] }
242 elsif ( my $r = $c->actions->{regex}->{$action} ) { return [ [$r] ] }
99fe1710 243
1abd6db7 244 else {
99fe1710 245
1abd6db7 246 for my $i ( 0 .. $#{ $c->actions->{compiled} } ) {
247 my $name = $c->actions->{compiled}->[$i]->[0];
248 my $regex = $c->actions->{compiled}->[$i]->[1];
99fe1710 249
2d752b2a 250 if ( my @snippets = ( $action =~ $regex ) ) {
1abd6db7 251 return [ [ $c->actions->{regex}->{$name}, $name, \@snippets ] ];
252 }
99fe1710 253
1abd6db7 254 }
255 }
256 return [];
257}
258
259=item $c->set_action( $action, $code, $namespace, $attrs )
260
261Set an action in a given namespace.
262
263=cut
264
265sub set_action {
266 my ( $c, $method, $code, $namespace, $attrs ) = @_;
267
f05af9ba 268 my $prefix = Catalyst::Utils::class2prefix($namespace) || '';
1abd6db7 269 my %flags;
270
271 for my $attr ( @{$attrs} ) {
0299ba22 272 if ( $attr =~ /^(Local|Relative)$/ ) { $flags{local}++ }
273 elsif ( $attr =~ /^(Global|Absolute)$/ ) { $flags{global}++ }
274 elsif ( $attr =~ /^Path\(\s*(.+)\s*\)$/i ) { $flags{path} = $1 }
275 elsif ( $attr =~ /^Private$/i ) { $flags{private}++ }
276 elsif ( $attr =~ /^(Regex|Regexp)\(\s*(.+)\s*\)$/i ) {
277 $flags{regex} = $2;
278 }
1abd6db7 279 }
280
d0e524d2 281 if ( $flags{private} && ( keys %flags > 1 ) ) {
8d4e224b 282 $c->log->debug( 'Bad action definition "'
d0e524d2 283 . join( ' ', @{$attrs} )
8d4e224b 284 . qq/" for "$namespace->$method"/ )
285 if $c->debug;
d0e524d2 286 return;
287 }
1abd6db7 288 return unless keys %flags;
289
290 my $parent = $c->tree;
291 my $visitor = Tree::Simple::Visitor::FindByPath->new;
99fe1710 292
1abd6db7 293 for my $part ( split '/', $prefix ) {
294 $visitor->setSearchPath($part);
295 $parent->accept($visitor);
296 my $child = $visitor->getResult;
99fe1710 297
1abd6db7 298 unless ($child) {
299 $child = $parent->addChild( Tree::Simple->new($part) );
300 $visitor->setSearchPath($part);
301 $parent->accept($visitor);
302 $child = $visitor->getResult;
303 }
99fe1710 304
1abd6db7 305 $parent = $child;
306 }
99fe1710 307
1abd6db7 308 my $uid = $parent->getUID;
309 $c->actions->{private}->{$uid}->{$method} = [ $namespace, $code ];
310 my $forward = $prefix ? "$prefix/$method" : $method;
311
312 if ( $flags{path} ) {
313 $flags{path} =~ s/^\w+//;
314 $flags{path} =~ s/\w+$//;
315 if ( $flags{path} =~ /^'(.*)'$/ ) { $flags{path} = $1 }
316 if ( $flags{path} =~ /^"(.*)"$/ ) { $flags{path} = $1 }
317 }
99fe1710 318
1abd6db7 319 if ( $flags{regex} ) {
320 $flags{regex} =~ s/^\w+//;
321 $flags{regex} =~ s/\w+$//;
322 if ( $flags{regex} =~ /^'(.*)'$/ ) { $flags{regex} = $1 }
323 if ( $flags{regex} =~ /^"(.*)"$/ ) { $flags{regex} = $1 }
324 }
325
326 my $reverse = $prefix ? "$prefix/$method" : $method;
327
328 if ( $flags{local} || $flags{global} || $flags{path} ) {
99fe1710 329 my $path = $flags{path} || $method;
1abd6db7 330 my $absolute = 0;
99fe1710 331
1abd6db7 332 if ( $path =~ /^\/(.+)/ ) {
333 $path = $1;
334 $absolute = 1;
335 }
99fe1710 336
1abd6db7 337 $absolute = 1 if $flags{global};
338 my $name = $absolute ? $path : $prefix ? "$prefix/$path" : $path;
339 $c->actions->{plain}->{$name} = [ $namespace, $code ];
340 }
99fe1710 341
1abd6db7 342 if ( my $regex = $flags{regex} ) {
343 push @{ $c->actions->{compiled} }, [ $regex, qr#$regex# ];
344 $c->actions->{regex}->{$regex} = [ $namespace, $code ];
345 }
346
347 $c->actions->{reverse}->{"$code"} = $reverse;
348}
349
350=item $class->setup_actions($component)
351
352Setup actions for a component.
353
354=cut
355
356sub setup_actions {
357 my ( $self, $comps ) = @_;
99fe1710 358
1abd6db7 359 for my $comp (@$comps) {
360 $comp = ref $comp || $comp;
99fe1710 361
812a28c9 362 for my $action ( @{ Catalyst::Utils::reflect_actions($comp) } ) {
1abd6db7 363 my ( $code, $attrs ) = @{$action};
364 my $name = '';
365 no strict 'refs';
366 my @cache = ( $comp, @{"$comp\::ISA"} );
367 my %namespaces;
99fe1710 368
1abd6db7 369 while ( my $namespace = shift @cache ) {
370 $namespaces{$namespace}++;
371 for my $isa ( @{"$comp\::ISA"} ) {
372 next if $namespaces{$isa};
373 push @cache, $isa;
374 $namespaces{$isa}++;
375 }
376 }
99fe1710 377
1abd6db7 378 for my $namespace ( keys %namespaces ) {
99fe1710 379
1abd6db7 380 for my $sym ( values %{ $namespace . '::' } ) {
99fe1710 381
1abd6db7 382 if ( *{$sym}{CODE} && *{$sym}{CODE} == $code ) {
99fe1710 383
1abd6db7 384 $name = *{$sym}{NAME};
385 $self->set_action( $name, $code, $comp, $attrs );
386 last;
387 }
99fe1710 388
1abd6db7 389 }
99fe1710 390
1abd6db7 391 }
99fe1710 392
1abd6db7 393 }
99fe1710 394
1abd6db7 395 }
99fe1710 396
1abd6db7 397 my $actions = $self->actions;
398 my $privates = Text::ASCIITable->new;
5fbed090 399 $privates->setCols( 'Private', 'Class' );
400 $privates->setColWidth( 'Private', 36, 1 );
401 $privates->setColWidth( 'Class', 37, 1 );
99fe1710 402
1abd6db7 403 my $walker = sub {
404 my ( $walker, $parent, $prefix ) = @_;
405 $prefix .= $parent->getNodeValue || '';
406 $prefix .= '/' unless $prefix =~ /\/$/;
407 my $uid = $parent->getUID;
99fe1710 408
1abd6db7 409 for my $action ( keys %{ $actions->{private}->{$uid} } ) {
410 my ( $class, $code ) = @{ $actions->{private}->{$uid}->{$action} };
d36e81fd 411 $privates->addRow( "$prefix$action", $class );
1abd6db7 412 }
99fe1710 413
1abd6db7 414 $walker->( $walker, $_, $prefix ) for $parent->getAllChildren;
415 };
99fe1710 416
1abd6db7 417 $walker->( $walker, $self->tree, '' );
418 $self->log->debug( 'Loaded private actions', $privates->draw )
419 if ( @{ $privates->{tbl_rows} } && $self->debug );
99fe1710 420
1abd6db7 421 my $publics = Text::ASCIITable->new;
422 $publics->setCols( 'Public', 'Private' );
699e1247 423 $publics->setColWidth( 'Public', 36, 1 );
424 $publics->setColWidth( 'Private', 37, 1 );
99fe1710 425
1abd6db7 426 for my $plain ( sort keys %{ $actions->{plain} } ) {
427 my ( $class, $code ) = @{ $actions->{plain}->{$plain} };
7ace516e 428 my $reverse = $self->actions->{reverse}->{$code};
429 $reverse = $reverse ? "/$reverse" : $code;
cd677e12 430 $publics->addRow( "/$plain", $reverse );
1abd6db7 431 }
99fe1710 432
1abd6db7 433 $self->log->debug( 'Loaded public actions', $publics->draw )
434 if ( @{ $publics->{tbl_rows} } && $self->debug );
99fe1710 435
1abd6db7 436 my $regexes = Text::ASCIITable->new;
437 $regexes->setCols( 'Regex', 'Private' );
699e1247 438 $regexes->setColWidth( 'Regex', 36, 1 );
439 $regexes->setColWidth( 'Private', 37, 1 );
99fe1710 440
1abd6db7 441 for my $regex ( sort keys %{ $actions->{regex} } ) {
442 my ( $class, $code ) = @{ $actions->{regex}->{$regex} };
7ace516e 443 my $reverse = $self->actions->{reverse}->{$code};
444 $reverse = $reverse ? "/$reverse" : $code;
cd677e12 445 $regexes->addRow( $regex, $reverse );
1abd6db7 446 }
99fe1710 447
1abd6db7 448 $self->log->debug( 'Loaded regex actions', $regexes->draw )
449 if ( @{ $regexes->{tbl_rows} } && $self->debug );
450}
451
1abd6db7 452=back
453
454=head1 AUTHOR
455
456Sebastian Riedel, C<sri@cpan.org>
457
458=head1 COPYRIGHT
459
460This program is free software, you can redistribute it and/or modify it under
461the same terms as Perl itself.
462
463=cut
464
4651;