Reformatted documentation
[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
7__PACKAGE__->mk_classdata($_) for qw/_config/;
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
b5ecfcf0 65# remember to leave blank lines between the consecutive =head2's
66# otherwise the pod tools don't recognize the subsequent =head2s
158c88c0 67
b5ecfcf0 68=head2 $c->config
158c88c0 69
b5ecfcf0 70=head2 $c->config($hashref)
158c88c0 71
b5ecfcf0 72=head2 $c->config($key, $value, ...)
158c88c0 73
74=cut
75
76sub config {
77 my $self = shift;
78 $self->_config( {} ) unless $self->_config;
79 if (@_) {
80 my $config = @_ > 1 ? {@_} : $_[0];
81 while ( my ( $key, $val ) = each %$config ) {
82 $self->_config->{$key} = $val;
83 }
84 }
85 return $self->_config;
86}
87
b5ecfcf0 88=head2 $c->process()
158c88c0 89
90=cut
91
92sub process {
93
94 Catalyst::Exception->throw( message => ( ref $_[0] || $_[0] )
95 . " did not override Catalyst::Component::process" );
96}
97
158c88c0 98=head1 SEE ALSO
99
e7f1cf73 100L<Catalyst>, L<Catalyst::Model>, L<Catalyst::View>, L<Catalyst::Controller>.
158c88c0 101
102=head1 AUTHOR
103
104Sebastian Riedel, C<sri@cpan.org>
105Marcus Ramberg, C<mramberg@cpan.org>
106Matt S Trout, C<mst@shadowcatsystems.co.uk>
107
108=head1 COPYRIGHT
109
110This program is free software, you can redistribute it and/or modify it under
111the same terms as Perl itself.
112
113=cut
114
1151;