the repository now lives at https://github.com/moose/MooseX-ClassAttributes
[gitmo/MooseX-ClassAttribute.git] / lib / MooseX / ClassAttribute / Trait / Role.pm
CommitLineData
63fcc508 1package MooseX::ClassAttribute::Trait::Role;
88b7f2c8 2
3use strict;
4use warnings;
5
6use MooseX::ClassAttribute::Meta::Role::Attribute;
7use Scalar::Util qw( blessed );
8
9use namespace::autoclean;
10use Moose::Role;
11
63fcc508 12with 'MooseX::ClassAttribute::Trait::Mixin::HasClassAttributes';
88b7f2c8 13
14around add_class_attribute => sub {
15 my $orig = shift;
16 my $self = shift;
17 my $attr = (
18 blessed $_[0] && $_[0]->isa('Class::MOP::Mixin::AttributeCore')
19 ? $_[0]
20 : MooseX::ClassAttribute::Meta::Role::Attribute->new(@_)
21 );
22
23 $self->$orig($attr);
24
25 return $attr;
26};
27
28sub _attach_class_attribute {
29 my ( $self, $attribute ) = @_;
30
31 $attribute->attach_to_role($self);
32}
33
5c352315 34sub composition_class_roles {
3f4cecde 35 return 'MooseX::ClassAttribute::Trait::Role::Composite';
5c352315 36}
37
88b7f2c8 381;
39
0d0bf8c3 40# ABSTRACT: A trait for roles with class attributes
41
88b7f2c8 42__END__
43
44=pod
45
88b7f2c8 46=head1 SYNOPSIS
47
48 for my $attr ( HasClassAttributes->meta()->get_all_class_attributes() )
49 {
50 print $attr->name();
51 }
52
53=head1 DESCRIPTION
54
04b89789 55This role adds awareness of class attributes to a role metaclass object. It
56provides a set of introspection methods that largely parallel the existing
57attribute methods, except they operate on class attributes.
88b7f2c8 58
59=head1 METHODS
60
61Every method provided by this role has an analogous method in
62C<Class::MOP::Class> or C<Moose::Meta::Class> for regular attributes.
63
64=head2 $meta->has_class_attribute($name)
65
66=head2 $meta->get_class_attribute($name)
67
68=head2 $meta->get_class_attribute_list()
69
04b89789 70These methods are exactly like their counterparts in
71L<MooseX::ClassAttribute::Trait::Class>.
88b7f2c8 72
73=head2 $meta->add_class_attribute(...)
74
75This accepts the same options as the L<Moose::Meta::Attribute>
76C<add_attribute()> method. However, if an attribute is specified as
77"required" an error will be thrown.
78
79=head2 $meta->remove_class_attribute($name)
80
04b89789 81If the named class attribute exists, it is removed from the role.
88b7f2c8 82
88b7f2c8 83=head1 BUGS
84
85See L<MooseX::ClassAttribute> for details.
86
88b7f2c8 87=cut