Added warning for setup after setup
[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
50=head1 METHODS
51
b5ecfcf0 52=head2 new($c)
158c88c0 53
54=cut
55
56sub new {
57 my ( $self, $c ) = @_;
58
59 # Temporary fix, some components does not pass context to constructor
60 my $arguments = ( ref( $_[-1] ) eq 'HASH' ) ? $_[-1] : {};
61
62 return $self->NEXT::new( { %{ $self->config }, %{$arguments} } );
63}
64
22247e54 65=head2 COMPONENT($c)
66
67=cut
68
69sub COMPONENT {
70 my ( $self, $c ) = @_;
71
72 # Temporary fix, some components does not pass context to constructor
73 my $arguments = ( ref( $_[-1] ) eq 'HASH' ) ? $_[-1] : {};
74
75 if ( my $new = $self->NEXT::COMPONENT( $c, $arguments ) ) {
76 return $new;
77 }
78 else {
79 if ( my $new = $self->new( $c, $arguments ) ) {
80 return $new;
81 }
82 else {
83 my $class = ref $self || $self;
84 my $new = { %{ $self->config }, %{$arguments} };
85 return bless $new, $class;
86 }
87 }
88}
89
b5ecfcf0 90# remember to leave blank lines between the consecutive =head2's
91# otherwise the pod tools don't recognize the subsequent =head2s
158c88c0 92
b5ecfcf0 93=head2 $c->config
158c88c0 94
b5ecfcf0 95=head2 $c->config($hashref)
158c88c0 96
b5ecfcf0 97=head2 $c->config($key, $value, ...)
158c88c0 98
99=cut
100
101sub config {
102 my $self = shift;
5e707396 103 my $config = $self->_config;
104 unless ($config) {
105 $self->_config( {} );
106 $config = {};
107 }
158c88c0 108 if (@_) {
5e707396 109 $config = { %{$config}, %{@_ > 1 ? {@_} : $_[0]} };
110 $self->_config($config);
158c88c0 111 }
5e707396 112 return $config;
158c88c0 113}
114
b5ecfcf0 115=head2 $c->process()
158c88c0 116
117=cut
118
119sub process {
120
121 Catalyst::Exception->throw( message => ( ref $_[0] || $_[0] )
122 . " did not override Catalyst::Component::process" );
123}
124
158c88c0 125=head1 SEE ALSO
126
e7f1cf73 127L<Catalyst>, L<Catalyst::Model>, L<Catalyst::View>, L<Catalyst::Controller>.
158c88c0 128
129=head1 AUTHOR
130
131Sebastian Riedel, C<sri@cpan.org>
132Marcus Ramberg, C<mramberg@cpan.org>
133Matt S Trout, C<mst@shadowcatsystems.co.uk>
134
135=head1 COPYRIGHT
136
137This program is free software, you can redistribute it and/or modify it under
138the same terms as Perl itself.
139
140=cut
141
1421;