X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FUtils.pm;h=1a0dd41df0dc0b6b40d07cef7323f53afd246bbb;hb=0fcf9a5122c7b09cc534e82e4862049a8f94adb7;hp=cc3f32629431846c69154167d0c95b50bbb817c7;hpb=b39b4848e504f57e74c06ea46059aa56351c2a11;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Utils.pm b/lib/Catalyst/Utils.pm index cc3f326..1a0dd41 100644 --- a/lib/Catalyst/Utils.pm +++ b/lib/Catalyst/Utils.pm @@ -1,14 +1,13 @@ package Catalyst::Utils; use strict; -use Catalyst::Exception; use File::Spec; use HTTP::Request; use Path::Class; use URI; use Carp qw/croak/; use Cwd; - +use Class::MOP; use String::RewritePrefix; use namespace::clean; @@ -85,6 +84,20 @@ sub class2classsuffix { return $class; } +=head2 class2classshortsuffix($class) + + MyApp::Controller::Foo::Bar becomes Foo::Bar + +=cut + +sub class2classshortsuffix { + my $class = shift || ''; + my $prefix = class2classprefix($class) || ''; + $class =~ s/$prefix\:://; + return $class; +} + + =head2 class2env($class); Returns the environment name for class. @@ -124,7 +137,7 @@ sub class2prefix { Returns a tempdir for a class. If create is true it will try to create the path. My::App becomes /tmp/my/app - My::App::C::Foo::Bar becomes /tmp/my/app/c/foo/bar + My::App::Controller::Foo::Bar becomes /tmp/my/app/c/foo/bar =cut @@ -140,6 +153,13 @@ sub class2tempdir { eval { $tmpdir->mkpath }; if ($@) { + # don't load Catalyst::Exception as a BEGIN in Utils, + # because Utils often gets loaded before MyApp.pm, and if + # Catalyst::Exception is loaded before MyApp.pm, it does + # not honor setting + # $Catalyst::Exception::CATALYST_EXCEPTION_CLASS in + # MyApp.pm + require Catalyst::Exception; Catalyst::Exception->throw( message => qq/Couldn't create tmpdir '$tmpdir', "$@"/ ); }