another one
[catagits/Catalyst-Runtime.git] / lib / Catalyst.pm
CommitLineData
fc7ec1d9 1package Catalyst;
2
3use strict;
ac733264 4use base 'Catalyst::Base';
fc7ec1d9 5use UNIVERSAL::require;
6use Catalyst::Log;
7
ac733264 8__PACKAGE__->mk_classdata($_) for qw/engine log/;
fc7ec1d9 9
87e67021 10our $VERSION = '5.00';
fc7ec1d9 11our @ISA;
12
13=head1 NAME
14
15Catalyst - The Elegant MVC Web Application Framework
16
17=head1 SYNOPSIS
18
19 # use the helper to start a new application
91864987 20 catalyst.pl MyApp
fc7ec1d9 21 cd MyApp
22
23 # add models, views, controllers
d01df17d 24 script/create.pl model Something
25 script/create.pl view Stuff
26 script/create.pl controller Yada
fc7ec1d9 27
28 # built in testserver
d01df17d 29 script/server.pl
fc7ec1d9 30
31 # command line interface
d01df17d 32 script/test.pl /yada
fc7ec1d9 33
34
fc7ec1d9 35 use Catalyst;
36
37 use Catalyst qw/My::Module My::OtherModule/;
38
39 use Catalyst '-Debug';
40
41 use Catalyst qw/-Debug -Engine=CGI/;
42
5a8ed4fe 43 sub default : Private { $_[1]->res->output('Hello') } );
44
e3dc9d78 45 sub index : Path('/index.html') {
5a8ed4fe 46 my ( $self, $c ) = @_;
47 $c->res->output('Hello');
48 $c->forward('_foo');
49 }
50
51 sub product : Regex('/^product[_]*(\d*).html$/') {
52 my ( $self, $c ) = @_;
53 $c->stash->{template} = 'product.tt';
54 $c->stash->{product} = $c->req->snippets->[0];
55 }
fc7ec1d9 56
3803e98f 57See also L<Catalyst::Manual::Intro>
58
fc7ec1d9 59=head1 DESCRIPTION
60
61Catalyst is based upon L<Maypole>, which you should consider for smaller
62projects.
63
64The key concept of Catalyst is DRY (Don't Repeat Yourself).
65
66See L<Catalyst::Manual> for more documentation.
67
23f9d934 68Catalyst plugins can be loaded by naming them as arguments to the "use Catalyst" statement.
1985c30b 69Omit the C<Catalyst::Plugin::> prefix from the plugin name,
23f9d934 70so C<Catalyst::Plugin::My::Module> becomes C<My::Module>.
fc7ec1d9 71
72 use Catalyst 'My::Module';
73
23f9d934 74Special flags like -Debug and -Engine can also be specifed as arguments when
75Catalyst is loaded:
fc7ec1d9 76
77 use Catalyst qw/-Debug My::Module/;
78
23f9d934 79The position of plugins and flags in the chain is important, because they are
80loaded in exactly the order that they appear.
fc7ec1d9 81
23f9d934 82The following flags are supported:
83
84=over 4
85
86=item -Debug
87
88enables debug output, i.e.:
fc7ec1d9 89
90 use Catalyst '-Debug';
91
23f9d934 92this is equivalent to:
fc7ec1d9 93
94 use Catalyst;
95 sub debug { 1 }
96
23f9d934 97=item -Engine
fc7ec1d9 98
99Force Catalyst to use a specific engine.
23f9d934 100Omit the C<Catalyst::Engine::> prefix of the engine name, i.e.:
fc7ec1d9 101
102 use Catalyst '-Engine=CGI';
103
23f9d934 104=back
fc7ec1d9 105
23f9d934 106=head1 METHODS
107
108=over 4
109
110=item debug
fc7ec1d9 111
112Overload to enable debug messages.
113
114=cut
115
116sub debug { 0 }
117
23f9d934 118=item config
fc7ec1d9 119
120Returns a hashref containing your applications settings.
121
122=cut
123
fc7ec1d9 124sub import {
125 my ( $self, @options ) = @_;
126 my $caller = caller(0);
127
22402712 128 unless ( $caller->isa($self) ) {
fc7ec1d9 129 no strict 'refs';
22402712 130 push @{"$caller\::ISA"}, $self;
1c99e125 131 }
132
d96e14c2 133 if ( $caller->engine ) {
ac733264 134 return; # Catalyst is allready initialized
d96e14c2 135 }
136
32620e3e 137 unless ( $caller->log ) {
138 $caller->log( Catalyst::Log->new );
fc7ec1d9 139 }
fc7ec1d9 140
1985c30b 141 if ( $ENV{CATALYST_DEBUG} || $ENV{ uc($caller) . '_DEBUG' } ) {
142 no strict 'refs';
143 *{"$caller\::debug"} = sub { 1 };
144 $caller->log->debug('Debug messages enabled');
145 }
146
fc7ec1d9 147 # Options
ac733264 148 my $engine =
149 $ENV{MOD_PERL}
1985c30b 150 ? 'Catalyst::Engine::Apache'
151 : 'Catalyst::Engine::CGI';
152
937fcdd8 153 my @plugins;
fc7ec1d9 154 foreach (@options) {
155 if (/^\-Debug$/) {
1985c30b 156 next if $caller->debug;
fc7ec1d9 157 no strict 'refs';
1c99e125 158 *{"$caller\::debug"} = sub { 1 };
fc7ec1d9 159 $caller->log->debug('Debug messages enabled');
160 }
161 elsif (/^-Engine=(.*)$/) { $engine = "Catalyst::Engine::$1" }
162 elsif (/^-.*$/) { $caller->log->error(qq/Unknown flag "$_"/) }
163 else {
164 my $plugin = "Catalyst::Plugin::$_";
165
166 # Plugin caller should be our application class
167 eval "package $caller; require $plugin";
168 if ($@) {
169 $caller->log->error(qq/Couldn't load plugin "$plugin", "$@"/);
170 }
171 else {
937fcdd8 172 push @plugins, " $plugin";
502619e5 173 no strict 'refs';
174 push @{"$caller\::ISA"}, $plugin;
fc7ec1d9 175 }
176 }
177 }
937fcdd8 178 $caller->log->debug( 'Loaded plugins', @plugins )
179 if ( @plugins && $caller->debug );
fc7ec1d9 180
181 # Engine
182 $engine = "Catalyst::Engine::$ENV{CATALYST_ENGINE}"
183 if $ENV{CATALYST_ENGINE};
d96e14c2 184
fc7ec1d9 185 $engine->require;
186 die qq/Couldn't load engine "$engine", "$@"/ if $@;
502619e5 187 {
188 no strict 'refs';
970cc51d 189 push @{"$caller\::ISA"}, $engine;
502619e5 190 }
70cb38f0 191 $caller->engine($engine);
fc7ec1d9 192 $caller->log->debug(qq/Loaded engine "$engine"/) if $caller->debug;
193}
194
70cb38f0 195=item $c->engine
196
197Contains the engine class.
198
145074c2 199=item $c->log
200
201Contains the logging object. Unless it is already set Catalyst sets this up with a
202C<Catalyst::Log> object. To use your own log class:
203
204 $c->log( MyLogger->new );
205 $c->log->info("now logging with my own logger!");
206
207Your log class should implement the methods described in the C<Catalyst::Log>
208man page.
209
210
23f9d934 211=back
212
3cb1db8c 213=head1 SUPPORT
214
215IRC:
216
217 Join #catalyst on irc.perl.org.
218
219Mailing-Lists:
220
221 http://lists.rawmode.org/mailman/listinfo/catalyst
222 http://lists.rawmode.org/mailman/listinfo/catalyst-dev
1985c30b 223
fc7ec1d9 224=head1 SEE ALSO
225
226L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
227L<Catalyst::Response>, L<Catalyst::Engine>
228
229=head1 AUTHOR
230
231Sebastian Riedel, C<sri@oook.de>
232
233=head1 THANK YOU
234
bc024080 235Andrew Ford, Andrew Ruthven, Christian Hansen, Christopher Hicks,
b0b7c5e0 236Dan Sully, Danijel Milicevic, David Naughton, Gary Ashton Jones,
237Jesse Sheidlower, Johan Lindstrom, Marcus Ramberg, Tatsuhiko Miyagawa
238and all the others who've helped.
fc7ec1d9 239
240=head1 LICENSE
241
242This library is free software . You can redistribute it and/or modify it under
243the same terms as perl itself.
244
245=cut
246
2471;