X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FScriptRunner.pm;h=247ce309c7172508ce938f15fd4b53e3302ad8fa;hb=85a351e52f553c6fa5129c773863ab69e8b3f213;hp=f7e617cb2853a1ed012c2757194e2f0e0e6fba55;hpb=ab7eb5a9ca449fce425b881e5f1b82870683c80f;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/ScriptRunner.pm b/lib/Catalyst/ScriptRunner.pm index f7e617c..247ce30 100644 --- a/lib/Catalyst/ScriptRunner.pm +++ b/lib/Catalyst/ScriptRunner.pm @@ -1,15 +1,19 @@ package Catalyst::ScriptRunner; use Moose; +use FindBin; +use lib; +use File::Spec; use namespace::autoclean; sub run { my ($self, $class, $scriptclass) = @_; my $classtoload = "${class}::Script::$scriptclass"; - # FIXME - Error handling / reporting - if ( eval { Class::MOP::load_class($classtoload) } ) { - } - else { + lib->import(File::Spec->catdir($FindBin::Bin, '..', 'lib')); + + unless ( eval { Class::MOP::load_class($classtoload) } ) { + warn("Could not load $classtoload - falling back to Catalyst::Script::$scriptclass : $@\n") + if $@ !~ /Can't locate/; $classtoload = "Catalyst::Script::$scriptclass"; Class::MOP::load_class($classtoload); } @@ -20,17 +24,26 @@ __PACKAGE__->meta->make_immutable; =head1 NAME -Catalyst::ScriptRunner - The Catalyst Framework Script runner +Catalyst::ScriptRunner - The Catalyst Framework script runner =head1 SYNOPSIS -See L. + # Will run MyApp::Script::Server if it exists, otherwise + # will run Catalyst::Script::Server. + Catalyst::ScriptRunner->run('MyApp', 'Server'); =head1 DESCRIPTION This class is responsible for running scripts, either in the application specific namespace (e.g. C), or the Catalyst namespace (e.g. C) +=head1 METHODS + +=head2 run ($application_class, $scriptclass) + +Called with two parameters, the application classs (e.g. MyApp) +and the script class, (i.e. one of Server/FastCGI/CGI/Create/Test) + =head1 AUTHORS Catalyst Contributors, see Catalyst.pm