X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst.pm;h=b9cdcb44836d251e79fc032c81ef011cda48f98a;hb=424b2705f759cef65acfaf8ea0f43e6bef75b534;hp=90d158af0d91d153a8bb5af8d6e7deada777bc50;hpb=32e4cad6b4d17819d58bf80f4ef473231d70df7b;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 90d158a..b9cdcb4 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -4,8 +4,10 @@ use strict; use base 'Catalyst::Base'; use UNIVERSAL::require; use Catalyst::Log; +use Text::ASCIITable; +use Text::ASCIITable::Wrap 'wrap'; -__PACKAGE__->mk_classdata($_) for qw/engine log/; +__PACKAGE__->mk_classdata($_) for qw/dispatcher engine log/; our $VERSION = '5.00'; our @ISA; @@ -144,11 +146,20 @@ sub import { $caller->log->debug('Debug messages enabled'); } - # Options - my $engine = - $ENV{MOD_PERL} - ? 'Catalyst::Engine::Apache' - : 'Catalyst::Engine::CGI'; + my $engine = 'Catalyst::Engine::CGI'; + my $dispatcher = 'Catalyst::Dispatcher'; + + if ( $ENV{MOD_PERL} ) { + + require mod_perl; + + if ( $mod_perl::VERSION >= 1.99 ) { + $engine = 'Catalyst::Engine::Apache::MP2'; + } + else { + $engine = 'Catalyst::Engine::Apache::MP1'; + } + } my @plugins; foreach (@options) { @@ -158,24 +169,31 @@ sub import { *{"$caller\::debug"} = sub { 1 }; $caller->log->debug('Debug messages enabled'); } + elsif (/^-Dispatcher=(.*)$/) { + $dispatcher = "Catalyst::Dispatcher::$1"; + } elsif (/^-Engine=(.*)$/) { $engine = "Catalyst::Engine::$1" } elsif (/^-.*$/) { $caller->log->error(qq/Unknown flag "$_"/) } else { my $plugin = "Catalyst::Plugin::$_"; - # Plugin caller should be our application class - eval "package $caller; require $plugin"; + $plugin->require; + if ($@) { $caller->log->error(qq/Couldn't load plugin "$plugin", "$@"/); } else { - push @plugins, " $plugin"; + push @plugins, $plugin; no strict 'refs'; push @{"$caller\::ISA"}, $plugin; } } } - $caller->log->debug( 'Loaded plugins', @plugins ) + my $t = Text::ASCIITable->new( { hide_HeadRow => 1, hide_HeadLine => 1 } ); + $t->setCols('Class'); + $t->setColWidth( 'Class', 75, 1 ); + $t->addRow( wrap( $_, 75 ) ) for @plugins; + $caller->log->debug( 'Loaded plugins', $t->draw ) if ( @plugins && $caller->debug ); # Engine @@ -190,6 +208,20 @@ sub import { } $caller->engine($engine); $caller->log->debug(qq/Loaded engine "$engine"/) if $caller->debug; + + # Dispatcher + $dispatcher = "Catalyst::Dispatcher::$ENV{CATALYST_DISPATCHER}" + if $ENV{CATALYST_DISPATCHER}; + + $dispatcher->require; + die qq/Couldn't load dispatcher "$dispatcher", "$@"/ if $@; + { + no strict 'refs'; + push @{"$caller\::ISA"}, $dispatcher; + } + $caller->dispatcher($dispatcher); + $caller->log->debug(qq/Loaded dispatcher "$dispatcher"/) if $caller->debug; + } =item $c->engine @@ -223,8 +255,21 @@ Mailing-Lists: =head1 SEE ALSO -L, L, L, -L, L +=over 4 + +=item L - The Catalyst Manual + +=item L - Core Engine + +=item L - The Log Class. + +=item L - The Request Object + +=item L - The Response Object + +=item L - The test suite. + +=back =head1 AUTHOR