e8e37972d2ef1660b79116d9d4f576b70841bef2
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Dispatcher.pm
1 package Catalyst::Dispatcher;
2
3 use strict;
4 use base 'Class::Data::Inheritable';
5 use Catalyst::Utils;
6 use Text::ASCIITable;
7 use Tree::Simple;
8 use Tree::Simple::Visitor::FindByPath;
9
10 __PACKAGE__->mk_classdata($_) for qw/actions tree/;
11
12 # These are the core structures
13 __PACKAGE__->actions(
14     { plain => {}, private => {}, regex => {}, compiled => [], reverse => {} }
15 );
16
17 # We use a tree
18 __PACKAGE__->tree( Tree::Simple->new( 0, Tree::Simple->ROOT ) );
19
20 =head1 NAME
21
22 Catalyst::Dispatcher - The Catalyst Dispatcher
23
24 =head1 SYNOPSIS
25
26 See L<Catalyst>.
27
28 =head1 DESCRIPTION
29
30 =head1 METHODS
31
32 =over 4
33
34 =item $c->dispatch
35
36 Dispatch request to actions.
37
38 =cut
39
40 sub 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';
46
47     unless ($namespace) {
48         if ( my $result = $c->get_action($action) ) {
49             $namespace =
50               Catalyst::Utils::class2prefix( $result->[0]->[0]->[0] );
51         }
52     }
53
54     my $default = $action eq 'default' ? $namespace : undef;
55     my $results = $c->get_action( $action, $default, $default ? 1 : 0 );
56     $namespace ||= '/';
57
58     if ( @{$results} ) {
59
60         # Execute last begin
61         $c->state(1);
62         if ( my $begin = @{ $c->get_action( 'begin', $namespace, 1 ) }[-1] ) {
63             $c->execute( @{ $begin->[0] } );
64             return if scalar @{ $c->error };
65         }
66
67         # Execute the auto chain
68         my $auto;
69         for $auto ( @{ $c->get_action( 'auto', $namespace, 1 ) } ) {
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
76         my $mkay = defined $auto ? $c->state ? 1 : 0 : 1;
77         if ( ( my $action = $c->req->action ) && $mkay ) {
78             if ( my $result = @{ $c->get_action( $action, $default, 1 ) }[-1] )
79             {
80                 $c->execute( @{ $result->[0] } );
81             }
82         }
83
84         # Execute last end
85         if ( my $end = @{ $c->get_action( 'end', $namespace, 1 ) }[-1] ) {
86             $c->execute( @{ $end->[0] } );
87             return if scalar @{ $c->error };
88         }
89     }
90
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
103 Forward processing to a private action or a method from a class.
104 If 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
113 sub forward {
114     my $c       = shift;
115     my $command = shift;
116
117     unless ($command) {
118         $c->log->debug('Nothing to forward to') if $c->debug;
119         return 0;
120     }
121
122     my $caller    = caller(0);
123     my $namespace = '/';
124
125     if ( $command =~ /^\// ) {
126         $command =~ /^\/(.*)\/(\w+)$/;
127         $namespace = $1 || '/';
128         $command   = $2 || $command;
129         $command =~ s/^\///;
130     }
131
132     else { $namespace = Catalyst::Utils::class2prefix($caller) || '/' }
133
134     my $results = $c->get_action( $command, $namespace );
135
136     unless ( @{$results} ) {
137         my $class = $command || '';
138         my $path = $class . '.pm';
139         $path =~ s/::/\//g;
140
141         unless ( $INC{$path} ) {
142             my $error =
143               qq/Couldn't forward to "$class". Invalid or not loaded./;
144             $c->error($error);
145             $c->log->debug($error) if $c->debug;
146             return 0;
147         }
148
149         unless ( UNIVERSAL::isa( $class, 'Catalyst::Base' ) ) {
150             my $error =
151               qq/Can't forward to "$class". Class is not a Catalyst component./;
152             $c->error($error);
153             $c->log->debug($error) if $c->debug;
154             return 0;
155         }
156
157         my $method = shift || 'process';
158
159         if ( my $code = $class->can($method) ) {
160             $c->actions->{reverse}->{"$code"} = "$class->$method";
161             $results = [ [ [ $class, $code ] ] ];
162         }
163
164         else {
165             my $error =
166               qq/Couldn't forward to "$class". Does not implement "$method"/;
167             $c->error($error);
168             $c->log->debug($error)
169               if $c->debug;
170             return 0;
171         }
172
173     }
174
175     for my $result ( @{$results} ) {
176         $c->execute( @{ $result->[0] } );
177         return if scalar @{ $c->error };
178         last unless $c->state;
179     }
180
181     return $c->state;
182 }
183
184 =item $c->get_action( $action, $namespace, $inherit )
185
186 Get an action in a given namespace.
187
188 =cut
189
190 sub get_action {
191     my ( $c, $action, $namespace, $inherit ) = @_;
192     return [] unless $action;
193     $namespace ||= '';
194     $inherit   ||= 0;
195
196     if ($namespace) {
197         $namespace = '' if $namespace eq '/';
198         my $parent = $c->tree;
199         my @results;
200
201         if ($inherit) {
202             my $result = $c->actions->{private}->{ $parent->getUID }->{$action};
203             push @results, [$result] if $result;
204             my $visitor = Tree::Simple::Visitor::FindByPath->new;
205
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             }
215
216         }
217
218         else {
219
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             }
230
231             else {
232                 my $result =
233                   $c->actions->{private}->{ $parent->getUID }->{$action};
234                 push @results, [$result] if $result;
235             }
236
237         }
238         return \@results;
239     }
240
241     elsif ( my $p = $c->actions->{plain}->{$action} ) { return [ [$p] ] }
242     elsif ( my $r = $c->actions->{regex}->{$action} ) { return [ [$r] ] }
243
244     else {
245
246         for my $i ( 0 .. $#{ $c->actions->{compiled} } ) {
247             my $name  = $c->actions->{compiled}->[$i]->[0];
248             my $regex = $c->actions->{compiled}->[$i]->[1];
249
250             if ( my @snippets = ( $action =~ $regex ) ) {
251                 return [ [ $c->actions->{regex}->{$name}, $name, \@snippets ] ];
252             }
253
254         }
255     }
256     return [];
257 }
258
259 =item $c->set_action( $action, $code, $namespace, $attrs )
260
261 Set an action in a given namespace.
262
263 =cut
264
265 sub set_action {
266     my ( $c, $method, $code, $namespace, $attrs ) = @_;
267
268     my $prefix = Catalyst::Utils::class2prefix($namespace) || '';
269     my %flags;
270
271     for my $attr ( @{$attrs} ) {
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         }
279     }
280
281     if ( $flags{private} && ( keys %flags > 1 ) ) {
282         $c->log->debug( 'Bad action definition "'
283               . join( ' ', @{$attrs} )
284               . qq/" for "$namespace->$method"/ )
285           if $c->debug;
286         return;
287     }
288     return unless keys %flags;
289
290     my $parent  = $c->tree;
291     my $visitor = Tree::Simple::Visitor::FindByPath->new;
292
293     for my $part ( split '/', $prefix ) {
294         $visitor->setSearchPath($part);
295         $parent->accept($visitor);
296         my $child = $visitor->getResult;
297
298         unless ($child) {
299             $child = $parent->addChild( Tree::Simple->new($part) );
300             $visitor->setSearchPath($part);
301             $parent->accept($visitor);
302             $child = $visitor->getResult;
303         }
304
305         $parent = $child;
306     }
307
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     }
318
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} ) {
329         my $path     = $flags{path} || $method;
330         my $absolute = 0;
331
332         if ( $path =~ /^\/(.+)/ ) {
333             $path     = $1;
334             $absolute = 1;
335         }
336
337         $absolute = 1 if $flags{global};
338         my $name = $absolute ? $path : $prefix ? "$prefix/$path" : $path;
339         $c->actions->{plain}->{$name} = [ $namespace, $code ];
340     }
341
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
352 Setup actions for a component.
353
354 =cut
355
356 sub setup_actions {
357     my ( $self, $comps ) = @_;
358
359     for my $comp (@$comps) {
360         $comp = ref $comp || $comp;
361
362         for my $action ( @{ Catalyst::Utils::reflect_actions($comp) } ) {
363             my ( $code, $attrs ) = @{$action};
364             my $name = '';
365             no strict 'refs';
366             my @cache = ( $comp, @{"$comp\::ISA"} );
367             my %namespaces;
368
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             }
377
378             for my $namespace ( keys %namespaces ) {
379
380                 for my $sym ( values %{ $namespace . '::' } ) {
381
382                     if ( *{$sym}{CODE} && *{$sym}{CODE} == $code ) {
383
384                         $name = *{$sym}{NAME};
385                         $self->set_action( $name, $code, $comp, $attrs );
386                         last;
387                     }
388
389                 }
390
391             }
392
393         }
394
395     }
396
397     my $actions  = $self->actions;
398     my $privates = Text::ASCIITable->new;
399     $privates->setCols( 'Private', 'Class' );
400     $privates->setColWidth( 'Private', 36, 1 );
401     $privates->setColWidth( 'Class',   37, 1 );
402
403     my $walker = sub {
404         my ( $walker, $parent, $prefix ) = @_;
405         $prefix .= $parent->getNodeValue || '';
406         $prefix .= '/' unless $prefix =~ /\/$/;
407         my $uid = $parent->getUID;
408
409         for my $action ( keys %{ $actions->{private}->{$uid} } ) {
410             my ( $class, $code ) = @{ $actions->{private}->{$uid}->{$action} };
411             $privates->addRow( "$prefix$action", $class );
412         }
413
414         $walker->( $walker, $_, $prefix ) for $parent->getAllChildren;
415     };
416
417     $walker->( $walker, $self->tree, '' );
418     $self->log->debug( 'Loaded private actions', $privates->draw )
419       if ( @{ $privates->{tbl_rows} } && $self->debug );
420
421     my $publics = Text::ASCIITable->new;
422     $publics->setCols( 'Public', 'Private' );
423     $publics->setColWidth( 'Public',  36, 1 );
424     $publics->setColWidth( 'Private', 37, 1 );
425
426     for my $plain ( sort keys %{ $actions->{plain} } ) {
427         my ( $class, $code ) = @{ $actions->{plain}->{$plain} };
428         my $reverse = $self->actions->{reverse}->{$code};
429         $reverse = $reverse ? "/$reverse" : $code;
430         $publics->addRow( "/$plain", $reverse );
431     }
432
433     $self->log->debug( 'Loaded public actions', $publics->draw )
434       if ( @{ $publics->{tbl_rows} } && $self->debug );
435
436     my $regexes = Text::ASCIITable->new;
437     $regexes->setCols( 'Regex', 'Private' );
438     $regexes->setColWidth( 'Regex',   36, 1 );
439     $regexes->setColWidth( 'Private', 37, 1 );
440
441     for my $regex ( sort keys %{ $actions->{regex} } ) {
442         my ( $class, $code ) = @{ $actions->{regex}->{$regex} };
443         my $reverse = $self->actions->{reverse}->{$code};
444         $reverse = $reverse ? "/$reverse" : $code;
445         $regexes->addRow( $regex, $reverse );
446     }
447
448     $self->log->debug( 'Loaded regex actions', $regexes->draw )
449       if ( @{ $regexes->{tbl_rows} } && $self->debug );
450 }
451
452 =back
453
454 =head1 AUTHOR
455
456 Sebastian Riedel, C<sri@cpan.org>
457
458 =head1 COPYRIGHT
459
460 This program is free software, you can redistribute it and/or modify it under
461 the same terms as Perl itself.
462
463 =cut
464
465 1;