X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst.pm;h=f3279325d5c6d192d3fad879932fefc78f0c00e2;hb=4f6748f101647dd3344339b19510947df6836412;hp=5593d624e4c4c0f0f192829744fea67f5bfa71a6;hpb=ceb7ed54f76d83d6822a8bb6c4b2f4d8cdceea5f;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 5593d62..f327932 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -4,12 +4,13 @@ use strict; use base 'Catalyst::Base'; use UNIVERSAL::require; use Catalyst::Log; -use Catalyst::Helper; use Text::ASCIITable; +use Path::Class; +our $CATALYST_SCRIPT_GEN = 3; __PACKAGE__->mk_classdata($_) for qw/dispatcher engine log/; -our $VERSION = '5.00'; +our $VERSION = '5.10'; our @ISA; =head1 NAME @@ -171,9 +172,7 @@ sub import { . "Please update your scripts by regenerating the " . "application and copying over the new scripts." ) if ( $ENV{CATALYST_SCRIPT_GEN} - && ( - $ENV{CATALYST_SCRIPT_GEN} < $Catalyst::Helper::CATALYST_SCRIPT_GEN ) - ); + && ( $ENV{CATALYST_SCRIPT_GEN} < $CATALYST_SCRIPT_GEN ) ); # Process options my @plugins; @@ -216,6 +215,19 @@ sub import { $caller->log->debug( 'Loaded plugins', $t->draw ) if ( @plugins && $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; + # Engine $engine = "Catalyst::Engine::$ENV{CATALYST_ENGINE}" if $ENV{CATALYST_ENGINE}; @@ -229,19 +241,27 @@ 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; + # Find home + my $name = $caller; + $name =~ s/\:\:/\//g; + my $path = $INC{"$name.pm"}; + my $home = file($path)->absolute->dir; + $name =~ /(\w+)$/; + my $append = $1; + my $subdir = dir($home)->subdir($append); + for ( split '/', $name ) { $home = dir($home)->parent } + if ( $home =~ /blib$/ ) { $home = dir($home)->parent } + elsif ( !-f file( $home, 'Build.PL' ) ) { $home = $subdir } + + if ( $caller->debug ) { + $home + ? ( -d $home ) + ? $caller->log->debug(qq/Found home "$home"/) + : $caller->log->debug(qq/Home "$home" doesn't exist/) + : $caller->log->debug(q/Couldn't find home/); } - $caller->dispatcher($dispatcher); - $caller->log->debug(qq/Loaded dispatcher "$dispatcher"/) if $caller->debug; - + $caller->config->{home} = $home; + $caller->config->{root} = dir($home)->subdir('root'); } =item $c->engine @@ -259,15 +279,37 @@ C object. To use your own log class: Your log class should implement the methods described in the C man page. +=item $c->plugin( $name, $class, @args ) + +Instant plugins for Catalyst. +Classdata accessor/mutator will be created, class loaded and instantiated. + + MyApp->plugin( 'prototype', 'HTML::Prototype' ); + + $c->prototype->define_javascript_functions; + +=cut + +sub plugin { + my ( $class, $name, $plugin, @args ) = @_; + $plugin->require; + my $error = $UNIVERSAL::require::ERROR; + die qq/Couldn't load instant plugin "$plugin", "$error"/ if $error; + eval { $plugin->import }; + $class->mk_classdata($name); + my $obj; + eval { $obj = $plugin->new(@args) }; + die qq/Couldn't instantiate instant plugin "$plugin", "$@"/ if $@; + $class->$name($obj); + $class->log->debug(qq/Initialized instant plugin "$plugin" as "$name"/) + if $class->debug; +} =back =head1 LIMITATIONS -FCGI and mod_perl2 support are considered experimental and may contain bugs. - -You may encounter problems accessing the built in test server on public ip -addresses on the internet, thats because of a bug in HTTP::Daemon. +mod_perl2 support are considered experimental and may contain bugs. =head1 SUPPORT @@ -280,6 +322,10 @@ Mailing-Lists: http://lists.rawmode.org/mailman/listinfo/catalyst http://lists.rawmode.org/mailman/listinfo/catalyst-dev +Web: + + http://catalyst.perl.org + =head1 SEE ALSO =over 4 @@ -304,10 +350,10 @@ Sebastian Riedel, C =head1 THANK YOU -Andy Grundman, Andrew Ford, Andrew Ruthven, Christian Hansen, +Andy Grundman, Andrew Ford, Andrew Ruthven, Autrijus Tang, Christian Hansen, Christopher Hicks, Dan Sully, Danijel Milicevic, David Naughton, -Gary Ashton Jones, Jesse Sheidlower, Johan Lindstrom, Marcus Ramberg, -Tatsuhiko Miyagawa and all the others who've helped. +Gary Ashton Jones, Jesse Sheidlower, Johan Lindstrom, Leon Brocard, +Marcus Ramberg, Tatsuhiko Miyagawa and all the others who've helped. =head1 LICENSE