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