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