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