Import tests for Test::Mouse
[gitmo/Mouse.git] / lib / Mouse / Meta / Class.pm
CommitLineData
306290e8 1package Mouse::Meta::Class;
bc76ed1c 2use Mouse::Util qw/:meta/; # enables strict and warnings
c3398f5b 3
1d76ae62 4use Scalar::Util ();
6d28c5cf 5
6d28c5cf 6use Mouse::Meta::Module;
f3bb863f 7our @ISA = qw(Mouse::Meta::Module);
3a63a2e7 8
3b48bcc8 9our @CARP_NOT = qw(Mouse); # trust Mouse
10
e058b279 11sub attribute_metaclass;
d9659f80 12sub method_metaclass;
3a63a2e7 13
e058b279 14sub constructor_class;
15sub destructor_class;
380e1cd7 16
d9659f80 17
8e64d0fa 18sub _construct_meta {
88ed7189 19 my($class, %args) = @_;
c3398f5b 20
5132ec42 21 $args{attributes} = {};
22 $args{methods} = {};
23 $args{roles} = [];
8536d351 24
c3398f5b 25 $args{superclasses} = do {
26 no strict 'refs';
88ed7189 27 \@{ $args{package} . '::ISA' };
c3398f5b 28 };
29
8d40c3b8 30 my $self = bless \%args, ref($class) || $class;
7eb3a8d5 31 if(ref($self) ne __PACKAGE__){
9009aca1 32 $self->meta->_initialize_object($self, \%args);
8d40c3b8 33 }
34 return $self;
7a50b450 35}
36
37sub create_anon_class{
38 my $self = shift;
39 return $self->create(undef, @_);
40}
41
43165725 42sub is_anon_class;
c3398f5b 43
43165725 44sub roles;
c3398f5b 45
e7264861 46sub calculate_all_roles {
47 my $self = shift;
48 my %seen;
49 return grep { !$seen{ $_->name }++ }
50 map { $_->calculate_all_roles } @{ $self->roles };
51}
52
c3398f5b 53sub superclasses {
54 my $self = shift;
55
56 if (@_) {
9d0686b2 57 foreach my $super(@_){
58 Mouse::Util::load_class($super);
b6369395 59
902174eb 60 my $meta = Mouse::Util::get_metaclass_by_name($super);
61 unless(defined $meta) {
62 # checks if $super is a foreign class (i.e. non-Mouse class)
63 my $mm = $super->can('meta');
64 if(!($mm && $mm == \&Mouse::Util::meta)) {
65 if($super->can('new') or $super->can('DESTROY')) {
66 $self->inherit_from_foreign_class($super);
67 }
68 }
69 next;
70 }
b6369395 71
f48920c1 72 if(Mouse::Util::is_a_metarole($meta)){
9d0686b2 73 $self->throw_error("You cannot inherit from a Mouse Role ($super)");
74 }
b6369395 75
902174eb 76 # checks and fixes in metaclass compatiility
b6369395 77 next if $self->isa(ref $meta); # _superclass_meta_is_compatible
b6369395 78 $self->_reconcile_with_superclass_meta($meta);
9d0686b2 79 }
c3398f5b 80 @{ $self->{superclasses} } = @_;
81 }
82
8e64d0fa 83 return @{ $self->{superclasses} };
84}
902174eb 85
86sub inherit_from_foreign_class {
87 my($class, $super) = @_;
88 Carp::carp("You inherit from non-Mouse class ($super),"
89 . " but it is unlikely to work correctly."
98278c01 90 . " Please consider using MouseX::Foreign");
902174eb 91 return;
92}
93
c0b18afd 94my @MetaClassTypes = (
95 'attribute', # Mouse::Meta::Attribute
96 'method', # Mouse::Meta::Method
97 'constructor', # Mouse::Meta::Method::Constructor
98 'destructor', # Mouse::Meta::Method::Destructor
99);
8e64d0fa 100
b6369395 101sub _reconcile_with_superclass_meta {
c0b18afd 102 my($self, $other) = @_;
b6369395 103
733f404b 104 # find incompatible traits
c0b18afd 105 my %metaroles;
b6369395 106 foreach my $metaclass_type(@MetaClassTypes){
c0b18afd 107 my $accessor = $self->can($metaclass_type . '_metaclass')
108 || $self->can($metaclass_type . '_class');
b6369395 109
c0b18afd 110 my $other_c = $other->$accessor();
111 my $self_c = $self->$accessor();
b6369395 112
c0b18afd 113 if(!$self_c->isa($other_c)){
114 $metaroles{$metaclass_type}
115 = [ $self_c->meta->_collect_roles($other_c->meta) ];
d9659f80 116 }
117 }
118
c0b18afd 119 $metaroles{class} = [$self->meta->_collect_roles($other->meta)];
120
121 #use Data::Dumper; print Data::Dumper->new([\%metaroles], ['*metaroles'])->Indent(1)->Dump;
d9659f80 122
123 require Mouse::Util::MetaRole;
c0b18afd 124 $_[0] = Mouse::Util::MetaRole::apply_metaroles(
125 for => $self,
126 class_metaroles => \%metaroles,
d9659f80 127 );
b6369395 128 return;
129}
130
c0b18afd 131sub _collect_roles {
132 my ($self, $other) = @_;
133
134 # find common ancestor
135 my @self_lin_isa = $self->linearized_isa;
136 my @other_lin_isa = $other->linearized_isa;
137
138 my(@self_anon_supers, @other_anon_supers);
139 push @self_anon_supers, shift @self_lin_isa while $self_lin_isa[0]->meta->is_anon_class;
140 push @other_anon_supers, shift @other_lin_isa while $other_lin_isa[0]->meta->is_anon_class;
141
142 my $common_ancestor = $self_lin_isa[0] eq $other_lin_isa[0] && $self_lin_isa[0];
143
144 if(!$common_ancestor){
145 $self->throw_error(sprintf '%s cannot have %s as a super class because of their metaclass incompatibility',
146 $self->name, $other->name);
147 }
148
149 my %seen;
a4b15169 150 return sort grep { !$seen{$_}++ } ## no critic
c0b18afd 151 (map{ $_->name } map{ $_->meta->calculate_all_roles } @self_anon_supers),
152 (map{ $_->name } map{ $_->meta->calculate_all_roles } @other_anon_supers),
153 ;
154}
155
156
79345849 157sub find_method_by_name {
8e64d0fa 158 my($self, $method_name) = @_;
159 defined($method_name)
160 or $self->throw_error('You must define a method name to find');
0126c27c 161
8e64d0fa 162 foreach my $class( $self->linearized_isa ){
163 my $method = $self->initialize($class)->get_method($method_name);
164 return $method if defined $method;
165 }
166 return undef;
167}
168
169sub get_all_methods {
170 my($self) = @_;
612d3e1a 171 return map{ $self->find_method_by_name($_) } $self->get_all_method_names;
c3398f5b 172}
173
60cfc6ad 174sub get_all_method_names {
175 my $self = shift;
176 my %uniq;
177 return grep { $uniq{$_}++ == 0 }
3a63a2e7 178 map { Mouse::Meta::Class->initialize($_)->get_method_list() }
60cfc6ad 179 $self->linearized_isa;
180}
181
abbcd124 182sub find_attribute_by_name {
2b908b79 183 my($self, $name) = @_;
79345849 184 defined($name)
185 or $self->throw_error('You must define an attribute name to find');
abbcd124 186 foreach my $attr($self->get_all_attributes) {
187 return $attr if $attr->name eq $name;
2b908b79 188 }
abbcd124 189 return undef;
2b908b79 190}
191
87ca293b 192sub add_attribute {
c3398f5b 193 my $self = shift;
60f6eba9 194
87ca293b 195 my($attr, $name);
1b9e472d 196
1d76ae62 197 if(Scalar::Util::blessed($_[0])){
87ca293b 198 $attr = $_[0];
1b9e472d 199
87ca293b 200 $attr->isa('Mouse::Meta::Attribute')
201 || $self->throw_error("Your attribute must be an instance of Mouse::Meta::Attribute (or a subclass)");
1b9e472d 202
87ca293b 203 $name = $attr->name;
1b9e472d 204 }
205 else{
87ca293b 206 # _process_attribute
207 $name = shift;
1b9e472d 208
87ca293b 209 my %args = (@_ == 1) ? %{$_[0]} : @_;
1b9e472d 210
87ca293b 211 defined($name)
212 or $self->throw_error('You must provide a name for the attribute');
1b9e472d 213
87ca293b 214 if ($name =~ s/^\+//) { # inherited attributes
2b908b79 215 my $inherited_attr = $self->find_attribute_by_name($name)
87ca293b 216 or $self->throw_error("Could not find an attribute by the name of '$name' to inherit from in ".$self->name);
217
8cf51b82 218 $attr = $inherited_attr->clone_and_inherit_options(%args);
87ca293b 219 }
220 else{
8cf51b82 221 my($attribute_class, @traits) = $self->attribute_metaclass->interpolate_class(\%args);
87ca293b 222 $args{traits} = \@traits if @traits;
223
2a464664 224 $attr = $attribute_class->new($name, %args);
87ca293b 225 }
226 }
1b9e472d 227
1d76ae62 228 Scalar::Util::weaken( $attr->{associated_class} = $self );
1b9e472d 229
df7e4729 230 # install accessors first
231 $attr->install_accessors();
232
233 # then register the attribute to the metaclass
abbcd124 234 $attr->{insertion_order} = keys %{ $self->{attributes} };
235 $self->{attributes}{$name} = $attr;
236 delete $self->{_mouse_cache}; # clears internal cache
1b9e472d 237
3b48bcc8 238 if(!$attr->{associated_methods} && ($attr->{is} || '') ne 'bare'){
239 Carp::carp(qq{Attribute ($name) of class }.$self->name
240 .qq{ has no associated methods (did you mean to provide an "is" argument?)});
60f6eba9 241 }
abbcd124 242 return $attr;
243}
74de0f8b 244
abbcd124 245sub _calculate_all_attributes {
246 my($self) = @_;
247 my %seen;
248 my @all_attrs;
249 foreach my $class($self->linearized_isa) {
250 my $meta = Mouse::Util::get_metaclass_by_name($class) or next;
251 my @attrs = grep { !$seen{$_->name}++ } values %{$meta->{attributes}};
252 @attrs = sort {
253 $b->{insertion_order} <=> $a->{insertion_order}
254 } @attrs;
255 push @all_attrs, @attrs;
a3a09e38 256 }
abbcd124 257 return [reverse @all_attrs];
c3398f5b 258}
259
cccb83de 260sub linearized_isa;
8536d351 261
ba153b33 262sub new_object;
13b99908 263sub clone_object;
1b9e472d 264
cfef75f0 265sub immutable_options {
266 my ( $self, @args ) = @_;
267
268 return (
7efbc77d 269 inline_constructor => 1,
e578d610 270 inline_destructor => 1,
2a464664 271 constructor_name => 'new',
cfef75f0 272 @args,
6a1d1835 273 );
cfef75f0 274}
275
cfef75f0 276sub make_immutable {
277 my $self = shift;
278 my %args = $self->immutable_options(@_);
6a1d1835 279
fc1d8369 280 $self->{is_immutable}++;
c7a6403f 281
6a1d1835 282 if ($args{inline_constructor}) {
380e1cd7 283 $self->add_method($args{constructor_name} =>
637d4f17 284 Mouse::Util::load_class($self->constructor_class)
285 ->_generate_constructor($self, \%args));
c7a6403f 286 }
287
8632b6fe 288 if ($args{inline_destructor}) {
380e1cd7 289 $self->add_method(DESTROY =>
637d4f17 290 Mouse::Util::load_class($self->destructor_class)
291 ->_generate_destructor($self, \%args));
8632b6fe 292 }
2276cb14 293
89681b0b 294 # Moose's make_immutable returns true allowing calling code to skip
295 # setting an explicit true value at the end of a source file.
2276cb14 296 return 1;
fc1d8369 297}
ad958001 298
32490a72 299sub make_mutable {
300 my($self) = @_;
301 $self->{is_immutable} = 0;
302 return;
303}
ad958001 304
80efe911 305sub is_immutable;
306sub is_mutable { !$_[0]->is_immutable }
84ef660f 307
8d5287a7 308sub _install_modifier {
8d59c723 309 my( $self, $type, $name, $code ) = @_;
310 my $into = $self->name;
3fbade18 311
312 my $original = $into->can($name)
083e49a5 313 or $self->throw_error("The method '$name' was not found in the inheritance hierarchy for $into");
3fbade18 314
315 my $modifier_table = $self->{modifiers}{$name};
316
317 if(!$modifier_table){
d686eec5 318 my(@before, @after, @around);
319 my $cache = $original;
1b490891 320 my $modified = sub {
d686eec5 321 if(@before) {
322 for my $c (@before) { $c->(@_) }
323 }
324 unless(@after) {
1b490891 325 return $cache->(@_);
326 }
327
3fbade18 328 if(wantarray){ # list context
329 my @rval = $cache->(@_);
330
331 for my $c(@after){ $c->(@_) }
332 return @rval;
333 }
334 elsif(defined wantarray){ # scalar context
335 my $rval = $cache->(@_);
336
337 for my $c(@after){ $c->(@_) }
338 return $rval;
339 }
340 else{ # void context
341 $cache->(@_);
342
343 for my $c(@after){ $c->(@_) }
344 return;
345 }
346 };
347
348 $self->{modifiers}{$name} = $modifier_table = {
349 original => $original,
350
351 before => \@before,
352 after => \@after,
d686eec5 353 around => \@around,
3fbade18 354
355 cache => \$cache, # cache for around modifiers
356 };
357
358 $self->add_method($name => $modified);
359 }
360
361 if($type eq 'before'){
362 unshift @{$modifier_table->{before}}, $code;
363 }
364 elsif($type eq 'after'){
365 push @{$modifier_table->{after}}, $code;
366 }
367 else{ # around
368 push @{$modifier_table->{around}}, $code;
369
370 my $next = ${ $modifier_table->{cache} };
371 ${ $modifier_table->{cache} } = sub{ $code->($next, @_) };
372 }
373
374 return;
375}
376
50dc6ee5 377sub add_before_method_modifier {
4859d490 378 my ( $self, $name, $code ) = @_;
8d59c723 379 $self->_install_modifier( 'before', $name, $code );
50dc6ee5 380}
381
382sub add_around_method_modifier {
4859d490 383 my ( $self, $name, $code ) = @_;
8d59c723 384 $self->_install_modifier( 'around', $name, $code );
50dc6ee5 385}
386
387sub add_after_method_modifier {
4859d490 388 my ( $self, $name, $code ) = @_;
8d59c723 389 $self->_install_modifier( 'after', $name, $code );
50dc6ee5 390}
391
67199842 392sub add_override_method_modifier {
393 my ($self, $name, $code) = @_;
394
768804c0 395 if($self->has_method($name)){
396 $self->throw_error("Cannot add an override method if a local method is already present");
85bd3f44 397 }
398
6cfa1e5e 399 my $package = $self->name;
67199842 400
85bd3f44 401 my $super_body = $package->can($name)
6cfa1e5e 402 or $self->throw_error("You cannot override '$name' because it has no super method");
67199842 403
85bd3f44 404 $self->add_method($name => sub {
405 local $Mouse::SUPER_PACKAGE = $package;
406 local $Mouse::SUPER_BODY = $super_body;
407 local @Mouse::SUPER_ARGS = @_;
408
409 $code->(@_);
410 });
411 return;
67199842 412}
413
768804c0 414sub add_augment_method_modifier {
415 my ($self, $name, $code) = @_;
416 if($self->has_method($name)){
417 $self->throw_error("Cannot add an augment method if a local method is already present");
418 }
419
420 my $super = $self->find_method_by_name($name)
421 or $self->throw_error("You cannot augment '$name' because it has no super method");
422
423 my $super_package = $super->package_name;
424 my $super_body = $super->body;
425
426 $self->add_method($name => sub{
427 local $Mouse::INNER_BODY{$super_package} = $code;
428 local $Mouse::INNER_ARGS{$super_package} = [@_];
429 $super_body->(@_);
430 });
431 return;
432}
433
47f36c05 434sub does_role {
435 my ($self, $role_name) = @_;
ad958001 436
47f36c05 437 (defined $role_name)
fce211ae 438 || $self->throw_error("You must supply a role name to look for");
ad958001 439
f3e11122 440 $role_name = $role_name->name if ref $role_name;
441
f7fec86c 442 for my $class ($self->linearized_isa) {
95ecd6f1 443 my $meta = Mouse::Util::get_metaclass_by_name($class)
444 or next;
3a63a2e7 445
446 for my $role (@{ $meta->roles }) {
ff687069 447
3a63a2e7 448 return 1 if $role->does_role($role_name);
f7fec86c 449 }
47f36c05 450 }
ad958001 451
47f36c05 452 return 0;
453}
454
c3398f5b 4551;
c3398f5b 456__END__
457
458=head1 NAME
459
1820fffe 460Mouse::Meta::Class - The Mouse class metaclass
c3398f5b 461
a25ca8d6 462=head1 VERSION
463
a7e3b78e 464This document describes Mouse version 0.76
a25ca8d6 465
503ed648 466=head1 DESCRIPTION
467
468This class is a meta object protocol for Mouse classes,
469which is a subset of Moose::Meta:::Class.
470
c3398f5b 471=head1 METHODS
472
612d3e1a 473=head2 C<< initialize(ClassName) -> Mouse::Meta::Class >>
c3398f5b 474
31c5194b 475Finds or creates a C<Mouse::Meta::Class> instance for the given ClassName. Only
306290e8 476one instance should exist for a given class.
c3398f5b 477
612d3e1a 478=head2 C<< name -> ClassName >>
c3398f5b 479
480Returns the name of the owner class.
481
612d3e1a 482=head2 C<< superclasses -> ClassNames >> C<< superclass(ClassNames) >>
c3398f5b 483
484Gets (or sets) the list of superclasses of the owner class.
485
31c5194b 486=head2 C<< add_method(name => CodeRef) >>
c3398f5b 487
31c5194b 488Adds a method to the owner class.
c3398f5b 489
31c5194b 490=head2 C<< has_method(name) -> Bool >>
72b88a88 491
31c5194b 492Returns whether we have a method with the given name.
72b88a88 493
31c5194b 494=head2 C<< get_method(name) -> Mouse::Meta::Method | undef >>
c68b4110 495
31c5194b 496Returns a L<Mouse::Meta::Method> with the given name.
497
498Note that you can also use C<< $metaclass->name->can($name) >> for a method body.
499
500=head2 C<< get_method_list -> Names >>
501
502Returns a list of method names which are defined in the local class.
503If you want a list of all applicable methods for a class, use the
504C<get_all_methods> method.
505
506=head2 C<< get_all_methods -> (Mouse::Meta::Method) >>
507
508Return the list of all L<Mouse::Meta::Method> instances associated with
509the class and its superclasses.
510
511=head2 C<< add_attribute(name => spec | Mouse::Meta::Attribute) >>
512
513Begins keeping track of the existing L<Mouse::Meta::Attribute> for the owner
514class.
c68b4110 515
612d3e1a 516=head2 C<< has_attribute(Name) -> Bool >>
66eea168 517
518Returns whether we have a L<Mouse::Meta::Attribute> with the given name.
519
31c5194b 520=head2 C<< get_attribute Name -> Mouse::Meta::Attribute | undef >>
c3398f5b 521
306290e8 522Returns the L<Mouse::Meta::Attribute> with the given name.
c3398f5b 523
31c5194b 524=head2 C<< get_attribute_list -> Names >>
525
526Returns a list of attribute names which are defined in the local
527class. If you want a list of all applicable attributes for a class,
528use the C<get_all_attributes> method.
529
530=head2 C<< get_all_attributes -> (Mouse::Meta::Attribute) >>
531
532Returns the list of all L<Mouse::Meta::Attribute> instances associated with
533this class and its superclasses.
534
612d3e1a 535=head2 C<< linearized_isa -> [ClassNames] >>
c3398f5b 536
537Returns the list of classes in method dispatch order, with duplicates removed.
538
612d3e1a 539=head2 C<< new_object(Parameters) -> Instance >>
2cea7a5f 540
612d3e1a 541Creates a new instance.
2cea7a5f 542
612d3e1a 543=head2 C<< clone_object(Instance, Parameters) -> Instance >>
f7b11a21 544
31c5194b 545Clones the given instance which must be an instance governed by this
f7b11a21 546metaclass.
547
31c5194b 548=head2 C<< throw_error(Message, Parameters) >>
549
550Throws an error with the given message.
551
1820fffe 552=head1 SEE ALSO
f7b11a21 553
6b82419e 554L<Mouse::Meta::Module>
555
1820fffe 556L<Moose::Meta::Class>
f7b11a21 557
31c5194b 558L<Class::MOP::Class>
559
c3398f5b 560=cut
561