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