Test that subclassing looks at the superclass' attributes in the constructor (it...
[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
6use MRO::Compat;
7
8do {
9 my %METACLASS_CACHE;
10 sub initialize {
11 my $class = shift;
12 my $name = shift;
13 $METACLASS_CACHE{$name} = $class->new(name => $name)
14 if !exists($METACLASS_CACHE{$name});
15 return $METACLASS_CACHE{$name};
16 }
17};
18
19sub new {
20 my $class = shift;
21 my %args = @_;
22
23 $args{attributes} = {};
24 $args{superclasses} = do {
25 no strict 'refs';
26 \@{ $args{name} . '::ISA' };
27 };
28
29 bless \%args, $class;
30}
31
32sub name { $_[0]->{name} }
33
34sub superclasses {
35 my $self = shift;
36
37 if (@_) {
38 Mouse::load_class($_) for @_;
39 @{ $self->{superclasses} } = @_;
40 }
41
42 @{ $self->{superclasses} };
43}
44
45sub add_attribute {
46 my $self = shift;
47 my $attr = shift;
48
49 $self->{'attributes'}{$attr->name} = $attr;
50}
51
c3398f5b 52sub get_attribute_map { $_[0]->{attributes} }
53sub get_attribute { $_[0]->{attributes}->{$_[1]} }
54
55sub linearized_isa { @{ mro::get_linear_isa($_[0]->name) } }
56
571;
58
59__END__
60
61=head1 NAME
62
306290e8 63Mouse::Meta::Class - hook into the Mouse MOP
c3398f5b 64
65=head1 METHODS
66
306290e8 67=head2 initialize ClassName -> Mouse::Meta::Class
c3398f5b 68
306290e8 69Finds or creates a Mouse::Meta::Class instance for the given ClassName. Only
70one instance should exist for a given class.
c3398f5b 71
306290e8 72=head2 new %args -> Mouse::Meta::Class
c3398f5b 73
306290e8 74Creates a new Mouse::Meta::Class. Don't call this directly.
c3398f5b 75
76=head2 name -> ClassName
77
78Returns the name of the owner class.
79
80=head2 superclasses -> [ClassName]
81
82Gets (or sets) the list of superclasses of the owner class.
83
306290e8 84=head2 add_attribute Mouse::Meta::Attribute
c3398f5b 85
306290e8 86Begins keeping track of the existing L<Mouse::Meta::Attribute> for the owner
87class.
c3398f5b 88
306290e8 89=head2 get_attribute_map -> { name => Mouse::Meta::Attribute }
c3398f5b 90
91Returns a mapping of attribute names to their corresponding
306290e8 92L<Mouse::Meta::Attribute> objects.
c3398f5b 93
306290e8 94=head2 get_attribute Name -> Mouse::Meta::Attribute | undef
c3398f5b 95
306290e8 96Returns the L<Mouse::Meta::Attribute> with the given name.
c3398f5b 97
98=head2 linearized_isa -> [ClassNames]
99
100Returns the list of classes in method dispatch order, with duplicates removed.
101
102=cut
103