micro optimization
[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
fc1d8369 6use Mouse::Meta::Method::Constructor;
bbf64e76 7use Mouse::Meta::Method::Destructor;
8fcbe7fb 8use Mouse::Util qw/get_linear_isa blessed/;
7a59f4e8 9use Carp 'confess';
72b88a88 10
c3398f5b 11do {
12 my %METACLASS_CACHE;
72b88a88 13
14 # because Mouse doesn't introspect existing classes, we're forced to
15 # only pay attention to other Mouse classes
16 sub _metaclass_cache {
17 my $class = shift;
18 my $name = shift;
19 return $METACLASS_CACHE{$name};
20 }
21
c3398f5b 22 sub initialize {
23 my $class = shift;
24 my $name = shift;
25 $METACLASS_CACHE{$name} = $class->new(name => $name)
26 if !exists($METACLASS_CACHE{$name});
27 return $METACLASS_CACHE{$name};
28 }
29};
30
31sub new {
32 my $class = shift;
6cbacbf6 33 my %args = @_;
c3398f5b 34
35 $args{attributes} = {};
36 $args{superclasses} = do {
37 no strict 'refs';
38 \@{ $args{name} . '::ISA' };
39 };
47f36c05 40 $args{roles} ||= [];
c3398f5b 41
42 bless \%args, $class;
43}
44
45sub name { $_[0]->{name} }
46
47sub superclasses {
48 my $self = shift;
49
50 if (@_) {
51 Mouse::load_class($_) for @_;
52 @{ $self->{superclasses} } = @_;
53 }
54
55 @{ $self->{superclasses} };
56}
57
d16fe7d7 58sub add_method {
59 my $self = shift;
60 my $name = shift;
61 my $code = shift;
62
63 my $pkg = $self->name;
64
65 no strict 'refs';
66 *{ $pkg . '::' . $name } = $code;
67}
68
2e92bb89 69# copied from Class::Inspector
70sub get_method_list {
71 my $self = shift;
72 my $name = $self->name;
73
74 no strict 'refs';
75 # Get all the CODE symbol table entries
76 my @functions = grep !/^meta$/,
77 grep { /\A[^\W\d]\w*\z/o }
78 grep { defined &{"${name}::$_"} }
79 keys %{"${name}::"};
80 wantarray ? @functions : \@functions;
81}
82
c3398f5b 83sub add_attribute {
84 my $self = shift;
85 my $attr = shift;
86
87 $self->{'attributes'}{$attr->name} = $attr;
88}
89
72b88a88 90sub compute_all_applicable_attributes {
91 my $self = shift;
92 my (@attr, %seen);
93
94 for my $class ($self->linearized_isa) {
95 my $meta = $self->_metaclass_cache($class)
96 or next;
97
98 for my $name (keys %{ $meta->get_attribute_map }) {
99 next if $seen{$name}++;
100 push @attr, $meta->get_attribute($name);
101 }
102 }
103
104 return @attr;
105}
106
c3398f5b 107sub get_attribute_map { $_[0]->{attributes} }
66eea168 108sub has_attribute { exists $_[0]->{attributes}->{$_[1]} }
c3398f5b 109sub get_attribute { $_[0]->{attributes}->{$_[1]} }
110
00ca1c62 111sub linearized_isa { @{ get_linear_isa($_[0]->name) } }
c3398f5b 112
7a59f4e8 113sub clone_object {
114 my $class = shift;
115 my $instance = shift;
116
117 (blessed($instance) && $instance->isa($class->name))
1a0f0802 118 || confess "You must pass an instance of the metaclass (" . $class->name . "), not ($instance)";
7a59f4e8 119
120 $class->clone_instance($instance, @_);
121}
122
123sub clone_instance {
124 my ($class, $instance, %params) = @_;
125
126 (blessed($instance))
e42bee44 127 || confess "You can only clone instances, ($instance) is not a blessed instance";
7a59f4e8 128
129 my $clone = bless { %$instance }, ref $instance;
130
131 foreach my $attr ($class->compute_all_applicable_attributes()) {
132 if ( defined( my $init_arg = $attr->init_arg ) ) {
133 if (exists $params{$init_arg}) {
134 $clone->{ $attr->name } = $params{$init_arg};
135 }
136 }
137 }
138
139 return $clone;
140
141}
142
fc1d8369 143sub make_immutable {
144 my $self = shift;
145 my $name = $self->name;
146 $self->{is_immutable}++;
147 no strict 'refs';
bbf64e76 148 *{"$name\::new"} = Mouse::Meta::Method::Constructor->generate_constructor_method_inline( $self );
149 *{"$name\::DESTROY"} = Mouse::Meta::Method::Destructor->generate_destructor_method_inline( $self );
fc1d8369 150}
151sub make_mutable {
152 Carp::croak "Mouse::Meta::Class->make_mutable does not supported by Mouse";
153}
154sub is_immutable { $_[0]->{is_immutable} }
84ef660f 155
156sub attribute_metaclass { "Mouse::Meta::Class" }
7a59f4e8 157
50dc6ee5 158sub add_before_method_modifier {
159 my ($self, $name, $code) = @_;
4e31595c 160 require Class::Method::Modifiers;
50dc6ee5 161 Class::Method::Modifiers::_install_modifier(
162 $self->name,
163 'before',
164 $name,
165 $code,
166 );
167}
168
169sub add_around_method_modifier {
170 my ($self, $name, $code) = @_;
4e31595c 171 require Class::Method::Modifiers;
50dc6ee5 172 Class::Method::Modifiers::_install_modifier(
173 $self->name,
174 'around',
175 $name,
176 $code,
177 );
178}
179
180sub add_after_method_modifier {
181 my ($self, $name, $code) = @_;
4e31595c 182 require Class::Method::Modifiers;
50dc6ee5 183 Class::Method::Modifiers::_install_modifier(
184 $self->name,
185 'after',
186 $name,
187 $code,
188 );
189}
190
47f36c05 191sub roles { $_[0]->{roles} }
192
193sub does_role {
194 my ($self, $role_name) = @_;
195 (defined $role_name)
196 || confess "You must supply a role name to look for";
197 for my $role (@{ $self->{roles} }) {
198 return 1 if $role->name eq $role_name;
199 }
200 return 0;
201}
202
c3398f5b 2031;
204
205__END__
206
207=head1 NAME
208
306290e8 209Mouse::Meta::Class - hook into the Mouse MOP
c3398f5b 210
211=head1 METHODS
212
306290e8 213=head2 initialize ClassName -> Mouse::Meta::Class
c3398f5b 214
306290e8 215Finds or creates a Mouse::Meta::Class instance for the given ClassName. Only
216one instance should exist for a given class.
c3398f5b 217
306290e8 218=head2 new %args -> Mouse::Meta::Class
c3398f5b 219
306290e8 220Creates a new Mouse::Meta::Class. Don't call this directly.
c3398f5b 221
222=head2 name -> ClassName
223
224Returns the name of the owner class.
225
226=head2 superclasses -> [ClassName]
227
228Gets (or sets) the list of superclasses of the owner class.
229
306290e8 230=head2 add_attribute Mouse::Meta::Attribute
c3398f5b 231
306290e8 232Begins keeping track of the existing L<Mouse::Meta::Attribute> for the owner
233class.
c3398f5b 234
72b88a88 235=head2 compute_all_applicable_attributes -> (Mouse::Meta::Attribute)
236
237Returns the list of all L<Mouse::Meta::Attribute> instances associated with
238this class and its superclasses.
239
306290e8 240=head2 get_attribute_map -> { name => Mouse::Meta::Attribute }
c3398f5b 241
242Returns a mapping of attribute names to their corresponding
306290e8 243L<Mouse::Meta::Attribute> objects.
c3398f5b 244
66eea168 245=head2 has_attribute Name -> Boool
246
247Returns whether we have a L<Mouse::Meta::Attribute> with the given name.
248
306290e8 249=head2 get_attribute Name -> Mouse::Meta::Attribute | undef
c3398f5b 250
306290e8 251Returns the L<Mouse::Meta::Attribute> with the given name.
c3398f5b 252
253=head2 linearized_isa -> [ClassNames]
254
255Returns the list of classes in method dispatch order, with duplicates removed.
256
f7b11a21 257=head2 clone_object Instance -> Instance
258
259Clones the given C<Instance> which must be an instance governed by this
260metaclass.
261
262=head2 clone_instance Instance, Parameters -> Instance
263
264Clones the given C<Instance> and sets any additional parameters.
265
c3398f5b 266=cut
267