2fc924f01ae8d6f8afb7e6a3ab62b52bcdc1c5e1
[gitmo/MooseX-ClassAttribute.git] / lib / MooseX / ClassAttribute.pm
1 package MooseX::ClassAttribute;
2
3 use strict;
4 use warnings;
5
6 our $VERSION   = '0.10';
7 our $AUTHORITY = 'cpan:DROLSKY';
8
9 use Moose 0.96 ();
10 use Moose::Exporter;
11 use MooseX::ClassAttribute::Trait::Class;
12 use MooseX::ClassAttribute::Trait::Role;
13 use MooseX::ClassAttribute::Trait::Application::ToClass;
14 use MooseX::ClassAttribute::Trait::Application::ToRole;
15 use MooseX::ClassAttribute::Trait::Application::ToInstance;
16
17 Moose::Exporter->setup_import_methods( with_meta => ['class_has'] );
18
19 sub init_meta {
20     shift;
21     my %p = @_;
22
23     return Moose::Util::MetaRole::apply_metaclass_roles(
24         for             => $p{for_class},
25         class_metaroles => {
26             class => ['MooseX::ClassAttribute::Trait::Class'],
27         },
28         role_metaroles => {
29             role => ['MooseX::ClassAttribute::Trait::Role'],
30             application_to_class =>
31                 ['MooseX::ClassAttribute::Trait::Application::ToClass'],
32             application_to_role =>
33                 ['MooseX::ClassAttribute::Trait::Application::ToRole'],
34             application_to_instance => [
35                 'MooseX::ClassAttribute::Trait::Application::ToInstance'
36             ],
37         },
38     );
39 }
40
41 sub class_has {
42     my $meta    = shift;
43     my $name    = shift;
44     my %options = @_;
45
46     my $attrs = ref $name eq 'ARRAY' ? $name : [$name];
47
48     $meta->add_class_attribute( $_, %options ) for @{$attrs};
49 }
50
51 1;
52
53 __END__
54
55 =pod
56
57 =head1 NAME
58
59 MooseX::ClassAttribute - Declare class attributes Moose-style
60
61 =head1 SYNOPSIS
62
63     package My::Class;
64
65     use Moose;
66     use MooseX::ClassAttribute;
67
68     class_has 'Cache' =>
69         ( is      => 'rw',
70           isa     => 'HashRef',
71           default => sub { {} },
72         );
73
74     __PACKAGE__->meta()->make_immutable();
75
76     no Moose;
77     no MooseX::ClassAttribute;
78
79     # then later ...
80
81     My::Class->Cache()->{thing} = ...;
82
83 =head1 DESCRIPTION
84
85 This module allows you to declare class attributes in exactly the same
86 way as object attributes, using C<class_has()> instead of C<has()>.
87
88 You can use any feature of Moose's attribute declarations, including
89 overriding a parent's attributes, delegation (C<handles>), and
90 attribute metaclasses, and it should just work. The one exception is
91 the "required" flag, which is not allowed for class attributes.
92
93 The accessor methods for class attribute may be called on the class
94 directly, or on objects of that class. Passing a class attribute to
95 the constructor will not set it.
96
97 =head1 FUNCTIONS
98
99 This class exports one function when you use it, C<class_has()>. This
100 works exactly like Moose's C<has()>, but it declares class attributes.
101
102 One little nit is that if you include C<no Moose> in your class, you
103 won't remove the C<class_has()> function. To do that you must include
104 C<no MooseX::ClassAttribute> as well.
105
106 =head2 Implementation and Immutability
107
108 This module will add a role to your class's metaclass, See
109 L<MooseX::ClassAttribute::Trait::Class> for details. This role
110 provides introspection methods for class attributes.
111
112 Class attributes themselves do the
113 L<MooseX::ClassAttribute::Trait::Attribute> role.
114
115 There is also a L<MooseX::ClassAttribute::Meta::Method::Accessor>
116 which provides part of the inlining implementation for class
117 attributes.
118
119 =head2 Cooperation with Metaclasses and Traits
120
121 This module should work with most attribute metaclasses and traits,
122 but it's possible that conflicts could occur. This module has been
123 tested to work with C<MooseX::AttributeHelpers>.
124
125 =head1 DONATIONS
126
127 If you'd like to thank me for the work I've done on this module,
128 please consider making a "donation" to me via PayPal. I spend a lot of
129 free time creating free software, and would appreciate any support
130 you'd care to offer.
131
132 Please note that B<I am not suggesting that you must do this> in order
133 for me to continue working on this particular software. I will
134 continue to do so, inasmuch as I have in the past, for as long as it
135 interests me.
136
137 Similarly, a donation made in this way will probably not make me work
138 on this software much more, unless I get so many donations that I can
139 consider working on free software full time, which seems unlikely at
140 best.
141
142 To donate, log into PayPal and send money to autarch@urth.org or use
143 the button on this page:
144 L<http://www.urth.org/~autarch/fs-donation.html>
145
146 =head1 AUTHOR
147
148 Dave Rolsky, C<< <autarch@urth.org> >>
149
150 =head1 BUGS
151
152 Please report any bugs or feature requests to
153 C<bug-moosex-classattribute@rt.cpan.org>, or through the web interface
154 at L<http://rt.cpan.org>.  I will be notified, and then you'll
155 automatically be notified of progress on your bug as I make changes.
156
157 =head1 COPYRIGHT & LICENSE
158
159 Copyright 2007-2008 Dave Rolsky, All Rights Reserved.
160
161 This program is free software; you can redistribute it and/or modify
162 it under the same terms as Perl itself.
163
164 =cut