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