X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=f1ccb80c76575623ad79ea875a5658e1cc145080;hb=9e81ba44fc01c668e27370aa3eb0d476316ba589;hp=5e1f9ae38a5811730269f4b2484490705752c413;hpb=76ddf86be66ed259d24226618a1d357e6f606fa1;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index 5e1f9ae..f1ccb80 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -19,7 +19,7 @@ __PACKAGE__->mk_accessors( qw/tree dispatch_types registered_dispatch_types method_action_class action_container_class preload_dispatch_types postload_dispatch_types - / + / ); # Preload these action types @@ -50,15 +50,15 @@ Construct a new dispatcher. =cut sub new { - my $self = shift; + my $self = shift; my $class = ref($self) || $self; - - my $obj = $class->SUPER::new( @_ ); - + + my $obj = $class->SUPER::new(@_); + # set the default pre- and and postloads - $obj->preload_dispatch_types( \@PRELOAD ); + $obj->preload_dispatch_types( \@PRELOAD ); $obj->postload_dispatch_types( \@POSTLOAD ); - return $obj; + return $obj; } =head2 $self->preload_dispatch_types @@ -416,17 +416,11 @@ sub setup_actions { $self->method_action_class('Catalyst::Action'); $self->action_container_class('Catalyst::ActionContainer'); - # Preload action types - for my $type ( @{$self->preload_dispatch_types} ) { - my $class = ($type =~ /^\+(.*)$/) ? $1 : "Catalyst::DispatchType::${type}"; - eval "require $class"; - Catalyst::Exception->throw( message => qq/Couldn't load "$class"/ ) - if $@; - push @{ $self->dispatch_types }, $class->new; - $self->registered_dispatch_types->{$class} = 1; - } + my @classes = + $self->do_load_dispatch_types( @{ $self->preload_dispatch_types } ); + @{ $self->registered_dispatch_types }{@classes} = (1) x @classes; - # We use a tree + # Create the root node of the tree my $container = Catalyst::ActionContainer->new( { part => '/', actions => {} } ); $self->tree( Tree::Simple->new( $container, Tree::Simple->ROOT ) ); @@ -435,14 +429,7 @@ sub setup_actions { $comp->register_actions($c) if $comp->can('register_actions'); } - # Postload action types - for my $type ( @{$self->postload_dispatch_types} ) { - my $class = ($type =~ /^\+(.*)$/) ? $1 : "Catalyst::DispatchType::${type}"; - eval "require $class"; - Catalyst::Exception->throw( message => qq/Couldn't load "$class"/ ) - if $@; - push @{ $self->dispatch_types }, $class->new; - } + $self->do_load_dispatch_types( @{ $self->postload_dispatch_types } ); return unless $c->debug; @@ -479,6 +466,26 @@ sub setup_actions { $_->list($c) for @{ $self->dispatch_types }; } +sub do_load_dispatch_types { + my ( $self, @types ) = @_; + + my @loaded; + + # Preload action types + for my $type (@types) { + my $class = + ( $type =~ /^\+(.*)$/ ) ? $1 : "Catalyst::DispatchType::${type}"; + eval "require $class"; + Catalyst::Exception->throw( message => qq/Couldn't load "$class"/ ) + if $@; + push @{ $self->dispatch_types }, $class->new; + + push @loaded, $class; + } + + return @loaded; +} + =head1 AUTHOR Sebastian Riedel, C