X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FActionContainer.pm;h=31e36cd072155a9d91c787f8515614e094edd242;hp=63b8fc9812e561efb443188b461ed17683a675ba;hb=f3414019f472b55682ef3af53f761b6db7955887;hpb=b2ddf6d7e1ea8f9b281ce5da27ecadf3152e151d diff --git a/lib/Catalyst/ActionContainer.pm b/lib/Catalyst/ActionContainer.pm index 63b8fc9..31e36cd 100644 --- a/lib/Catalyst/ActionContainer.pm +++ b/lib/Catalyst/ActionContainer.pm @@ -1,8 +1,5 @@ package Catalyst::ActionContainer; -use strict; -use base qw/Class::Accessor::Fast/; - =head1 NAME Catalyst::ActionContainer - Catalyst Action Container @@ -18,25 +15,21 @@ to represent the various dispatch points in your application. =cut -__PACKAGE__->mk_accessors(qw/part actions/); - -use overload ( +use Class::C3; +use Moose; - # Stringify to path part for tree search - q{""} => sub { shift->{part} }, +has part => (is => 'rw', required => 1, lazy => 1, default => sub { {} }); +has actions => (is => 'rw', required => 1, lazy => 1, default => sub { {} }); -); +no Moose; sub new { - my ( $class, $fields ) = @_; - - $fields = { part => $fields, actions => {} } unless ref $fields; - - $class->SUPER::new($fields); + my ($self, $params) = @_; + $params = { part => $params } unless ref $params; + $self->next::method($params); } - sub get_action { my ( $self, $name ) = @_; return $self->actions->{$name} if defined $self->actions->{$name}; @@ -49,6 +42,8 @@ sub add_action { $self->actions->{$name} = $action; } +__PACKAGE__->meta->make_immutable; + 1; __END__ @@ -78,9 +73,13 @@ Accessor to the actions hashref, containing all actions in this container. Accessor to the path part this container resolves to. Also what the container stringifies to. +=head2 meta + +Provided by Moose + =head1 AUTHOR -Matt S. Trout +Matt S. Trout =head1 COPYRIGHT