Fix a test
[gitmo/Mouse.git] / lib / Mouse / Meta / Class.pm
CommitLineData
306290e8 1package Mouse::Meta::Class;
c3398f5b 2use strict;
3use warnings;
4
cecfb973 5use Scalar::Util qw/blessed weaken/;
6d28c5cf 6
04493075 7use Mouse::Util qw/:meta get_linear_isa not_supported/;
72b88a88 8
6d28c5cf 9use Mouse::Meta::Method::Constructor;
10use Mouse::Meta::Method::Destructor;
11use Mouse::Meta::Module;
f3bb863f 12our @ISA = qw(Mouse::Meta::Module);
3a63a2e7 13
6cfa1e5e 14sub method_metaclass(){ 'Mouse::Meta::Method' } # required for get_method()
3a63a2e7 15
8e64d0fa 16sub _construct_meta {
88ed7189 17 my($class, %args) = @_;
c3398f5b 18
8536d351 19 $args{attributes} ||= {};
20 $args{methods} ||= {};
21 $args{roles} ||= [];
22
c3398f5b 23 $args{superclasses} = do {
24 no strict 'refs';
88ed7189 25 \@{ $args{package} . '::ISA' };
c3398f5b 26 };
27
8d40c3b8 28 my $self = bless \%args, ref($class) || $class;
29 if($class ne __PACKAGE__){
9009aca1 30 $self->meta->_initialize_object($self, \%args);
8d40c3b8 31 }
32 return $self;
7a50b450 33}
34
35sub create_anon_class{
36 my $self = shift;
37 return $self->create(undef, @_);
38}
39
40sub is_anon_class{
41 return exists $_[0]->{anon_serial_id};
c3398f5b 42}
43
afc73948 44sub roles { $_[0]->{roles} }
c3398f5b 45
46sub superclasses {
47 my $self = shift;
48
49 if (@_) {
50 Mouse::load_class($_) for @_;
51 @{ $self->{superclasses} } = @_;
52 }
53
8e64d0fa 54 return @{ $self->{superclasses} };
55}
56
57sub find_method_by_name{
58 my($self, $method_name) = @_;
59 defined($method_name)
60 or $self->throw_error('You must define a method name to find');
61 foreach my $class( $self->linearized_isa ){
62 my $method = $self->initialize($class)->get_method($method_name);
63 return $method if defined $method;
64 }
65 return undef;
66}
67
68sub get_all_methods {
69 my($self) = @_;
612d3e1a 70 return map{ $self->find_method_by_name($_) } $self->get_all_method_names;
c3398f5b 71}
72
60cfc6ad 73sub get_all_method_names {
74 my $self = shift;
75 my %uniq;
76 return grep { $uniq{$_}++ == 0 }
3a63a2e7 77 map { Mouse::Meta::Class->initialize($_)->get_method_list() }
60cfc6ad 78 $self->linearized_isa;
79}
80
87ca293b 81sub add_attribute {
c3398f5b 82 my $self = shift;
60f6eba9 83
87ca293b 84 my($attr, $name);
1b9e472d 85
87ca293b 86 if(blessed $_[0]){
87 $attr = $_[0];
1b9e472d 88
87ca293b 89 $attr->isa('Mouse::Meta::Attribute')
90 || $self->throw_error("Your attribute must be an instance of Mouse::Meta::Attribute (or a subclass)");
1b9e472d 91
87ca293b 92 $name = $attr->name;
1b9e472d 93 }
94 else{
87ca293b 95 # _process_attribute
96 $name = shift;
1b9e472d 97
87ca293b 98 my %args = (@_ == 1) ? %{$_[0]} : @_;
1b9e472d 99
87ca293b 100 defined($name)
101 or $self->throw_error('You must provide a name for the attribute');
1b9e472d 102
87ca293b 103 if ($name =~ s/^\+//) { # inherited attributes
104 my $inherited_attr;
105
106 foreach my $class($self->linearized_isa){
739525d0 107 my $meta = Mouse::Util::get_metaclass_by_name($class) or next;
87ca293b 108 $inherited_attr = $meta->get_attribute($name) and last;
109 }
110
111 defined($inherited_attr)
112 or $self->throw_error("Could not find an attribute by the name of '$name' to inherit from in ".$self->name);
113
114 $attr = $inherited_attr->clone_and_inherit_options($name, \%args);
115 }
116 else{
117 my($attribute_class, @traits) = Mouse::Meta::Attribute->interpolate_class($name, \%args);
118 $args{traits} = \@traits if @traits;
119
120 $attr = $attribute_class->new($name, \%args);
121 }
122 }
1b9e472d 123
124 weaken( $attr->{associated_class} = $self );
125
126 $self->{attributes}{$attr->name} = $attr;
127 $attr->install_accessors();
128
04493075 129 if(_MOUSE_VERBOSE && !$attr->{associated_methods} && ($attr->{is} || '') ne 'bare'){
1b9e472d 130 Carp::cluck(qq{Attribute (}.$attr->name.qq{) of class }.$self->name.qq{ has no associated methods (did you mean to provide an "is" argument?)});
60f6eba9 131 }
1b9e472d 132 return $attr;
c3398f5b 133}
134
3a683350 135sub compute_all_applicable_attributes {
136 Carp::cluck('compute_all_applicable_attributes() has been deprecated');
137 return shift->get_all_attributes(@_)
138}
139
d60824af 140sub get_all_attributes {
72b88a88 141 my $self = shift;
142 my (@attr, %seen);
143
144 for my $class ($self->linearized_isa) {
3a683350 145 my $meta = Mouse::Util::get_metaclass_by_name($class)
72b88a88 146 or next;
147
3a683350 148 for my $name ($meta->get_attribute_list) {
72b88a88 149 next if $seen{$name}++;
150 push @attr, $meta->get_attribute($name);
151 }
152 }
153
154 return @attr;
155}
156
8536d351 157sub linearized_isa { @{ get_linear_isa($_[0]->name) } }
158
159sub new_object {
c68b4110 160 my $self = shift;
7a50b450 161 my %args = (@_ == 1 ? %{$_[0]} : @_);
c3398f5b 162
926290ac 163 my $object = bless {}, $self->name;
fce211ae 164
926290ac 165 $self->_initialize_object($object, \%args);
166 return $object;
1b9e472d 167}
168
926290ac 169sub _initialize_object{
170 my($self, $object, $args) = @_;
1b9e472d 171
53c495ce 172 my @triggers_queue;
173
fce211ae 174 foreach my $attribute ($self->get_all_attributes) {
8536d351 175 my $from = $attribute->init_arg;
176 my $key = $attribute->name;
177
1b9e472d 178 if (defined($from) && exists($args->{$from})) {
926290ac 179 $object->{$key} = $attribute->_coerce_and_verify($args->{$from});
8536d351 180
926290ac 181 weaken($object->{$key})
182 if ref($object->{$key}) && $attribute->is_weak_ref;
8536d351 183
184 if ($attribute->has_trigger) {
926290ac 185 push @triggers_queue, [ $attribute->trigger, $object->{$key} ];
8536d351 186 }
187 }
188 else {
189 if ($attribute->has_default || $attribute->has_builder) {
190 unless ($attribute->is_lazy) {
191 my $default = $attribute->default;
192 my $builder = $attribute->builder;
926290ac 193 my $value = $builder ? $object->$builder()
194 : ref($default) eq 'CODE' ? $object->$default()
8215d725 195 : $default;
8536d351 196
8215d725 197 # XXX: we cannot use $attribute->set_value() because it invokes triggers.
926290ac 198 $object->{$key} = $attribute->_coerce_and_verify($value, $object);;
8536d351 199
926290ac 200 weaken($object->{$key})
201 if ref($object->{$key}) && $attribute->is_weak_ref;
8536d351 202 }
203 }
204 else {
205 if ($attribute->is_required) {
fce211ae 206 $self->throw_error("Attribute (".$attribute->name.") is required");
8536d351 207 }
208 }
209 }
210 }
53c495ce 211
212 foreach my $trigger_and_value(@triggers_queue){
213 my($trigger, $value) = @{$trigger_and_value};
926290ac 214 $trigger->($object, $value);
53c495ce 215 }
216
2efc0af1 217 if($self->is_anon_class){
926290ac 218 $object->{__METACLASS__} = $self;
2efc0af1 219 }
220
926290ac 221 return $object;
8536d351 222}
c3398f5b 223
7a59f4e8 224sub clone_object {
926290ac 225 my $class = shift;
226 my $object = shift;
227 my %params = (@_ == 1) ? %{$_[0]} : @_;
7a59f4e8 228
926290ac 229 (blessed($object) && $object->isa($class->name))
230 || $class->throw_error("You must pass an instance of the metaclass (" . $class->name . "), not ($object)");
7a59f4e8 231
926290ac 232 my $cloned = bless { %$object }, ref $object;
233 $class->_initialize_object($cloned, \%params);
7a59f4e8 234
926290ac 235 return $cloned;
2cea7a5f 236}
7a59f4e8 237
2cea7a5f 238sub clone_instance {
239 my ($class, $instance, %params) = @_;
240
04493075 241 Carp::cluck('clone_instance has been deprecated. Use clone_object instead')
242 if _MOUSE_VERBOSE;
2cea7a5f 243 return $class->clone_object($instance, %params);
7a59f4e8 244}
245
fc1d8369 246sub make_immutable {
247 my $self = shift;
6a1d1835 248 my %args = (
249 inline_constructor => 1,
e578d610 250 inline_destructor => 1,
6a1d1835 251 @_,
252 );
253
fc1d8369 254 $self->{is_immutable}++;
c7a6403f 255
6a1d1835 256 if ($args{inline_constructor}) {
c7a6403f 257 $self->add_method('new' => Mouse::Meta::Method::Constructor->generate_constructor_method_inline( $self ));
258 }
259
8632b6fe 260 if ($args{inline_destructor}) {
261 $self->add_method('DESTROY' => Mouse::Meta::Method::Destructor->generate_destructor_method_inline( $self ));
262 }
2276cb14 263
264 # Moose's make_immutable returns true allowing calling code to skip setting an explicit true value
265 # at the end of a source file.
266 return 1;
fc1d8369 267}
ad958001 268
fce211ae 269sub make_mutable { not_supported }
ad958001 270
6cfa1e5e 271sub is_immutable { $_[0]->{is_immutable} }
272sub is_mutable { !$_[0]->{is_immutable} }
84ef660f 273
3fbade18 274sub _install_modifier_pp{
275 my( $self, $into, $type, $name, $code ) = @_;
276
277 my $original = $into->can($name)
278 or $self->throw_error("The method '$name' is not found in the inheritance hierarchy for class $into");
279
280 my $modifier_table = $self->{modifiers}{$name};
281
282 if(!$modifier_table){
283 my(@before, @after, @around, $cache, $modified);
284
285 $cache = $original;
286
287 $modified = sub {
288 for my $c (@before) { $c->(@_) }
289
290 if(wantarray){ # list context
291 my @rval = $cache->(@_);
292
293 for my $c(@after){ $c->(@_) }
294 return @rval;
295 }
296 elsif(defined wantarray){ # scalar context
297 my $rval = $cache->(@_);
298
299 for my $c(@after){ $c->(@_) }
300 return $rval;
301 }
302 else{ # void context
303 $cache->(@_);
304
305 for my $c(@after){ $c->(@_) }
306 return;
307 }
308 };
309
310 $self->{modifiers}{$name} = $modifier_table = {
311 original => $original,
312
313 before => \@before,
314 after => \@after,
315 around => \@around,
316
317 cache => \$cache, # cache for around modifiers
318 };
319
320 $self->add_method($name => $modified);
321 }
322
323 if($type eq 'before'){
324 unshift @{$modifier_table->{before}}, $code;
325 }
326 elsif($type eq 'after'){
327 push @{$modifier_table->{after}}, $code;
328 }
329 else{ # around
330 push @{$modifier_table->{around}}, $code;
331
332 my $next = ${ $modifier_table->{cache} };
333 ${ $modifier_table->{cache} } = sub{ $code->($next, @_) };
334 }
335
336 return;
337}
338
4859d490 339sub _install_modifier {
340 my ( $self, $into, $type, $name, $code ) = @_;
4f5b44a0 341
3fbade18 342 # load Class::Method::Modifiers first
7ca5c5fb 343 my $no_cmm_fast = do{
3fbade18 344 local $@;
345 eval q{ require Class::Method::Modifiers::Fast };
346 $@;
4f5b44a0 347 };
4f5b44a0 348
3fbade18 349 my $impl;
350 if($no_cmm_fast){
351 $impl = \&_install_modifier_pp;
352 }
353 else{
354 my $install_modifier = Class::Method::Modifiers::Fast->can('_install_modifier');
355 $impl = sub {
4f5b44a0 356 my ( $self, $into, $type, $name, $code ) = @_;
3fbade18 357 $install_modifier->(
4f5b44a0 358 $into,
359 $type,
360 $name,
361 $code
362 );
6cfa1e5e 363 $self->{methods}{$name}++; # register it to the method map
364 return;
4f5b44a0 365 };
1b79a118 366 }
4f5b44a0 367
3fbade18 368 # replace this method itself :)
369 {
370 no warnings 'redefine';
371 *_install_modifier = $impl;
372 }
373
374 $self->$impl( $into, $type, $name, $code );
4859d490 375}
376
50dc6ee5 377sub add_before_method_modifier {
4859d490 378 my ( $self, $name, $code ) = @_;
379 $self->_install_modifier( $self->name, 'before', $name, $code );
50dc6ee5 380}
381
382sub add_around_method_modifier {
4859d490 383 my ( $self, $name, $code ) = @_;
384 $self->_install_modifier( $self->name, 'around', $name, $code );
50dc6ee5 385}
386
387sub add_after_method_modifier {
4859d490 388 my ( $self, $name, $code ) = @_;
389 $self->_install_modifier( $self->name, 'after', $name, $code );
50dc6ee5 390}
391
67199842 392sub add_override_method_modifier {
393 my ($self, $name, $code) = @_;
394
6cfa1e5e 395 my $package = $self->name;
67199842 396
6cfa1e5e 397 my $body = $package->can($name)
398 or $self->throw_error("You cannot override '$name' because it has no super method");
67199842 399
6cfa1e5e 400 $self->add_method($name => sub { $code->($package, $body, @_) });
67199842 401}
402
47f36c05 403sub does_role {
404 my ($self, $role_name) = @_;
ad958001 405
47f36c05 406 (defined $role_name)
fce211ae 407 || $self->throw_error("You must supply a role name to look for");
ad958001 408
f7fec86c 409 for my $class ($self->linearized_isa) {
739525d0 410 my $meta = Mouse::Util::get_metaclass_by_name($class);
3a63a2e7 411 next unless $meta && $meta->can('roles');
412
413 for my $role (@{ $meta->roles }) {
ff687069 414
3a63a2e7 415 return 1 if $role->does_role($role_name);
f7fec86c 416 }
47f36c05 417 }
ad958001 418
47f36c05 419 return 0;
420}
421
c3398f5b 4221;
423
424__END__
425
426=head1 NAME
427
1820fffe 428Mouse::Meta::Class - The Mouse class metaclass
c3398f5b 429
430=head1 METHODS
431
612d3e1a 432=head2 C<< initialize(ClassName) -> Mouse::Meta::Class >>
c3398f5b 433
31c5194b 434Finds or creates a C<Mouse::Meta::Class> instance for the given ClassName. Only
306290e8 435one instance should exist for a given class.
c3398f5b 436
612d3e1a 437=head2 C<< name -> ClassName >>
c3398f5b 438
439Returns the name of the owner class.
440
612d3e1a 441=head2 C<< superclasses -> ClassNames >> C<< superclass(ClassNames) >>
c3398f5b 442
443Gets (or sets) the list of superclasses of the owner class.
444
31c5194b 445=head2 C<< add_method(name => CodeRef) >>
c3398f5b 446
31c5194b 447Adds a method to the owner class.
c3398f5b 448
31c5194b 449=head2 C<< has_method(name) -> Bool >>
72b88a88 450
31c5194b 451Returns whether we have a method with the given name.
72b88a88 452
31c5194b 453=head2 C<< get_method(name) -> Mouse::Meta::Method | undef >>
c68b4110 454
31c5194b 455Returns a L<Mouse::Meta::Method> with the given name.
456
457Note that you can also use C<< $metaclass->name->can($name) >> for a method body.
458
459=head2 C<< get_method_list -> Names >>
460
461Returns a list of method names which are defined in the local class.
462If you want a list of all applicable methods for a class, use the
463C<get_all_methods> method.
464
465=head2 C<< get_all_methods -> (Mouse::Meta::Method) >>
466
467Return the list of all L<Mouse::Meta::Method> instances associated with
468the class and its superclasses.
469
470=head2 C<< add_attribute(name => spec | Mouse::Meta::Attribute) >>
471
472Begins keeping track of the existing L<Mouse::Meta::Attribute> for the owner
473class.
c68b4110 474
612d3e1a 475=head2 C<< has_attribute(Name) -> Bool >>
66eea168 476
477Returns whether we have a L<Mouse::Meta::Attribute> with the given name.
478
31c5194b 479=head2 C<< get_attribute Name -> Mouse::Meta::Attribute | undef >>
c3398f5b 480
306290e8 481Returns the L<Mouse::Meta::Attribute> with the given name.
c3398f5b 482
31c5194b 483=head2 C<< get_attribute_list -> Names >>
484
485Returns a list of attribute names which are defined in the local
486class. If you want a list of all applicable attributes for a class,
487use the C<get_all_attributes> method.
488
489=head2 C<< get_all_attributes -> (Mouse::Meta::Attribute) >>
490
491Returns the list of all L<Mouse::Meta::Attribute> instances associated with
492this class and its superclasses.
493
612d3e1a 494=head2 C<< linearized_isa -> [ClassNames] >>
c3398f5b 495
496Returns the list of classes in method dispatch order, with duplicates removed.
497
612d3e1a 498=head2 C<< new_object(Parameters) -> Instance >>
2cea7a5f 499
612d3e1a 500Creates a new instance.
2cea7a5f 501
612d3e1a 502=head2 C<< clone_object(Instance, Parameters) -> Instance >>
f7b11a21 503
31c5194b 504Clones the given instance which must be an instance governed by this
f7b11a21 505metaclass.
506
31c5194b 507=head2 C<< throw_error(Message, Parameters) >>
508
509Throws an error with the given message.
510
1820fffe 511=head1 SEE ALSO
f7b11a21 512
1820fffe 513L<Moose::Meta::Class>
f7b11a21 514
31c5194b 515L<Class::MOP::Class>
516
c3398f5b 517=cut
518