Reformatted documentation
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Base.pm
CommitLineData
fc7ec1d9 1package Catalyst::Base;
2
3use strict;
158c88c0 4use base qw/Catalyst::Component Catalyst::AttrContainer Class::Accessor::Fast/;
b7783788 5
a2f2cde9 6use Catalyst::Exception;
91d4abc5 7use Catalyst::Utils;
8use Class::Inspector;
fc7ec1d9 9use NEXT;
10
97d6d2bd 11__PACKAGE__->mk_classdata($_) for qw/_dispatch_steps _action_class/;
1143712c 12
0bbb5a1f 13__PACKAGE__->_dispatch_steps( [qw/_BEGIN _AUTO _ACTION/] );
97d6d2bd 14__PACKAGE__->_action_class('Catalyst::Action');
ac733264 15
0bbb5a1f 16sub _DISPATCH : Private {
ba599d1c 17 my ( $self, $c ) = @_;
1143712c 18
0bbb5a1f 19 foreach my $disp ( @{ $self->_dispatch_steps } ) {
1143712c 20 last unless $c->forward($disp);
ba599d1c 21 }
22
1143712c 23 $c->forward('_END');
24}
fc7ec1d9 25
0bbb5a1f 26sub _BEGIN : Private {
1143712c 27 my ( $self, $c ) = @_;
57e45928 28 my $begin = ( $c->get_actions( 'begin', $c->namespace ) )[-1];
1143712c 29 return 1 unless $begin;
a9dc674c 30 $begin->execute($c);
0bbb5a1f 31 return !@{ $c->error };
1143712c 32}
ba599d1c 33
0bbb5a1f 34sub _AUTO : Private {
1143712c 35 my ( $self, $c ) = @_;
57e45928 36 my @auto = $c->get_actions( 'auto', $c->namespace );
1143712c 37 foreach my $auto (@auto) {
a9dc674c 38 $auto->execute($c);
1143712c 39 return 0 unless $c->state;
ba599d1c 40 }
1143712c 41 return 1;
42}
ba599d1c 43
0bbb5a1f 44sub _ACTION : Private {
1143712c 45 my ( $self, $c ) = @_;
8b76bfcf 46 if ( ref $c->action
47 && $c->action->isa('Catalyst::Action')
48 && $c->req->action )
49 {
245ae014 50 $c->action->execute($c);
51 }
0bbb5a1f 52 return !@{ $c->error };
1143712c 53}
ba599d1c 54
0bbb5a1f 55sub _END : Private {
1143712c 56 my ( $self, $c ) = @_;
57e45928 57 my $end = ( $c->get_actions( 'end', $c->namespace ) )[-1];
1143712c 58 return 1 unless $end;
a9dc674c 59 $end->execute($c);
0bbb5a1f 60 return !@{ $c->error };
ba599d1c 61}
d70195d8 62
aad72cc9 63=head1 NAME
64
65Catalyst::Base - Catalyst Base Class
66
67=head1 SYNOPSIS
68
69See L<Catalyst>
70
71=head1 DESCRIPTION
72
73Catalyst Base Class
74
75=head1 METHODS
76
b5ecfcf0 77=head2 $self->action_namespace($c)
aad72cc9 78
79=cut
80
91d4abc5 81sub action_namespace {
82 my ( $self, $c ) = @_;
57e45928 83 return Catalyst::Utils::class2prefix( ref $self,
84 $c->config->{case_sensitive} )
85 || '';
91d4abc5 86}
87
b5ecfcf0 88=head2 $self->register_actions($c)
aad72cc9 89
90=cut
91
91d4abc5 92sub register_actions {
93 my ( $self, $c ) = @_;
94 my $class = ref $self || $self;
57e45928 95 my $namespace = $self->action_namespace($c);
91d4abc5 96 my %methods;
57e45928 97 $methods{ $self->can($_) } = $_
98 for @{ Class::Inspector->methods($class) || [] };
99
100 # Advanced inheritance support for plugins and the like
101 my @action_cache;
102 {
103 no strict 'refs';
104 for my $isa ( @{"$class\::ISA"}, $class ) {
105 push @action_cache, @{ $isa->_action_cache }
106 if $isa->can('_action_cache');
107 }
108 }
109
110 foreach my $cache (@action_cache) {
111 my $code = $cache->[0];
91d4abc5 112 my $method = $methods{$code};
113 next unless $method;
57e45928 114 my $attrs = $self->_parse_attrs( @{ $cache->[1] } );
115 if ( $attrs->{Private} && ( keys %$attrs > 1 ) ) {
91d4abc5 116 $c->log->debug( 'Bad action definition "'
57e45928 117 . join( ' ', @{ $cache->[1] } )
91d4abc5 118 . qq/" for "$class->$method"/ )
119 if $c->debug;
120 next;
121 }
122 my $reverse = $namespace ? "$namespace/$method" : $method;
97d6d2bd 123 my $action = $self->_action_class->new(
91d4abc5 124 {
125 name => $method,
126 code => $code,
127 reverse => $reverse,
128 namespace => $namespace,
129 class => $class,
130 attributes => $attrs,
131 }
132 );
57e45928 133 $c->dispatcher->register( $c, $action );
91d4abc5 134 }
135}
136
137sub _parse_attrs {
138 my ( $self, @attrs ) = @_;
139 my %attributes;
140 foreach my $attr (@attrs) {
141
142 # Parse out :Foo(bar) into Foo => bar etc (and arrayify)
143
aad72cc9 144 if ( my ( $key, $value ) = ( $attr =~ /^(.*?)(?:\(\s*(.+?)\s*\))?$/ ) )
145 {
91d4abc5 146
147 if ( defined $value ) {
148 ( $value =~ s/^'(.*)'$/$1/ ) || ( $value =~ s/^"(.*)"/$1/ );
149 }
150 push( @{ $attributes{$key} }, $value );
151 }
152 }
153 return \%attributes;
154}
155
fc7ec1d9 156=head1 SEE ALSO
157
e7f1cf73 158L<Catalyst>, L<Catalyst::Controller>.
fc7ec1d9 159
160=head1 AUTHOR
161
162Sebastian Riedel, C<sri@cpan.org>
61b1e958 163Marcus Ramberg, C<mramberg@cpan.org>
ba599d1c 164Matt S Trout, C<mst@shadowcatsystems.co.uk>
fc7ec1d9 165
166=head1 COPYRIGHT
167
168This program is free software, you can redistribute it and/or modify it under
169the same terms as Perl itself.
170
171=cut
172
1731;