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