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