X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst.pm;h=f3279325d5c6d192d3fad879932fefc78f0c00e2;hb=4f6748f101647dd3344339b19510947df6836412;hp=f1aef7e167c5de95e4988f1a89a3e4d7d465c2f3;hpb=e8bf1b2d56f1855a8392c67c164f5eb06e28d2f1;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index f1aef7e..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.01'; +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; @@ -241,6 +240,28 @@ sub import { } $caller->engine($engine); $caller->log->debug(qq/Loaded engine "$engine"/) if $caller->debug; + + # 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->config->{home} = $home; + $caller->config->{root} = dir($home)->subdir('root'); } =item $c->engine @@ -258,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 @@ -307,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