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