X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FUtils.pm;h=9fd9c324242ec021d35f7c0219128306448f0a53;hb=64b2a0de8e2d92d0ea90b6757e95497174f97339;hp=456497f89404ccee0461e1aa7c4090c4e2e4f199;hpb=0ef447d8c6880fa4dda2648aa19a005245ef036a;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Utils.pm b/lib/Catalyst/Utils.pm index 456497f..9fd9c32 100644 --- a/lib/Catalyst/Utils.pm +++ b/lib/Catalyst/Utils.pm @@ -6,7 +6,8 @@ use File::Spec; use HTTP::Request; use Path::Class; use URI; -use Class::Inspector; +use Carp qw/croak/; +use Cwd; =head1 NAME @@ -22,7 +23,7 @@ See L. =head2 appprefix($class) - MyApp::Foo becomes myapp_foo + MyApp::Foo becomes myapp_foo =cut @@ -159,6 +160,7 @@ sub home { # find the @INC entry in which $file was found (my $path = $inc_entry) =~ s/$file$//; + $path ||= cwd() if !defined $path || !length $path; my $home = dir($path)->absolute->cleanup; # pop off /lib and /blib if they're there @@ -170,8 +172,9 @@ sub home { # clean up relative path: # MyApp/script/.. -> MyApp - my ($lastdir) = $home->dir_list( -1, 1 ); - if ( $lastdir eq '..' ) { + my $dir; + my @dir_list = $home->dir_list(); + while (($dir = pop(@dir_list)) && $dir eq '..') { $home = dir($home)->parent->parent; } @@ -220,10 +223,10 @@ sub request { my $request = shift; unless ( ref $request ) { if ( $request =~ m/^http/i ) { - $request = URI->new($request)->canonical; + $request = URI->new($request); } else { - $request = URI->new( 'http://localhost' . $request )->canonical; + $request = URI->new( 'http://localhost' . $request ); } } unless ( ref $request eq 'HTTP::Request' ) { @@ -232,30 +235,49 @@ sub request { return $request; } -=head2 ensure_class_loaded($class_name) +=head2 ensure_class_loaded($class_name, \%opts) Loads the class unless it already has been loaded. +If $opts{ignore_loaded} is true always tries the require whether the package +already exists or not. Only pass this if you're either (a) sure you know the +file exists on disk or (b) have code to catch the file not found exception +that will result if it doesn't. + =cut sub ensure_class_loaded { my $class = shift; my $opts = shift; + croak "Malformed class Name $class" + if $class =~ m/(?:\b\:\b|\:{3,})/; + + croak "Malformed class Name $class" + if $class =~ m/[^\w:]/; + + croak "ensure_class_loaded should be given a classname, not a filename ($class)" + if $class =~ m/\.pm$/; + return if !$opts->{ ignore_loaded } - && Class::Inspector->loaded( $class ); # if a symbol entry exists we don't load again + && Class::MOP::is_class_loaded($class); # if a symbol entry exists we don't load again + + # as soon as Class::MOP 0.67 + 1 is released Class::MOP::load_class($class) can be used instead # this hack is so we don't overwrite $@ if the load did not generate an error my $error; { local $@; - eval "require $class"; + my $file = $class . '.pm'; + $file =~ s{::}{/}g; + eval { CORE::require($file) }; $error = $@; } die $error if $error; + die "require $class was successful but the package is not defined" - unless Class::Inspector->loaded($class); + unless Class::MOP::is_class_loaded($class); return 1; } @@ -288,11 +310,32 @@ sub merge_hashes { return \%merged; } +=head2 env_value($class, $key) + +Checks for and returns an environment value. For instance, if $key is +'home', then this method will check for and return the first value it finds, +looking at $ENV{MYAPP_HOME} and $ENV{CATALYST_HOME}. + +=cut + +sub env_value { + my ( $class, $key ) = @_; + + $key = uc($key); + my @prefixes = ( class2env($class), 'CATALYST' ); + + for my $prefix (@prefixes) { + if ( defined( my $value = $ENV{"${prefix}_${key}"} ) ) { + return $value; + } + } + + return; +} -=head1 AUTHOR +=head1 AUTHORS -Sebastian Riedel, C -Yuval Kogman, C +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT