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=e8f71fe3dcdfd053130cf642165c7fefbe4b95ce;hp=63b8fc9812e561efb443188b461ed17683a675ba;hb=536bee890cf24e0e4bcda7562e7b70cc03ca0620;hpb=b2ddf6d7e1ea8f9b281ce5da27ecadf3152e151d diff --git a/lib/Catalyst/ActionContainer.pm b/lib/Catalyst/ActionContainer.pm index 63b8fc9..e8f71fe 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,24 +15,24 @@ to represent the various dispatch points in your application. =cut -__PACKAGE__->mk_accessors(qw/part actions/); - -use overload ( - - # Stringify to path part for tree search - q{""} => sub { shift->{part} }, - -); +use Moose; +with 'MooseX::Emulate::Class::Accessor::Fast'; -sub new { - my ( $class, $fields ) = @_; +has part => (is => 'rw', required => 1); +has actions => (is => 'rw', required => 1, lazy => 1, default => sub { {} }); - $fields = { part => $fields, actions => {} } unless ref $fields; - - $class->SUPER::new($fields); -} +around BUILDARGS => sub { + my ($next, $self, @args) = @_; + unshift @args, 'part' if scalar @args == 1 && !ref $args[0]; + return $self->$next(@args); +}; +no Moose; +use overload ( + # Stringify to path part for tree search + q{""} => sub { shift->part }, +); sub get_action { my ( $self, $name ) = @_; @@ -49,6 +46,8 @@ sub add_action { $self->actions->{$name} = $action; } +__PACKAGE__->meta->make_immutable; + 1; __END__ @@ -78,13 +77,17 @@ 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. -=head1 AUTHOR +=head2 meta + +Provided by Moose + +=head1 AUTHORS -Matt S. Trout +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT -This program is free software, you can redistribute it and/or modify it under +This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut