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=6e01e231058bda4ae88736abce959bd07d8602f6;hb=f3414019f472b55682ef3af53f761b6db7955887;hpb=bcd1002b0ed8c8fe6dbfdc94417be0fe8cd52832 diff --git a/lib/Catalyst/ActionContainer.pm b/lib/Catalyst/ActionContainer.pm index 6e01e23..31e36cd 100644 --- a/lib/Catalyst/ActionContainer.pm +++ b/lib/Catalyst/ActionContainer.pm @@ -1,17 +1,5 @@ package Catalyst::ActionContainer; -use strict; -use base qw/Class::Accessor::Fast/; - -__PACKAGE__->mk_accessors(qw/part actions/); - -use overload ( - - # Stringify to path part for tree search - q{""} => sub { shift->{part} }, - -); - =head1 NAME Catalyst::ActionContainer - Catalyst Action Container @@ -22,13 +10,25 @@ See L. =head1 DESCRIPTION -=head1 METHODS +This is a container for actions. The dispatcher sets up a tree of these +to represent the various dispatch points in your application. -=over 4 +=cut -=item get_action +use Class::C3; +use Moose; + +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 ($self, $params) = @_; + $params = { part => $params } unless ref $params; + $self->next::method($params); +} -=cut sub get_action { my ( $self, $name ) = @_; @@ -36,11 +36,46 @@ sub get_action { return; } -=item actions +sub add_action { + my ( $self, $action, $name ) = @_; + $name ||= $action->name; + $self->actions->{$name} = $action; +} + +__PACKAGE__->meta->make_immutable; + +1; + +__END__ + +=head1 METHODS + +=head2 new(\%data | $part) + +Can be called with { part => $part, actions => \%actions } for full +construction or with just a part, which will result in an empty actions +hashref to be populated via add_action later + +=head2 get_action($name) + +Returns an action from this container based on the action name, or undef + +=head2 add_action($action, [ $name ]) + +Adds an action, optionally providing a name to override $action->name + +=head2 actions + +Accessor to the actions hashref, containing all actions in this container. + +=head2 part + +Accessor to the path part this container resolves to. Also what the container +stringifies to. -=item part +=head2 meta -=back +Provided by Moose =head1 AUTHOR