Use compute_all_applicable_attributes instead of get_attribute_map in the constructor...
[gitmo/Mouse.git] / lib / Mouse / Meta / Class.pm
CommitLineData
c3398f5b 1#!/usr/bin/env perl
306290e8 2package Mouse::Meta::Class;
c3398f5b 3use strict;
4use warnings;
5
72b88a88 6use Scalar::Util 'blessed';
7
c3398f5b 8use MRO::Compat;
9
10do {
11 my %METACLASS_CACHE;
72b88a88 12
13 # because Mouse doesn't introspect existing classes, we're forced to
14 # only pay attention to other Mouse classes
15 sub _metaclass_cache {
16 my $class = shift;
17 my $name = shift;
18 return $METACLASS_CACHE{$name};
19 }
20
c3398f5b 21 sub initialize {
22 my $class = shift;
23 my $name = shift;
24 $METACLASS_CACHE{$name} = $class->new(name => $name)
25 if !exists($METACLASS_CACHE{$name});
26 return $METACLASS_CACHE{$name};
27 }
28};
29
30sub new {
31 my $class = shift;
32 my %args = @_;
33
34 $args{attributes} = {};
35 $args{superclasses} = do {
36 no strict 'refs';
37 \@{ $args{name} . '::ISA' };
38 };
39
40 bless \%args, $class;
41}
42
43sub name { $_[0]->{name} }
44
45sub superclasses {
46 my $self = shift;
47
48 if (@_) {
49 Mouse::load_class($_) for @_;
50 @{ $self->{superclasses} } = @_;
51 }
52
53 @{ $self->{superclasses} };
54}
55
56sub add_attribute {
57 my $self = shift;
58 my $attr = shift;
59
60 $self->{'attributes'}{$attr->name} = $attr;
61}
62
72b88a88 63sub compute_all_applicable_attributes {
64 my $self = shift;
65 my (@attr, %seen);
66
67 for my $class ($self->linearized_isa) {
68 my $meta = $self->_metaclass_cache($class)
69 or next;
70
71 for my $name (keys %{ $meta->get_attribute_map }) {
72 next if $seen{$name}++;
73 push @attr, $meta->get_attribute($name);
74 }
75 }
76
77 return @attr;
78}
79
c3398f5b 80sub get_attribute_map { $_[0]->{attributes} }
81sub get_attribute { $_[0]->{attributes}->{$_[1]} }
82
83sub linearized_isa { @{ mro::get_linear_isa($_[0]->name) } }
84
851;
86
87__END__
88
89=head1 NAME
90
306290e8 91Mouse::Meta::Class - hook into the Mouse MOP
c3398f5b 92
93=head1 METHODS
94
306290e8 95=head2 initialize ClassName -> Mouse::Meta::Class
c3398f5b 96
306290e8 97Finds or creates a Mouse::Meta::Class instance for the given ClassName. Only
98one instance should exist for a given class.
c3398f5b 99
306290e8 100=head2 new %args -> Mouse::Meta::Class
c3398f5b 101
306290e8 102Creates a new Mouse::Meta::Class. Don't call this directly.
c3398f5b 103
104=head2 name -> ClassName
105
106Returns the name of the owner class.
107
108=head2 superclasses -> [ClassName]
109
110Gets (or sets) the list of superclasses of the owner class.
111
306290e8 112=head2 add_attribute Mouse::Meta::Attribute
c3398f5b 113
306290e8 114Begins keeping track of the existing L<Mouse::Meta::Attribute> for the owner
115class.
c3398f5b 116
72b88a88 117=head2 compute_all_applicable_attributes -> (Mouse::Meta::Attribute)
118
119Returns the list of all L<Mouse::Meta::Attribute> instances associated with
120this class and its superclasses.
121
306290e8 122=head2 get_attribute_map -> { name => Mouse::Meta::Attribute }
c3398f5b 123
124Returns a mapping of attribute names to their corresponding
306290e8 125L<Mouse::Meta::Attribute> objects.
c3398f5b 126
306290e8 127=head2 get_attribute Name -> Mouse::Meta::Attribute | undef
c3398f5b 128
306290e8 129Returns the L<Mouse::Meta::Attribute> with the given name.
c3398f5b 130
131=head2 linearized_isa -> [ClassNames]
132
133Returns the list of classes in method dispatch order, with duplicates removed.
134
135=cut
136