X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=cc40dc1f20a8c60309803472644c8b48cb945f5e;hb=15e9b5ddb1d1368677b9dfd59ec5625d9b3459e1;hp=e74a49d2e56d1b6dbdb1f6fe3ccdabd10031b466;hpb=4ab87e274ac0a05f98c10a4cdba467ba4398b0d3;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index e74a49d..cc40dc1 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 @@ -43,22 +43,22 @@ application based on the attributes you set. =head1 METHODS -=item new +=head2 new 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 @@ -372,8 +372,17 @@ sub register { return unless $reg + $priv; my $namespace = $action->namespace; - my $parent = $self->tree; - my $visitor = Tree::Simple::Visitor::FindByPath->new; + my $node = $self->find_or_create_namespace_node( $namespace ); + + # Set the method value + $node->getNodeValue->actions->{ $action->name } = $action; +} + +sub find_or_create_namespace_node { + my ( $self, $namespace, $parent, $visitor ) = @_; + + $parent ||= $self->tree; + $visitor ||= Tree::Simple::Visitor::FindByPath->new; if ($namespace) { for my $part ( split '/', $namespace ) { @@ -399,8 +408,7 @@ sub register { } } - # Set the method value - $parent->getNodeValue->actions->{ $action->name } = $action; + return $parent; } =head2 $self->setup_actions( $class, $context ) @@ -416,17 +424,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 +437,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 +474,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