foo
[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};
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
de19f115 432sub has_method {
433 my ($self, $method_name) = @_;
434 (defined $method_name && $method_name)
435 || confess "You must define a method name";
bfe4d0fc 436
de19f115 437 my $sub_name = ($self->name . '::' . $method_name);
0882828e 438
de19f115 439 no strict 'refs';
440 return 0 if !defined(&{$sub_name});
2d711cc8 441 my $method = \&{$sub_name};
96ceced8 442 return 0 if (svref_2object($method)->GV->STASH->NAME || '') ne $self->name &&
2d711cc8 443 (svref_2object($method)->GV->NAME || '') ne '__ANON__';
444
445 # at this point we are relatively sure
446 # it is our method, so we bless/wrap it
447 $self->method_metaclass->wrap($method) unless blessed($method);
de19f115 448 return 1;
0882828e 449}
450
451sub get_method {
c9b8b7f9 452 my ($self, $method_name) = @_;
0882828e 453 (defined $method_name && $method_name)
454 || confess "You must define a method name";
455
2d711cc8 456 return unless $self->has_method($method_name);
de19f115 457
0882828e 458 no strict 'refs';
de19f115 459 return \&{$self->name . '::' . $method_name};
c9b8b7f9 460}
461
462sub remove_method {
463 my ($self, $method_name) = @_;
464 (defined $method_name && $method_name)
465 || confess "You must define a method name";
466
467 my $removed_method = $self->get_method($method_name);
468
469 no strict 'refs';
470 delete ${$self->name . '::'}{$method_name}
471 if defined $removed_method;
472
473 return $removed_method;
474}
475
476sub get_method_list {
477 my $self = shift;
478 no strict 'refs';
84e3c630 479 grep { $self->has_method($_) } keys %{$self->name . '::'};
a5eca695 480}
481
482sub compute_all_applicable_methods {
483 my $self = shift;
484 my @methods;
485 # keep a record of what we have seen
486 # here, this will handle all the
487 # inheritence issues because we are
488 # using the &class_precedence_list
489 my (%seen_class, %seen_method);
490 foreach my $class ($self->class_precedence_list()) {
491 next if $seen_class{$class};
492 $seen_class{$class}++;
493 # fetch the meta-class ...
494 my $meta = $self->initialize($class);
495 foreach my $method_name ($meta->get_method_list()) {
496 next if exists $seen_method{$method_name};
497 $seen_method{$method_name}++;
498 push @methods => {
499 name => $method_name,
500 class => $class,
501 code => $meta->get_method($method_name)
502 };
503 }
504 }
505 return @methods;
506}
507
a5eca695 508sub find_all_methods_by_name {
509 my ($self, $method_name) = @_;
510 (defined $method_name && $method_name)
511 || confess "You must define a method name to find";
512 my @methods;
513 # keep a record of what we have seen
514 # here, this will handle all the
515 # inheritence issues because we are
516 # using the &class_precedence_list
517 my %seen_class;
518 foreach my $class ($self->class_precedence_list()) {
519 next if $seen_class{$class};
520 $seen_class{$class}++;
521 # fetch the meta-class ...
96ceced8 522 my $meta = $self->initialize($class);
a5eca695 523 push @methods => {
524 name => $method_name,
525 class => $class,
526 code => $meta->get_method($method_name)
527 } if $meta->has_method($method_name);
528 }
529 return @methods;
8b978dd5 530}
531
96ceced8 532sub find_next_method_by_name {
533 my ($self, $method_name) = @_;
534 (defined $method_name && $method_name)
2d711cc8 535 || confess "You must define a method name to find";
96ceced8 536 # keep a record of what we have seen
537 # here, this will handle all the
538 # inheritence issues because we are
539 # using the &class_precedence_list
540 my %seen_class;
2d711cc8 541 my @cpl = $self->class_precedence_list();
542 shift @cpl; # discard ourselves
96ceced8 543 foreach my $class (@cpl) {
544 next if $seen_class{$class};
545 $seen_class{$class}++;
546 # fetch the meta-class ...
547 my $meta = $self->initialize($class);
2d711cc8 548 return $meta->get_method($method_name)
549 if $meta->has_method($method_name);
96ceced8 550 }
2d711cc8 551 return;
96ceced8 552}
553
552e3d24 554## Attributes
555
e16da3e6 556sub add_attribute {
2e41896e 557 my $self = shift;
558 # either we have an attribute object already
559 # or we need to create one from the args provided
560 my $attribute = blessed($_[0]) ? $_[0] : $self->attribute_metaclass->new(@_);
561 # make sure it is derived from the correct type though
562 ($attribute->isa('Class::MOP::Attribute'))
563 || confess "Your attribute must be an instance of Class::MOP::Attribute (or a subclass)";
9ec169fe 564 $attribute->attach_to_class($self);
2d711cc8 565 $attribute->install_accessors();
291073fc 566 $self->get_attribute_map->{$attribute->name} = $attribute;
9a1b7913 567
568 # FIXME
569 # in theory we have to tell everyone the slot structure may have changed
e16da3e6 570}
571
572sub has_attribute {
573 my ($self, $attribute_name) = @_;
574 (defined $attribute_name && $attribute_name)
575 || confess "You must define an attribute name";
291073fc 576 exists $self->get_attribute_map->{$attribute_name} ? 1 : 0;
e16da3e6 577}
578
579sub get_attribute {
580 my ($self, $attribute_name) = @_;
581 (defined $attribute_name && $attribute_name)
582 || confess "You must define an attribute name";
f7259199 583 return $self->get_attribute_map->{$attribute_name}
584 if $self->has_attribute($attribute_name);
22286063 585 return;
e16da3e6 586}
587
588sub remove_attribute {
589 my ($self, $attribute_name) = @_;
590 (defined $attribute_name && $attribute_name)
591 || confess "You must define an attribute name";
7b31baf4 592 my $removed_attribute = $self->get_attribute_map->{$attribute_name};
22286063 593 return unless defined $removed_attribute;
594 delete $self->get_attribute_map->{$attribute_name};
2d711cc8 595 $removed_attribute->remove_accessors();
2d711cc8 596 $removed_attribute->detach_from_class();
e16da3e6 597 return $removed_attribute;
598}
599
600sub get_attribute_list {
601 my $self = shift;
f7259199 602 keys %{$self->get_attribute_map};
e16da3e6 603}
604
605sub compute_all_applicable_attributes {
606 my $self = shift;
607 my @attrs;
608 # keep a record of what we have seen
609 # here, this will handle all the
610 # inheritence issues because we are
611 # using the &class_precedence_list
612 my (%seen_class, %seen_attr);
613 foreach my $class ($self->class_precedence_list()) {
614 next if $seen_class{$class};
615 $seen_class{$class}++;
616 # fetch the meta-class ...
f7259199 617 my $meta = $self->initialize($class);
e16da3e6 618 foreach my $attr_name ($meta->get_attribute_list()) {
619 next if exists $seen_attr{$attr_name};
620 $seen_attr{$attr_name}++;
c9e77dbb 621 push @attrs => $meta->get_attribute($attr_name);
e16da3e6 622 }
623 }
624 return @attrs;
625}
2eb717d5 626
058c1cf5 627sub find_attribute_by_name {
628 my ($self, $attr_name) = @_;
629 # keep a record of what we have seen
630 # here, this will handle all the
631 # inheritence issues because we are
632 # using the &class_precedence_list
633 my %seen_class;
634 foreach my $class ($self->class_precedence_list()) {
635 next if $seen_class{$class};
636 $seen_class{$class}++;
637 # fetch the meta-class ...
638 my $meta = $self->initialize($class);
639 return $meta->get_attribute($attr_name)
640 if $meta->has_attribute($attr_name);
641 }
642 return;
643}
644
857f87a7 645## Class closing
646
647sub is_mutable { 1 }
648sub is_immutable { 0 }
649
650sub make_immutable {
c0cbf4d9 651 return Class::MOP::Class::Immutable->make_metaclass_immutable(@_);
857f87a7 652}
653
8b978dd5 6541;
655
656__END__
657
658=pod
659
660=head1 NAME
661
662Class::MOP::Class - Class Meta Object
663
664=head1 SYNOPSIS
665
8c936afc 666 # assuming that class Foo
667 # has been defined, you can
668
fe122940 669 # use this for introspection ...
670
fe122940 671 # add a method to Foo ...
672 Foo->meta->add_method('bar' => sub { ... })
673
674 # get a list of all the classes searched
675 # the method dispatcher in the correct order
676 Foo->meta->class_precedence_list()
677
678 # remove a method from Foo
679 Foo->meta->remove_method('bar');
680
681 # or use this to actually create classes ...
682
683 Class::MOP::Class->create('Bar' => '0.01' => (
684 superclasses => [ 'Foo' ],
685 attributes => [
686 Class::MOP:::Attribute->new('$bar'),
687 Class::MOP:::Attribute->new('$baz'),
688 ],
689 methods => {
690 calculate_bar => sub { ... },
691 construct_baz => sub { ... }
692 }
693 ));
694
8b978dd5 695=head1 DESCRIPTION
696
fe122940 697This is the largest and currently most complex part of the Perl 5
698meta-object protocol. It controls the introspection and
699manipulation of Perl 5 classes (and it can create them too). The
700best way to understand what this module can do, is to read the
701documentation for each of it's methods.
702
552e3d24 703=head1 METHODS
704
2eb717d5 705=head2 Self Introspection
706
707=over 4
708
709=item B<meta>
710
fe122940 711This will return a B<Class::MOP::Class> instance which is related
712to this class. Thereby allowing B<Class::MOP::Class> to actually
713introspect itself.
714
715As with B<Class::MOP::Attribute>, B<Class::MOP> will actually
716bootstrap this module by installing a number of attribute meta-objects
717into it's metaclass. This will allow this class to reap all the benifits
718of the MOP when subclassing it.
2eb717d5 719
587aca23 720=item B<get_all_metaclasses>
721
722This will return an hash of all the metaclass instances that have
723been cached by B<Class::MOP::Class> keyed by the package name.
724
725=item B<get_all_metaclass_instances>
726
727This will return an array of all the metaclass instances that have
728been cached by B<Class::MOP::Class>.
729
730=item B<get_all_metaclass_names>
731
732This will return an array of all the metaclass names that have
733been cached by B<Class::MOP::Class>.
734
2eb717d5 735=back
736
552e3d24 737=head2 Class construction
738
a2e85e6c 739These methods will handle creating B<Class::MOP::Class> objects,
740which can be used to both create new classes, and analyze
741pre-existing classes.
552e3d24 742
743This module will internally store references to all the instances
744you create with these methods, so that they do not need to be
745created any more than nessecary. Basically, they are singletons.
746
747=over 4
748
749=item B<create ($package_name, ?$package_version,
a2e85e6c 750 superclasses =E<gt> ?@superclasses,
751 methods =E<gt> ?%methods,
752 attributes =E<gt> ?%attributes)>
552e3d24 753
a2e85e6c 754This returns a B<Class::MOP::Class> object, bringing the specified
552e3d24 755C<$package_name> into existence and adding any of the
756C<$package_version>, C<@superclasses>, C<%methods> and C<%attributes>
757to it.
758
587aca23 759=item B<create_anon_class (superclasses =E<gt> ?@superclasses,
760 methods =E<gt> ?%methods,
761 attributes =E<gt> ?%attributes)>
762
763This will create an anonymous class, it works much like C<create> but
764it does not need a C<$package_name>. Instead it will create a suitably
765unique package name for you to stash things into.
766
66b3dded 767=item B<initialize ($package_name, %options)>
552e3d24 768
a2e85e6c 769This initializes and returns returns a B<Class::MOP::Class> object
770for a given a C<$package_name>.
771
66b3dded 772=item B<reinitialize ($package_name, %options)>
773
774This removes the old metaclass, and creates a new one in it's place.
775Do B<not> use this unless you really know what you are doing, it could
776very easily make a very large mess of your program.
777
651955fb 778=item B<construct_class_instance (%options)>
a2e85e6c 779
780This will construct an instance of B<Class::MOP::Class>, it is
781here so that we can actually "tie the knot" for B<Class::MOP::Class>
782to use C<construct_instance> once all the bootstrapping is done. This
783method is used internally by C<initialize> and should never be called
784from outside of that method really.
552e3d24 785
550d56db 786=item B<check_metaclass_compatability>
787
788This method is called as the very last thing in the
789C<construct_class_instance> method. This will check that the
790metaclass you are creating is compatible with the metaclasses of all
791your ancestors. For more inforamtion about metaclass compatibility
792see the C<About Metaclass compatibility> section in L<Class::MOP>.
793
552e3d24 794=back
795
c9e77dbb 796=head2 Object instance construction and cloning
a2e85e6c 797
c9e77dbb 798These methods are B<entirely optional>, it is up to you whether you want
799to use them or not.
552e3d24 800
801=over 4
802
2bab2be6 803=item B<instance_metaclass>
804
2d711cc8 805=item B<get_meta_instance>
806
5f3c057a 807=item B<new_object (%params)>
808
809This is a convience method for creating a new object of the class, and
810blessing it into the appropriate package as well. Ideally your class
811would call a C<new> this method like so:
812
813 sub MyClass::new {
814 my ($class, %param) = @_;
815 $class->meta->new_object(%params);
816 }
817
818Of course the ideal place for this would actually be in C<UNIVERSAL::>
819but that is considered bad style, so we do not do that.
820
cbd9f942 821=item B<construct_instance (%params)>
552e3d24 822
c9e77dbb 823This method is used to construct an instace structure suitable for
824C<bless>-ing into your package of choice. It works in conjunction
825with the Attribute protocol to collect all applicable attributes.
826
cbd9f942 827This will construct and instance using a HASH ref as storage
552e3d24 828(currently only HASH references are supported). This will collect all
a2e85e6c 829the applicable attributes and layout out the fields in the HASH ref,
830it will then initialize them using either use the corresponding key
831in C<%params> or any default value or initializer found in the
832attribute meta-object.
727919c5 833
5f3c057a 834=item B<clone_object ($instance, %params)>
835
836This is a convience method for cloning an object instance, then
19d4b5b8 837blessing it into the appropriate package. This method will call
838C<clone_instance>, which performs a shallow copy of the object,
839see that methods documentation for more details. Ideally your
840class would call a C<clone> this method like so:
5f3c057a 841
842 sub MyClass::clone {
843 my ($self, %param) = @_;
844 $self->meta->clone_object($self, %params);
845 }
846
847Of course the ideal place for this would actually be in C<UNIVERSAL::>
848but that is considered bad style, so we do not do that.
849
c9e77dbb 850=item B<clone_instance($instance, %params)>
851
852This method is a compliment of C<construct_instance> (which means if
19d4b5b8 853you override C<construct_instance>, you need to override this one too),
854and clones the instance shallowly.
a27ae83f 855
856The cloned structure returned is (like with C<construct_instance>) an
857unC<bless>ed HASH reference, it is your responsibility to then bless
858this cloned structure into the right class (which C<clone_object> will
859do for you).
c9e77dbb 860
19d4b5b8 861As of 0.11, this method will clone the C<$instance> structure shallowly,
862as opposed to the deep cloning implemented in prior versions. After much
863thought, research and discussion, I have decided that anything but basic
864shallow cloning is outside the scope of the meta-object protocol. I
865think Yuval "nothingmuch" Kogman put it best when he said that cloning
866is too I<context-specific> to be part of the MOP.
867
552e3d24 868=back
869
870=head2 Informational
871
872=over 4
873
874=item B<name>
875
a2e85e6c 876This is a read-only attribute which returns the package name for the
877given B<Class::MOP::Class> instance.
552e3d24 878
879=item B<version>
880
881This is a read-only attribute which returns the C<$VERSION> of the
a2e85e6c 882package for the given B<Class::MOP::Class> instance.
552e3d24 883
884=back
885
886=head2 Inheritance Relationships
887
888=over 4
889
890=item B<superclasses (?@superclasses)>
891
892This is a read-write attribute which represents the superclass
a2e85e6c 893relationships of the class the B<Class::MOP::Class> instance is
894associated with. Basically, it can get and set the C<@ISA> for you.
552e3d24 895
343203ee 896B<NOTE:>
897Perl will occasionally perform some C<@ISA> and method caching, if
898you decide to change your superclass relationship at runtime (which
899is quite insane and very much not recommened), then you should be
900aware of this and the fact that this module does not make any
901attempt to address this issue.
902
552e3d24 903=item B<class_precedence_list>
904
a2e85e6c 905This computes the a list of all the class's ancestors in the same order
906in which method dispatch will be done. This is similair to
907what B<Class::ISA::super_path> does, but we don't remove duplicate names.
552e3d24 908
909=back
910
911=head2 Methods
912
913=over 4
914
2e41896e 915=item B<method_metaclass>
916
552e3d24 917=item B<add_method ($method_name, $method)>
918
919This will take a C<$method_name> and CODE reference to that
a2e85e6c 920C<$method> and install it into the class's package.
552e3d24 921
a2e85e6c 922B<NOTE>:
923This does absolutely nothing special to C<$method>
552e3d24 924other than use B<Sub::Name> to make sure it is tagged with the
925correct name, and therefore show up correctly in stack traces and
926such.
927
663f8198 928=item B<alias_method ($method_name, $method)>
929
930This will take a C<$method_name> and CODE reference to that
931C<$method> and alias the method into the class's package.
932
933B<NOTE>:
934Unlike C<add_method>, this will B<not> try to name the
935C<$method> using B<Sub::Name>, it only aliases the method in
936the class's package.
937
552e3d24 938=item B<has_method ($method_name)>
939
a2e85e6c 940This just provides a simple way to check if the class implements
552e3d24 941a specific C<$method_name>. It will I<not> however, attempt to check
a2e85e6c 942if the class inherits the method (use C<UNIVERSAL::can> for that).
552e3d24 943
944This will correctly handle functions defined outside of the package
945that use a fully qualified name (C<sub Package::name { ... }>).
946
947This will correctly handle functions renamed with B<Sub::Name> and
948installed using the symbol tables. However, if you are naming the
949subroutine outside of the package scope, you must use the fully
950qualified name, including the package name, for C<has_method> to
951correctly identify it.
952
953This will attempt to correctly ignore functions imported from other
954packages using B<Exporter>. It breaks down if the function imported
955is an C<__ANON__> sub (such as with C<use constant>), which very well
956may be a valid method being applied to the class.
957
958In short, this method cannot always be trusted to determine if the
959C<$method_name> is actually a method. However, it will DWIM about
a2e85e6c 96090% of the time, so it's a small trade off I think.
552e3d24 961
962=item B<get_method ($method_name)>
963
964This will return a CODE reference of the specified C<$method_name>,
965or return undef if that method does not exist.
966
967=item B<remove_method ($method_name)>
968
a2e85e6c 969This will attempt to remove a given C<$method_name> from the class.
552e3d24 970It will return the CODE reference that it has removed, and will
971attempt to use B<Sub::Name> to clear the methods associated name.
972
973=item B<get_method_list>
974
975This will return a list of method names for all I<locally> defined
976methods. It does B<not> provide a list of all applicable methods,
977including any inherited ones. If you want a list of all applicable
978methods, use the C<compute_all_applicable_methods> method.
979
980=item B<compute_all_applicable_methods>
981
a2e85e6c 982This will return a list of all the methods names this class will
983respond to, taking into account inheritance. The list will be a list of
552e3d24 984HASH references, each one containing the following information; method
985name, the name of the class in which the method lives and a CODE
986reference for the actual method.
987
988=item B<find_all_methods_by_name ($method_name)>
989
990This will traverse the inheritence hierarchy and locate all methods
991with a given C<$method_name>. Similar to
992C<compute_all_applicable_methods> it returns a list of HASH references
993with the following information; method name (which will always be the
994same as C<$method_name>), the name of the class in which the method
995lives and a CODE reference for the actual method.
996
997The list of methods produced is a distinct list, meaning there are no
998duplicates in it. This is especially useful for things like object
999initialization and destruction where you only want the method called
1000once, and in the correct order.
1001
96ceced8 1002=item B<find_next_method_by_name ($method_name)>
1003
1004This will return the first method to match a given C<$method_name> in
1005the superclasses, this is basically equivalent to calling
1006C<SUPER::$method_name>, but it can be dispatched at runtime.
1007
552e3d24 1008=back
1009
a4258ffd 1010=head2 Method Modifiers
1011
96ceced8 1012Method modifiers are a concept borrowed from CLOS, in which a method
1013can be wrapped with I<before>, I<after> and I<around> method modifiers
1014that will be called everytime the method is called.
1015
1016=head3 How method modifiers work?
1017
1018Method modifiers work by wrapping the original method and then replacing
1019it in the classes symbol table. The wrappers will handle calling all the
1020modifiers in the appropariate orders and preserving the calling context
1021for the original method.
1022
1023Each method modifier serves a particular purpose, which may not be
1024obvious to users of other method wrapping modules. To start with, the
1025return values of I<before> and I<after> modifiers are ignored. This is
1026because thier purpose is B<not> to filter the input and output of the
1027primary method (this is done with an I<around> modifier). This may seem
1028like an odd restriction to some, but doing this allows for simple code
1029to be added at the begining or end of a method call without jeapordizing
1030the normal functioning of the primary method or placing any extra
1031responsibility on the code of the modifier. Of course if you have more
1032complex needs, then use the I<around> modifier, which uses a variation
1033of continutation passing style to allow for a high degree of flexibility.
1034
1035Before and around modifiers are called in last-defined-first-called order,
1036while after modifiers are called in first-defined-first-called order. So
1037the call tree might looks something like this:
1038
1039 before 2
1040 before 1
1041 around 2
1042 around 1
1043 primary
1044 after 1
1045 after 2
1046
1047To see examples of using method modifiers, see the following examples
1048included in the distribution; F<InstanceCountingClass>, F<Perl6Attribute>,
1049F<AttributesWithHistory> and F<C3MethodDispatchOrder>. There is also a
1050classic CLOS usage example in the test F<017_add_method_modifier.t>.
1051
1052=head3 What is the performance impact?
1053
1054Of course there is a performance cost associated with method modifiers,
1055but we have made every effort to make that cost be directly proportional
1056to the amount of modifier features you utilize.
1057
1058The wrapping method does it's best to B<only> do as much work as it
1059absolutely needs to. In order to do this we have moved some of the
1060performance costs to set-up time, where they are easier to amortize.
1061
1062All this said, my benchmarks have indicated the following:
1063
1064 simple wrapper with no modifiers 100% slower
1065 simple wrapper with simple before modifier 400% slower
1066 simple wrapper with simple after modifier 450% slower
1067 simple wrapper with simple around modifier 500-550% slower
1068 simple wrapper with all 3 modifiers 1100% slower
1069
1070These numbers may seem daunting, but you must remember, every feature
1071comes with some cost. To put things in perspective, just doing a simple
1072C<AUTOLOAD> which does nothing but extract the name of the method called
1073and return it costs about 400% over a normal method call.
1074
a4258ffd 1075=over 4
1076
1077=item B<add_before_method_modifier ($method_name, $code)>
1078
96ceced8 1079This will wrap the method at C<$method_name> and the supplied C<$code>
1080will be passed the C<@_> arguments, and called before the original
1081method is called. As specified above, the return value of the I<before>
1082method modifiers is ignored, and it's ability to modify C<@_> is
1083fairly limited. If you need to do either of these things, use an
1084C<around> method modifier.
1085
a4258ffd 1086=item B<add_after_method_modifier ($method_name, $code)>
1087
96ceced8 1088This will wrap the method at C<$method_name> so that the original
1089method will be called, it's return values stashed, and then the
1090supplied C<$code> will be passed the C<@_> arguments, and called.
1091As specified above, the return value of the I<after> method
1092modifiers is ignored, and it cannot modify the return values of
1093the original method. If you need to do either of these things, use an
1094C<around> method modifier.
1095
a4258ffd 1096=item B<add_around_method_modifier ($method_name, $code)>
1097
96ceced8 1098This will wrap the method at C<$method_name> so that C<$code>
1099will be called and passed the original method as an extra argument
1100at the begining of the C<@_> argument list. This is a variation of
1101continuation passing style, where the function prepended to C<@_>
1102can be considered a continuation. It is up to C<$code> if it calls
1103the original method or not, there is no restriction on what the
1104C<$code> can or cannot do.
1105
a4258ffd 1106=back
1107
552e3d24 1108=head2 Attributes
1109
1110It should be noted that since there is no one consistent way to define
1111the attributes of a class in Perl 5. These methods can only work with
1112the information given, and can not easily discover information on
a2e85e6c 1113their own. See L<Class::MOP::Attribute> for more details.
552e3d24 1114
1115=over 4
1116
2e41896e 1117=item B<attribute_metaclass>
1118
7b31baf4 1119=item B<get_attribute_map>
1120
552e3d24 1121=item B<add_attribute ($attribute_name, $attribute_meta_object)>
1122
a2e85e6c 1123This stores a C<$attribute_meta_object> in the B<Class::MOP::Class>
1124instance associated with the given class, and associates it with
1125the C<$attribute_name>. Unlike methods, attributes within the MOP
1126are stored as meta-information only. They will be used later to
1127construct instances from (see C<construct_instance> above).
552e3d24 1128More details about the attribute meta-objects can be found in the
a2e85e6c 1129L<Class::MOP::Attribute> or the L<Class::MOP/The Attribute protocol>
1130section.
1131
1132It should be noted that any accessor, reader/writer or predicate
1133methods which the C<$attribute_meta_object> has will be installed
1134into the class at this time.
552e3d24 1135
1136=item B<has_attribute ($attribute_name)>
1137
a2e85e6c 1138Checks to see if this class has an attribute by the name of
552e3d24 1139C<$attribute_name> and returns a boolean.
1140
1141=item B<get_attribute ($attribute_name)>
1142
1143Returns the attribute meta-object associated with C<$attribute_name>,
1144if none is found, it will return undef.
1145
1146=item B<remove_attribute ($attribute_name)>
1147
1148This will remove the attribute meta-object stored at
1149C<$attribute_name>, then return the removed attribute meta-object.
1150
a2e85e6c 1151B<NOTE:>
1152Removing an attribute will only affect future instances of
552e3d24 1153the class, it will not make any attempt to remove the attribute from
1154any existing instances of the class.
1155
a2e85e6c 1156It should be noted that any accessor, reader/writer or predicate
1157methods which the attribute meta-object stored at C<$attribute_name>
1158has will be removed from the class at this time. This B<will> make
1159these attributes somewhat inaccessable in previously created
1160instances. But if you are crazy enough to do this at runtime, then
1161you are crazy enough to deal with something like this :).
1162
552e3d24 1163=item B<get_attribute_list>
1164
1165This returns a list of attribute names which are defined in the local
1166class. If you want a list of all applicable attributes for a class,
1167use the C<compute_all_applicable_attributes> method.
1168
1169=item B<compute_all_applicable_attributes>
1170
c9e77dbb 1171This will traverse the inheritance heirachy and return a list of all
1172the applicable attributes for this class. It does not construct a
1173HASH reference like C<compute_all_applicable_methods> because all
1174that same information is discoverable through the attribute
1175meta-object itself.
552e3d24 1176
058c1cf5 1177=item B<find_attribute_by_name ($attr_name)>
1178
1179This method will traverse the inheritance heirachy and find the
1180first attribute whose name matches C<$attr_name>, then return it.
1181It will return undef if nothing is found.
1182
552e3d24 1183=back
1184
52e8a34c 1185=head2 Package Variables
1186
1187Since Perl's classes are built atop the Perl package system, it is
1188fairly common to use package scoped variables for things like static
1189class variables. The following methods are convience methods for
1190the creation and inspection of package scoped variables.
1191
1192=over 4
1193
58d75218 1194=item B<add_package_symbol ($variable_name, ?$initial_value)>
52e8a34c 1195
1196Given a C<$variable_name>, which must contain a leading sigil, this
1197method will create that variable within the package which houses the
1198class. It also takes an optional C<$initial_value>, which must be a
1199reference of the same type as the sigil of the C<$variable_name>
1200implies.
1201
58d75218 1202=item B<get_package_symbol ($variable_name)>
52e8a34c 1203
1204This will return a reference to the package variable in
1205C<$variable_name>.
1206
58d75218 1207=item B<has_package_symbol ($variable_name)>
52e8a34c 1208
1209Returns true (C<1>) if there is a package variable defined for
1210C<$variable_name>, and false (C<0>) otherwise.
1211
58d75218 1212=item B<remove_package_symbol ($variable_name)>
52e8a34c 1213
1214This will attempt to remove the package variable at C<$variable_name>.
1215
1216=back
1217
857f87a7 1218=head2 Class closing
1219
1220=over 4
1221
1222=item B<is_mutable>
1223
1224=item B<is_immutable>
1225
1226=item B<make_immutable>
1227
1228=back
1229
8b978dd5 1230=head1 AUTHOR
1231
a2e85e6c 1232Stevan Little E<lt>stevan@iinteractive.comE<gt>
8b978dd5 1233
1234=head1 COPYRIGHT AND LICENSE
1235
1236Copyright 2006 by Infinity Interactive, Inc.
1237
1238L<http://www.iinteractive.com>
1239
1240This library is free software; you can redistribute it and/or modify
1241it under the same terms as Perl itself.
1242
798baea5 1243=cut