Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Catalyst / ActionContainer.pm
CommitLineData
3fea05b9 1package Catalyst::ActionContainer;
2
3=head1 NAME
4
5Catalyst::ActionContainer - Catalyst Action Container
6
7=head1 SYNOPSIS
8
9See L<Catalyst>.
10
11=head1 DESCRIPTION
12
13This is a container for actions. The dispatcher sets up a tree of these
14to represent the various dispatch points in your application.
15
16=cut
17
18use Moose;
19with 'MooseX::Emulate::Class::Accessor::Fast';
20
21has part => (is => 'rw', required => 1);
22has actions => (is => 'rw', required => 1, lazy => 1, default => sub { {} });
23
24around BUILDARGS => sub {
25 my ($next, $self, @args) = @_;
26 unshift @args, 'part' if scalar @args == 1 && !ref $args[0];
27 return $self->$next(@args);
28};
29
30no Moose;
31
32use overload (
33 # Stringify to path part for tree search
34 q{""} => sub { shift->part },
35);
36
37sub get_action {
38 my ( $self, $name ) = @_;
39 return $self->actions->{$name} if defined $self->actions->{$name};
40 return;
41}
42
43sub add_action {
44 my ( $self, $action, $name ) = @_;
45 $name ||= $action->name;
46 $self->actions->{$name} = $action;
47}
48
49__PACKAGE__->meta->make_immutable;
50
511;
52
53__END__
54
55=head1 METHODS
56
57=head2 new(\%data | $part)
58
59Can be called with { part => $part, actions => \%actions } for full
60construction or with just a part, which will result in an empty actions
61hashref to be populated via add_action later
62
63=head2 get_action($name)
64
65Returns an action from this container based on the action name, or undef
66
67=head2 add_action($action, [ $name ])
68
69Adds an action, optionally providing a name to override $action->name
70
71=head2 actions
72
73Accessor to the actions hashref, containing all actions in this container.
74
75=head2 part
76
77Accessor to the path part this container resolves to. Also what the container
78stringifies to.
79
80=head2 meta
81
82Provided by Moose
83
84=head1 AUTHORS
85
86Catalyst Contributors, see Catalyst.pm
87
88=head1 COPYRIGHT
89
90This library is free software. You can redistribute it and/or modify it under
91the same terms as Perl itself.
92
93=cut
94
951;