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