Improve the error message of having a plain reference in 'default'
[gitmo/Class-MOP.git] / lib / Class / MOP / Class.pm
CommitLineData
8b978dd5 1
2package Class::MOP::Class;
3
4use strict;
5use warnings;
6
c23184fc 7use Class::MOP::Immutable;
ba38bf08 8use Class::MOP::Instance;
9use Class::MOP::Method::Wrapped;
10
8b978dd5 11use Carp 'confess';
7f63694d 12use Scalar::Util 'blessed', 'reftype', 'weaken';
8b978dd5 13use Sub::Name 'subname';
8b978dd5 14
5f3efd66 15our $VERSION = '0.31';
f0480c45 16our $AUTHORITY = 'cpan:STEVAN';
8b978dd5 17
2243a22b 18use base 'Class::MOP::Module';
19
8b978dd5 20# Creation
0ac992ee 21
be7677c7 22sub initialize {
23 my $class = shift;
24 my $package_name = shift;
25 (defined $package_name && $package_name && !blessed($package_name))
0ac992ee 26 || confess "You must pass a package name and it cannot be blessed";
3af3cbbd 27 if (defined(my $meta = Class::MOP::get_metaclass_by_name($package_name))) {
28 return $meta;
29 }
c23184fc 30 $class->construct_class_instance('package' => $package_name, @_);
be7677c7 31}
32
33sub reinitialize {
34 my $class = shift;
35 my $package_name = shift;
36 (defined $package_name && $package_name && !blessed($package_name))
0ac992ee 37 || confess "You must pass a package name and it cannot be blessed";
be7677c7 38 Class::MOP::remove_metaclass_by_name($package_name);
c23184fc 39 $class->construct_class_instance('package' => $package_name, @_);
0ac992ee 40}
41
42# NOTE: (meta-circularity)
43# this is a special form of &construct_instance
be7677c7 44# (see below), which is used to construct class
0ac992ee 45# meta-object instances for any Class::MOP::*
46# class. All other classes will use the more
be7677c7 47# normal &construct_instance.
48sub construct_class_instance {
49 my $class = shift;
50 my %options = @_;
c23184fc 51 my $package_name = $options{'package'};
be7677c7 52 (defined $package_name && $package_name)
0ac992ee 53 || confess "You must pass a package name";
be7677c7 54 # NOTE:
0ac992ee 55 # return the metaclass if we have it cached,
56 # and it is still defined (it has not been
57 # reaped by DESTROY yet, which can happen
be7677c7 58 # annoyingly enough during global destruction)
3af3cbbd 59
60 if (defined(my $meta = Class::MOP::get_metaclass_by_name($package_name))) {
61 return $meta;
62 }
be7677c7 63
64 # NOTE:
0ac992ee 65 # we need to deal with the possibility
66 # of class immutability here, and then
be7677c7 67 # get the name of the class appropriately
68 $class = (blessed($class)
69 ? ($class->is_immutable
70 ? $class->get_mutable_metaclass_name()
71 : blessed($class))
72 : $class);
73
be7677c7 74 # now create the metaclass
75 my $meta;
9c6877f4 76 if ($class eq 'Class::MOP::Class') {
0ac992ee 77 no strict 'refs';
78 $meta = bless {
be7677c7 79 # inherited from Class::MOP::Package
0ac992ee 80 '$!package' => $package_name,
81
c4260b45 82 # NOTE:
0ac992ee 83 # since the following attributes will
84 # actually be loaded from the symbol
c4260b45 85 # table, and actually bypass the instance
86 # entirely, we can just leave these things
87 # listed here for reference, because they
0ac992ee 88 # should not actually have a value associated
c4260b45 89 # with the slot.
0ac992ee 90 '%!namespace' => \undef,
be7677c7 91 # inherited from Class::MOP::Module
c23184fc 92 '$!version' => \undef,
93 '$!authority' => \undef,
c4260b45 94 # defined in Class::MOP::Class
c23184fc 95 '@!superclasses' => \undef,
0ac992ee 96
c23184fc 97 '%!methods' => {},
0ac992ee 98 '%!attributes' => {},
c23184fc 99 '$!attribute_metaclass' => $options{'attribute_metaclass'} || 'Class::MOP::Attribute',
100 '$!method_metaclass' => $options{'method_metaclass'} || 'Class::MOP::Method',
101 '$!instance_metaclass' => $options{'instance_metaclass'} || 'Class::MOP::Instance',
e0e4674a 102
103 ## uber-private variables
104 # NOTE:
105 # this starts out as undef so that
106 # we can tell the first time the
107 # methods are fetched
108 # - SL
109 '$!_package_cache_flag' => undef,
be7677c7 110 } => $class;
111 }
112 else {
113 # NOTE:
114 # it is safe to use meta here because
0ac992ee 115 # class will always be a subclass of
be7677c7 116 # Class::MOP::Class, which defines meta
117 $meta = $class->meta->construct_instance(%options)
727919c5 118 }
0ac992ee 119
be7677c7 120 # and check the metaclass compatibility
715adbb7 121 $meta->check_metaclass_compatability();
0ac992ee 122
be7677c7 123 Class::MOP::store_metaclass_by_name($package_name, $meta);
0ac992ee 124
be7677c7 125 # NOTE:
126 # we need to weaken any anon classes
127 # so that they can call DESTROY properly
b9d9fc0b 128 Class::MOP::weaken_metaclass($package_name) if $meta->is_anon_class;
0ac992ee 129
130 $meta;
131}
132
715adbb7 133sub reset_package_cache_flag { (shift)->{'$!_package_cache_flag'} = undef }
134sub update_package_cache_flag {
b1f5f41d 135 my $self = shift;
e0e4674a 136 # NOTE:
137 # we can manually update the cache number
138 # since we are actually adding the method
139 # to our cache as well. This avoids us
140 # having to regenerate the method_map.
141 # - SL
b1f5f41d 142 $self->{'$!_package_cache_flag'} = Class::MOP::check_package_cache_flag($self->name);
e0e4674a 143}
144
be7677c7 145sub check_metaclass_compatability {
146 my $self = shift;
147
148 # this is always okay ...
0ac992ee 149 return if blessed($self) eq 'Class::MOP::Class' &&
be7677c7 150 $self->instance_metaclass eq 'Class::MOP::Instance';
151
b7bdffc3 152 my @class_list = $self->linearized_isa;
be7677c7 153 shift @class_list; # shift off $self->name
373a16ae 154
0ac992ee 155 foreach my $class_name (@class_list) {
be7677c7 156 my $meta = Class::MOP::get_metaclass_by_name($class_name) || next;
0ac992ee 157
373a16ae 158 # NOTE:
0ac992ee 159 # we need to deal with the possibility
160 # of class immutability here, and then
161 # get the name of the class appropriately
be7677c7 162 my $meta_type = ($meta->is_immutable
163 ? $meta->get_mutable_metaclass_name()
0ac992ee 164 : blessed($meta));
165
be7677c7 166 ($self->isa($meta_type))
0ac992ee 167 || confess $self->name . "->meta => (" . (blessed($self)) . ")" .
168 " is not compatible with the " .
be7677c7 169 $class_name . "->meta => (" . ($meta_type) . ")";
77e5fce4 170 # NOTE:
be7677c7 171 # we also need to check that instance metaclasses
172 # are compatabile in the same the class.
173 ($self->instance_metaclass->isa($meta->instance_metaclass))
0ac992ee 174 || confess $self->name . "->meta => (" . ($self->instance_metaclass) . ")" .
175 " is not compatible with the " .
176 $class_name . "->meta => (" . ($meta->instance_metaclass) . ")";
177 }
178}
8b978dd5 179
6d5355c3 180## ANON classes
181
182{
183 # NOTE:
0ac992ee 184 # this should be sufficient, if you have a
185 # use case where it is not, write a test and
6d5355c3 186 # I will change it.
187 my $ANON_CLASS_SERIAL = 0;
0ac992ee 188
b9d9fc0b 189 # NOTE:
190 # we need a sufficiently annoying prefix
0ac992ee 191 # this should suffice for now, this is
192 # used in a couple of places below, so
b9d9fc0b 193 # need to put it up here for now.
0ac992ee 194 my $ANON_CLASS_PREFIX = 'Class::MOP::Class::__ANON__::SERIAL::';
b9d9fc0b 195
196 sub is_anon_class {
197 my $self = shift;
a651e249 198 no warnings 'uninitialized';
0ac992ee 199 $self->name =~ /^$ANON_CLASS_PREFIX/ ? 1 : 0;
b9d9fc0b 200 }
6d5355c3 201
202 sub create_anon_class {
0ac992ee 203 my ($class, %options) = @_;
6d5355c3 204 my $package_name = $ANON_CLASS_PREFIX . ++$ANON_CLASS_SERIAL;
88dd563c 205 return $class->create($package_name, %options);
0ac992ee 206 }
6d5355c3 207
b9d9fc0b 208 # NOTE:
0ac992ee 209 # this will only get called for
210 # anon-classes, all other calls
211 # are assumed to occur during
b9d9fc0b 212 # global destruction and so don't
213 # really need to be handled explicitly
214 sub DESTROY {
215 my $self = shift;
0ac992ee 216 no warnings 'uninitialized';
b9d9fc0b 217 return unless $self->name =~ /^$ANON_CLASS_PREFIX/;
218 my ($serial_id) = ($self->name =~ /^$ANON_CLASS_PREFIX(\d+)/);
0ac992ee 219 no strict 'refs';
b9d9fc0b 220 foreach my $key (keys %{$ANON_CLASS_PREFIX . $serial_id}) {
221 delete ${$ANON_CLASS_PREFIX . $serial_id}{$key};
222 }
0ac992ee 223 delete ${'main::' . $ANON_CLASS_PREFIX}{$serial_id . '::'};
6d5355c3 224 }
b9d9fc0b 225
6d5355c3 226}
227
228# creating classes with MOP ...
229
8b978dd5 230sub create {
88dd563c 231 my $class = shift;
232 my $package_name = shift;
0ac992ee 233
bfe4d0fc 234 (defined $package_name && $package_name)
8b978dd5 235 || confess "You must pass a package name";
88dd563c 236
237 (scalar @_ % 2 == 0)
0ac992ee 238 || confess "You much pass all parameters as name => value pairs " .
88dd563c 239 "(I found an uneven number of params in \@_)";
240
241 my (%options) = @_;
d7b2249e 242
243 (ref $options{superclasses} eq 'ARRAY')
244 || confess "You must pass an ARRAY ref of superclasses"
245 if exists $options{superclasses};
246
247 (ref $options{attributes} eq 'ARRAY')
248 || confess "You must pass an ARRAY ref of attributes"
249 if exists $options{attributes};
250
251 (ref $options{methods} eq 'HASH')
252 || confess "You must pass an HASH ref of methods"
253 if exists $options{methods};
0ac992ee 254
8b978dd5 255 my $code = "package $package_name;";
0ac992ee 256 $code .= "\$$package_name\:\:VERSION = '" . $options{version} . "';"
88dd563c 257 if exists $options{version};
0ac992ee 258 $code .= "\$$package_name\:\:AUTHORITY = '" . $options{authority} . "';"
259 if exists $options{authority};
260
8b978dd5 261 eval $code;
0ac992ee 262 confess "creation of $package_name failed : $@" if $@;
263
bfe4d0fc 264 my $meta = $class->initialize($package_name);
0ac992ee 265
266 $meta->add_method('meta' => sub {
df7b4119 267 $class->initialize(blessed($_[0]) || $_[0]);
aa448b16 268 });
0ac992ee 269
8b978dd5 270 $meta->superclasses(@{$options{superclasses}})
271 if exists $options{superclasses};
2eb717d5 272 # NOTE:
0ac992ee 273 # process attributes first, so that they can
2eb717d5 274 # install accessors, but locally defined methods
275 # can then overwrite them. It is maybe a little odd, but
276 # I think this should be the order of things.
277 if (exists $options{attributes}) {
cbd9f942 278 foreach my $attr (@{$options{attributes}}) {
279 $meta->add_attribute($attr);
2eb717d5 280 }
0ac992ee 281 }
bfe4d0fc 282 if (exists $options{methods}) {
283 foreach my $method_name (keys %{$options{methods}}) {
284 $meta->add_method($method_name, $options{methods}->{$method_name});
285 }
0ac992ee 286 }
8b978dd5 287 return $meta;
288}
289
7b31baf4 290## Attribute readers
291
292# NOTE:
0ac992ee 293# all these attribute readers will be bootstrapped
7b31baf4 294# away in the Class::MOP bootstrap section
295
c23184fc 296sub get_attribute_map { $_[0]->{'%!attributes'} }
297sub attribute_metaclass { $_[0]->{'$!attribute_metaclass'} }
298sub method_metaclass { $_[0]->{'$!method_metaclass'} }
299sub instance_metaclass { $_[0]->{'$!instance_metaclass'} }
7b31baf4 300
0f71bc80 301# FIXME:
302# this is a prime canidate for conversion to XS
0ac992ee 303sub get_method_map {
c4260b45 304 my $self = shift;
e0e4674a 305
306 if (defined $self->{'$!_package_cache_flag'} &&
b1f5f41d 307 $self->{'$!_package_cache_flag'} == Class::MOP::check_package_cache_flag($self->name)) {
e0e4674a 308 return $self->{'%!methods'};
309 }
310
0ac992ee 311 my $map = $self->{'%!methods'};
312
0f71bc80 313 my $class_name = $self->name;
314 my $method_metaclass = $self->method_metaclass;
0ac992ee 315
92330ee2 316 foreach my $symbol ($self->list_all_package_symbols('CODE')) {
91e0eb4a 317 my $code = $self->get_package_symbol('&' . $symbol);
0ac992ee 318
319 next if exists $map->{$symbol} &&
320 defined $map->{$symbol} &&
321 $map->{$symbol}->body == $code;
322
e0e4674a 323 my ($pkg, $name) = Class::MOP::get_code_info($code);
46b23b44 324
325 next if ($pkg || '') ne $class_name ||
326 (($name || '') ne '__ANON__' && ($pkg || '') ne $class_name);
327
328 #warn "Checking $pkg against $class_name && $name against __ANON__";
0ac992ee 329
0f71bc80 330 $map->{$symbol} = $method_metaclass->wrap($code);
7855ddba 331 }
0ac992ee 332
7855ddba 333 return $map;
c4260b45 334}
335
c9e77dbb 336# Instance Construction & Cloning
337
5f3c057a 338sub new_object {
339 my $class = shift;
651955fb 340 # NOTE:
0ac992ee 341 # we need to protect the integrity of the
651955fb 342 # Class::MOP::Class singletons here, so we
343 # delegate this to &construct_class_instance
344 # which will deal with the singletons
345 return $class->construct_class_instance(@_)
346 if $class->name->isa('Class::MOP::Class');
24869f62 347 return $class->construct_instance(@_);
5f3c057a 348}
e16da3e6 349
350sub construct_instance {
cbd9f942 351 my ($class, %params) = @_;
0e76a376 352 my $meta_instance = $class->get_meta_instance();
353 my $instance = $meta_instance->create_instance();
c9e77dbb 354 foreach my $attr ($class->compute_all_applicable_attributes()) {
f892c0f0 355 $attr->initialize_instance_slot($meta_instance, $instance, \%params);
cbd9f942 356 }
0ac992ee 357 # NOTE:
d4ba1677 358 # this will only work for a HASH instance type
359 if ($class->is_anon_class) {
360 (reftype($instance) eq 'HASH')
361 || confess "Currently only HASH based instances are supported with instance of anon-classes";
362 # NOTE:
363 # At some point we should make this official
0ac992ee 364 # as a reserved slot name, but right now I am
d4ba1677 365 # going to keep it here.
366 # my $RESERVED_MOP_SLOT = '__MOP__';
367 $instance->{'__MOP__'} = $class;
368 }
2d711cc8 369 return $instance;
370}
371
372sub get_meta_instance {
373 my $class = shift;
052c2a1a 374 return $class->instance_metaclass->new(
0ac992ee 375 $class,
052c2a1a 376 $class->compute_all_applicable_attributes()
377 );
e16da3e6 378}
379
5f3c057a 380sub clone_object {
381 my $class = shift;
0ac992ee 382 my $instance = shift;
651955fb 383 (blessed($instance) && $instance->isa($class->name))
384 || confess "You must pass an instance ($instance) of the metaclass (" . $class->name . ")";
385 # NOTE:
0ac992ee 386 # we need to protect the integrity of the
387 # Class::MOP::Class singletons here, they
a740253a 388 # should not be cloned.
0ac992ee 389 return $instance if $instance->isa('Class::MOP::Class');
f7259199 390 $class->clone_instance($instance, @_);
5f3c057a 391}
392
c9e77dbb 393sub clone_instance {
651955fb 394 my ($class, $instance, %params) = @_;
395 (blessed($instance))
c9e77dbb 396 || confess "You can only clone instances, \$self is not a blessed instance";
f7259199 397 my $meta_instance = $class->get_meta_instance();
0ac992ee 398 my $clone = $meta_instance->clone_instance($instance);
c23184fc 399 foreach my $attr ($class->compute_all_applicable_attributes()) {
de55d708 400 if ( defined( my $init_arg = $attr->init_arg ) ) {
401 if (exists $params{$init_arg}) {
402 $attr->set_value($clone, $params{$init_arg});
403 }
c23184fc 404 }
0ac992ee 405 }
406 return $clone;
c9e77dbb 407}
408
3d9e4646 409sub rebless_instance {
214e4bd7 410 my ($self, $instance, %params) = @_;
2a2b8458 411
412 my $old_metaclass;
413 if ($instance->can('meta')) {
414 ($instance->meta->isa('Class::MOP::Class'))
415 || confess 'Cannot rebless instance if ->meta is not an instance of Class::MOP::Class';
416 $old_metaclass = $instance->meta;
417 }
418 else {
419 $old_metaclass = $self->initialize(blessed($instance));
420 }
421
1a720916 422 my $meta_instance = $self->get_meta_instance();
3d9e4646 423
3cd40f5e 424 $self->name->isa($old_metaclass->name)
de0d4f93 425 || confess "You may rebless only into a subclass of (". $old_metaclass->name ."), of which (". $self->name .") isn't.";
9b71b643 426
1a720916 427 # rebless!
3cd40f5e 428 $meta_instance->rebless_instance_structure($instance, $self);
1a720916 429
de55d708 430 foreach my $attr ( $self->compute_all_applicable_attributes ) {
431 if ( $attr->has_value($instance) ) {
e253285d 432 if ( defined( my $init_arg = $attr->init_arg ) ) {
214e4bd7 433 $params{$init_arg} = $attr->get_value($instance)
434 unless exists $params{$init_arg};
435 }
436 else {
b293f28b 437 $attr->set_value($instance, $attr->get_value($instance));
e253285d 438 }
de55d708 439 }
1a720916 440 }
e253285d 441
442 foreach my $attr ($self->compute_all_applicable_attributes) {
443 $attr->initialize_instance_slot($meta_instance, $instance, \%params);
444 }
830b326c 445
446 $instance;
3d9e4646 447}
448
8b978dd5 449# Inheritance
450
451sub superclasses {
452 my $self = shift;
8b978dd5 453 if (@_) {
454 my @supers = @_;
9d6dce77 455 @{$self->get_package_symbol('@ISA')} = @supers;
d82060fe 456 # NOTE:
0ac992ee 457 # we need to check the metaclass
84086365 458 # compatibility here so that we can
0ac992ee 459 # be sure that the superclass is
460 # not potentially creating an issues
d82060fe 461 # we don't know about
462 $self->check_metaclass_compatability();
8b978dd5 463 }
9d6dce77 464 @{$self->get_package_symbol('@ISA')};
8b978dd5 465}
466
7160cad4 467sub subclasses {
468 my $self = shift;
469
470 my $super_class = $self->name;
471 my @derived_classes;
472
473 my $find_derived_classes;
474 $find_derived_classes = sub {
475 my ($outer_class) = @_;
476
477 my $symbol_table_hashref = do { no strict 'refs'; \%{"${outer_class}::"} };
478
c1d5345a 479 SYMBOL:
7160cad4 480 for my $symbol ( keys %$symbol_table_hashref ) {
481 next SYMBOL if $symbol !~ /\A (\w+):: \z/x;
482 my $inner_class = $1;
483
484 next SYMBOL if $inner_class eq 'SUPER'; # skip '*::SUPER'
485
486 my $class =
487 $outer_class
488 ? "${outer_class}::$inner_class"
489 : $inner_class;
490
491 if ( $class->isa($super_class) and $class ne $super_class ) {
492 push @derived_classes, $class;
493 }
494
495 next SYMBOL if $class eq 'main'; # skip 'main::*'
496
497 $find_derived_classes->($class);
498 }
499 };
500
501 my $root_class = q{};
502 $find_derived_classes->($root_class);
503
504 undef $find_derived_classes;
505
506 @derived_classes = sort { $a->isa($b) ? 1 : $b->isa($a) ? -1 : 0 } @derived_classes;
507
508 return @derived_classes;
509}
510
511
b7bdffc3 512sub linearized_isa {
3cf322a0 513 return @{ mro::get_linear_isa( (shift)->name ) };
b7bdffc3 514}
515
8b978dd5 516sub class_precedence_list {
517 my $self = shift;
77a143ba 518 my $name = $self->name;
c1d5345a 519
520 unless (Class::MOP::IS_RUNNING_ON_5_10()) {
521 # NOTE:
522 # We need to check for circular inheritance here
523 # if we are are not on 5.10, cause 5.8 detects it
524 # late. This will do nothing if all is well, and
525 # blow up otherwise. Yes, it's an ugly hack, better
526 # suggestions are welcome.
527 # - SL
77a143ba 528 ($name || return)->isa('This is a test for circular inheritance')
c1d5345a 529 }
0ac992ee 530
77a143ba 531 # if our mro is c3, we can
532 # just grab the linear_isa
533 if (mro::get_mro($name) eq 'c3') {
534 return @{ mro::get_linear_isa($name) }
535 }
536 else {
537 # NOTE:
538 # we can't grab the linear_isa for dfs
539 # since it has all the duplicates
540 # already removed.
541 return (
542 $name,
543 map {
544 $self->initialize($_)->class_precedence_list()
545 } $self->superclasses()
546 );
547 }
8b978dd5 548}
549
0882828e 550## Methods
551
552sub add_method {
553 my ($self, $method_name, $method) = @_;
554 (defined $method_name && $method_name)
555 || confess "You must define a method name";
0ac992ee 556
7855ddba 557 my $body;
7855ddba 558 if (blessed($method)) {
0ac992ee 559 $body = $method->body;
7855ddba 560 }
0ac992ee 561 else {
7855ddba 562 $body = $method;
7855ddba 563 ('CODE' eq (reftype($body) || ''))
0ac992ee 564 || confess "Your code block must be a CODE reference";
565 $method = $self->method_metaclass->wrap($body);
7855ddba 566 }
0f71bc80 567 $self->get_method_map->{$method_name} = $method;
0ac992ee 568
569 my $full_method_name = ($self->name . '::' . $method_name);
7855ddba 570 $self->add_package_symbol("&${method_name}" => subname $full_method_name => $body);
715adbb7 571 $self->update_package_cache_flag;
0882828e 572}
573
a4258ffd 574{
2d711cc8 575 my $fetch_and_prepare_method = sub {
576 my ($self, $method_name) = @_;
577 # fetch it locally
578 my $method = $self->get_method($method_name);
579 # if we dont have local ...
580 unless ($method) {
195f5bf8 581 # try to find the next method
582 $method = $self->find_next_method_by_name($method_name);
583 # die if it does not exist
584 (defined $method)
804f7d24 585 || confess "The method '$method_name' is not found in the inheritance hierarchy for class " . $self->name;
0ac992ee 586 # and now make sure to wrap it
195f5bf8 587 # even if it is already wrapped
588 # because we need a new sub ref
2d711cc8 589 $method = Class::MOP::Method::Wrapped->wrap($method);
195f5bf8 590 }
591 else {
0ac992ee 592 # now make sure we wrap it properly
195f5bf8 593 $method = Class::MOP::Method::Wrapped->wrap($method)
0ac992ee 594 unless $method->isa('Class::MOP::Method::Wrapped');
595 }
596 $self->add_method($method_name => $method);
2d711cc8 597 return $method;
598 };
599
600 sub add_before_method_modifier {
601 my ($self, $method_name, $method_modifier) = @_;
602 (defined $method_name && $method_name)
0ac992ee 603 || confess "You must pass in a method name";
2d711cc8 604 my $method = $fetch_and_prepare_method->($self, $method_name);
605 $method->add_before_modifier(subname ':before' => $method_modifier);
606 }
607
608 sub add_after_method_modifier {
609 my ($self, $method_name, $method_modifier) = @_;
610 (defined $method_name && $method_name)
0ac992ee 611 || confess "You must pass in a method name";
2d711cc8 612 my $method = $fetch_and_prepare_method->($self, $method_name);
613 $method->add_after_modifier(subname ':after' => $method_modifier);
614 }
0ac992ee 615
2d711cc8 616 sub add_around_method_modifier {
617 my ($self, $method_name, $method_modifier) = @_;
618 (defined $method_name && $method_name)
619 || confess "You must pass in a method name";
620 my $method = $fetch_and_prepare_method->($self, $method_name);
621 $method->add_around_modifier(subname ':around' => $method_modifier);
0ac992ee 622 }
a4258ffd 623
0ac992ee 624 # NOTE:
8c936afc 625 # the methods above used to be named like this:
626 # ${pkg}::${method}:(before|after|around)
627 # but this proved problematic when using one modifier
628 # to wrap multiple methods (something which is likely
629 # to happen pretty regularly IMO). So instead of naming
0ac992ee 630 # it like this, I have chosen to just name them purely
8c936afc 631 # with their modifier names, like so:
632 # :(before|after|around)
0ac992ee 633 # The fact is that in a stack trace, it will be fairly
8c936afc 634 # evident from the context what method they are attached
635 # to, and so don't need the fully qualified name.
ee5e71d4 636}
637
663f8198 638sub alias_method {
639 my ($self, $method_name, $method) = @_;
640 (defined $method_name && $method_name)
641 || confess "You must define a method name";
de19f115 642
0f71bc80 643 my $body = (blessed($method) ? $method->body : $method);
644 ('CODE' eq (reftype($body) || ''))
0ac992ee 645 || confess "Your code block must be a CODE reference";
646
7855ddba 647 $self->add_package_symbol("&${method_name}" => $body);
715adbb7 648 $self->update_package_cache_flag;
16e960bd 649}
650
de19f115 651sub has_method {
652 my ($self, $method_name) = @_;
653 (defined $method_name && $method_name)
0ac992ee 654 || confess "You must define a method name";
655
656 return 0 unless exists $self->get_method_map->{$method_name};
de19f115 657 return 1;
0882828e 658}
659
660sub get_method {
c9b8b7f9 661 my ($self, $method_name) = @_;
0882828e 662 (defined $method_name && $method_name)
663 || confess "You must define a method name";
0ac992ee 664
0f71bc80 665 # NOTE:
666 # I don't really need this here, because
0ac992ee 667 # if the method_map is missing a key it
0f71bc80 668 # will just return undef for me now
669 # return unless $self->has_method($method_name);
0ac992ee 670
7855ddba 671 return $self->get_method_map->{$method_name};
c9b8b7f9 672}
673
674sub remove_method {
675 my ($self, $method_name) = @_;
676 (defined $method_name && $method_name)
677 || confess "You must define a method name";
0ac992ee 678
e0e4674a 679 my $removed_method = delete $self->get_method_map->{$method_name};
680
681 $self->remove_package_symbol("&${method_name}");
682
715adbb7 683 $self->update_package_cache_flag;
0ac992ee 684
c9b8b7f9 685 return $removed_method;
686}
687
688sub get_method_list {
689 my $self = shift;
0f71bc80 690 keys %{$self->get_method_map};
7855ddba 691}
692
693sub find_method_by_name {
694 my ($self, $method_name) = @_;
b9575695 695 (defined $method_name && $method_name)
0ac992ee 696 || confess "You must define a method name to find";
b7bdffc3 697 foreach my $class ($self->linearized_isa) {
b9575695 698 # fetch the meta-class ...
699 my $meta = $self->initialize($class);
0ac992ee 700 return $meta->get_method($method_name)
b9575695 701 if $meta->has_method($method_name);
702 }
703 return;
a5eca695 704}
705
706sub compute_all_applicable_methods {
707 my $self = shift;
b7bdffc3 708 my (@methods, %seen_method);
709 foreach my $class ($self->linearized_isa) {
a5eca695 710 # fetch the meta-class ...
711 my $meta = $self->initialize($class);
0ac992ee 712 foreach my $method_name ($meta->get_method_list()) {
a5eca695 713 next if exists $seen_method{$method_name};
714 $seen_method{$method_name}++;
715 push @methods => {
0ac992ee 716 name => $method_name,
a5eca695 717 class => $class,
718 code => $meta->get_method($method_name)
719 };
720 }
721 }
722 return @methods;
723}
724
a5eca695 725sub find_all_methods_by_name {
726 my ($self, $method_name) = @_;
727 (defined $method_name && $method_name)
0ac992ee 728 || confess "You must define a method name to find";
a5eca695 729 my @methods;
b7bdffc3 730 foreach my $class ($self->linearized_isa) {
a5eca695 731 # fetch the meta-class ...
96ceced8 732 my $meta = $self->initialize($class);
a5eca695 733 push @methods => {
0ac992ee 734 name => $method_name,
a5eca695 735 class => $class,
736 code => $meta->get_method($method_name)
737 } if $meta->has_method($method_name);
738 }
739 return @methods;
8b978dd5 740}
741
96ceced8 742sub find_next_method_by_name {
743 my ($self, $method_name) = @_;
744 (defined $method_name && $method_name)
0ac992ee 745 || confess "You must define a method name to find";
b7bdffc3 746 my @cpl = $self->linearized_isa;
2d711cc8 747 shift @cpl; # discard ourselves
96ceced8 748 foreach my $class (@cpl) {
96ceced8 749 # fetch the meta-class ...
750 my $meta = $self->initialize($class);
0ac992ee 751 return $meta->get_method($method_name)
2d711cc8 752 if $meta->has_method($method_name);
96ceced8 753 }
2d711cc8 754 return;
96ceced8 755}
756
552e3d24 757## Attributes
758
e16da3e6 759sub add_attribute {
2e41896e 760 my $self = shift;
761 # either we have an attribute object already
762 # or we need to create one from the args provided
763 my $attribute = blessed($_[0]) ? $_[0] : $self->attribute_metaclass->new(@_);
764 # make sure it is derived from the correct type though
765 ($attribute->isa('Class::MOP::Attribute'))
0ac992ee 766 || confess "Your attribute must be an instance of Class::MOP::Attribute (or a subclass)";
b1897d4d 767
768 # first we attach our new attribute
0ac992ee 769 # because it might need certain information
b1897d4d 770 # about the class which it is attached to
9ec169fe 771 $attribute->attach_to_class($self);
0ac992ee 772
773 # then we remove attributes of a conflicting
774 # name here so that we can properly detach
775 # the old attr object, and remove any
b1897d4d 776 # accessors it would have generated
777 $self->remove_attribute($attribute->name)
778 if $self->has_attribute($attribute->name);
0ac992ee 779
b1897d4d 780 # then onto installing the new accessors
2d711cc8 781 $attribute->install_accessors();
291073fc 782 $self->get_attribute_map->{$attribute->name} = $attribute;
e16da3e6 783}
784
785sub has_attribute {
786 my ($self, $attribute_name) = @_;
787 (defined $attribute_name && $attribute_name)
788 || confess "You must define an attribute name";
0ac992ee 789 exists $self->get_attribute_map->{$attribute_name} ? 1 : 0;
790}
e16da3e6 791
792sub get_attribute {
793 my ($self, $attribute_name) = @_;
794 (defined $attribute_name && $attribute_name)
795 || confess "You must define an attribute name";
0ac992ee 796 return $self->get_attribute_map->{$attribute_name}
b1897d4d 797 # NOTE:
798 # this will return undef anyway, so no need ...
0ac992ee 799 # if $self->has_attribute($attribute_name);
800 #return;
801}
e16da3e6 802
803sub remove_attribute {
804 my ($self, $attribute_name) = @_;
805 (defined $attribute_name && $attribute_name)
806 || confess "You must define an attribute name";
0ac992ee 807 my $removed_attribute = $self->get_attribute_map->{$attribute_name};
22286063 808 return unless defined $removed_attribute;
0ac992ee 809 delete $self->get_attribute_map->{$attribute_name};
810 $removed_attribute->remove_accessors();
2d711cc8 811 $removed_attribute->detach_from_class();
e16da3e6 812 return $removed_attribute;
0ac992ee 813}
e16da3e6 814
815sub get_attribute_list {
816 my $self = shift;
f7259199 817 keys %{$self->get_attribute_map};
0ac992ee 818}
e16da3e6 819
820sub compute_all_applicable_attributes {
821 my $self = shift;
b7bdffc3 822 my (@attrs, %seen_attr);
823 foreach my $class ($self->linearized_isa) {
e16da3e6 824 # fetch the meta-class ...
f7259199 825 my $meta = $self->initialize($class);
0ac992ee 826 foreach my $attr_name ($meta->get_attribute_list()) {
e16da3e6 827 next if exists $seen_attr{$attr_name};
828 $seen_attr{$attr_name}++;
c9e77dbb 829 push @attrs => $meta->get_attribute($attr_name);
e16da3e6 830 }
831 }
0ac992ee 832 return @attrs;
e16da3e6 833}
2eb717d5 834
058c1cf5 835sub find_attribute_by_name {
836 my ($self, $attr_name) = @_;
b7bdffc3 837 foreach my $class ($self->linearized_isa) {
058c1cf5 838 # fetch the meta-class ...
839 my $meta = $self->initialize($class);
840 return $meta->get_attribute($attr_name)
841 if $meta->has_attribute($attr_name);
842 }
843 return;
844}
845
857f87a7 846## Class closing
847
848sub is_mutable { 1 }
849sub is_immutable { 0 }
850
b817e248 851# NOTE:
852# Why I changed this (groditi)
853# - One Metaclass may have many Classes through many Metaclass instances
854# - One Metaclass should only have one Immutable Transformer instance
855# - Each Class may have different Immutabilizing options
856# - Therefore each Metaclass instance may have different Immutabilizing options
857# - We need to store one Immutable Transformer instance per Metaclass
858# - We need to store one set of Immutable Transformer options per Class
859# - Upon make_mutable we may delete the Immutabilizing options
860# - We could clean the immutable Transformer instance when there is no more
861# immutable Classes of that type, but we can also keep it in case
862# another class with this same Metaclass becomes immutable. It is a case
863# of trading of storing an instance to avoid unnecessary instantiations of
864# Immutable Transformers. You may view this as a memory leak, however
865# Because we have few Metaclasses, in practice it seems acceptable
866# - To allow Immutable Transformers instances to be cleaned up we could weaken
867# the reference stored in $IMMUTABLE_TRANSFORMERS{$class} and ||= should DWIM
04dd7510 868
c23184fc 869{
d9586da2 870 my %IMMUTABLE_TRANSFORMERS;
0ac992ee 871 my %IMMUTABLE_OPTIONS;
c23184fc 872 sub make_immutable {
0ac992ee 873 my $self = shift;
04dd7510 874 my %options = @_;
d9586da2 875 my $class = blessed $self || $self;
876
877 $IMMUTABLE_TRANSFORMERS{$class} ||= $self->create_immutable_transformer;
878 my $transformer = $IMMUTABLE_TRANSFORMERS{$class};
879
229910b5 880 $transformer->make_metaclass_immutable($self, \%options);
7f63694d 881 $IMMUTABLE_OPTIONS{$self->name} =
d9586da2 882 { %options, IMMUTABLE_TRANSFORMER => $transformer };
04dd7510 883
884 if( exists $options{debug} && $options{debug} ){
d9586da2 885 print STDERR "# of Metaclass options: ", keys %IMMUTABLE_OPTIONS;
886 print STDERR "# of Immutable transformers: ", keys %IMMUTABLE_TRANSFORMERS;
04dd7510 887 }
09c6e1d2 888
889 1;
c23184fc 890 }
0ac992ee 891
892 sub make_mutable{
893 my $self = shift;
894 return if $self->is_mutable;
7f63694d 895 my $options = delete $IMMUTABLE_OPTIONS{$self->name};
1d68af04 896 confess "unable to find immutabilizing options" unless ref $options;
d9586da2 897 my $transformer = delete $options->{IMMUTABLE_TRANSFORMER};
229910b5 898 $transformer->make_metaclass_mutable($self, $options);
09c6e1d2 899 1;
0ac992ee 900 }
d9586da2 901}
0ac992ee 902
d9586da2 903sub create_immutable_transformer {
904 my $self = shift;
905 my $class = Class::MOP::Immutable->new($self, {
5f3efd66 906 read_only => [qw/superclasses/],
907 cannot_call => [qw/
d9586da2 908 add_method
909 alias_method
910 remove_method
911 add_attribute
912 remove_attribute
d9586da2 913 remove_package_symbol
5f3efd66 914 /],
915 memoize => {
d9586da2 916 class_precedence_list => 'ARRAY',
b7bdffc3 917 linearized_isa => 'ARRAY',
d9586da2 918 compute_all_applicable_attributes => 'ARRAY',
919 get_meta_instance => 'SCALAR',
920 get_method_map => 'SCALAR',
5f3efd66 921 },
922 # NOTE:
923 # this is ugly, but so are typeglobs,
924 # so whattayahgonnadoboutit
925 # - SL
926 wrapped => {
927 add_package_symbol => sub {
928 my $original = shift;
929 confess "Cannot add package symbols to an immutable metaclass"
930 unless (caller(2))[3] eq 'Class::MOP::Package::get_package_symbol';
931 goto $original->body;
932 },
933 },
d9586da2 934 });
935 return $class;
857f87a7 936}
937
8b978dd5 9381;
939
940__END__
941
942=pod
943
0ac992ee 944=head1 NAME
8b978dd5 945
946Class::MOP::Class - Class Meta Object
947
948=head1 SYNOPSIS
949
0ac992ee 950 # assuming that class Foo
8c936afc 951 # has been defined, you can
0ac992ee 952
fe122940 953 # use this for introspection ...
0ac992ee 954
fe122940 955 # add a method to Foo ...
956 Foo->meta->add_method('bar' => sub { ... })
0ac992ee 957
958 # get a list of all the classes searched
959 # the method dispatcher in the correct order
fe122940 960 Foo->meta->class_precedence_list()
0ac992ee 961
fe122940 962 # remove a method from Foo
963 Foo->meta->remove_method('bar');
0ac992ee 964
fe122940 965 # or use this to actually create classes ...
0ac992ee 966
88dd563c 967 Class::MOP::Class->create('Bar' => (
968 version => '0.01',
fe122940 969 superclasses => [ 'Foo' ],
970 attributes => [
971 Class::MOP:::Attribute->new('$bar'),
0ac992ee 972 Class::MOP:::Attribute->new('$baz'),
fe122940 973 ],
974 methods => {
975 calculate_bar => sub { ... },
0ac992ee 976 construct_baz => sub { ... }
fe122940 977 }
978 ));
979
8b978dd5 980=head1 DESCRIPTION
981
0ac992ee 982This is the largest and currently most complex part of the Perl 5
983meta-object protocol. It controls the introspection and
984manipulation of Perl 5 classes (and it can create them too). The
985best way to understand what this module can do, is to read the
fe122940 986documentation for each of it's methods.
987
552e3d24 988=head1 METHODS
989
2eb717d5 990=head2 Self Introspection
991
992=over 4
993
994=item B<meta>
995
0ac992ee 996This will return a B<Class::MOP::Class> instance which is related
997to this class. Thereby allowing B<Class::MOP::Class> to actually
fe122940 998introspect itself.
999
0ac992ee 1000As with B<Class::MOP::Attribute>, B<Class::MOP> will actually
1001bootstrap this module by installing a number of attribute meta-objects
1002into it's metaclass. This will allow this class to reap all the benifits
1003of the MOP when subclassing it.
2eb717d5 1004
1005=back
1006
552e3d24 1007=head2 Class construction
1008
0ac992ee 1009These methods will handle creating B<Class::MOP::Class> objects,
1010which can be used to both create new classes, and analyze
1011pre-existing classes.
552e3d24 1012
0ac992ee 1013This module will internally store references to all the instances
1014you create with these methods, so that they do not need to be
552e3d24 1015created any more than nessecary. Basically, they are singletons.
1016
1017=over 4
1018
0ac992ee 1019=item B<create ($package_name,
1020 version =E<gt> ?$version,
1021 authority =E<gt> ?$authority,
1022 superclasses =E<gt> ?@superclasses,
1023 methods =E<gt> ?%methods,
a2e85e6c 1024 attributes =E<gt> ?%attributes)>
552e3d24 1025
0ac992ee 1026This returns a B<Class::MOP::Class> object, bringing the specified
1027C<$package_name> into existence and adding any of the C<$version>,
1028C<$authority>, C<@superclasses>, C<%methods> and C<%attributes> to
88dd563c 1029it.
552e3d24 1030
0ac992ee 1031=item B<create_anon_class (superclasses =E<gt> ?@superclasses,
1032 methods =E<gt> ?%methods,
587aca23 1033 attributes =E<gt> ?%attributes)>
1034
0ac992ee 1035This will create an anonymous class, it works much like C<create> but
1036it does not need a C<$package_name>. Instead it will create a suitably
587aca23 1037unique package name for you to stash things into.
1038
0ac992ee 1039On very important distinction is that anon classes are destroyed once
1040the metaclass they are attached to goes out of scope. In the DESTROY
1041method, the created package will be removed from the symbol table.
823a5d31 1042
d4ba1677 1043It is also worth noting that any instances created with an anon-class
0ac992ee 1044will keep a special reference to the anon-meta which will prevent the
1045anon-class from going out of scope until all instances of it have also
1046been destroyed. This however only works for HASH based instance types,
1047as we use a special reserved slot (C<__MOP__>) to store this.
d4ba1677 1048
66b3dded 1049=item B<initialize ($package_name, %options)>
552e3d24 1050
0ac992ee 1051This initializes and returns returns a B<Class::MOP::Class> object
a2e85e6c 1052for a given a C<$package_name>.
1053
66b3dded 1054=item B<reinitialize ($package_name, %options)>
1055
1056This removes the old metaclass, and creates a new one in it's place.
0ac992ee 1057Do B<not> use this unless you really know what you are doing, it could
1058very easily make a very large mess of your program.
66b3dded 1059
651955fb 1060=item B<construct_class_instance (%options)>
a2e85e6c 1061
0ac992ee 1062This will construct an instance of B<Class::MOP::Class>, it is
1063here so that we can actually "tie the knot" for B<Class::MOP::Class>
1064to use C<construct_instance> once all the bootstrapping is done. This
a2e85e6c 1065method is used internally by C<initialize> and should never be called
1066from outside of that method really.
552e3d24 1067
550d56db 1068=item B<check_metaclass_compatability>
1069
0ac992ee 1070This method is called as the very last thing in the
1071C<construct_class_instance> method. This will check that the
1072metaclass you are creating is compatible with the metaclasses of all
1073your ancestors. For more inforamtion about metaclass compatibility
550d56db 1074see the C<About Metaclass compatibility> section in L<Class::MOP>.
1075
715adbb7 1076=item B<update_package_cache_flag>
e0e4674a 1077
1078This will reset the package cache flag for this particular metaclass
1079it is basically the value of the C<Class::MOP::get_package_cache_flag>
1080function. This is very rarely needed from outside of C<Class::MOP::Class>
1081but in some cases you might want to use it, so it is here.
1082
715adbb7 1083=item B<reset_package_cache_flag>
1084
127d39a7 1085Clears the package cache flag to announce to the internals that we need
1086to rebuild the method map.
715adbb7 1087
552e3d24 1088=back
1089
c9e77dbb 1090=head2 Object instance construction and cloning
a2e85e6c 1091
0ac992ee 1092These methods are B<entirely optional>, it is up to you whether you want
c9e77dbb 1093to use them or not.
552e3d24 1094
1095=over 4
1096
2bab2be6 1097=item B<instance_metaclass>
1098
127d39a7 1099Returns the class name of the instance metaclass, see L<Class::MOP::Instance>
1100for more information on the instance metaclasses.
1101
2d711cc8 1102=item B<get_meta_instance>
1103
127d39a7 1104Returns an instance of L<Class::MOP::Instance> to be used in the construction
1105of a new instance of the class.
1106
5f3c057a 1107=item B<new_object (%params)>
1108
0ac992ee 1109This is a convience method for creating a new object of the class, and
1110blessing it into the appropriate package as well. Ideally your class
5f3c057a 1111would call a C<new> this method like so:
1112
0ac992ee 1113 sub MyClass::new {
5f3c057a 1114 my ($class, %param) = @_;
1115 $class->meta->new_object(%params);
1116 }
1117
cbd9f942 1118=item B<construct_instance (%params)>
552e3d24 1119
127d39a7 1120This method is used to construct an instance structure suitable for
0ac992ee 1121C<bless>-ing into your package of choice. It works in conjunction
c9e77dbb 1122with the Attribute protocol to collect all applicable attributes.
1123
0ac992ee 1124This will construct and instance using a HASH ref as storage
1125(currently only HASH references are supported). This will collect all
1126the applicable attributes and layout out the fields in the HASH ref,
1127it will then initialize them using either use the corresponding key
1128in C<%params> or any default value or initializer found in the
a2e85e6c 1129attribute meta-object.
727919c5 1130
5f3c057a 1131=item B<clone_object ($instance, %params)>
1132
0ac992ee 1133This is a convience method for cloning an object instance, then
1134blessing it into the appropriate package. This method will call
1135C<clone_instance>, which performs a shallow copy of the object,
1136see that methods documentation for more details. Ideally your
19d4b5b8 1137class would call a C<clone> this method like so:
5f3c057a 1138
1139 sub MyClass::clone {
1140 my ($self, %param) = @_;
1141 $self->meta->clone_object($self, %params);
1142 }
1143
c9e77dbb 1144=item B<clone_instance($instance, %params)>
1145
0ac992ee 1146This method is a compliment of C<construct_instance> (which means if
1147you override C<construct_instance>, you need to override this one too),
19d4b5b8 1148and clones the instance shallowly.
a27ae83f 1149
0ac992ee 1150The cloned structure returned is (like with C<construct_instance>) an
1151unC<bless>ed HASH reference, it is your responsibility to then bless
a27ae83f 1152this cloned structure into the right class (which C<clone_object> will
1153do for you).
c9e77dbb 1154
0ac992ee 1155As of 0.11, this method will clone the C<$instance> structure shallowly,
1156as opposed to the deep cloning implemented in prior versions. After much
1157thought, research and discussion, I have decided that anything but basic
1158shallow cloning is outside the scope of the meta-object protocol. I
1159think Yuval "nothingmuch" Kogman put it best when he said that cloning
19d4b5b8 1160is too I<context-specific> to be part of the MOP.
1161
214e4bd7 1162=item B<rebless_instance($instance, ?%params)>
69663c57 1163
1164This will change the class of C<$instance> to the class of the invoking
1165C<Class::MOP::Class>. You may only rebless the instance to a subclass of
214e4bd7 1166itself. You may pass in optional C<%params> which are like constructor
1167params and will override anything already defined in the instance.
69663c57 1168
552e3d24 1169=back
1170
0ac992ee 1171=head2 Informational
552e3d24 1172
b9d9fc0b 1173These are a few predicate methods for asking information about the class.
552e3d24 1174
b9d9fc0b 1175=over 4
552e3d24 1176
b9d9fc0b 1177=item B<is_anon_class>
552e3d24 1178
96e38ba6 1179This returns true if the class is a C<Class::MOP::Class> created anon class.
1180
b9d9fc0b 1181=item B<is_mutable>
552e3d24 1182
96e38ba6 1183This returns true if the class is still mutable.
1184
b9d9fc0b 1185=item B<is_immutable>
552e3d24 1186
96e38ba6 1187This returns true if the class has been made immutable.
1188
552e3d24 1189=back
1190
1191=head2 Inheritance Relationships
1192
1193=over 4
1194
1195=item B<superclasses (?@superclasses)>
1196
0ac992ee 1197This is a read-write attribute which represents the superclass
a2e85e6c 1198relationships of the class the B<Class::MOP::Class> instance is
1199associated with. Basically, it can get and set the C<@ISA> for you.
552e3d24 1200
1201=item B<class_precedence_list>
1202
0ac992ee 1203This computes the a list of all the class's ancestors in the same order
127d39a7 1204in which method dispatch will be done. This is similair to what
1205B<Class::ISA::super_path> does, but we don't remove duplicate names.
552e3d24 1206
b7bdffc3 1207=item B<linearized_isa>
1208
1209This returns a list based on C<class_precedence_list> but with all
1210duplicates removed.
1211
6c9f390e 1212=item B<subclasses>
1213
127d39a7 1214This returns a list of subclasses for this class.
6c9f390e 1215
552e3d24 1216=back
1217
1218=head2 Methods
1219
1220=over 4
1221
c4260b45 1222=item B<get_method_map>
1223
127d39a7 1224Returns a HASH ref of name to CODE reference mapping for this class.
1225
2e41896e 1226=item B<method_metaclass>
1227
127d39a7 1228Returns the class name of the method metaclass, see L<Class::MOP::Method>
1229for more information on the method metaclasses.
1230
552e3d24 1231=item B<add_method ($method_name, $method)>
1232
0ac992ee 1233This will take a C<$method_name> and CODE reference to that
1234C<$method> and install it into the class's package.
552e3d24 1235
0ac992ee 1236B<NOTE>:
1237This does absolutely nothing special to C<$method>
1238other than use B<Sub::Name> to make sure it is tagged with the
1239correct name, and therefore show up correctly in stack traces and
552e3d24 1240such.
1241
663f8198 1242=item B<alias_method ($method_name, $method)>
1243
0ac992ee 1244This will take a C<$method_name> and CODE reference to that
1245C<$method> and alias the method into the class's package.
663f8198 1246
0ac992ee 1247B<NOTE>:
1248Unlike C<add_method>, this will B<not> try to name the
1249C<$method> using B<Sub::Name>, it only aliases the method in
1250the class's package.
663f8198 1251
552e3d24 1252=item B<has_method ($method_name)>
1253
0ac992ee 1254This just provides a simple way to check if the class implements
1255a specific C<$method_name>. It will I<not> however, attempt to check
a2e85e6c 1256if the class inherits the method (use C<UNIVERSAL::can> for that).
552e3d24 1257
0ac992ee 1258This will correctly handle functions defined outside of the package
552e3d24 1259that use a fully qualified name (C<sub Package::name { ... }>).
1260
0ac992ee 1261This will correctly handle functions renamed with B<Sub::Name> and
1262installed using the symbol tables. However, if you are naming the
1263subroutine outside of the package scope, you must use the fully
1264qualified name, including the package name, for C<has_method> to
1265correctly identify it.
552e3d24 1266
0ac992ee 1267This will attempt to correctly ignore functions imported from other
1268packages using B<Exporter>. It breaks down if the function imported
1269is an C<__ANON__> sub (such as with C<use constant>), which very well
1270may be a valid method being applied to the class.
552e3d24 1271
0ac992ee 1272In short, this method cannot always be trusted to determine if the
1273C<$method_name> is actually a method. However, it will DWIM about
a2e85e6c 127490% of the time, so it's a small trade off I think.
552e3d24 1275
1276=item B<get_method ($method_name)>
1277
0ac992ee 1278This will return a Class::MOP::Method instance related to the specified
86482605 1279C<$method_name>, or return undef if that method does not exist.
1280
0ac992ee 1281The Class::MOP::Method is codifiable, so you can use it like a normal
86482605 1282CODE reference, see L<Class::MOP::Method> for more information.
552e3d24 1283
f9debadc 1284=item B<find_method_by_name ($method_name)>
16e960bd 1285
1286This will return a CODE reference of the specified C<$method_name>,
1287or return undef if that method does not exist.
1288
1289Unlike C<get_method> this will also look in the superclasses.
1290
552e3d24 1291=item B<remove_method ($method_name)>
1292
0ac992ee 1293This will attempt to remove a given C<$method_name> from the class.
1294It will return the CODE reference that it has removed, and will
552e3d24 1295attempt to use B<Sub::Name> to clear the methods associated name.
1296
1297=item B<get_method_list>
1298
0ac992ee 1299This will return a list of method names for all I<locally> defined
1300methods. It does B<not> provide a list of all applicable methods,
1301including any inherited ones. If you want a list of all applicable
552e3d24 1302methods, use the C<compute_all_applicable_methods> method.
1303
1304=item B<compute_all_applicable_methods>
1305
0ac992ee 1306This will return a list of all the methods names this class will
1307respond to, taking into account inheritance. The list will be a list of
1308HASH references, each one containing the following information; method
1309name, the name of the class in which the method lives and a CODE
552e3d24 1310reference for the actual method.
1311
1312=item B<find_all_methods_by_name ($method_name)>
1313
0ac992ee 1314This will traverse the inheritence hierarchy and locate all methods
1315with a given C<$method_name>. Similar to
1316C<compute_all_applicable_methods> it returns a list of HASH references
1317with the following information; method name (which will always be the
1318same as C<$method_name>), the name of the class in which the method
552e3d24 1319lives and a CODE reference for the actual method.
1320
0ac992ee 1321The list of methods produced is a distinct list, meaning there are no
1322duplicates in it. This is especially useful for things like object
1323initialization and destruction where you only want the method called
552e3d24 1324once, and in the correct order.
1325
96ceced8 1326=item B<find_next_method_by_name ($method_name)>
1327
0ac992ee 1328This will return the first method to match a given C<$method_name> in
1329the superclasses, this is basically equivalent to calling
96ceced8 1330C<SUPER::$method_name>, but it can be dispatched at runtime.
1331
552e3d24 1332=back
1333
a4258ffd 1334=head2 Method Modifiers
1335
0ac992ee 1336Method modifiers are a concept borrowed from CLOS, in which a method
1337can be wrapped with I<before>, I<after> and I<around> method modifiers
1338that will be called everytime the method is called.
96ceced8 1339
1340=head3 How method modifiers work?
1341
0ac992ee 1342Method modifiers work by wrapping the original method and then replacing
1343it in the classes symbol table. The wrappers will handle calling all the
1344modifiers in the appropariate orders and preserving the calling context
1345for the original method.
1346
1347Each method modifier serves a particular purpose, which may not be
1348obvious to users of other method wrapping modules. To start with, the
1349return values of I<before> and I<after> modifiers are ignored. This is
1350because thier purpose is B<not> to filter the input and output of the
1351primary method (this is done with an I<around> modifier). This may seem
1352like an odd restriction to some, but doing this allows for simple code
1353to be added at the begining or end of a method call without jeapordizing
1354the normal functioning of the primary method or placing any extra
1355responsibility on the code of the modifier. Of course if you have more
1356complex needs, then use the I<around> modifier, which uses a variation
1357of continutation passing style to allow for a high degree of flexibility.
1358
1359Before and around modifiers are called in last-defined-first-called order,
1360while after modifiers are called in first-defined-first-called order. So
96ceced8 1361the call tree might looks something like this:
0ac992ee 1362
96ceced8 1363 before 2
1364 before 1
1365 around 2
1366 around 1
1367 primary
1368 after 1
1369 after 2
1370
0ac992ee 1371To see examples of using method modifiers, see the following examples
1372included in the distribution; F<InstanceCountingClass>, F<Perl6Attribute>,
1373F<AttributesWithHistory> and F<C3MethodDispatchOrder>. There is also a
96ceced8 1374classic CLOS usage example in the test F<017_add_method_modifier.t>.
1375
1376=head3 What is the performance impact?
1377
0ac992ee 1378Of course there is a performance cost associated with method modifiers,
1379but we have made every effort to make that cost be directly proportional
96ceced8 1380to the amount of modifier features you utilize.
1381
0ac992ee 1382The wrapping method does it's best to B<only> do as much work as it
1383absolutely needs to. In order to do this we have moved some of the
96ceced8 1384performance costs to set-up time, where they are easier to amortize.
1385
1386All this said, my benchmarks have indicated the following:
1387
1388 simple wrapper with no modifiers 100% slower
1389 simple wrapper with simple before modifier 400% slower
1390 simple wrapper with simple after modifier 450% slower
1391 simple wrapper with simple around modifier 500-550% slower
1392 simple wrapper with all 3 modifiers 1100% slower
1393
0ac992ee 1394These numbers may seem daunting, but you must remember, every feature
1395comes with some cost. To put things in perspective, just doing a simple
96ceced8 1396C<AUTOLOAD> which does nothing but extract the name of the method called
0ac992ee 1397and return it costs about 400% over a normal method call.
96ceced8 1398
a4258ffd 1399=over 4
1400
1401=item B<add_before_method_modifier ($method_name, $code)>
1402
0ac992ee 1403This will wrap the method at C<$method_name> and the supplied C<$code>
1404will be passed the C<@_> arguments, and called before the original
1405method is called. As specified above, the return value of the I<before>
1406method modifiers is ignored, and it's ability to modify C<@_> is
1407fairly limited. If you need to do either of these things, use an
96ceced8 1408C<around> method modifier.
1409
a4258ffd 1410=item B<add_after_method_modifier ($method_name, $code)>
1411
0ac992ee 1412This will wrap the method at C<$method_name> so that the original
1413method will be called, it's return values stashed, and then the
96ceced8 1414supplied C<$code> will be passed the C<@_> arguments, and called.
0ac992ee 1415As specified above, the return value of the I<after> method
1416modifiers is ignored, and it cannot modify the return values of
1417the original method. If you need to do either of these things, use an
96ceced8 1418C<around> method modifier.
1419
a4258ffd 1420=item B<add_around_method_modifier ($method_name, $code)>
1421
0ac992ee 1422This will wrap the method at C<$method_name> so that C<$code>
1423will be called and passed the original method as an extra argument
1424at the begining of the C<@_> argument list. This is a variation of
1425continuation passing style, where the function prepended to C<@_>
1426can be considered a continuation. It is up to C<$code> if it calls
1427the original method or not, there is no restriction on what the
96ceced8 1428C<$code> can or cannot do.
1429
a4258ffd 1430=back
1431
552e3d24 1432=head2 Attributes
1433
0ac992ee 1434It should be noted that since there is no one consistent way to define
1435the attributes of a class in Perl 5. These methods can only work with
1436the information given, and can not easily discover information on
a2e85e6c 1437their own. See L<Class::MOP::Attribute> for more details.
552e3d24 1438
1439=over 4
1440
2e41896e 1441=item B<attribute_metaclass>
1442
127d39a7 1443Returns the class name of the attribute metaclass, see L<Class::MOP::Attribute>
1444for more information on the attribute metaclasses.
1445
7b31baf4 1446=item B<get_attribute_map>
1447
127d39a7 1448This returns a HASH ref of name to attribute meta-object mapping.
1449
1450=item B<add_attribute ($attribute_meta_object | ($attribute_name, %attribute_spec))>
552e3d24 1451
8203616d 1452This stores the C<$attribute_meta_object> (or creates one from the
0ac992ee 1453C<$attribute_name> and C<%attribute_spec>) in the B<Class::MOP::Class>
1454instance associated with the given class. Unlike methods, attributes
1455within the MOP are stored as meta-information only. They will be used
8203616d 1456later to construct instances from (see C<construct_instance> above).
0ac992ee 1457More details about the attribute meta-objects can be found in the
a2e85e6c 1458L<Class::MOP::Attribute> or the L<Class::MOP/The Attribute protocol>
1459section.
1460
0ac992ee 1461It should be noted that any accessor, reader/writer or predicate
1462methods which the C<$attribute_meta_object> has will be installed
a2e85e6c 1463into the class at this time.
552e3d24 1464
86482605 1465B<NOTE>
0ac992ee 1466If an attribute already exists for C<$attribute_name>, the old one
1467will be removed (as well as removing all it's accessors), and then
86482605 1468the new one added.
1469
552e3d24 1470=item B<has_attribute ($attribute_name)>
1471
0ac992ee 1472Checks to see if this class has an attribute by the name of
552e3d24 1473C<$attribute_name> and returns a boolean.
1474
1475=item B<get_attribute ($attribute_name)>
1476
0ac992ee 1477Returns the attribute meta-object associated with C<$attribute_name>,
1478if none is found, it will return undef.
552e3d24 1479
1480=item B<remove_attribute ($attribute_name)>
1481
0ac992ee 1482This will remove the attribute meta-object stored at
1483C<$attribute_name>, then return the removed attribute meta-object.
552e3d24 1484
0ac992ee 1485B<NOTE:>
1486Removing an attribute will only affect future instances of
1487the class, it will not make any attempt to remove the attribute from
552e3d24 1488any existing instances of the class.
1489
0ac992ee 1490It should be noted that any accessor, reader/writer or predicate
1491methods which the attribute meta-object stored at C<$attribute_name>
1492has will be removed from the class at this time. This B<will> make
1493these attributes somewhat inaccessable in previously created
1494instances. But if you are crazy enough to do this at runtime, then
a2e85e6c 1495you are crazy enough to deal with something like this :).
1496
552e3d24 1497=item B<get_attribute_list>
1498
0ac992ee 1499This returns a list of attribute names which are defined in the local
1500class. If you want a list of all applicable attributes for a class,
552e3d24 1501use the C<compute_all_applicable_attributes> method.
1502
1503=item B<compute_all_applicable_attributes>
1504
0ac992ee 1505This will traverse the inheritance heirachy and return a list of all
1506the applicable attributes for this class. It does not construct a
1507HASH reference like C<compute_all_applicable_methods> because all
1508that same information is discoverable through the attribute
c9e77dbb 1509meta-object itself.
552e3d24 1510
058c1cf5 1511=item B<find_attribute_by_name ($attr_name)>
1512
0ac992ee 1513This method will traverse the inheritance heirachy and find the
1514first attribute whose name matches C<$attr_name>, then return it.
058c1cf5 1515It will return undef if nothing is found.
1516
552e3d24 1517=back
1518
96e38ba6 1519=head2 Class Immutability
857f87a7 1520
1521=over 4
1522
96e38ba6 1523=item B<make_immutable (%options)>
1524
0ac992ee 1525This method will invoke a tranforamtion upon the class which will
1526make it immutable. Details of this transformation can be found in
96e38ba6 1527the L<Class::MOP::Immutable> documentation.
857f87a7 1528
0ac992ee 1529=item B<make_mutable>
1530
1531This method will reverse tranforamtion upon the class which
1532made it immutable.
1533
b817e248 1534=item B<create_immutable_transformer>
1535
1536Create a transformer suitable for making this class immutable
1537
857f87a7 1538=back
1539
1a09d9cc 1540=head1 AUTHORS
8b978dd5 1541
a2e85e6c 1542Stevan Little E<lt>stevan@iinteractive.comE<gt>
8b978dd5 1543
1544=head1 COPYRIGHT AND LICENSE
1545
69e3ab0a 1546Copyright 2006-2008 by Infinity Interactive, Inc.
8b978dd5 1547
1548L<http://www.iinteractive.com>
1549
1550This library is free software; you can redistribute it and/or modify
0ac992ee 1551it under the same terms as Perl itself.
8b978dd5 1552
798baea5 1553=cut