Reuse an attribute's old insertion order if it has one
[gitmo/Moose.git] / lib / Class / MOP / Mixin / HasAttributes.pm
CommitLineData
38bf2a25 1package Class::MOP::Mixin::HasAttributes;
2
3use strict;
4use warnings;
5
38bf2a25 6use Carp 'confess';
7use Scalar::Util 'blessed';
8
9use base 'Class::MOP::Mixin';
10
11sub add_attribute {
12 my $self = shift;
13
14 my $attribute
15 = blessed( $_[0] ) ? $_[0] : $self->attribute_metaclass->new(@_);
16
17 ( $attribute->isa('Class::MOP::Mixin::AttributeCore') )
18 || confess
19 "Your attribute must be an instance of Class::MOP::Mixin::AttributeCore (or a subclass)";
20
21 $self->_attach_attribute($attribute);
22
23 my $attr_name = $attribute->name;
24
e52716e0 25 my $old_order;
38bf2a25 26
e52716e0 27 if ($self->has_attribute($attr_name)) {
28 my $old_attr = $self->remove_attribute($attr_name);
29 $old_order = $old_attr->insertion_order;
30 }
31
32 my $order
33 = defined $old_order
34 ? $old_order
35 : ( scalar keys %{ $self->_attribute_map } );
38bf2a25 36 $attribute->_set_insertion_order($order);
37
38 $self->_attribute_map->{$attr_name} = $attribute;
39
40 # This method is called to allow for installing accessors. Ideally, we'd
41 # use method overriding, but then the subclass would be responsible for
42 # making the attribute, which would end up with lots of code
43 # duplication. Even more ideally, we'd use augment/inner, but this is
44 # Class::MOP!
45 $self->_post_add_attribute($attribute)
46 if $self->can('_post_add_attribute');
47
48 return $attribute;
49}
50
51sub has_attribute {
52 my ( $self, $attribute_name ) = @_;
53
54 ( defined $attribute_name )
55 || confess "You must define an attribute name";
56
57 exists $self->_attribute_map->{$attribute_name};
58}
59
60sub get_attribute {
61 my ( $self, $attribute_name ) = @_;
62
63 ( defined $attribute_name )
64 || confess "You must define an attribute name";
65
66 return $self->_attribute_map->{$attribute_name};
67}
68
69sub remove_attribute {
70 my ( $self, $attribute_name ) = @_;
71
72 ( defined $attribute_name )
73 || confess "You must define an attribute name";
74
75 my $removed_attribute = $self->_attribute_map->{$attribute_name};
76 return unless defined $removed_attribute;
77
78 delete $self->_attribute_map->{$attribute_name};
79
80 return $removed_attribute;
81}
82
83sub get_attribute_list {
84 my $self = shift;
85 keys %{ $self->_attribute_map };
86}
87
88sub _restore_metaattributes_from {
89 my $self = shift;
90 my ($old_meta) = @_;
91
92 for my $attr (sort { $a->insertion_order <=> $b->insertion_order }
93 map { $old_meta->get_attribute($_) }
94 $old_meta->get_attribute_list) {
95 $attr->_make_compatible_with($self->attribute_metaclass);
96 $self->add_attribute($attr);
97 }
98}
99
1001;
101
102# ABSTRACT: Methods for metaclasses which have attributes
103
104__END__
105
106=pod
107
108=head1 DESCRIPTION
109
110This class implements methods for metaclasses which have attributes
111(L<Class::MOP::Class> and L<Moose::Meta::Role>). See L<Class::MOP::Class> for
112API details.
113
114=cut