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