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