mergeing the method fix in
[gitmo/Class-MOP.git] / lib / Class / MOP / Class.pm
CommitLineData
8b978dd5 1
2package Class::MOP::Class;
3
4use strict;
5use warnings;
6
7use Carp 'confess';
77e5fce4 8use Scalar::Util 'blessed', 'reftype', 'weaken';
8b978dd5 9use Sub::Name 'subname';
96ceced8 10use B 'svref_2object';
8b978dd5 11
c4260b45 12our $VERSION = '0.19';
f0480c45 13our $AUTHORITY = 'cpan:STEVAN';
8b978dd5 14
2243a22b 15use base 'Class::MOP::Module';
16
839ea973 17use Class::MOP::Instance;
18
aa448b16 19# Self-introspection
2eb717d5 20
aa448b16 21sub meta { Class::MOP::Class->initialize(blessed($_[0]) || $_[0]) }
2eb717d5 22
8b978dd5 23# Creation
587aca23 24
be7677c7 25sub initialize {
26 my $class = shift;
27 my $package_name = shift;
28 (defined $package_name && $package_name && !blessed($package_name))
29 || confess "You must pass a package name and it cannot be blessed";
30 $class->construct_class_instance(':package' => $package_name, @_);
31}
32
33sub reinitialize {
34 my $class = shift;
35 my $package_name = shift;
36 (defined $package_name && $package_name && !blessed($package_name))
37 || confess "You must pass a package name and it cannot be blessed";
38 Class::MOP::remove_metaclass_by_name($package_name);
39 $class->construct_class_instance(':package' => $package_name, @_);
40}
651955fb 41
be7677c7 42# NOTE: (meta-circularity)
43# this is a special form of &construct_instance
44# (see below), which is used to construct class
45# meta-object instances for any Class::MOP::*
46# class. All other classes will use the more
47# normal &construct_instance.
48sub construct_class_instance {
49 my $class = shift;
50 my %options = @_;
51 my $package_name = $options{':package'};
52 (defined $package_name && $package_name)
53 || confess "You must pass a package name";
54 # NOTE:
55 # return the metaclass if we have it cached,
56 # and it is still defined (it has not been
57 # reaped by DESTROY yet, which can happen
58 # annoyingly enough during global destruction)
59 return Class::MOP::get_metaclass_by_name($package_name)
60 if Class::MOP::does_metaclass_exist($package_name);
61
62 # NOTE:
63 # we need to deal with the possibility
64 # of class immutability here, and then
65 # get the name of the class appropriately
66 $class = (blessed($class)
67 ? ($class->is_immutable
68 ? $class->get_mutable_metaclass_name()
69 : blessed($class))
70 : $class);
71
72 $class = blessed($class) || $class;
73 # now create the metaclass
74 my $meta;
75 if ($class =~ /^Class::MOP::Class$/) {
76 no strict 'refs';
77 $meta = bless {
78 # inherited from Class::MOP::Package
79 '$:package' => $package_name,
c4260b45 80
81 # NOTE:
82 # since the following attributes will
83 # actually be loaded from the symbol
84 # table, and actually bypass the instance
85 # entirely, we can just leave these things
86 # listed here for reference, because they
87 # should not actually have a value associated
88 # with the slot.
89 '%:namespace' => \undef,
be7677c7 90 # inherited from Class::MOP::Module
c4260b45 91 '$:version' => \undef,
92 '$:authority' => \undef,
93 # defined in Class::MOP::Class
c4260b45 94
7855ddba 95 '%:methods' => {},
c4260b45 96 '%:attributes' => {},
be7677c7 97 '$:attribute_metaclass' => $options{':attribute_metaclass'} || 'Class::MOP::Attribute',
98 '$:method_metaclass' => $options{':method_metaclass'} || 'Class::MOP::Method',
99 '$:instance_metaclass' => $options{':instance_metaclass'} || 'Class::MOP::Instance',
100 } => $class;
101 }
102 else {
103 # NOTE:
104 # it is safe to use meta here because
105 # class will always be a subclass of
106 # Class::MOP::Class, which defines meta
107 $meta = $class->meta->construct_instance(%options)
727919c5 108 }
109
be7677c7 110 # and check the metaclass compatibility
111 $meta->check_metaclass_compatability();
ff43b9d6 112
be7677c7 113 Class::MOP::store_metaclass_by_name($package_name, $meta);
b9d9fc0b 114
be7677c7 115 # NOTE:
116 # we need to weaken any anon classes
117 # so that they can call DESTROY properly
b9d9fc0b 118 Class::MOP::weaken_metaclass($package_name) if $meta->is_anon_class;
119
be7677c7 120 $meta;
121}
122
123sub check_metaclass_compatability {
124 my $self = shift;
125
126 # this is always okay ...
127 return if blessed($self) eq 'Class::MOP::Class' &&
128 $self->instance_metaclass eq 'Class::MOP::Instance';
129
130 my @class_list = $self->class_precedence_list;
131 shift @class_list; # shift off $self->name
373a16ae 132
be7677c7 133 foreach my $class_name (@class_list) {
134 my $meta = Class::MOP::get_metaclass_by_name($class_name) || next;
135
373a16ae 136 # NOTE:
137 # we need to deal with the possibility
138 # of class immutability here, and then
be7677c7 139 # get the name of the class appropriately
140 my $meta_type = ($meta->is_immutable
141 ? $meta->get_mutable_metaclass_name()
142 : blessed($meta));
143
144 ($self->isa($meta_type))
145 || confess $self->name . "->meta => (" . (blessed($self)) . ")" .
146 " is not compatible with the " .
147 $class_name . "->meta => (" . ($meta_type) . ")";
77e5fce4 148 # NOTE:
be7677c7 149 # we also need to check that instance metaclasses
150 # are compatabile in the same the class.
151 ($self->instance_metaclass->isa($meta->instance_metaclass))
152 || confess $self->name . "->meta => (" . ($self->instance_metaclass) . ")" .
153 " is not compatible with the " .
154 $class_name . "->meta => (" . ($meta->instance_metaclass) . ")";
155 }
156}
8b978dd5 157
6d5355c3 158## ANON classes
159
160{
161 # NOTE:
162 # this should be sufficient, if you have a
163 # use case where it is not, write a test and
164 # I will change it.
165 my $ANON_CLASS_SERIAL = 0;
b9d9fc0b 166
167 # NOTE:
168 # we need a sufficiently annoying prefix
169 # this should suffice for now, this is
170 # used in a couple of places below, so
171 # need to put it up here for now.
172 my $ANON_CLASS_PREFIX = 'Class::MOP::Class::__ANON__::SERIAL::';
173
174 sub is_anon_class {
175 my $self = shift;
176 $self->name =~ /^$ANON_CLASS_PREFIX/ ? 1 : 0;
177 }
6d5355c3 178
179 sub create_anon_class {
180 my ($class, %options) = @_;
181 my $package_name = $ANON_CLASS_PREFIX . ++$ANON_CLASS_SERIAL;
88dd563c 182 return $class->create($package_name, %options);
b9d9fc0b 183 }
6d5355c3 184
b9d9fc0b 185 # NOTE:
186 # this will only get called for
187 # anon-classes, all other calls
188 # are assumed to occur during
189 # global destruction and so don't
190 # really need to be handled explicitly
191 sub DESTROY {
192 my $self = shift;
193 return unless $self->name =~ /^$ANON_CLASS_PREFIX/;
194 my ($serial_id) = ($self->name =~ /^$ANON_CLASS_PREFIX(\d+)/);
195 no strict 'refs';
196 foreach my $key (keys %{$ANON_CLASS_PREFIX . $serial_id}) {
197 delete ${$ANON_CLASS_PREFIX . $serial_id}{$key};
198 }
199 delete ${'main::' . $ANON_CLASS_PREFIX}{$serial_id . '::'};
6d5355c3 200 }
b9d9fc0b 201
6d5355c3 202}
203
204# creating classes with MOP ...
205
8b978dd5 206sub create {
88dd563c 207 my $class = shift;
208 my $package_name = shift;
209
bfe4d0fc 210 (defined $package_name && $package_name)
8b978dd5 211 || confess "You must pass a package name";
88dd563c 212
213 (scalar @_ % 2 == 0)
214 || confess "You much pass all parameters as name => value pairs " .
215 "(I found an uneven number of params in \@_)";
216
217 my (%options) = @_;
218
8b978dd5 219 my $code = "package $package_name;";
88dd563c 220 $code .= "\$$package_name\:\:VERSION = '" . $options{version} . "';"
221 if exists $options{version};
222 $code .= "\$$package_name\:\:AUTHORITY = '" . $options{authority} . "';"
223 if exists $options{authority};
224
8b978dd5 225 eval $code;
226 confess "creation of $package_name failed : $@" if $@;
88dd563c 227
bfe4d0fc 228 my $meta = $class->initialize($package_name);
aa448b16 229
230 $meta->add_method('meta' => sub {
df7b4119 231 $class->initialize(blessed($_[0]) || $_[0]);
aa448b16 232 });
233
8b978dd5 234 $meta->superclasses(@{$options{superclasses}})
235 if exists $options{superclasses};
2eb717d5 236 # NOTE:
237 # process attributes first, so that they can
238 # install accessors, but locally defined methods
239 # can then overwrite them. It is maybe a little odd, but
240 # I think this should be the order of things.
241 if (exists $options{attributes}) {
cbd9f942 242 foreach my $attr (@{$options{attributes}}) {
243 $meta->add_attribute($attr);
2eb717d5 244 }
245 }
bfe4d0fc 246 if (exists $options{methods}) {
247 foreach my $method_name (keys %{$options{methods}}) {
248 $meta->add_method($method_name, $options{methods}->{$method_name});
249 }
2eb717d5 250 }
8b978dd5 251 return $meta;
252}
253
7b31baf4 254## Attribute readers
255
256# NOTE:
257# all these attribute readers will be bootstrapped
258# away in the Class::MOP bootstrap section
259
7b31baf4 260sub get_attribute_map { $_[0]->{'%:attributes'} }
261sub attribute_metaclass { $_[0]->{'$:attribute_metaclass'} }
262sub method_metaclass { $_[0]->{'$:method_metaclass'} }
2bab2be6 263sub instance_metaclass { $_[0]->{'$:instance_metaclass'} }
7b31baf4 264
0f71bc80 265# FIXME:
266# this is a prime canidate for conversion to XS
7855ddba 267sub get_method_map {
c4260b45 268 my $self = shift;
7855ddba 269 my $map = $self->{'%:methods'};
0f71bc80 270
271 my $class_name = $self->name;
272 my $method_metaclass = $self->method_metaclass;
273
92330ee2 274 foreach my $symbol ($self->list_all_package_symbols('CODE')) {
91e0eb4a 275 my $code = $self->get_package_symbol('&' . $symbol);
0f71bc80 276
277 next if exists $map->{$symbol} && $map->{$symbol}->body == $code;
278
279 my $gv = svref_2object($code)->GV;
280 next if ($gv->STASH->NAME || '') ne $class_name &&
281 ($gv->NAME || '') ne '__ANON__';
282
283 $map->{$symbol} = $method_metaclass->wrap($code);
7855ddba 284 }
0f71bc80 285
7855ddba 286 return $map;
c4260b45 287}
288
c9e77dbb 289# Instance Construction & Cloning
290
5f3c057a 291sub new_object {
292 my $class = shift;
651955fb 293 # NOTE:
294 # we need to protect the integrity of the
295 # Class::MOP::Class singletons here, so we
296 # delegate this to &construct_class_instance
297 # which will deal with the singletons
298 return $class->construct_class_instance(@_)
299 if $class->name->isa('Class::MOP::Class');
24869f62 300 return $class->construct_instance(@_);
5f3c057a 301}
e16da3e6 302
303sub construct_instance {
cbd9f942 304 my ($class, %params) = @_;
0e76a376 305 my $meta_instance = $class->get_meta_instance();
306 my $instance = $meta_instance->create_instance();
c9e77dbb 307 foreach my $attr ($class->compute_all_applicable_attributes()) {
f892c0f0 308 $attr->initialize_instance_slot($meta_instance, $instance, \%params);
cbd9f942 309 }
2d711cc8 310 return $instance;
311}
312
313sub get_meta_instance {
314 my $class = shift;
052c2a1a 315 return $class->instance_metaclass->new(
316 $class,
317 $class->compute_all_applicable_attributes()
318 );
e16da3e6 319}
320
5f3c057a 321sub clone_object {
322 my $class = shift;
7b31baf4 323 my $instance = shift;
651955fb 324 (blessed($instance) && $instance->isa($class->name))
325 || confess "You must pass an instance ($instance) of the metaclass (" . $class->name . ")";
326 # NOTE:
327 # we need to protect the integrity of the
328 # Class::MOP::Class singletons here, they
a740253a 329 # should not be cloned.
651955fb 330 return $instance if $instance->isa('Class::MOP::Class');
f7259199 331 $class->clone_instance($instance, @_);
5f3c057a 332}
333
c9e77dbb 334sub clone_instance {
651955fb 335 my ($class, $instance, %params) = @_;
336 (blessed($instance))
c9e77dbb 337 || confess "You can only clone instances, \$self is not a blessed instance";
f7259199 338 my $meta_instance = $class->get_meta_instance();
339 my $clone = $meta_instance->clone_instance($instance);
11977e43 340 foreach my $key (keys %params) {
f7259199 341 next unless $meta_instance->is_valid_slot($key);
342 $meta_instance->set_slot_value($clone, $key, $params{$key});
343 }
c9e77dbb 344 return $clone;
345}
346
8b978dd5 347# Inheritance
348
349sub superclasses {
350 my $self = shift;
8b978dd5 351 if (@_) {
352 my @supers = @_;
9d6dce77 353 @{$self->get_package_symbol('@ISA')} = @supers;
d82060fe 354 # NOTE:
355 # we need to check the metaclass
356 # compatability here so that we can
357 # be sure that the superclass is
358 # not potentially creating an issues
359 # we don't know about
360 $self->check_metaclass_compatability();
8b978dd5 361 }
9d6dce77 362 @{$self->get_package_symbol('@ISA')};
8b978dd5 363}
364
365sub class_precedence_list {
366 my $self = shift;
bfe4d0fc 367 # NOTE:
368 # We need to check for ciruclar inheirtance here.
369 # This will do nothing if all is well, and blow
370 # up otherwise. Yes, it's an ugly hack, better
371 # suggestions are welcome.
93b4e576 372 { ($self->name || return)->isa('This is a test for circular inheritance') }
8c936afc 373 # ... and now back to our regularly scheduled program
8b978dd5 374 (
375 $self->name,
376 map {
f7259199 377 $self->initialize($_)->class_precedence_list()
8b978dd5 378 } $self->superclasses()
379 );
380}
381
0882828e 382## Methods
383
384sub add_method {
385 my ($self, $method_name, $method) = @_;
386 (defined $method_name && $method_name)
387 || confess "You must define a method name";
2d711cc8 388
7855ddba 389 my $body;
7855ddba 390 if (blessed($method)) {
92330ee2 391 $body = $method->body;
7855ddba 392 }
92330ee2 393 else {
7855ddba 394 $body = $method;
7855ddba 395 ('CODE' eq (reftype($body) || ''))
396 || confess "Your code block must be a CODE reference";
0f71bc80 397 $method = $self->method_metaclass->wrap($body);
7855ddba 398 }
0f71bc80 399 $self->get_method_map->{$method_name} = $method;
7855ddba 400
401 my $full_method_name = ($self->name . '::' . $method_name);
402 $self->add_package_symbol("&${method_name}" => subname $full_method_name => $body);
0882828e 403}
404
a4258ffd 405{
2d711cc8 406 my $fetch_and_prepare_method = sub {
407 my ($self, $method_name) = @_;
408 # fetch it locally
409 my $method = $self->get_method($method_name);
410 # if we dont have local ...
411 unless ($method) {
195f5bf8 412 # try to find the next method
413 $method = $self->find_next_method_by_name($method_name);
414 # die if it does not exist
415 (defined $method)
2d711cc8 416 || confess "The method '$method_name' is not found in the inherience hierarchy for this class";
195f5bf8 417 # and now make sure to wrap it
418 # even if it is already wrapped
419 # because we need a new sub ref
2d711cc8 420 $method = Class::MOP::Method::Wrapped->wrap($method);
195f5bf8 421 }
422 else {
423 # now make sure we wrap it properly
424 $method = Class::MOP::Method::Wrapped->wrap($method)
425 unless $method->isa('Class::MOP::Method::Wrapped');
426 }
427 $self->add_method($method_name => $method);
2d711cc8 428 return $method;
429 };
430
431 sub add_before_method_modifier {
432 my ($self, $method_name, $method_modifier) = @_;
433 (defined $method_name && $method_name)
434 || confess "You must pass in a method name";
435 my $method = $fetch_and_prepare_method->($self, $method_name);
436 $method->add_before_modifier(subname ':before' => $method_modifier);
437 }
438
439 sub add_after_method_modifier {
440 my ($self, $method_name, $method_modifier) = @_;
441 (defined $method_name && $method_name)
442 || confess "You must pass in a method name";
443 my $method = $fetch_and_prepare_method->($self, $method_name);
444 $method->add_after_modifier(subname ':after' => $method_modifier);
445 }
446
447 sub add_around_method_modifier {
448 my ($self, $method_name, $method_modifier) = @_;
449 (defined $method_name && $method_name)
450 || confess "You must pass in a method name";
451 my $method = $fetch_and_prepare_method->($self, $method_name);
452 $method->add_around_modifier(subname ':around' => $method_modifier);
453 }
a4258ffd 454
8c936afc 455 # NOTE:
456 # the methods above used to be named like this:
457 # ${pkg}::${method}:(before|after|around)
458 # but this proved problematic when using one modifier
459 # to wrap multiple methods (something which is likely
460 # to happen pretty regularly IMO). So instead of naming
461 # it like this, I have chosen to just name them purely
462 # with their modifier names, like so:
463 # :(before|after|around)
464 # The fact is that in a stack trace, it will be fairly
465 # evident from the context what method they are attached
466 # to, and so don't need the fully qualified name.
ee5e71d4 467}
468
663f8198 469sub alias_method {
470 my ($self, $method_name, $method) = @_;
471 (defined $method_name && $method_name)
472 || confess "You must define a method name";
de19f115 473
0f71bc80 474 my $body = (blessed($method) ? $method->body : $method);
475 ('CODE' eq (reftype($body) || ''))
476 || confess "Your code block must be a CODE reference";
7855ddba 477
478 $self->add_package_symbol("&${method_name}" => $body);
16e960bd 479}
480
de19f115 481sub has_method {
482 my ($self, $method_name) = @_;
483 (defined $method_name && $method_name)
484 || confess "You must define a method name";
0882828e 485
0f71bc80 486 return 0 unless exists $self->get_method_map->{$method_name};
de19f115 487 return 1;
0882828e 488}
489
490sub get_method {
c9b8b7f9 491 my ($self, $method_name) = @_;
0882828e 492 (defined $method_name && $method_name)
493 || confess "You must define a method name";
7855ddba 494
0f71bc80 495 # NOTE:
496 # I don't really need this here, because
497 # if the method_map is missing a key it
498 # will just return undef for me now
499 # return unless $self->has_method($method_name);
9d6dce77 500
7855ddba 501 return $self->get_method_map->{$method_name};
c9b8b7f9 502}
503
504sub remove_method {
505 my ($self, $method_name) = @_;
506 (defined $method_name && $method_name)
507 || confess "You must define a method name";
508
509 my $removed_method = $self->get_method($method_name);
510
0f71bc80 511 do {
512 $self->remove_package_symbol("&${method_name}");
513 delete $self->get_method_map->{$method_name};
514 } if defined $removed_method;
7855ddba 515
c9b8b7f9 516 return $removed_method;
517}
518
519sub get_method_list {
520 my $self = shift;
0f71bc80 521 keys %{$self->get_method_map};
7855ddba 522}
523
524sub find_method_by_name {
525 my ($self, $method_name) = @_;
526 # FIXME
527 return $self->name->can($method_name);
a5eca695 528}
529
530sub compute_all_applicable_methods {
531 my $self = shift;
532 my @methods;
533 # keep a record of what we have seen
534 # here, this will handle all the
535 # inheritence issues because we are
536 # using the &class_precedence_list
537 my (%seen_class, %seen_method);
538 foreach my $class ($self->class_precedence_list()) {
539 next if $seen_class{$class};
540 $seen_class{$class}++;
541 # fetch the meta-class ...
542 my $meta = $self->initialize($class);
543 foreach my $method_name ($meta->get_method_list()) {
544 next if exists $seen_method{$method_name};
545 $seen_method{$method_name}++;
546 push @methods => {
547 name => $method_name,
548 class => $class,
549 code => $meta->get_method($method_name)
550 };
551 }
552 }
553 return @methods;
554}
555
a5eca695 556sub find_all_methods_by_name {
557 my ($self, $method_name) = @_;
558 (defined $method_name && $method_name)
559 || confess "You must define a method name to find";
560 my @methods;
561 # keep a record of what we have seen
562 # here, this will handle all the
563 # inheritence issues because we are
564 # using the &class_precedence_list
565 my %seen_class;
566 foreach my $class ($self->class_precedence_list()) {
567 next if $seen_class{$class};
568 $seen_class{$class}++;
569 # fetch the meta-class ...
96ceced8 570 my $meta = $self->initialize($class);
a5eca695 571 push @methods => {
572 name => $method_name,
573 class => $class,
574 code => $meta->get_method($method_name)
575 } if $meta->has_method($method_name);
576 }
577 return @methods;
8b978dd5 578}
579
96ceced8 580sub find_next_method_by_name {
581 my ($self, $method_name) = @_;
582 (defined $method_name && $method_name)
2d711cc8 583 || confess "You must define a method name to find";
96ceced8 584 # keep a record of what we have seen
585 # here, this will handle all the
586 # inheritence issues because we are
587 # using the &class_precedence_list
588 my %seen_class;
2d711cc8 589 my @cpl = $self->class_precedence_list();
590 shift @cpl; # discard ourselves
96ceced8 591 foreach my $class (@cpl) {
592 next if $seen_class{$class};
593 $seen_class{$class}++;
594 # fetch the meta-class ...
595 my $meta = $self->initialize($class);
2d711cc8 596 return $meta->get_method($method_name)
597 if $meta->has_method($method_name);
96ceced8 598 }
2d711cc8 599 return;
96ceced8 600}
601
552e3d24 602## Attributes
603
e16da3e6 604sub add_attribute {
2e41896e 605 my $self = shift;
606 # either we have an attribute object already
607 # or we need to create one from the args provided
608 my $attribute = blessed($_[0]) ? $_[0] : $self->attribute_metaclass->new(@_);
609 # make sure it is derived from the correct type though
610 ($attribute->isa('Class::MOP::Attribute'))
611 || confess "Your attribute must be an instance of Class::MOP::Attribute (or a subclass)";
9ec169fe 612 $attribute->attach_to_class($self);
2d711cc8 613 $attribute->install_accessors();
291073fc 614 $self->get_attribute_map->{$attribute->name} = $attribute;
e16da3e6 615}
616
617sub has_attribute {
618 my ($self, $attribute_name) = @_;
619 (defined $attribute_name && $attribute_name)
620 || confess "You must define an attribute name";
291073fc 621 exists $self->get_attribute_map->{$attribute_name} ? 1 : 0;
e16da3e6 622}
623
624sub get_attribute {
625 my ($self, $attribute_name) = @_;
626 (defined $attribute_name && $attribute_name)
627 || confess "You must define an attribute name";
f7259199 628 return $self->get_attribute_map->{$attribute_name}
629 if $self->has_attribute($attribute_name);
22286063 630 return;
e16da3e6 631}
632
633sub remove_attribute {
634 my ($self, $attribute_name) = @_;
635 (defined $attribute_name && $attribute_name)
636 || confess "You must define an attribute name";
7b31baf4 637 my $removed_attribute = $self->get_attribute_map->{$attribute_name};
22286063 638 return unless defined $removed_attribute;
639 delete $self->get_attribute_map->{$attribute_name};
2d711cc8 640 $removed_attribute->remove_accessors();
2d711cc8 641 $removed_attribute->detach_from_class();
e16da3e6 642 return $removed_attribute;
643}
644
645sub get_attribute_list {
646 my $self = shift;
f7259199 647 keys %{$self->get_attribute_map};
e16da3e6 648}
649
650sub compute_all_applicable_attributes {
651 my $self = shift;
652 my @attrs;
653 # keep a record of what we have seen
654 # here, this will handle all the
655 # inheritence issues because we are
656 # using the &class_precedence_list
657 my (%seen_class, %seen_attr);
658 foreach my $class ($self->class_precedence_list()) {
659 next if $seen_class{$class};
660 $seen_class{$class}++;
661 # fetch the meta-class ...
f7259199 662 my $meta = $self->initialize($class);
e16da3e6 663 foreach my $attr_name ($meta->get_attribute_list()) {
664 next if exists $seen_attr{$attr_name};
665 $seen_attr{$attr_name}++;
c9e77dbb 666 push @attrs => $meta->get_attribute($attr_name);
e16da3e6 667 }
668 }
669 return @attrs;
670}
2eb717d5 671
058c1cf5 672sub find_attribute_by_name {
673 my ($self, $attr_name) = @_;
674 # keep a record of what we have seen
675 # here, this will handle all the
676 # inheritence issues because we are
677 # using the &class_precedence_list
678 my %seen_class;
679 foreach my $class ($self->class_precedence_list()) {
680 next if $seen_class{$class};
681 $seen_class{$class}++;
682 # fetch the meta-class ...
683 my $meta = $self->initialize($class);
684 return $meta->get_attribute($attr_name)
685 if $meta->has_attribute($attr_name);
686 }
687 return;
688}
689
857f87a7 690## Class closing
691
692sub is_mutable { 1 }
693sub is_immutable { 0 }
694
695sub make_immutable {
c0cbf4d9 696 return Class::MOP::Class::Immutable->make_metaclass_immutable(@_);
857f87a7 697}
698
8b978dd5 6991;
700
701__END__
702
703=pod
704
705=head1 NAME
706
707Class::MOP::Class - Class Meta Object
708
709=head1 SYNOPSIS
710
8c936afc 711 # assuming that class Foo
712 # has been defined, you can
713
fe122940 714 # use this for introspection ...
715
fe122940 716 # add a method to Foo ...
717 Foo->meta->add_method('bar' => sub { ... })
718
719 # get a list of all the classes searched
720 # the method dispatcher in the correct order
721 Foo->meta->class_precedence_list()
722
723 # remove a method from Foo
724 Foo->meta->remove_method('bar');
725
726 # or use this to actually create classes ...
727
88dd563c 728 Class::MOP::Class->create('Bar' => (
729 version => '0.01',
fe122940 730 superclasses => [ 'Foo' ],
731 attributes => [
732 Class::MOP:::Attribute->new('$bar'),
733 Class::MOP:::Attribute->new('$baz'),
734 ],
735 methods => {
736 calculate_bar => sub { ... },
737 construct_baz => sub { ... }
738 }
739 ));
740
8b978dd5 741=head1 DESCRIPTION
742
fe122940 743This is the largest and currently most complex part of the Perl 5
744meta-object protocol. It controls the introspection and
745manipulation of Perl 5 classes (and it can create them too). The
746best way to understand what this module can do, is to read the
747documentation for each of it's methods.
748
552e3d24 749=head1 METHODS
750
2eb717d5 751=head2 Self Introspection
752
753=over 4
754
755=item B<meta>
756
fe122940 757This will return a B<Class::MOP::Class> instance which is related
758to this class. Thereby allowing B<Class::MOP::Class> to actually
759introspect itself.
760
761As with B<Class::MOP::Attribute>, B<Class::MOP> will actually
762bootstrap this module by installing a number of attribute meta-objects
763into it's metaclass. This will allow this class to reap all the benifits
764of the MOP when subclassing it.
2eb717d5 765
766=back
767
552e3d24 768=head2 Class construction
769
a2e85e6c 770These methods will handle creating B<Class::MOP::Class> objects,
771which can be used to both create new classes, and analyze
772pre-existing classes.
552e3d24 773
774This module will internally store references to all the instances
775you create with these methods, so that they do not need to be
776created any more than nessecary. Basically, they are singletons.
777
778=over 4
779
88dd563c 780=item B<create ($package_name,
781 version =E<gt> ?$version,
782 authority =E<gt> ?$authority,
a2e85e6c 783 superclasses =E<gt> ?@superclasses,
784 methods =E<gt> ?%methods,
785 attributes =E<gt> ?%attributes)>
552e3d24 786
a2e85e6c 787This returns a B<Class::MOP::Class> object, bringing the specified
88dd563c 788C<$package_name> into existence and adding any of the C<$version>,
789C<$authority>, C<@superclasses>, C<%methods> and C<%attributes> to
790it.
552e3d24 791
587aca23 792=item B<create_anon_class (superclasses =E<gt> ?@superclasses,
793 methods =E<gt> ?%methods,
794 attributes =E<gt> ?%attributes)>
795
796This will create an anonymous class, it works much like C<create> but
797it does not need a C<$package_name>. Instead it will create a suitably
798unique package name for you to stash things into.
799
66b3dded 800=item B<initialize ($package_name, %options)>
552e3d24 801
a2e85e6c 802This initializes and returns returns a B<Class::MOP::Class> object
803for a given a C<$package_name>.
804
66b3dded 805=item B<reinitialize ($package_name, %options)>
806
807This removes the old metaclass, and creates a new one in it's place.
808Do B<not> use this unless you really know what you are doing, it could
809very easily make a very large mess of your program.
810
651955fb 811=item B<construct_class_instance (%options)>
a2e85e6c 812
813This will construct an instance of B<Class::MOP::Class>, it is
814here so that we can actually "tie the knot" for B<Class::MOP::Class>
815to use C<construct_instance> once all the bootstrapping is done. This
816method is used internally by C<initialize> and should never be called
817from outside of that method really.
552e3d24 818
550d56db 819=item B<check_metaclass_compatability>
820
821This method is called as the very last thing in the
822C<construct_class_instance> method. This will check that the
823metaclass you are creating is compatible with the metaclasses of all
824your ancestors. For more inforamtion about metaclass compatibility
825see the C<About Metaclass compatibility> section in L<Class::MOP>.
826
552e3d24 827=back
828
c9e77dbb 829=head2 Object instance construction and cloning
a2e85e6c 830
c9e77dbb 831These methods are B<entirely optional>, it is up to you whether you want
832to use them or not.
552e3d24 833
834=over 4
835
2bab2be6 836=item B<instance_metaclass>
837
2d711cc8 838=item B<get_meta_instance>
839
5f3c057a 840=item B<new_object (%params)>
841
842This is a convience method for creating a new object of the class, and
843blessing it into the appropriate package as well. Ideally your class
844would call a C<new> this method like so:
845
846 sub MyClass::new {
847 my ($class, %param) = @_;
848 $class->meta->new_object(%params);
849 }
850
851Of course the ideal place for this would actually be in C<UNIVERSAL::>
852but that is considered bad style, so we do not do that.
853
cbd9f942 854=item B<construct_instance (%params)>
552e3d24 855
c9e77dbb 856This method is used to construct an instace structure suitable for
857C<bless>-ing into your package of choice. It works in conjunction
858with the Attribute protocol to collect all applicable attributes.
859
cbd9f942 860This will construct and instance using a HASH ref as storage
552e3d24 861(currently only HASH references are supported). This will collect all
a2e85e6c 862the applicable attributes and layout out the fields in the HASH ref,
863it will then initialize them using either use the corresponding key
864in C<%params> or any default value or initializer found in the
865attribute meta-object.
727919c5 866
5f3c057a 867=item B<clone_object ($instance, %params)>
868
869This is a convience method for cloning an object instance, then
19d4b5b8 870blessing it into the appropriate package. This method will call
871C<clone_instance>, which performs a shallow copy of the object,
872see that methods documentation for more details. Ideally your
873class would call a C<clone> this method like so:
5f3c057a 874
875 sub MyClass::clone {
876 my ($self, %param) = @_;
877 $self->meta->clone_object($self, %params);
878 }
879
880Of course the ideal place for this would actually be in C<UNIVERSAL::>
881but that is considered bad style, so we do not do that.
882
c9e77dbb 883=item B<clone_instance($instance, %params)>
884
885This method is a compliment of C<construct_instance> (which means if
19d4b5b8 886you override C<construct_instance>, you need to override this one too),
887and clones the instance shallowly.
a27ae83f 888
889The cloned structure returned is (like with C<construct_instance>) an
890unC<bless>ed HASH reference, it is your responsibility to then bless
891this cloned structure into the right class (which C<clone_object> will
892do for you).
c9e77dbb 893
19d4b5b8 894As of 0.11, this method will clone the C<$instance> structure shallowly,
895as opposed to the deep cloning implemented in prior versions. After much
896thought, research and discussion, I have decided that anything but basic
897shallow cloning is outside the scope of the meta-object protocol. I
898think Yuval "nothingmuch" Kogman put it best when he said that cloning
899is too I<context-specific> to be part of the MOP.
900
552e3d24 901=back
902
903=head2 Informational
904
b9d9fc0b 905These are a few predicate methods for asking information about the class.
552e3d24 906
b9d9fc0b 907=over 4
552e3d24 908
b9d9fc0b 909=item B<is_anon_class>
552e3d24 910
b9d9fc0b 911=item B<is_mutable>
552e3d24 912
b9d9fc0b 913=item B<is_immutable>
552e3d24 914
915=back
916
917=head2 Inheritance Relationships
918
919=over 4
920
921=item B<superclasses (?@superclasses)>
922
923This is a read-write attribute which represents the superclass
a2e85e6c 924relationships of the class the B<Class::MOP::Class> instance is
925associated with. Basically, it can get and set the C<@ISA> for you.
552e3d24 926
343203ee 927B<NOTE:>
928Perl will occasionally perform some C<@ISA> and method caching, if
929you decide to change your superclass relationship at runtime (which
930is quite insane and very much not recommened), then you should be
931aware of this and the fact that this module does not make any
932attempt to address this issue.
933
552e3d24 934=item B<class_precedence_list>
935
a2e85e6c 936This computes the a list of all the class's ancestors in the same order
937in which method dispatch will be done. This is similair to
938what B<Class::ISA::super_path> does, but we don't remove duplicate names.
552e3d24 939
940=back
941
942=head2 Methods
943
944=over 4
945
c4260b45 946=item B<get_method_map>
947
2e41896e 948=item B<method_metaclass>
949
552e3d24 950=item B<add_method ($method_name, $method)>
951
952This will take a C<$method_name> and CODE reference to that
a2e85e6c 953C<$method> and install it into the class's package.
552e3d24 954
a2e85e6c 955B<NOTE>:
956This does absolutely nothing special to C<$method>
552e3d24 957other than use B<Sub::Name> to make sure it is tagged with the
958correct name, and therefore show up correctly in stack traces and
959such.
960
663f8198 961=item B<alias_method ($method_name, $method)>
962
963This will take a C<$method_name> and CODE reference to that
964C<$method> and alias the method into the class's package.
965
966B<NOTE>:
967Unlike C<add_method>, this will B<not> try to name the
968C<$method> using B<Sub::Name>, it only aliases the method in
969the class's package.
970
552e3d24 971=item B<has_method ($method_name)>
972
a2e85e6c 973This just provides a simple way to check if the class implements
552e3d24 974a specific C<$method_name>. It will I<not> however, attempt to check
a2e85e6c 975if the class inherits the method (use C<UNIVERSAL::can> for that).
552e3d24 976
977This will correctly handle functions defined outside of the package
978that use a fully qualified name (C<sub Package::name { ... }>).
979
980This will correctly handle functions renamed with B<Sub::Name> and
981installed using the symbol tables. However, if you are naming the
982subroutine outside of the package scope, you must use the fully
983qualified name, including the package name, for C<has_method> to
984correctly identify it.
985
986This will attempt to correctly ignore functions imported from other
987packages using B<Exporter>. It breaks down if the function imported
988is an C<__ANON__> sub (such as with C<use constant>), which very well
989may be a valid method being applied to the class.
990
991In short, this method cannot always be trusted to determine if the
992C<$method_name> is actually a method. However, it will DWIM about
a2e85e6c 99390% of the time, so it's a small trade off I think.
552e3d24 994
995=item B<get_method ($method_name)>
996
997This will return a CODE reference of the specified C<$method_name>,
998or return undef if that method does not exist.
999
16e960bd 1000=item B<find_method_by_name ($method_name>
1001
1002This will return a CODE reference of the specified C<$method_name>,
1003or return undef if that method does not exist.
1004
1005Unlike C<get_method> this will also look in the superclasses.
1006
552e3d24 1007=item B<remove_method ($method_name)>
1008
a2e85e6c 1009This will attempt to remove a given C<$method_name> from the class.
552e3d24 1010It will return the CODE reference that it has removed, and will
1011attempt to use B<Sub::Name> to clear the methods associated name.
1012
1013=item B<get_method_list>
1014
1015This will return a list of method names for all I<locally> defined
1016methods. It does B<not> provide a list of all applicable methods,
1017including any inherited ones. If you want a list of all applicable
1018methods, use the C<compute_all_applicable_methods> method.
1019
1020=item B<compute_all_applicable_methods>
1021
a2e85e6c 1022This will return a list of all the methods names this class will
1023respond to, taking into account inheritance. The list will be a list of
552e3d24 1024HASH references, each one containing the following information; method
1025name, the name of the class in which the method lives and a CODE
1026reference for the actual method.
1027
1028=item B<find_all_methods_by_name ($method_name)>
1029
1030This will traverse the inheritence hierarchy and locate all methods
1031with a given C<$method_name>. Similar to
1032C<compute_all_applicable_methods> it returns a list of HASH references
1033with the following information; method name (which will always be the
1034same as C<$method_name>), the name of the class in which the method
1035lives and a CODE reference for the actual method.
1036
1037The list of methods produced is a distinct list, meaning there are no
1038duplicates in it. This is especially useful for things like object
1039initialization and destruction where you only want the method called
1040once, and in the correct order.
1041
96ceced8 1042=item B<find_next_method_by_name ($method_name)>
1043
1044This will return the first method to match a given C<$method_name> in
1045the superclasses, this is basically equivalent to calling
1046C<SUPER::$method_name>, but it can be dispatched at runtime.
1047
552e3d24 1048=back
1049
a4258ffd 1050=head2 Method Modifiers
1051
96ceced8 1052Method modifiers are a concept borrowed from CLOS, in which a method
1053can be wrapped with I<before>, I<after> and I<around> method modifiers
1054that will be called everytime the method is called.
1055
1056=head3 How method modifiers work?
1057
1058Method modifiers work by wrapping the original method and then replacing
1059it in the classes symbol table. The wrappers will handle calling all the
1060modifiers in the appropariate orders and preserving the calling context
1061for the original method.
1062
1063Each method modifier serves a particular purpose, which may not be
1064obvious to users of other method wrapping modules. To start with, the
1065return values of I<before> and I<after> modifiers are ignored. This is
1066because thier purpose is B<not> to filter the input and output of the
1067primary method (this is done with an I<around> modifier). This may seem
1068like an odd restriction to some, but doing this allows for simple code
1069to be added at the begining or end of a method call without jeapordizing
1070the normal functioning of the primary method or placing any extra
1071responsibility on the code of the modifier. Of course if you have more
1072complex needs, then use the I<around> modifier, which uses a variation
1073of continutation passing style to allow for a high degree of flexibility.
1074
1075Before and around modifiers are called in last-defined-first-called order,
1076while after modifiers are called in first-defined-first-called order. So
1077the call tree might looks something like this:
1078
1079 before 2
1080 before 1
1081 around 2
1082 around 1
1083 primary
1084 after 1
1085 after 2
1086
1087To see examples of using method modifiers, see the following examples
1088included in the distribution; F<InstanceCountingClass>, F<Perl6Attribute>,
1089F<AttributesWithHistory> and F<C3MethodDispatchOrder>. There is also a
1090classic CLOS usage example in the test F<017_add_method_modifier.t>.
1091
1092=head3 What is the performance impact?
1093
1094Of course there is a performance cost associated with method modifiers,
1095but we have made every effort to make that cost be directly proportional
1096to the amount of modifier features you utilize.
1097
1098The wrapping method does it's best to B<only> do as much work as it
1099absolutely needs to. In order to do this we have moved some of the
1100performance costs to set-up time, where they are easier to amortize.
1101
1102All this said, my benchmarks have indicated the following:
1103
1104 simple wrapper with no modifiers 100% slower
1105 simple wrapper with simple before modifier 400% slower
1106 simple wrapper with simple after modifier 450% slower
1107 simple wrapper with simple around modifier 500-550% slower
1108 simple wrapper with all 3 modifiers 1100% slower
1109
1110These numbers may seem daunting, but you must remember, every feature
1111comes with some cost. To put things in perspective, just doing a simple
1112C<AUTOLOAD> which does nothing but extract the name of the method called
1113and return it costs about 400% over a normal method call.
1114
a4258ffd 1115=over 4
1116
1117=item B<add_before_method_modifier ($method_name, $code)>
1118
96ceced8 1119This will wrap the method at C<$method_name> and the supplied C<$code>
1120will be passed the C<@_> arguments, and called before the original
1121method is called. As specified above, the return value of the I<before>
1122method modifiers is ignored, and it's ability to modify C<@_> is
1123fairly limited. If you need to do either of these things, use an
1124C<around> method modifier.
1125
a4258ffd 1126=item B<add_after_method_modifier ($method_name, $code)>
1127
96ceced8 1128This will wrap the method at C<$method_name> so that the original
1129method will be called, it's return values stashed, and then the
1130supplied C<$code> will be passed the C<@_> arguments, and called.
1131As specified above, the return value of the I<after> method
1132modifiers is ignored, and it cannot modify the return values of
1133the original method. If you need to do either of these things, use an
1134C<around> method modifier.
1135
a4258ffd 1136=item B<add_around_method_modifier ($method_name, $code)>
1137
96ceced8 1138This will wrap the method at C<$method_name> so that C<$code>
1139will be called and passed the original method as an extra argument
1140at the begining of the C<@_> argument list. This is a variation of
1141continuation passing style, where the function prepended to C<@_>
1142can be considered a continuation. It is up to C<$code> if it calls
1143the original method or not, there is no restriction on what the
1144C<$code> can or cannot do.
1145
a4258ffd 1146=back
1147
552e3d24 1148=head2 Attributes
1149
1150It should be noted that since there is no one consistent way to define
1151the attributes of a class in Perl 5. These methods can only work with
1152the information given, and can not easily discover information on
a2e85e6c 1153their own. See L<Class::MOP::Attribute> for more details.
552e3d24 1154
1155=over 4
1156
2e41896e 1157=item B<attribute_metaclass>
1158
7b31baf4 1159=item B<get_attribute_map>
1160
552e3d24 1161=item B<add_attribute ($attribute_name, $attribute_meta_object)>
1162
a2e85e6c 1163This stores a C<$attribute_meta_object> in the B<Class::MOP::Class>
1164instance associated with the given class, and associates it with
1165the C<$attribute_name>. Unlike methods, attributes within the MOP
1166are stored as meta-information only. They will be used later to
1167construct instances from (see C<construct_instance> above).
552e3d24 1168More details about the attribute meta-objects can be found in the
a2e85e6c 1169L<Class::MOP::Attribute> or the L<Class::MOP/The Attribute protocol>
1170section.
1171
1172It should be noted that any accessor, reader/writer or predicate
1173methods which the C<$attribute_meta_object> has will be installed
1174into the class at this time.
552e3d24 1175
1176=item B<has_attribute ($attribute_name)>
1177
a2e85e6c 1178Checks to see if this class has an attribute by the name of
552e3d24 1179C<$attribute_name> and returns a boolean.
1180
1181=item B<get_attribute ($attribute_name)>
1182
1183Returns the attribute meta-object associated with C<$attribute_name>,
1184if none is found, it will return undef.
1185
1186=item B<remove_attribute ($attribute_name)>
1187
1188This will remove the attribute meta-object stored at
1189C<$attribute_name>, then return the removed attribute meta-object.
1190
a2e85e6c 1191B<NOTE:>
1192Removing an attribute will only affect future instances of
552e3d24 1193the class, it will not make any attempt to remove the attribute from
1194any existing instances of the class.
1195
a2e85e6c 1196It should be noted that any accessor, reader/writer or predicate
1197methods which the attribute meta-object stored at C<$attribute_name>
1198has will be removed from the class at this time. This B<will> make
1199these attributes somewhat inaccessable in previously created
1200instances. But if you are crazy enough to do this at runtime, then
1201you are crazy enough to deal with something like this :).
1202
552e3d24 1203=item B<get_attribute_list>
1204
1205This returns a list of attribute names which are defined in the local
1206class. If you want a list of all applicable attributes for a class,
1207use the C<compute_all_applicable_attributes> method.
1208
1209=item B<compute_all_applicable_attributes>
1210
c9e77dbb 1211This will traverse the inheritance heirachy and return a list of all
1212the applicable attributes for this class. It does not construct a
1213HASH reference like C<compute_all_applicable_methods> because all
1214that same information is discoverable through the attribute
1215meta-object itself.
552e3d24 1216
058c1cf5 1217=item B<find_attribute_by_name ($attr_name)>
1218
1219This method will traverse the inheritance heirachy and find the
1220first attribute whose name matches C<$attr_name>, then return it.
1221It will return undef if nothing is found.
1222
552e3d24 1223=back
1224
857f87a7 1225=head2 Class closing
1226
1227=over 4
1228
857f87a7 1229=item B<make_immutable>
1230
1231=back
1232
1a09d9cc 1233=head1 AUTHORS
8b978dd5 1234
a2e85e6c 1235Stevan Little E<lt>stevan@iinteractive.comE<gt>
8b978dd5 1236
1a09d9cc 1237Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
1238
8b978dd5 1239=head1 COPYRIGHT AND LICENSE
1240
1241Copyright 2006 by Infinity Interactive, Inc.
1242
1243L<http://www.iinteractive.com>
1244
1245This library is free software; you can redistribute it and/or modify
1246it under the same terms as Perl itself.
1247
798baea5 1248=cut