X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FUtils.pm;h=fd23d9504e0aea2de046aca14e1c1307986f33ed;hb=59ede84ed03cb297507bbb89058479040969c6f8;hp=60f270864589f72494179732dfa2440f106940bd;hpb=cb69249ef4c0f2c88ec4361b46be37d473402153;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Utils.pm b/lib/Catalyst/Utils.pm index 60f2708..fd23d95 100644 --- a/lib/Catalyst/Utils.pm +++ b/lib/Catalyst/Utils.pm @@ -23,7 +23,7 @@ See L. =head2 appprefix($class) - MyApp::Foo becomes myapp_foo + MyApp::Foo becomes myapp_foo =cut @@ -233,10 +233,15 @@ 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 { @@ -246,6 +251,12 @@ sub ensure_class_loaded { 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 @@ -253,7 +264,7 @@ sub ensure_class_loaded { my $error; { local $@; - eval "require $class"; + eval "require $class;"; $error = $@; }