r12983@zaphod: kd | 2008-04-28 18:10:27 +1000
[catagits/Catalyst-Runtime.git] / lib / Catalyst / AttrContainer.pm
1 package Catalyst::AttrContainer;
2
3 use Moose;
4 use Catalyst::Exception;
5 use Scalar::Util 'blessed';
6 with 'Catalyst::ClassData';
7
8 no Moose;
9
10 __PACKAGE__->mk_classdata(_attr_cache => {} );
11 __PACKAGE__->mk_classdata( _action_cache => [] );
12
13 # note - see attributes(3pm)
14 sub MODIFY_CODE_ATTRIBUTES {
15     my ( $class, $code, @attrs ) = @_;
16     $class->_attr_cache( { %{ $class->_attr_cache }, $code => [@attrs] } );
17     $class->_action_cache(
18         [ @{ $class->_action_cache }, [ $code, [@attrs] ] ] );
19     return ();
20 }
21
22 sub FETCH_CODE_ATTRIBUTES { $_[0]->_attr_cache->{ $_[1] } || () }
23
24 =head1 NAME
25
26 Catalyst::AttrContainer - Handles code attribute storage and caching
27
28 =head1 SYNOPSIS
29
30 =head1 DESCRIPTION
31
32 This class sets up the code attribute cache.  It's a base class for 
33 L<Catalyst::Controller>.
34
35 =head1 METHODS
36
37 =head2 FETCH_CODE_ATTRIBUTES
38
39 Attribute function. See attributes(3pm)
40
41 =head2 MODIFY_CODE_ATTRIBUTES
42
43 Attribute function. See attributes(3pm)
44
45 =head1 SEE ALSO
46
47 L<Catalyst::Dispatcher>
48 L<Catalyst>.
49
50 =head1 AUTHORS
51
52 Catalyst Contributors, see Catalyst.pm
53
54 =head1 COPYRIGHT
55
56 This program is free software, you can redistribute it and/or modify it under
57 the same terms as Perl itself.
58
59 =cut
60
61 1;