X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=dc5259443248a86df9c4d51292cd91c81b92dbbf;hb=5070f11132a769d1468a5be045003c0f70fe8ba0;hp=8451b8d0caf741fad00004a8c833c3dbe53d02b5;hpb=dacd8b0ea87f4c6a6f8cd52360007170835093d8;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index 8451b8d..dc52594 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -22,7 +22,7 @@ use namespace::clean -except => 'meta'; # See Catalyst-Plugin-Server for them being added to, which should be much less ugly. # Preload these action types -our @PRELOAD = qw/Index Path Regex/; +our @PRELOAD = qw/Index Path/; # Postload these action types our @POSTLOAD = qw/Default/; @@ -517,7 +517,9 @@ sub register { # FIXME - Some error checking and re-throwing needed here, as # we eat exceptions loading dispatch types. eval { Class::MOP::load_class($class) }; - push( @{ $self->dispatch_types }, $class->new ) unless $@; + my $load_failed = $@; + $self->_check_depreciated_dispatch_type( $key, $load_failed ); + push( @{ $self->dispatch_types }, $class->new ) unless $load_failed; $registered->{$class} = 1; } } @@ -588,8 +590,8 @@ sub _find_or_create_namespace_node { =head2 $self->setup_actions( $class, $context ) -Loads all of the preload dispatch types, registers their actions and then -loads all of the postload dispatch types, and iterates over the tree of +Loads all of the pre-load dispatch types, registers their actions and then +loads all of the post-load dispatch types, and iterates over the tree of actions, displaying the debug information if appropriate. =cut @@ -689,6 +691,28 @@ sub dispatch_type { return undef; } +sub _check_depreciated_dispatch_type { + my ($self, $key, $load_failed) = @_; + + return unless $key =~ /^(Local)?Regexp?/; + + # TODO: Should these throw an exception rather than just warning? + if ($load_failed) { + warn( "Attempt to use deprecated $key dispatch type.\n" + . " Use Chained methods or install the standalone\n" + . " Catalyst::DispatchType::Regex if necessary.\n" ); + } elsif ( !defined $Catalyst::DispatchType::Regex::VERSION + || $Catalyst::DispatchType::Regex::VERSION <= 5.90020 ) { + # We loaded the old core version of the Regex module this will break + warn( "The $key DispatchType has been removed from Catalyst core.\n" + . " An old version of the core Catalyst::DispatchType::Regex\n" + . " has been loaded and will likely fail. Please remove\n" + . " $INC{'Catalyst::DispatchType::Regex'}\n" + . " and use Chained methods or install the standalone\n" + . " Catalyst::DispatchType::Regex if necessary.\n" ); + } +} + use Moose; # 5.70 backwards compatibility hacks.