added auto to inheritance.t
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Dispatcher.pm
CommitLineData
68a748b9 1package Catalyst::Dispatcher;
1abd6db7 2
3use strict;
4use base 'Class::Data::Inheritable';
5use Memoize;
6use Text::ASCIITable;
7use Text::ASCIITable::Wrap 'wrap';
8use Tree::Simple;
9use Tree::Simple::Visitor::FindByPath;
10
11__PACKAGE__->mk_classdata($_) for qw/actions tree/;
12
13__PACKAGE__->actions(
14 { plain => {}, private => {}, regex => {}, compiled => [], reverse => {} }
15);
16__PACKAGE__->tree( Tree::Simple->new( 0, Tree::Simple->ROOT ) );
17
18memoize('_class2prefix');
19
20=head1 NAME
21
22Catalyst::Dispatch - The Catalyst Dispatcher
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';
46 unless ($namespace) {
47 if ( my $result = $c->get_action($action) ) {
48 $namespace = _class2prefix( $result->[0]->[0]->[0] );
49 }
50 }
51 my $default = $action eq 'default' ? $namespace : undef;
52 my $results = $c->get_action( $action, $default );
53 $namespace ||= '/';
54 if ( @{$results} ) {
55
56 # Execute last begin
57 $c->state(1);
58 if ( my $begin = @{ $c->get_action( 'begin', $namespace ) }[-1] ) {
59 $c->execute( @{ $begin->[0] } );
60 return if scalar @{ $c->error };
61 }
62
63 # Execute the auto chain
64 for my $auto ( @{ $c->get_action( 'auto', $namespace ) } ) {
65 $c->execute( @{ $auto->[0] } );
66 return if scalar @{ $c->error };
67 last unless $c->state;
68 }
69
70 # Execute the action or last default
71 if ( ( my $action = $c->req->action ) && $c->state ) {
72 if ( my $result = @{ $c->get_action( $action, $default ) }[-1] ) {
73 $c->execute( @{ $result->[0] } );
74 }
75 }
76
77 # Execute last end
78 if ( my $end = @{ $c->get_action( 'end', $namespace ) }[-1] ) {
79 $c->execute( @{ $end->[0] } );
80 return if scalar @{ $c->error };
81 }
82 }
83 else {
84 my $path = $c->req->path;
85 my $error = $path
86 ? qq/Unknown resource "$path"/
87 : "No default action defined";
88 $c->log->error($error) if $c->debug;
89 $c->error($error);
90 }
91}
92
93=item $c->forward($command)
94
95Forward processing to a private action or a method from a class.
96If you define a class without method it will default to process().
97
98 $c->forward('/foo');
99 $c->forward('index');
100 $c->forward(qw/MyApp::Model::CDBI::Foo do_stuff/);
101 $c->forward('MyApp::View::TT');
102
103=cut
104
105sub forward {
106 my $c = shift;
107 my $command = shift;
108 unless ($command) {
109 $c->log->debug('Nothing to forward to') if $c->debug;
110 return 0;
111 }
112 my $caller = caller(0);
113 my $namespace = '/';
114 if ( $command =~ /^\// ) {
115 $command =~ /^(.*)\/(\w+)$/;
116 $namespace = $1 || '/';
117 $command = $2;
118 }
119 else { $namespace = _class2prefix($caller) || '/' }
120 my $results = $c->get_action( $command, $namespace );
121 unless ( @{$results} ) {
122 my $class = $command;
123 if ( $class =~ /[^\w\:]/ ) {
124 $c->log->debug(qq/Couldn't forward to "$class"/) if $c->debug;
125 return 0;
126 }
127 my $method = shift || 'process';
128 if ( my $code = $class->can($method) ) {
129 $c->actions->{reverse}->{"$code"} = "$class->$method";
130 $results = [ [ [ $class, $code ] ] ];
131 }
132 else {
133 $c->log->debug(qq/Couldn't forward to "$class->$method"/)
134 if $c->debug;
135 return 0;
136 }
137 }
138 for my $result ( @{$results} ) {
139 $c->execute( @{ $result->[0] } );
140 return if scalar @{ $c->error };
141 last unless $c->state;
142 }
143 return $c->state;
144}
145
146=item $c->get_action( $action, $namespace )
147
148Get an action in a given namespace.
149
150=cut
151
152sub get_action {
153 my ( $c, $action, $namespace ) = @_;
154 return [] unless $action;
155 $namespace ||= '';
156 if ($namespace) {
157 $namespace = '' if $namespace eq '/';
158 my $parent = $c->tree;
159 my @results;
160 my %allowed = ( begin => 1, auto => 1, default => 1, end => 1 );
161 if ( $allowed{$action} ) {
162 my $result = $c->actions->{private}->{ $parent->getUID }->{$action};
163 push @results, [$result] if $result;
164 my $visitor = Tree::Simple::Visitor::FindByPath->new;
165 for my $part ( split '/', $namespace ) {
166 $visitor->setSearchPath($part);
167 $parent->accept($visitor);
168 my $child = $visitor->getResult;
169 my $uid = $child->getUID if $child;
170 my $match = $c->actions->{private}->{$uid}->{$action} if $uid;
171 push @results, [$match] if $match;
172 $parent = $child if $child;
173 }
174 }
175 else {
176 if ($namespace) {
177 my $visitor = Tree::Simple::Visitor::FindByPath->new;
178 $visitor->setSearchPath( split '/', $namespace );
179 $parent->accept($visitor);
180 my $child = $visitor->getResult;
181 my $uid = $child->getUID if $child;
182 my $match = $c->actions->{private}->{$uid}->{$action}
183 if $uid;
184 push @results, [$match] if $match;
185 }
186 else {
187 my $result =
188 $c->actions->{private}->{ $parent->getUID }->{$action};
189 push @results, [$result] if $result;
190 }
191 }
192 return \@results;
193 }
194 elsif ( my $p = $c->actions->{plain}->{$action} ) { return [ [$p] ] }
195 elsif ( my $r = $c->actions->{regex}->{$action} ) { return [ [$r] ] }
196 else {
197 for my $i ( 0 .. $#{ $c->actions->{compiled} } ) {
198 my $name = $c->actions->{compiled}->[$i]->[0];
199 my $regex = $c->actions->{compiled}->[$i]->[1];
200 if ( $action =~ $regex ) {
201 my @snippets;
202 for my $i ( 1 .. 9 ) {
203 no strict 'refs';
204 last unless ${$i};
205 push @snippets, ${$i};
206 }
207 return [ [ $c->actions->{regex}->{$name}, $name, \@snippets ] ];
208 }
209 }
210 }
211 return [];
212}
213
214=item $c->set_action( $action, $code, $namespace, $attrs )
215
216Set an action in a given namespace.
217
218=cut
219
220sub set_action {
221 my ( $c, $method, $code, $namespace, $attrs ) = @_;
222
223 my $prefix = _class2prefix($namespace) || '';
224 my %flags;
225
226 for my $attr ( @{$attrs} ) {
227 if ( $attr =~ /^(Local|Relative)$/ ) { $flags{local}++ }
228 elsif ( $attr =~ /^(Global|Absolute)$/ ) { $flags{global}++ }
229 elsif ( $attr =~ /^Path\((.+)\)$/i ) { $flags{path} = $1 }
230 elsif ( $attr =~ /^Private$/i ) { $flags{private}++ }
231 elsif ( $attr =~ /^(Regex|Regexp)\((.+)\)$/i ) { $flags{regex} = $2 }
232 }
233
234 return unless keys %flags;
235
236 my $parent = $c->tree;
237 my $visitor = Tree::Simple::Visitor::FindByPath->new;
238 for my $part ( split '/', $prefix ) {
239 $visitor->setSearchPath($part);
240 $parent->accept($visitor);
241 my $child = $visitor->getResult;
242 unless ($child) {
243 $child = $parent->addChild( Tree::Simple->new($part) );
244 $visitor->setSearchPath($part);
245 $parent->accept($visitor);
246 $child = $visitor->getResult;
247 }
248 $parent = $child;
249 }
250 my $uid = $parent->getUID;
251 $c->actions->{private}->{$uid}->{$method} = [ $namespace, $code ];
252 my $forward = $prefix ? "$prefix/$method" : $method;
253
254 if ( $flags{path} ) {
255 $flags{path} =~ s/^\w+//;
256 $flags{path} =~ s/\w+$//;
257 if ( $flags{path} =~ /^'(.*)'$/ ) { $flags{path} = $1 }
258 if ( $flags{path} =~ /^"(.*)"$/ ) { $flags{path} = $1 }
259 }
260 if ( $flags{regex} ) {
261 $flags{regex} =~ s/^\w+//;
262 $flags{regex} =~ s/\w+$//;
263 if ( $flags{regex} =~ /^'(.*)'$/ ) { $flags{regex} = $1 }
264 if ( $flags{regex} =~ /^"(.*)"$/ ) { $flags{regex} = $1 }
265 }
266
267 my $reverse = $prefix ? "$prefix/$method" : $method;
268
269 if ( $flags{local} || $flags{global} || $flags{path} ) {
270 my $path = $flags{path} || $method;
271 my $absolute = 0;
272 if ( $path =~ /^\/(.+)/ ) {
273 $path = $1;
274 $absolute = 1;
275 }
276 $absolute = 1 if $flags{global};
277 my $name = $absolute ? $path : $prefix ? "$prefix/$path" : $path;
278 $c->actions->{plain}->{$name} = [ $namespace, $code ];
279 }
280 if ( my $regex = $flags{regex} ) {
281 push @{ $c->actions->{compiled} }, [ $regex, qr#$regex# ];
282 $c->actions->{regex}->{$regex} = [ $namespace, $code ];
283 }
284
285 $c->actions->{reverse}->{"$code"} = $reverse;
286}
287
288=item $class->setup_actions($component)
289
290Setup actions for a component.
291
292=cut
293
294sub setup_actions {
295 my ( $self, $comps ) = @_;
296 for my $comp (@$comps) {
297 $comp = ref $comp || $comp;
298 for my $action ( @{ $comp->_cache } ) {
299 my ( $code, $attrs ) = @{$action};
300 my $name = '';
301 no strict 'refs';
302 my @cache = ( $comp, @{"$comp\::ISA"} );
303 my %namespaces;
304 while ( my $namespace = shift @cache ) {
305 $namespaces{$namespace}++;
306 for my $isa ( @{"$comp\::ISA"} ) {
307 next if $namespaces{$isa};
308 push @cache, $isa;
309 $namespaces{$isa}++;
310 }
311 }
312 for my $namespace ( keys %namespaces ) {
313 for my $sym ( values %{ $namespace . '::' } ) {
314 if ( *{$sym}{CODE} && *{$sym}{CODE} == $code ) {
315 $name = *{$sym}{NAME};
316 $self->set_action( $name, $code, $comp, $attrs );
317 last;
318 }
319 }
320 }
321 }
322 }
1abd6db7 323 my $actions = $self->actions;
324 my $privates = Text::ASCIITable->new;
5fbed090 325 $privates->setCols( 'Private', 'Class' );
326 $privates->setColWidth( 'Private', 36, 1 );
327 $privates->setColWidth( 'Class', 37, 1 );
1abd6db7 328 my $walker = sub {
329 my ( $walker, $parent, $prefix ) = @_;
330 $prefix .= $parent->getNodeValue || '';
331 $prefix .= '/' unless $prefix =~ /\/$/;
332 my $uid = $parent->getUID;
333 for my $action ( keys %{ $actions->{private}->{$uid} } ) {
334 my ( $class, $code ) = @{ $actions->{private}->{$uid}->{$action} };
5fbed090 335 $privates->addRow( wrap( "$prefix$action", 36 ),
336 wrap( $class, 37 ) );
1abd6db7 337 }
338 $walker->( $walker, $_, $prefix ) for $parent->getAllChildren;
339 };
340 $walker->( $walker, $self->tree, '' );
341 $self->log->debug( 'Loaded private actions', $privates->draw )
342 if ( @{ $privates->{tbl_rows} } && $self->debug );
343 my $publics = Text::ASCIITable->new;
344 $publics->setCols( 'Public', 'Private' );
699e1247 345 $publics->setColWidth( 'Public', 36, 1 );
346 $publics->setColWidth( 'Private', 37, 1 );
1abd6db7 347 for my $plain ( sort keys %{ $actions->{plain} } ) {
348 my ( $class, $code ) = @{ $actions->{plain}->{$plain} };
7ace516e 349 my $reverse = $self->actions->{reverse}->{$code};
350 $reverse = $reverse ? "/$reverse" : $code;
699e1247 351 $publics->addRow( wrap( "/$plain", 36 ), wrap( $reverse, 37 ) );
1abd6db7 352 }
353 $self->log->debug( 'Loaded public actions', $publics->draw )
354 if ( @{ $publics->{tbl_rows} } && $self->debug );
355 my $regexes = Text::ASCIITable->new;
356 $regexes->setCols( 'Regex', 'Private' );
699e1247 357 $regexes->setColWidth( 'Regex', 36, 1 );
358 $regexes->setColWidth( 'Private', 37, 1 );
1abd6db7 359 for my $regex ( sort keys %{ $actions->{regex} } ) {
360 my ( $class, $code ) = @{ $actions->{regex}->{$regex} };
7ace516e 361 my $reverse = $self->actions->{reverse}->{$code};
362 $reverse = $reverse ? "/$reverse" : $code;
699e1247 363 $regexes->addRow( wrap( $regex, 36 ), wrap( $reverse, 37 ) );
1abd6db7 364 }
365 $self->log->debug( 'Loaded regex actions', $regexes->draw )
366 if ( @{ $regexes->{tbl_rows} } && $self->debug );
367}
368
369sub _prefix {
370 my ( $class, $name ) = @_;
371 my $prefix = _class2prefix($class);
372 $name = "$prefix/$name" if $prefix;
373 return $name;
374}
375
376sub _class2prefix {
377 my $class = shift || '';
378 my $prefix;
379 if ( $class =~ /^.*::([MVC]|Model|View|Controller)?::(.*)$/ ) {
380 $prefix = lc $2;
381 $prefix =~ s/\:\:/\//g;
382 }
383 return $prefix;
384}
385
386=back
387
388=head1 AUTHOR
389
390Sebastian Riedel, C<sri@cpan.org>
391
392=head1 COPYRIGHT
393
394This program is free software, you can redistribute it and/or modify it under
395the same terms as Perl itself.
396
397=cut
398
3991;