further doc updates.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Component.pm
CommitLineData
158c88c0 1package Catalyst::Component;
2
3use strict;
684d10ed 4use base qw/Class::Accessor::Fast Class::Data::Inheritable/;
158c88c0 5use NEXT;
6
d0d4d785 7__PACKAGE__->mk_classdata($_) for qw/_config _plugins/;
158c88c0 8
9=head1 NAME
10
11Catalyst::Component - Catalyst Component Base Class
12
13=head1 SYNOPSIS
14
15 # lib/MyApp/Model/Something.pm
16 package MyApp::Model::Something;
17
e7f1cf73 18 use base 'Catalyst::Component';
158c88c0 19
20 __PACKAGE__->config( foo => 'bar' );
21
22 sub test {
23 my $self = shift;
24 return $self->{foo};
25 }
26
27 sub forward_to_me {
28 my ( $self, $c ) = @_;
29 $c->response->output( $self->{foo} );
30 }
31
32 1;
33
34 # Methods can be a request step
35 $c->forward(qw/MyApp::Model::Something forward_to_me/);
36
37 # Or just methods
38 print $c->comp('MyApp::Model::Something')->test;
39
40 print $c->comp('MyApp::Model::Something')->{foo};
41
42=head1 DESCRIPTION
43
44This is the universal base class for Catalyst components
45(Model/View/Controller).
46
47It provides you with a generic new() for instantiation through Catalyst's
48component loader with config() support and a process() method placeholder.
49
f8ad6ea5 50=head1 ACCEPT_CONTEXT
51
52Catalyst components are normally initalized during server startup, either
53as a Class or a Instance. However, some compoents require information about
54the current request. To do so, they can implement an ACCEPT_CONTEXT method.
55
56The ACCEPT_CONTEXT method is called on the component as initalized at startup,
57with the current $c object, and should return itself. It can do whatever it
58likes with $c, such as extracting a path to use in the component or something
59similar.
60
61This call happens for every $c->comp/controller/model/view call.
62
63
158c88c0 64=head1 METHODS
65
b5ecfcf0 66=head2 new($c)
158c88c0 67
68=cut
69
70sub new {
71 my ( $self, $c ) = @_;
72
73 # Temporary fix, some components does not pass context to constructor
74 my $arguments = ( ref( $_[-1] ) eq 'HASH' ) ? $_[-1] : {};
75
76 return $self->NEXT::new( { %{ $self->config }, %{$arguments} } );
77}
78
22247e54 79=head2 COMPONENT($c)
80
81=cut
82
83sub COMPONENT {
84 my ( $self, $c ) = @_;
85
86 # Temporary fix, some components does not pass context to constructor
87 my $arguments = ( ref( $_[-1] ) eq 'HASH' ) ? $_[-1] : {};
88
89 if ( my $new = $self->NEXT::COMPONENT( $c, $arguments ) ) {
90 return $new;
91 }
92 else {
93 if ( my $new = $self->new( $c, $arguments ) ) {
94 return $new;
95 }
96 else {
97 my $class = ref $self || $self;
98 my $new = { %{ $self->config }, %{$arguments} };
99 return bless $new, $class;
100 }
101 }
102}
103
b5ecfcf0 104# remember to leave blank lines between the consecutive =head2's
105# otherwise the pod tools don't recognize the subsequent =head2s
158c88c0 106
b5ecfcf0 107=head2 $c->config
158c88c0 108
b5ecfcf0 109=head2 $c->config($hashref)
158c88c0 110
b5ecfcf0 111=head2 $c->config($key, $value, ...)
158c88c0 112
113=cut
114
115sub config {
116 my $self = shift;
5e707396 117 my $config = $self->_config;
118 unless ($config) {
c7a54b4e 119 $self->_config( $config = {} );
5e707396 120 }
158c88c0 121 if (@_) {
5e707396 122 $config = { %{$config}, %{@_ > 1 ? {@_} : $_[0]} };
123 $self->_config($config);
158c88c0 124 }
5e707396 125 return $config;
158c88c0 126}
127
b5ecfcf0 128=head2 $c->process()
158c88c0 129
130=cut
131
132sub process {
133
134 Catalyst::Exception->throw( message => ( ref $_[0] || $_[0] )
135 . " did not override Catalyst::Component::process" );
136}
137
158c88c0 138=head1 SEE ALSO
139
e7f1cf73 140L<Catalyst>, L<Catalyst::Model>, L<Catalyst::View>, L<Catalyst::Controller>.
158c88c0 141
142=head1 AUTHOR
143
144Sebastian Riedel, C<sri@cpan.org>
145Marcus Ramberg, C<mramberg@cpan.org>
146Matt S Trout, C<mst@shadowcatsystems.co.uk>
147
148=head1 COPYRIGHT
149
150This program is free software, you can redistribute it and/or modify it under
151the same terms as Perl itself.
152
153=cut
154
1551;