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