Updated: Better Dispatcher error messages.
[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;
55 my $results = $c->get_action( $action, $default );
56 $namespace ||= '/';
99fe1710 57
1abd6db7 58 if ( @{$results} ) {
59
60 # Execute last begin
61 $c->state(1);
62 if ( my $begin = @{ $c->get_action( 'begin', $namespace ) }[-1] ) {
63 $c->execute( @{ $begin->[0] } );
64 return if scalar @{ $c->error };
65 }
66
67 # Execute the auto chain
61cfdd57 68 my $auto = 0;
1abd6db7 69 for my $auto ( @{ $c->get_action( 'auto', $namespace ) } ) {
70 $c->execute( @{ $auto->[0] } );
71 return if scalar @{ $c->error };
72 last unless $c->state;
61cfdd57 73 $auto++;
1abd6db7 74 }
75
76 # Execute the action or last default
61cfdd57 77 my $mkay = $auto ? $c->state ? 1 : 0 : 1;
78 if ( ( my $action = $c->req->action ) && $mkay ) {
1abd6db7 79 if ( my $result = @{ $c->get_action( $action, $default ) }[-1] ) {
80 $c->execute( @{ $result->[0] } );
81 }
82 }
83
84 # Execute last end
85 if ( my $end = @{ $c->get_action( 'end', $namespace ) }[-1] ) {
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 || '';
99fe1710 138
1abd6db7 139 if ( $class =~ /[^\w\:]/ ) {
5d2c7203 140 my $error = qq/"$class" is an invalid Class name/;
3b2ed580 141 $c->error($error);
142 $c->log->debug($error) if $c->debug;
1abd6db7 143 return 0;
144 }
99fe1710 145
1abd6db7 146 my $method = shift || 'process';
99fe1710 147
1abd6db7 148 if ( my $code = $class->can($method) ) {
149 $c->actions->{reverse}->{"$code"} = "$class->$method";
150 $results = [ [ [ $class, $code ] ] ];
151 }
99fe1710 152
1abd6db7 153 else {
5d2c7203 154 my $error = qq/Couldn't forward to "$class". Does not implement "$method"/;
3b2ed580 155 $c->error($error);
156 $c->log->debug($error)
1abd6db7 157 if $c->debug;
158 return 0;
159 }
99fe1710 160
1abd6db7 161 }
99fe1710 162
1abd6db7 163 for my $result ( @{$results} ) {
164 $c->execute( @{ $result->[0] } );
165 return if scalar @{ $c->error };
166 last unless $c->state;
167 }
99fe1710 168
1abd6db7 169 return $c->state;
170}
171
172=item $c->get_action( $action, $namespace )
173
174Get an action in a given namespace.
175
176=cut
177
178sub get_action {
179 my ( $c, $action, $namespace ) = @_;
180 return [] unless $action;
181 $namespace ||= '';
99fe1710 182
1abd6db7 183 if ($namespace) {
184 $namespace = '' if $namespace eq '/';
185 my $parent = $c->tree;
186 my @results;
187 my %allowed = ( begin => 1, auto => 1, default => 1, end => 1 );
99fe1710 188
1abd6db7 189 if ( $allowed{$action} ) {
190 my $result = $c->actions->{private}->{ $parent->getUID }->{$action};
191 push @results, [$result] if $result;
192 my $visitor = Tree::Simple::Visitor::FindByPath->new;
99fe1710 193
1abd6db7 194 for my $part ( split '/', $namespace ) {
195 $visitor->setSearchPath($part);
196 $parent->accept($visitor);
197 my $child = $visitor->getResult;
198 my $uid = $child->getUID if $child;
199 my $match = $c->actions->{private}->{$uid}->{$action} if $uid;
200 push @results, [$match] if $match;
201 $parent = $child if $child;
202 }
99fe1710 203
1abd6db7 204 }
99fe1710 205
1abd6db7 206 else {
99fe1710 207
1abd6db7 208 if ($namespace) {
209 my $visitor = Tree::Simple::Visitor::FindByPath->new;
210 $visitor->setSearchPath( split '/', $namespace );
211 $parent->accept($visitor);
212 my $child = $visitor->getResult;
213 my $uid = $child->getUID if $child;
214 my $match = $c->actions->{private}->{$uid}->{$action}
215 if $uid;
216 push @results, [$match] if $match;
217 }
99fe1710 218
1abd6db7 219 else {
220 my $result =
221 $c->actions->{private}->{ $parent->getUID }->{$action};
222 push @results, [$result] if $result;
223 }
99fe1710 224
1abd6db7 225 }
226 return \@results;
227 }
99fe1710 228
1abd6db7 229 elsif ( my $p = $c->actions->{plain}->{$action} ) { return [ [$p] ] }
230 elsif ( my $r = $c->actions->{regex}->{$action} ) { return [ [$r] ] }
99fe1710 231
1abd6db7 232 else {
99fe1710 233
1abd6db7 234 for my $i ( 0 .. $#{ $c->actions->{compiled} } ) {
235 my $name = $c->actions->{compiled}->[$i]->[0];
236 my $regex = $c->actions->{compiled}->[$i]->[1];
99fe1710 237
2d752b2a 238 if ( my @snippets = ( $action =~ $regex ) ) {
1abd6db7 239 return [ [ $c->actions->{regex}->{$name}, $name, \@snippets ] ];
240 }
99fe1710 241
1abd6db7 242 }
243 }
244 return [];
245}
246
247=item $c->set_action( $action, $code, $namespace, $attrs )
248
249Set an action in a given namespace.
250
251=cut
252
253sub set_action {
254 my ( $c, $method, $code, $namespace, $attrs ) = @_;
255
f05af9ba 256 my $prefix = Catalyst::Utils::class2prefix($namespace) || '';
1abd6db7 257 my %flags;
258
259 for my $attr ( @{$attrs} ) {
260 if ( $attr =~ /^(Local|Relative)$/ ) { $flags{local}++ }
261 elsif ( $attr =~ /^(Global|Absolute)$/ ) { $flags{global}++ }
262 elsif ( $attr =~ /^Path\((.+)\)$/i ) { $flags{path} = $1 }
263 elsif ( $attr =~ /^Private$/i ) { $flags{private}++ }
264 elsif ( $attr =~ /^(Regex|Regexp)\((.+)\)$/i ) { $flags{regex} = $2 }
265 }
266
d0e524d2 267 if ( $flags{private} && ( keys %flags > 1 ) ) {
8d4e224b 268 $c->log->debug( 'Bad action definition "'
d0e524d2 269 . join( ' ', @{$attrs} )
8d4e224b 270 . qq/" for "$namespace->$method"/ )
271 if $c->debug;
d0e524d2 272 return;
273 }
1abd6db7 274 return unless keys %flags;
275
276 my $parent = $c->tree;
277 my $visitor = Tree::Simple::Visitor::FindByPath->new;
99fe1710 278
1abd6db7 279 for my $part ( split '/', $prefix ) {
280 $visitor->setSearchPath($part);
281 $parent->accept($visitor);
282 my $child = $visitor->getResult;
99fe1710 283
1abd6db7 284 unless ($child) {
285 $child = $parent->addChild( Tree::Simple->new($part) );
286 $visitor->setSearchPath($part);
287 $parent->accept($visitor);
288 $child = $visitor->getResult;
289 }
99fe1710 290
1abd6db7 291 $parent = $child;
292 }
99fe1710 293
1abd6db7 294 my $uid = $parent->getUID;
295 $c->actions->{private}->{$uid}->{$method} = [ $namespace, $code ];
296 my $forward = $prefix ? "$prefix/$method" : $method;
297
298 if ( $flags{path} ) {
299 $flags{path} =~ s/^\w+//;
300 $flags{path} =~ s/\w+$//;
301 if ( $flags{path} =~ /^'(.*)'$/ ) { $flags{path} = $1 }
302 if ( $flags{path} =~ /^"(.*)"$/ ) { $flags{path} = $1 }
303 }
99fe1710 304
1abd6db7 305 if ( $flags{regex} ) {
306 $flags{regex} =~ s/^\w+//;
307 $flags{regex} =~ s/\w+$//;
308 if ( $flags{regex} =~ /^'(.*)'$/ ) { $flags{regex} = $1 }
309 if ( $flags{regex} =~ /^"(.*)"$/ ) { $flags{regex} = $1 }
310 }
311
312 my $reverse = $prefix ? "$prefix/$method" : $method;
313
314 if ( $flags{local} || $flags{global} || $flags{path} ) {
99fe1710 315 my $path = $flags{path} || $method;
1abd6db7 316 my $absolute = 0;
99fe1710 317
1abd6db7 318 if ( $path =~ /^\/(.+)/ ) {
319 $path = $1;
320 $absolute = 1;
321 }
99fe1710 322
1abd6db7 323 $absolute = 1 if $flags{global};
324 my $name = $absolute ? $path : $prefix ? "$prefix/$path" : $path;
325 $c->actions->{plain}->{$name} = [ $namespace, $code ];
326 }
99fe1710 327
1abd6db7 328 if ( my $regex = $flags{regex} ) {
329 push @{ $c->actions->{compiled} }, [ $regex, qr#$regex# ];
330 $c->actions->{regex}->{$regex} = [ $namespace, $code ];
331 }
332
333 $c->actions->{reverse}->{"$code"} = $reverse;
334}
335
336=item $class->setup_actions($component)
337
338Setup actions for a component.
339
340=cut
341
342sub setup_actions {
343 my ( $self, $comps ) = @_;
99fe1710 344
1abd6db7 345 for my $comp (@$comps) {
346 $comp = ref $comp || $comp;
99fe1710 347
1abd6db7 348 for my $action ( @{ $comp->_cache } ) {
349 my ( $code, $attrs ) = @{$action};
350 my $name = '';
351 no strict 'refs';
352 my @cache = ( $comp, @{"$comp\::ISA"} );
353 my %namespaces;
99fe1710 354
1abd6db7 355 while ( my $namespace = shift @cache ) {
356 $namespaces{$namespace}++;
357 for my $isa ( @{"$comp\::ISA"} ) {
358 next if $namespaces{$isa};
359 push @cache, $isa;
360 $namespaces{$isa}++;
361 }
362 }
99fe1710 363
1abd6db7 364 for my $namespace ( keys %namespaces ) {
99fe1710 365
1abd6db7 366 for my $sym ( values %{ $namespace . '::' } ) {
99fe1710 367
1abd6db7 368 if ( *{$sym}{CODE} && *{$sym}{CODE} == $code ) {
99fe1710 369
1abd6db7 370 $name = *{$sym}{NAME};
371 $self->set_action( $name, $code, $comp, $attrs );
372 last;
373 }
99fe1710 374
1abd6db7 375 }
99fe1710 376
1abd6db7 377 }
99fe1710 378
1abd6db7 379 }
99fe1710 380
1abd6db7 381 }
99fe1710 382
1abd6db7 383 my $actions = $self->actions;
384 my $privates = Text::ASCIITable->new;
5fbed090 385 $privates->setCols( 'Private', 'Class' );
386 $privates->setColWidth( 'Private', 36, 1 );
387 $privates->setColWidth( 'Class', 37, 1 );
99fe1710 388
1abd6db7 389 my $walker = sub {
390 my ( $walker, $parent, $prefix ) = @_;
391 $prefix .= $parent->getNodeValue || '';
392 $prefix .= '/' unless $prefix =~ /\/$/;
393 my $uid = $parent->getUID;
99fe1710 394
1abd6db7 395 for my $action ( keys %{ $actions->{private}->{$uid} } ) {
396 my ( $class, $code ) = @{ $actions->{private}->{$uid}->{$action} };
d36e81fd 397 $privates->addRow( "$prefix$action", $class );
1abd6db7 398 }
99fe1710 399
1abd6db7 400 $walker->( $walker, $_, $prefix ) for $parent->getAllChildren;
401 };
99fe1710 402
1abd6db7 403 $walker->( $walker, $self->tree, '' );
404 $self->log->debug( 'Loaded private actions', $privates->draw )
405 if ( @{ $privates->{tbl_rows} } && $self->debug );
99fe1710 406
1abd6db7 407 my $publics = Text::ASCIITable->new;
408 $publics->setCols( 'Public', 'Private' );
699e1247 409 $publics->setColWidth( 'Public', 36, 1 );
410 $publics->setColWidth( 'Private', 37, 1 );
99fe1710 411
1abd6db7 412 for my $plain ( sort keys %{ $actions->{plain} } ) {
413 my ( $class, $code ) = @{ $actions->{plain}->{$plain} };
7ace516e 414 my $reverse = $self->actions->{reverse}->{$code};
415 $reverse = $reverse ? "/$reverse" : $code;
cd677e12 416 $publics->addRow( "/$plain", $reverse );
1abd6db7 417 }
99fe1710 418
1abd6db7 419 $self->log->debug( 'Loaded public actions', $publics->draw )
420 if ( @{ $publics->{tbl_rows} } && $self->debug );
99fe1710 421
1abd6db7 422 my $regexes = Text::ASCIITable->new;
423 $regexes->setCols( 'Regex', 'Private' );
699e1247 424 $regexes->setColWidth( 'Regex', 36, 1 );
425 $regexes->setColWidth( 'Private', 37, 1 );
99fe1710 426
1abd6db7 427 for my $regex ( sort keys %{ $actions->{regex} } ) {
428 my ( $class, $code ) = @{ $actions->{regex}->{$regex} };
7ace516e 429 my $reverse = $self->actions->{reverse}->{$code};
430 $reverse = $reverse ? "/$reverse" : $code;
cd677e12 431 $regexes->addRow( $regex, $reverse );
1abd6db7 432 }
99fe1710 433
1abd6db7 434 $self->log->debug( 'Loaded regex actions', $regexes->draw )
435 if ( @{ $regexes->{tbl_rows} } && $self->debug );
436}
437
1abd6db7 438=back
439
440=head1 AUTHOR
441
442Sebastian Riedel, C<sri@cpan.org>
443
444=head1 COPYRIGHT
445
446This program is free software, you can redistribute it and/or modify it under
447the same terms as Perl itself.
448
449=cut
450
4511;