Another error change
[gitmo/Class-MOP.git] / lib / Class / MOP / Class.pm
1
2 package Class::MOP::Class;
3
4 use strict;
5 use warnings;
6
7 use Class::MOP::Immutable;
8 use Class::MOP::Instance;
9 use Class::MOP::Method::Wrapped;
10
11 use Carp         'confess';
12 use Scalar::Util 'blessed', 'weaken';
13
14 our $VERSION   = '0.79';
15 $VERSION = eval $VERSION;
16 our $AUTHORITY = 'cpan:STEVAN';
17
18 use base 'Class::MOP::Module';
19
20 # Creation
21
22 sub initialize {
23     my $class = shift;
24
25     my $package_name;
26     
27     if ( @_ % 2 ) {
28         $package_name = shift;
29     } else {
30         my %options = @_;
31         $package_name = $options{package};
32     }
33
34     (defined $package_name && $package_name && !ref($package_name))
35         || confess "You must pass a package name and it cannot be blessed";
36
37     return Class::MOP::get_metaclass_by_name($package_name)
38         || $class->construct_class_instance(package => $package_name, @_);
39 }
40
41 # NOTE: (meta-circularity)
42 # this is a special form of &construct_instance
43 # (see below), which is used to construct class
44 # meta-object instances for any Class::MOP::*
45 # class. All other classes will use the more
46 # normal &construct_instance.
47 sub construct_class_instance {
48     my $class        = shift;
49     my $options      = @_ == 1 ? $_[0] : {@_};
50     my $package_name = $options->{package};
51     (defined $package_name && $package_name)
52         || confess "You must pass a package name";
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
59     if (defined(my $meta = Class::MOP::get_metaclass_by_name($package_name))) {
60         return $meta;
61     }
62
63     # NOTE:
64     # we need to deal with the possibility
65     # of class immutability here, and then
66     # get the name of the class appropriately
67     $class = (ref($class)
68                     ? ($class->is_immutable
69                         ? $class->get_mutable_metaclass_name()
70                         : ref($class))
71                     : $class);
72
73     # now create the metaclass
74     my $meta;
75     if ($class eq 'Class::MOP::Class') {
76         $meta = $class->_new($options);
77     }
78     else {
79         # NOTE:
80         # it is safe to use meta here because
81         # class will always be a subclass of
82         # Class::MOP::Class, which defines meta
83         $meta = $class->meta->construct_instance($options)
84     }
85
86     # and check the metaclass compatibility
87     $meta->check_metaclass_compatibility();  
88
89     Class::MOP::store_metaclass_by_name($package_name, $meta);
90
91     # NOTE:
92     # we need to weaken any anon classes
93     # so that they can call DESTROY properly
94     Class::MOP::weaken_metaclass($package_name) if $meta->is_anon_class;
95
96     $meta;
97 }
98
99 sub _new {
100     my $class = shift;
101     my $options = @_ == 1 ? $_[0] : {@_};
102
103     bless {
104         # inherited from Class::MOP::Package
105         'package' => $options->{package},
106
107         # NOTE:
108         # since the following attributes will
109         # actually be loaded from the symbol
110         # table, and actually bypass the instance
111         # entirely, we can just leave these things
112         # listed here for reference, because they
113         # should not actually have a value associated
114         # with the slot.
115         'namespace' => \undef,
116
117         # inherited from Class::MOP::Module
118         'version'   => \undef,
119         'authority' => \undef,
120
121         # defined in Class::MOP::Class
122         'superclasses' => \undef,
123
124         'methods'             => {},
125         'attributes'          => {},
126         'attribute_metaclass' => $options->{'attribute_metaclass'}
127             || 'Class::MOP::Attribute',
128         'method_metaclass' => $options->{'method_metaclass'}
129             || 'Class::MOP::Method',
130         'wrapped_method_metaclass' => $options->{'wrapped_method_metaclass'}
131             || 'Class::MOP::Method::Wrapped',
132         'instance_metaclass' => $options->{'instance_metaclass'}
133             || 'Class::MOP::Instance',
134     }, $class;
135 }
136
137 sub reset_package_cache_flag  { (shift)->{'_package_cache_flag'} = undef } 
138 sub update_package_cache_flag {
139     my $self = shift;
140     # NOTE:
141     # we can manually update the cache number 
142     # since we are actually adding the method
143     # to our cache as well. This avoids us 
144     # having to regenerate the method_map.
145     # - SL    
146     $self->{'_package_cache_flag'} = Class::MOP::check_package_cache_flag($self->name);    
147 }
148
149 sub check_metaclass_compatibility {
150     my $self = shift;
151
152     # this is always okay ...
153     return if ref($self)                eq 'Class::MOP::Class'   &&
154               $self->instance_metaclass eq 'Class::MOP::Instance';
155
156     my @class_list = $self->linearized_isa;
157     shift @class_list; # shift off $self->name
158
159     foreach my $superclass_name (@class_list) {
160         my $super_meta = Class::MOP::get_metaclass_by_name($superclass_name) || next;
161
162         # NOTE:
163         # we need to deal with the possibility
164         # of class immutability here, and then
165         # get the name of the class appropriately
166         my $super_meta_type
167             = $super_meta->is_immutable
168             ? $super_meta->get_mutable_metaclass_name()
169             : ref($super_meta);
170
171         ($self->isa($super_meta_type))
172             || confess "Class::MOP::class_of(" . $self->name . ") => ("
173                        . (ref($self)) . ")" .  " is not compatible with the " .
174                        "Class::MOP::class_of(".$superclass_name . ") => ("
175                        . ($super_meta_type) . ")";
176         # NOTE:
177         # we also need to check that instance metaclasses
178         # are compatibile in the same the class.
179         ($self->instance_metaclass->isa($super_meta->instance_metaclass))
180             || confess "Class::MOP::class_of(" . $self->name . ")->instance_metaclass => (" . ($self->instance_metaclass) . ")" .
181                        " is not compatible with the " .
182                        "Class::MOP::class_of(" . $superclass_name . ")->instance_metaclass => (" . ($super_meta->instance_metaclass) . ")";
183     }
184 }
185
186 ## ANON classes
187
188 {
189     # NOTE:
190     # this should be sufficient, if you have a
191     # use case where it is not, write a test and
192     # I will change it.
193     my $ANON_CLASS_SERIAL = 0;
194
195     # NOTE:
196     # we need a sufficiently annoying prefix
197     # this should suffice for now, this is
198     # used in a couple of places below, so
199     # need to put it up here for now.
200     my $ANON_CLASS_PREFIX = 'Class::MOP::Class::__ANON__::SERIAL::';
201
202     sub is_anon_class {
203         my $self = shift;
204         no warnings 'uninitialized';
205         $self->name =~ /^$ANON_CLASS_PREFIX/;
206     }
207
208     sub create_anon_class {
209         my ($class, %options) = @_;
210         my $package_name = $ANON_CLASS_PREFIX . ++$ANON_CLASS_SERIAL;
211         return $class->create($package_name, %options);
212     }
213
214     # NOTE:
215     # this will only get called for
216     # anon-classes, all other calls
217     # are assumed to occur during
218     # global destruction and so don't
219     # really need to be handled explicitly
220     sub DESTROY {
221         my $self = shift;
222
223         return if Class::MOP::in_global_destruction(); # it'll happen soon anyway and this just makes things more complicated
224
225         no warnings 'uninitialized';
226         return unless $self->name =~ /^$ANON_CLASS_PREFIX/;
227         # Moose does a weird thing where it replaces the metaclass for
228         # class when fixing metaclass incompatibility. In that case,
229         # we don't want to clean out the namespace now. We can detect
230         # that because Moose will explicitly update the singleton
231         # cache in Class::MOP.
232         my $current_meta = Class::MOP::get_metaclass_by_name($self->name);
233         return if $current_meta ne $self;
234
235         my ($serial_id) = ($self->name =~ /^$ANON_CLASS_PREFIX(\d+)/);
236         no strict 'refs';
237         foreach my $key (keys %{$ANON_CLASS_PREFIX . $serial_id}) {
238             delete ${$ANON_CLASS_PREFIX . $serial_id}{$key};
239         }
240         delete ${'main::' . $ANON_CLASS_PREFIX}{$serial_id . '::'};
241     }
242
243 }
244
245 # creating classes with MOP ...
246
247 sub create {
248     my ( $class, @args ) = @_;
249
250     unshift @args, 'package' if @args % 2 == 1;
251
252     my (%options) = @args;
253     my $package_name = $options{package};
254
255     (ref $options{superclasses} eq 'ARRAY')
256         || confess "You must pass an ARRAY ref of superclasses"
257             if exists $options{superclasses};
258             
259     (ref $options{attributes} eq 'ARRAY')
260         || confess "You must pass an ARRAY ref of attributes"
261             if exists $options{attributes};      
262             
263     (ref $options{methods} eq 'HASH')
264         || confess "You must pass a HASH ref of methods"
265             if exists $options{methods};                  
266
267     $class->SUPER::create(%options);
268
269     my (%initialize_options) = @args;
270     delete @initialize_options{qw(
271         package
272         superclasses
273         attributes
274         methods
275         version
276         authority
277     )};
278     my $meta = $class->initialize( $package_name => %initialize_options );
279
280     # FIXME totally lame
281     $meta->add_method('meta' => sub {
282         $class->initialize(ref($_[0]) || $_[0]);
283     });
284
285     $meta->superclasses(@{$options{superclasses}})
286         if exists $options{superclasses};
287     # NOTE:
288     # process attributes first, so that they can
289     # install accessors, but locally defined methods
290     # can then overwrite them. It is maybe a little odd, but
291     # I think this should be the order of things.
292     if (exists $options{attributes}) {
293         foreach my $attr (@{$options{attributes}}) {
294             $meta->add_attribute($attr);
295         }
296     }
297     if (exists $options{methods}) {
298         foreach my $method_name (keys %{$options{methods}}) {
299             $meta->add_method($method_name, $options{methods}->{$method_name});
300         }
301     }
302     return $meta;
303 }
304
305 ## Attribute readers
306
307 # NOTE:
308 # all these attribute readers will be bootstrapped
309 # away in the Class::MOP bootstrap section
310
311 sub get_attribute_map        { $_[0]->{'attributes'}                  }
312 sub attribute_metaclass      { $_[0]->{'attribute_metaclass'}         }
313 sub method_metaclass         { $_[0]->{'method_metaclass'}            }
314 sub wrapped_method_metaclass { $_[0]->{'wrapped_method_metaclass'}    }
315 sub instance_metaclass       { $_[0]->{'instance_metaclass'}          }
316
317 # Instance Construction & Cloning
318
319 sub new_object {
320     my $class = shift;
321
322     # NOTE:
323     # we need to protect the integrity of the
324     # Class::MOP::Class singletons here, so we
325     # delegate this to &construct_class_instance
326     # which will deal with the singletons
327     return $class->construct_class_instance(@_)
328         if $class->name->isa('Class::MOP::Class');
329     return $class->construct_instance(@_);
330 }
331
332 sub construct_instance {
333     my $class = shift;
334     my $params = @_ == 1 ? $_[0] : {@_};
335     my $meta_instance = $class->get_meta_instance();
336     my $instance = $meta_instance->create_instance();
337     foreach my $attr ($class->compute_all_applicable_attributes()) {
338         $attr->initialize_instance_slot($meta_instance, $instance, $params);
339     }
340     # NOTE:
341     # this will only work for a HASH instance type
342     if ($class->is_anon_class) {
343         (Scalar::Util::reftype($instance) eq 'HASH')
344             || confess "Currently only HASH based instances are supported with instance of anon-classes";
345         # NOTE:
346         # At some point we should make this official
347         # as a reserved slot name, but right now I am
348         # going to keep it here.
349         # my $RESERVED_MOP_SLOT = '__MOP__';
350         $instance->{'__MOP__'} = $class;
351     }
352     return $instance;
353 }
354
355
356 sub get_meta_instance {
357     my $self = shift;
358     $self->{'_meta_instance'} ||= $self->create_meta_instance();
359 }
360
361 sub create_meta_instance {
362     my $self = shift;
363     
364     my $instance = $self->instance_metaclass->new(
365         associated_metaclass => $self,
366         attributes => [ $self->compute_all_applicable_attributes() ],
367     );
368
369     $self->add_meta_instance_dependencies()
370         if $instance->is_dependent_on_superclasses();
371
372     return $instance;
373 }
374
375 sub clone_object {
376     my $class    = shift;
377     my $instance = shift;
378     (blessed($instance) && $instance->isa($class->name))
379         || confess "You must pass an instance of the metaclass (" . (ref $class ? $class->name : $class) . "), not ($instance)";
380
381     # NOTE:
382     # we need to protect the integrity of the
383     # Class::MOP::Class singletons here, they
384     # should not be cloned.
385     return $instance if $instance->isa('Class::MOP::Class');
386     $class->clone_instance($instance, @_);
387 }
388
389 sub clone_instance {
390     my ($class, $instance, %params) = @_;
391     (blessed($instance))
392         || confess "You can only clone instances, ($instance) is not a blessed instance";
393     my $meta_instance = $class->get_meta_instance();
394     my $clone = $meta_instance->clone_instance($instance);
395     foreach my $attr ($class->compute_all_applicable_attributes()) {
396         if ( defined( my $init_arg = $attr->init_arg ) ) {
397             if (exists $params{$init_arg}) {
398                 $attr->set_value($clone, $params{$init_arg});
399             }
400         }
401     }
402     return $clone;
403 }
404
405 sub rebless_instance {
406     my ($self, $instance, %params) = @_;
407
408     my $old_metaclass;
409     if ($instance->can('meta')) {
410         ($instance->meta->isa('Class::MOP::Class'))
411             || confess 'Cannot rebless instance if ->meta is not an instance of Class::MOP::Class';
412         $old_metaclass = $instance->meta;
413     }
414     else {
415         $old_metaclass = $self->initialize(blessed($instance));
416     }
417
418     $old_metaclass->rebless_instance_away($instance, $self, %params);
419
420     my $meta_instance = $self->get_meta_instance();
421
422     $self->name->isa($old_metaclass->name)
423         || confess "You may rebless only into a subclass of (". $old_metaclass->name ."), of which (". $self->name .") isn't.";
424
425     # rebless!
426     # we use $_[1] here because of t/306_rebless_overload.t regressions on 5.8.8
427     $meta_instance->rebless_instance_structure($_[1], $self);
428
429     foreach my $attr ( $self->compute_all_applicable_attributes ) {
430         if ( $attr->has_value($instance) ) {
431             if ( defined( my $init_arg = $attr->init_arg ) ) {
432                 $params{$init_arg} = $attr->get_value($instance)
433                     unless exists $params{$init_arg};
434             } 
435             else {
436                 $attr->set_value($instance, $attr->get_value($instance));
437             }
438         }
439     }
440
441     foreach my $attr ($self->compute_all_applicable_attributes) {
442         $attr->initialize_instance_slot($meta_instance, $instance, \%params);
443     }
444     
445     $instance;
446 }
447
448 sub rebless_instance_away {
449     # this intentionally does nothing, it is just a hook
450 }
451
452 # Inheritance
453
454 sub superclasses {
455     my $self     = shift;
456     my $var_spec = { sigil => '@', type => 'ARRAY', name => 'ISA' };
457     if (@_) {
458         my @supers = @_;
459         @{$self->get_package_symbol($var_spec)} = @supers;
460
461         # NOTE:
462         # on 5.8 and below, we need to call
463         # a method to get Perl to detect
464         # a cycle in the class hierarchy
465         my $class = $self->name;
466         $class->isa($class);
467
468         # NOTE:
469         # we need to check the metaclass
470         # compatibility here so that we can
471         # be sure that the superclass is
472         # not potentially creating an issues
473         # we don't know about
474
475         $self->check_metaclass_compatibility();
476         $self->update_meta_instance_dependencies();
477     }
478     @{$self->get_package_symbol($var_spec)};
479 }
480
481 sub subclasses {
482     my $self = shift;
483
484     my $super_class = $self->name;
485
486     if ( Class::MOP::HAVE_ISAREV() ) {
487         return @{ $super_class->mro::get_isarev() };
488     } else {
489         my @derived_classes;
490
491         my $find_derived_classes;
492         $find_derived_classes = sub {
493             my ($outer_class) = @_;
494
495             my $symbol_table_hashref = do { no strict 'refs'; \%{"${outer_class}::"} };
496
497             SYMBOL:
498             for my $symbol ( keys %$symbol_table_hashref ) {
499                 next SYMBOL if $symbol !~ /\A (\w+):: \z/x;
500                 my $inner_class = $1;
501
502                 next SYMBOL if $inner_class eq 'SUPER';    # skip '*::SUPER'
503
504                 my $class =
505                 $outer_class
506                 ? "${outer_class}::$inner_class"
507                 : $inner_class;
508
509                 if ( $class->isa($super_class) and $class ne $super_class ) {
510                     push @derived_classes, $class;
511                 }
512
513                 next SYMBOL if $class eq 'main';           # skip 'main::*'
514
515                 $find_derived_classes->($class);
516             }
517         };
518
519         my $root_class = q{};
520         $find_derived_classes->($root_class);
521
522         undef $find_derived_classes;
523
524         @derived_classes = sort { $a->isa($b) ? 1 : $b->isa($a) ? -1 : 0 } @derived_classes;
525
526         return @derived_classes;
527     }
528 }
529
530
531 sub linearized_isa {
532     return @{ mro::get_linear_isa( (shift)->name ) };
533 }
534
535 sub class_precedence_list {
536     my $self = shift;
537     my $name = $self->name;
538
539     unless (Class::MOP::IS_RUNNING_ON_5_10()) { 
540         # NOTE:
541         # We need to check for circular inheritance here
542         # if we are are not on 5.10, cause 5.8 detects it 
543         # late. This will do nothing if all is well, and 
544         # blow up otherwise. Yes, it's an ugly hack, better
545         # suggestions are welcome.        
546         # - SL
547         ($name || return)->isa('This is a test for circular inheritance') 
548     }
549
550     # if our mro is c3, we can 
551     # just grab the linear_isa
552     if (mro::get_mro($name) eq 'c3') {
553         return @{ mro::get_linear_isa($name) }
554     }
555     else {
556         # NOTE:
557         # we can't grab the linear_isa for dfs
558         # since it has all the duplicates 
559         # already removed.
560         return (
561             $name,
562             map {
563                 $self->initialize($_)->class_precedence_list()
564             } $self->superclasses()
565         );
566     }
567 }
568
569 ## Methods
570
571 sub wrap_method_body {
572     my ( $self, %args ) = @_;
573
574     ('CODE' eq ref $args{body})
575         || confess "Your code block must be a CODE reference";
576
577     $self->method_metaclass->wrap(
578         package_name => $self->name,
579         %args,
580     );
581 }
582
583 sub add_method {
584     my ($self, $method_name, $method) = @_;
585     (defined $method_name && $method_name)
586         || confess "You must define a method name";
587
588     my $body;
589     if (blessed($method)) {
590         $body = $method->body;
591         if ($method->package_name ne $self->name) {
592             $method = $method->clone(
593                 package_name => $self->name,
594                 name         => $method_name            
595             ) if $method->can('clone');
596         }
597     }
598     else {
599         $body = $method;
600         $method = $self->wrap_method_body( body => $body, name => $method_name );
601     }
602
603     $method->attach_to_class($self);
604
605     # This used to call get_method_map, which meant we would build all
606     # the method objects for the class just because we added one
607     # method. This is hackier, but quicker too.
608     $self->{methods}{$method_name} = $method;
609     
610     my $full_method_name = ($self->name . '::' . $method_name);    
611     $self->add_package_symbol(
612         { sigil => '&', type => 'CODE', name => $method_name }, 
613         Class::MOP::subname($full_method_name => $body)
614     );
615 }
616
617 {
618     my $fetch_and_prepare_method = sub {
619         my ($self, $method_name) = @_;
620         my $wrapped_metaclass = $self->wrapped_method_metaclass;
621         # fetch it locally
622         my $method = $self->get_method($method_name);
623         # if we dont have local ...
624         unless ($method) {
625             # try to find the next method
626             $method = $self->find_next_method_by_name($method_name);
627             # die if it does not exist
628             (defined $method)
629                 || confess "The method '$method_name' was not found in the inheritance hierarchy for " . $self->name;
630             # and now make sure to wrap it
631             # even if it is already wrapped
632             # because we need a new sub ref
633             $method = $wrapped_metaclass->wrap($method);
634         }
635         else {
636             # now make sure we wrap it properly
637             $method = $wrapped_metaclass->wrap($method)
638                 unless $method->isa($wrapped_metaclass);
639         }
640         $self->add_method($method_name => $method);
641         return $method;
642     };
643
644     sub add_before_method_modifier {
645         my ($self, $method_name, $method_modifier) = @_;
646         (defined $method_name && $method_name)
647             || confess "You must pass in a method name";
648         my $method = $fetch_and_prepare_method->($self, $method_name);
649         $method->add_before_modifier(
650             Class::MOP::subname(':before' => $method_modifier)
651         );
652     }
653
654     sub add_after_method_modifier {
655         my ($self, $method_name, $method_modifier) = @_;
656         (defined $method_name && $method_name)
657             || confess "You must pass in a method name";
658         my $method = $fetch_and_prepare_method->($self, $method_name);
659         $method->add_after_modifier(
660             Class::MOP::subname(':after' => $method_modifier)
661         );
662     }
663
664     sub add_around_method_modifier {
665         my ($self, $method_name, $method_modifier) = @_;
666         (defined $method_name && $method_name)
667             || confess "You must pass in a method name";
668         my $method = $fetch_and_prepare_method->($self, $method_name);
669         $method->add_around_modifier(
670             Class::MOP::subname(':around' => $method_modifier)
671         );
672     }
673
674     # NOTE:
675     # the methods above used to be named like this:
676     #    ${pkg}::${method}:(before|after|around)
677     # but this proved problematic when using one modifier
678     # to wrap multiple methods (something which is likely
679     # to happen pretty regularly IMO). So instead of naming
680     # it like this, I have chosen to just name them purely
681     # with their modifier names, like so:
682     #    :(before|after|around)
683     # The fact is that in a stack trace, it will be fairly
684     # evident from the context what method they are attached
685     # to, and so don't need the fully qualified name.
686 }
687
688 sub alias_method {
689     my $self = shift;
690
691     $self->add_method(@_);
692 }
693
694 sub has_method {
695     my ($self, $method_name) = @_;
696     (defined $method_name && $method_name)
697         || confess "You must define a method name";
698
699     exists $self->{methods}{$method_name} || exists $self->get_method_map->{$method_name};
700 }
701
702 sub get_method {
703     my ($self, $method_name) = @_;
704     (defined $method_name && $method_name)
705         || confess "You must define a method name";
706
707     return $self->{methods}{$method_name} || $self->get_method_map->{$method_name};
708 }
709
710 sub remove_method {
711     my ($self, $method_name) = @_;
712     (defined $method_name && $method_name)
713         || confess "You must define a method name";
714
715     my $removed_method = delete $self->get_method_map->{$method_name};
716     
717     $self->remove_package_symbol(
718         { sigil => '&', type => 'CODE', name => $method_name }
719     );
720
721     $removed_method->detach_from_class if $removed_method;
722
723     $self->update_package_cache_flag; # still valid, since we just removed the method from the map
724
725     return $removed_method;
726 }
727
728 sub get_method_list {
729     my $self = shift;
730     keys %{$self->get_method_map};
731 }
732
733 sub find_method_by_name {
734     my ($self, $method_name) = @_;
735     (defined $method_name && $method_name)
736         || confess "You must define a method name to find";
737     foreach my $class ($self->linearized_isa) {
738         # fetch the meta-class ...
739         my $meta = $self->initialize($class);
740         return $meta->get_method($method_name)
741             if $meta->has_method($method_name);
742     }
743     return;
744 }
745
746 sub get_all_methods {
747     my $self = shift;
748     my %methods = map { %{ $self->initialize($_)->get_method_map } } reverse $self->linearized_isa;
749     return values %methods;
750 }
751
752 # compatibility
753 sub compute_all_applicable_methods {
754     return map {
755         {
756             name  => $_->name,
757             class => $_->package_name,
758             code  => $_, # sigh, overloading
759         },
760     } shift->get_all_methods(@_);
761 }
762
763 sub get_all_method_names {
764     my $self = shift;
765     my %uniq;
766     grep { $uniq{$_}++ == 0 } map { $_->name } $self->get_all_methods;
767 }
768
769 sub find_all_methods_by_name {
770     my ($self, $method_name) = @_;
771     (defined $method_name && $method_name)
772         || confess "You must define a method name to find";
773     my @methods;
774     foreach my $class ($self->linearized_isa) {
775         # fetch the meta-class ...
776         my $meta = $self->initialize($class);
777         push @methods => {
778             name  => $method_name,
779             class => $class,
780             code  => $meta->get_method($method_name)
781         } if $meta->has_method($method_name);
782     }
783     return @methods;
784 }
785
786 sub find_next_method_by_name {
787     my ($self, $method_name) = @_;
788     (defined $method_name && $method_name)
789         || confess "You must define a method name to find";
790     my @cpl = $self->linearized_isa;
791     shift @cpl; # discard ourselves
792     foreach my $class (@cpl) {
793         # fetch the meta-class ...
794         my $meta = $self->initialize($class);
795         return $meta->get_method($method_name)
796             if $meta->has_method($method_name);
797     }
798     return;
799 }
800
801 ## Attributes
802
803 sub add_attribute {
804     my $self      = shift;
805     # either we have an attribute object already
806     # or we need to create one from the args provided
807     my $attribute = blessed($_[0]) ? $_[0] : $self->attribute_metaclass->new(@_);
808     # make sure it is derived from the correct type though
809     ($attribute->isa('Class::MOP::Attribute'))
810         || confess "Your attribute must be an instance of Class::MOP::Attribute (or a subclass)";
811
812     # first we attach our new attribute
813     # because it might need certain information
814     # about the class which it is attached to
815     $attribute->attach_to_class($self);
816
817     # then we remove attributes of a conflicting
818     # name here so that we can properly detach
819     # the old attr object, and remove any
820     # accessors it would have generated
821     if ( $self->has_attribute($attribute->name) ) {
822         $self->remove_attribute($attribute->name);
823     } else {
824         $self->invalidate_meta_instances();
825     }
826
827     # then onto installing the new accessors
828     $self->get_attribute_map->{$attribute->name} = $attribute;
829
830     # invalidate package flag here
831     my $e = do { local $@; eval { $attribute->install_accessors() }; $@ };
832     if ( $e ) {
833         $self->remove_attribute($attribute->name);
834         die $e;
835     }
836
837     return $attribute;
838 }
839
840 sub update_meta_instance_dependencies {
841     my $self = shift;
842
843     if ( $self->{meta_instance_dependencies} ) {
844         return $self->add_meta_instance_dependencies;
845     }
846 }
847
848 sub add_meta_instance_dependencies {
849     my $self = shift;
850
851     $self->remove_meta_instance_dependencies;
852
853     my @attrs = $self->compute_all_applicable_attributes();
854
855     my %seen;
856     my @classes = grep { not $seen{$_->name}++ } map { $_->associated_class } @attrs;
857
858     foreach my $class ( @classes ) { 
859         $class->add_dependent_meta_instance($self);
860     }
861
862     $self->{meta_instance_dependencies} = \@classes;
863 }
864
865 sub remove_meta_instance_dependencies {
866     my $self = shift;
867
868     if ( my $classes = delete $self->{meta_instance_dependencies} ) {
869         foreach my $class ( @$classes ) {
870             $class->remove_dependent_meta_instance($self);
871         }
872
873         return $classes;
874     }
875
876     return;
877
878 }
879
880 sub add_dependent_meta_instance {
881     my ( $self, $metaclass ) = @_;
882     push @{ $self->{dependent_meta_instances} }, $metaclass;
883 }
884
885 sub remove_dependent_meta_instance {
886     my ( $self, $metaclass ) = @_;
887     my $name = $metaclass->name;
888     @$_ = grep { $_->name ne $name } @$_ for $self->{dependent_meta_instances};
889 }
890
891 sub invalidate_meta_instances {
892     my $self = shift;
893     $_->invalidate_meta_instance() for $self, @{ $self->{dependent_meta_instances} };
894 }
895
896 sub invalidate_meta_instance {
897     my $self = shift;
898     undef $self->{_meta_instance};
899 }
900
901 sub has_attribute {
902     my ($self, $attribute_name) = @_;
903     (defined $attribute_name && $attribute_name)
904         || confess "You must define an attribute name";
905     exists $self->get_attribute_map->{$attribute_name};
906 }
907
908 sub get_attribute {
909     my ($self, $attribute_name) = @_;
910     (defined $attribute_name && $attribute_name)
911         || confess "You must define an attribute name";
912     return $self->get_attribute_map->{$attribute_name}
913     # NOTE:
914     # this will return undef anyway, so no need ...
915     #    if $self->has_attribute($attribute_name);
916     #return;
917 }
918
919 sub remove_attribute {
920     my ($self, $attribute_name) = @_;
921     (defined $attribute_name && $attribute_name)
922         || confess "You must define an attribute name";
923     my $removed_attribute = $self->get_attribute_map->{$attribute_name};
924     return unless defined $removed_attribute;
925     delete $self->get_attribute_map->{$attribute_name};
926     $self->invalidate_meta_instances();
927     $removed_attribute->remove_accessors();
928     $removed_attribute->detach_from_class();
929     return $removed_attribute;
930 }
931
932 sub get_attribute_list {
933     my $self = shift;
934     keys %{$self->get_attribute_map};
935 }
936
937 sub get_all_attributes {
938     shift->compute_all_applicable_attributes(@_);
939 }
940
941 sub compute_all_applicable_attributes {
942     my $self = shift;
943     my %attrs = map { %{ $self->initialize($_)->get_attribute_map } } reverse $self->linearized_isa;
944     return values %attrs;
945 }
946
947 sub find_attribute_by_name {
948     my ($self, $attr_name) = @_;
949     foreach my $class ($self->linearized_isa) {
950         # fetch the meta-class ...
951         my $meta = $self->initialize($class);
952         return $meta->get_attribute($attr_name)
953             if $meta->has_attribute($attr_name);
954     }
955     return;
956 }
957
958 # check if we can reinitialize
959 sub is_pristine {
960     my $self = shift;
961
962     # if any local attr is defined
963     return if $self->get_attribute_list;
964
965     # or any non-declared methods
966     if ( my @methods = values %{ $self->get_method_map } ) {
967         my $metaclass = $self->method_metaclass;
968         foreach my $method ( @methods ) {
969             return if $method->isa("Class::MOP::Method::Generated");
970             # FIXME do we need to enforce this too? return unless $method->isa($metaclass);
971         }
972     }
973
974     return 1;
975 }
976
977 ## Class closing
978
979 sub is_mutable   { 1 }
980 sub is_immutable { 0 }
981
982 sub immutable_transformer { $_[0]->{immutable_transformer} }
983 sub _set_immutable_transformer { $_[0]->{immutable_transformer} = $_[1] }
984
985 sub make_immutable {
986     my $self = shift;
987
988     return if $self->is_immutable;
989
990     my $transformer = $self->immutable_transformer
991         || $self->_make_immutable_transformer(@_);
992
993     $self->_set_immutable_transformer($transformer);
994
995     $transformer->make_metaclass_immutable;
996 }
997
998 {
999     my %Default_Immutable_Options = (
1000         read_only   => [qw/superclasses/],
1001         cannot_call => [
1002             qw(
1003                 add_method
1004                 alias_method
1005                 remove_method
1006                 add_attribute
1007                 remove_attribute
1008                 remove_package_symbol
1009                 )
1010         ],
1011         memoize => {
1012             class_precedence_list => 'ARRAY',
1013             # FIXME perl 5.10 memoizes this on its own, no need?
1014             linearized_isa                    => 'ARRAY',
1015             get_all_methods                   => 'ARRAY',
1016             get_all_method_names              => 'ARRAY',
1017             compute_all_applicable_attributes => 'ARRAY',
1018             get_meta_instance                 => 'SCALAR',
1019             get_method_map                    => 'SCALAR',
1020         },
1021
1022         # NOTE:
1023         # this is ugly, but so are typeglobs,
1024         # so whattayahgonnadoboutit
1025         # - SL
1026         wrapped => {
1027             add_package_symbol => sub {
1028                 my $original = shift;
1029                 confess "Cannot add package symbols to an immutable metaclass"
1030                     unless ( caller(2) )[3] eq
1031                     'Class::MOP::Package::get_package_symbol';
1032
1033                 # This is a workaround for a bug in 5.8.1 which thinks that
1034                 # goto $original->body
1035                 # is trying to go to a label
1036                 my $body = $original->body;
1037                 goto $body;
1038             },
1039         },
1040     );
1041
1042     sub _default_immutable_transformer_options {
1043         return %Default_Immutable_Options;
1044     }
1045 }
1046
1047 sub _make_immutable_transformer {
1048     my $self = shift;
1049
1050     Class::MOP::Immutable->new(
1051         $self,
1052         $self->_default_immutable_transformer_options,
1053         @_
1054     );
1055 }
1056
1057 sub make_mutable {
1058     my $self = shift;
1059
1060     return if $self->is_mutable;
1061
1062     $self->immutable_transformer->make_metaclass_mutable;
1063 }
1064
1065 1;
1066
1067 __END__
1068
1069 =pod
1070
1071 =head1 NAME
1072
1073 Class::MOP::Class - Class Meta Object
1074
1075 =head1 SYNOPSIS
1076
1077   # assuming that class Foo
1078   # has been defined, you can
1079
1080   # use this for introspection ...
1081
1082   # add a method to Foo ...
1083   Foo->meta->add_method( 'bar' => sub {...} )
1084
1085       # get a list of all the classes searched
1086       # the method dispatcher in the correct order
1087       Foo->meta->class_precedence_list()
1088
1089       # remove a method from Foo
1090       Foo->meta->remove_method('bar');
1091
1092   # or use this to actually create classes ...
1093
1094   Class::MOP::Class->create(
1095       'Bar' => (
1096           version      => '0.01',
1097           superclasses => ['Foo'],
1098           attributes   => [
1099               Class::MOP:: : Attribute->new('$bar'),
1100               Class::MOP:: : Attribute->new('$baz'),
1101           ],
1102           methods => {
1103               calculate_bar => sub {...},
1104               construct_baz => sub {...}
1105           }
1106       )
1107   );
1108
1109 =head1 DESCRIPTION
1110
1111 The Class Protocol is the largest and most complex part of the
1112 Class::MOP meta-object protocol. It controls the introspection and
1113 manipulation of Perl 5 classes, and it can create them as well. The
1114 best way to understand what this module can do, is to read the
1115 documentation for each of its methods.
1116
1117 =head1 INHERITANCE
1118
1119 C<Class::MOP::Class> is a subclass of L<Class::MOP::Module>.
1120
1121 =head1 METHODS
1122
1123 =head2 Class construction
1124
1125 These methods all create new C<Class::MOP::Class> objects. These
1126 objects can represent existing classes, or they can be used to create
1127 new classes from scratch.
1128
1129 The metaclass object for a given class is a singleton. If you attempt
1130 to create a metaclass for the same class twice, you will just get the
1131 existing object.
1132
1133 =over 4
1134
1135 =item B<< Class::MOP::Class->create($package_name, %options) >>
1136
1137 This method creates a new C<Class::MOP::Class> object with the given
1138 package name. It accepts a number of options.
1139
1140 =over 8
1141
1142 =item * version
1143
1144 An optional version number for the newly created package.
1145
1146 =item * authority
1147
1148 An optional authority for the newly created package.
1149
1150 =item * superclasses
1151
1152 An optional array reference of superclass names.
1153
1154 =item * methods
1155
1156 An optional hash reference of methods for the class. The keys of the
1157 hash reference are method names, and values are subroutine references.
1158
1159 =item * attributes
1160
1161 An optional array reference of attributes.
1162
1163 An attribute can be passed as an existing L<Class::MOP::Attribute>
1164 object, I<or> or as a hash reference of options which will be passed
1165 to the attribute metaclass's constructor.
1166
1167 =back
1168
1169 =item B<< Class::MOP::Class->create_anon_class(%options) >>
1170
1171 This method works just like C<< Class::MOP::Class->create >> but it
1172 creates an "anonymous" class. In fact, the class does have a name, but
1173 that name is a unique name generated internally by this module.
1174
1175 It accepts the same C<superclasses>, C<methods>, and C<attributes>
1176 parameters that C<create> accepts.
1177
1178 Anonymous classes are destroyed once the metaclass they are attached
1179 to goes out of scope, and will be removed from Perl's internal symbol
1180 table.
1181
1182 All instances of an anonymous class keep a special reference to the
1183 metaclass object, which prevents the metaclass from going out of scope
1184 while any instances exist.
1185
1186 This only works if the instance if based on a hash reference, however.
1187
1188 =item B<< Class::MOP::Class->initialize($package_name, %options) >>
1189
1190 This method will initialize a C<Class::MOP::Class> object for the
1191 named package. Unlike C<create>, this method I<will not> create a new
1192 class.
1193
1194 The purpose of this method is to retrieve a C<Class::MOP::Class>
1195 object for introspecting an existing class.
1196
1197 If an existing C<Class::MOP::Class> object exists for the named
1198 package, it will be returned, and any options provided will be
1199 ignored!
1200
1201 If the object does not yet exist, it will be created.
1202
1203 The valid options that can be passed to this method are
1204 C<attribute_metaclass>, C<method_metaclass>,
1205 C<wrapped_method_metaclass>, and C<instance_metaclass>. These are all
1206 optional, and default to the appropriate class in the C<Class::MOP>
1207 distribution.
1208
1209 =back
1210
1211 =head2 Object instance construction and cloning
1212
1213 These methods are all related to creating and/or cloning object
1214 instances.
1215
1216 =over 4
1217
1218 =item B<< $metaclass->clone_object($instance, %params) >>
1219
1220 This method clones an existing object instance. Any parameters you
1221 provide are will override existing attribute values in the object.
1222
1223 This is a convenience method for cloning an object instance, then
1224 blessing it into the appropriate package.
1225
1226 You could implement a clone method in your class, using this method:
1227
1228   sub clone {
1229       my ($self, %params) = @_;
1230       $self->meta->clone_object($self, %params);
1231   }
1232
1233 =item B<< $metaclass->rebless_instance($instance, %params) >>
1234
1235 This method changes the class of C<$instance> to the metaclass's class.
1236
1237 You can only rebless an instance into a subclass of its current
1238 class. If you pass any additional parameters, these will be treated
1239 like constructor parameters and used to initialize the object's
1240 attributes. Any existing attributes that are already set will be
1241 overwritten.
1242
1243 Before reblessing the instance, this method will call
1244 C<rebless_instance_away> on the instance's current metaclass. This method
1245 will be passed the instance, the new metaclass, and any parameters
1246 specified to C<rebless_instance>. By default, C<rebless_instance_away>
1247 does nothing; it is merely a hook.
1248
1249 =item B<< $metaclass->new_object(%params) >>
1250
1251 This method is used to create a new object of the metaclass's
1252 class. Any parameters you provide are used to initialize the
1253 instance's attributes.
1254
1255 =item B<< $metaclass->instance_metaclass >>
1256
1257 Returns the class name of the instance metaclass, see
1258 L<Class::MOP::Instance> for more information on the instance
1259 metaclass.
1260
1261 =item B<< $metaclass->get_meta_instance >>
1262
1263 Returns an instance of the C<instance_metaclass> to be used in the
1264 construction of a new instance of the class.
1265
1266 =back
1267
1268 =head2 Informational predicates
1269
1270 These are a few predicate methods for asking information about the
1271 class itself.
1272
1273 =over 4
1274
1275 =item B<< $metaclass->is_anon_class >>
1276
1277 This returns true if the class was created by calling C<<
1278 Class::MOP::Class->create_anon_class >>.
1279
1280 =item B<< $metaclass->is_mutable >>
1281
1282 This returns true if the class is still mutable.
1283
1284 =item B<< $metaclass->is_immutable >>
1285
1286 This returns true if the class has been made immutable.
1287
1288 =item B<< $metaclass->is_pristine >>
1289
1290 A class is I<not> pristine if it has non-inherited attributes or if it
1291 has any generated methods.
1292
1293 =back
1294
1295 =head2 Inheritance Relationships
1296
1297 =over 4
1298
1299 =item B<< $metaclass->superclasses(@superclasses) >>
1300
1301 This is a read-write accessor which represents the superclass
1302 relationships of the metaclass's class.
1303
1304 This is basically sugar around getting and setting C<@ISA>.
1305
1306 =item B<< $metaclass->class_precedence_list >>
1307
1308 This returns a list of all of the class's ancestor classes. The
1309 classes are returned in method dispatch order.
1310
1311 =item B<< $metaclass->linearized_isa >>
1312
1313 This returns a list based on C<class_precedence_list> but with all
1314 duplicates removed.
1315
1316 =item B<< $metaclass->subclasses >>
1317
1318 This returns a list of subclasses for this class.
1319
1320 =back
1321
1322 =head2 Method introspection and creation
1323
1324 These methods allow you to introspect a class's methods, as well as
1325 add, remove, or change methods.
1326
1327 Determining what is truly a method in a Perl 5 class requires some
1328 heuristics (aka guessing).
1329
1330 Methods defined outside the package with a fully qualified name (C<sub
1331 Package::name { ... }>) will be included. Similarly, methods named
1332 with a fully qualified name using L<Sub::Name> are also included.
1333
1334 However, we attempt to ignore imported functions.
1335
1336 Ultimately, we are using heuristics to determine what truly is a
1337 method in a class, and these heuristics may get the wrong answer in
1338 some edge cases. However, for most "normal" cases the heuristics work
1339 correctly.
1340
1341 =over 4
1342
1343 =item B<< $metaclass->get_method($method_name) >>
1344
1345 This will return a L<Class::MOP::Method> for the specified
1346 C<$method_name>. If the class does not have the specified method, it
1347 returns C<undef>
1348
1349 =item B<< $metaclass->has_method($method_name) >>
1350
1351 Returns a boolean indicating whether or not the class defines the
1352 named method. It does not include methods inherited from parent
1353 classes.
1354
1355 =item B<< $metaclass->get_method_map >>
1356
1357 Returns a hash reference representing the methods defined in this
1358 class. The keys are method names and the values are
1359 L<Class::MOP::Method> objects.
1360
1361 =item B<< $metaclass->get_method_list >>
1362
1363 This will return a list of method I<names> for all methods defined in
1364 this class.
1365
1366 =item B<< $metaclass->get_all_methods >>
1367
1368 This will traverse the inheritance hierarchy and return a list of all
1369 the L<Class::MOP::Method> objects for this class and its parents.
1370
1371 =item B<< $metaclass->find_method_by_name($method_name) >>
1372
1373 This will return a L<Class::MOP::Method> for the specified
1374 C<$method_name>. If the class does not have the specified method, it
1375 returns C<undef>
1376
1377 Unlike C<get_method>, this method I<will> look for the named method in
1378 superclasses.
1379
1380 =item B<< $metaclass->get_all_method_names >>
1381
1382 This will return a list of method I<names> for all of this class's
1383 methods, including inherited methods.
1384
1385 =item B<< $metaclass->find_all_methods_by_name($method_name) >>
1386
1387 This method looks for the named method in the class and all of its
1388 parents. It returns every matching method it finds in the inheritance
1389 tree, so it returns a list of methods.
1390
1391 Each method is returned as a hash reference with three keys. The keys
1392 are C<name>, C<class>, and C<code>. The C<code> key has a
1393 L<Class::MOP::Method> object as its value.
1394
1395 The list of methods is distinct.
1396
1397 =item B<< $metaclass->find_next_method_by_name($method_name) >>
1398
1399 This method returns the first method in any superclass matching the
1400 given name. It is effectively the method that C<SUPER::$method_name>
1401 would dispatch to.
1402
1403 =item B<< $metaclass->add_method($method_name, $method) >>
1404
1405 This method takes a method name and a subroutine reference, and adds
1406 the method to the class.
1407
1408 The subroutine reference can be a L<Class::MOP::Method>, and you are
1409 strongly encouraged to pass a meta method object instead of a code
1410 reference. If you do so, that object gets stored as part of the
1411 class's method map directly. If not, the meta information will have to
1412 be recreated later, and may be incorrect.
1413
1414 If you provide a method object, this method will clone that object if
1415 the object's package name does not match the class name. This lets us
1416 track the original source of any methods added from other classes
1417 (notably Moose roles).
1418
1419 =item B<< $metaclass->remove_method($method_name) >>
1420
1421 Remove the named method from the class. This method returns the
1422 L<Class::MOP::Method> object for the method.
1423
1424 =item B<< $metaclass->method_metaclass >>
1425
1426 Returns the class name of the method metaclass, see
1427 L<Class::MOP::Method> for more information on the method metaclass.
1428
1429 =item B<< $metaclass->wrapped_method_metaclass >>
1430
1431 Returns the class name of the wrapped method metaclass, see
1432 L<Class::MOP::Method::Wrapped> for more information on the wrapped
1433 method metaclass.
1434
1435 =back
1436
1437 =head2 Attribute introspection and creation
1438
1439 Because Perl 5 does not have a core concept of attributes in classes,
1440 we can only return information about attributes which have been added
1441 via this class's methods. We cannot discover information about
1442 attributes which are defined in terms of "regular" Perl 5 methods.
1443
1444 =over 4
1445
1446 =item B<< $metaclass->get_attribute($attribute_name) >>
1447
1448 This will return a L<Class::MOP::Attribute> for the specified
1449 C<$attribute_name>. If the class does not have the specified
1450 attribute, it returns C<undef>
1451
1452 =item B<< $metaclass->has_attribute($attribute_name) >>
1453
1454 Returns a boolean indicating whether or not the class defines the
1455 named attribute. It does not include attributes inherited from parent
1456 classes.
1457
1458 =item B<< $metaclass->get_attribute_map >>
1459
1460 Returns a hash reference representing the attributes defined in this
1461 class. The keys are attribute names and the values are
1462 L<Class::MOP::Attribute> objects.
1463
1464 =item B<< $metaclass->get_attribute_list >>
1465
1466 This will return a list of attributes I<names> for all attributes
1467 defined in this class.
1468
1469 =item B<< $metaclass->get_all_attributes >>
1470
1471 This will traverse the inheritance hierarchy and return a list of all
1472 the L<Class::MOP::Attribute> objects for this class and its parents.
1473
1474 This method can also be called as C<compute_all_applicable_attributes>.
1475
1476 =item B<< $metaclass->find_attribute_by_name($attribute_name) >>
1477
1478 This will return a L<Class::MOP::Attribute> for the specified
1479 C<$attribute_name>. If the class does not have the specified
1480 attribute, it returns C<undef>
1481
1482 Unlike C<get_attribute>, this attribute I<will> look for the named
1483 attribute in superclasses.
1484
1485 =item B<< $metaclass->add_attribute(...) >>
1486
1487 This method accepts either an existing L<Class::MOP::Attribute>
1488 object, or parameters suitable for passing to that class's C<new>
1489 method.
1490
1491 The attribute provided will be added to the class.
1492
1493 Any accessor methods defined by the attribute will be added to the
1494 class when the attribute is added.
1495
1496 If an attribute of the same name already exists, the old attribute
1497 will be removed first.
1498
1499 =item B<< $metaclass->remove_attribute($attribute_name) >>
1500
1501 This will remove the named attribute from the class, and
1502 L<Class::MOP::Attribute> object.
1503
1504 Removing an attribute also removes any accessor methods defined by the
1505 attribute.
1506
1507 However, note that removing an attribute will only affect I<future>
1508 object instances created for this class, not existing instances.
1509
1510 =item B<< $metaclass->attribute_metaclass >>
1511
1512 Returns the class name of the attribute metaclass for this class. By
1513 default, this is L<Class::MOP::Attribute>.  for more information on
1514
1515 =back
1516
1517 =head2 Class Immutability
1518
1519 Making a class immutable "freezes" the class definition. You can no
1520 longer call methods which alter the class, such as adding or removing
1521 methods or attributes.
1522
1523 Making a class immutable lets us optimize the class by inlining some
1524 methods, and also allows us to optimize some methods on the metaclass
1525 object itself.
1526
1527 The immutabilization system in L<Moose> takes much greater advantage
1528 of the inlining features than Class::MOP itself does.
1529
1530 =over 4
1531
1532 =item B<< $metaclass->make_immutable(%options) >>
1533
1534 This method will create an immutable transformer and uses it to make
1535 the class and its metaclass object immutable.
1536
1537 Details of how immutabilization works are in L<Class::MOP::Immutable>
1538 documentation.
1539
1540 =item B<< $metaclass->make_mutable >>
1541
1542 Calling this method reverse the immutabilization transformation.
1543
1544 =item B<< $metaclass->immutable_transformer >>
1545
1546 If the class has been made immutable previously, this returns the
1547 L<Class::MOP::Immutable> object that was created to do the
1548 transformation.
1549
1550 If the class was never made immutable, this method will die.
1551
1552 =back
1553
1554 =head2 Method Modifiers
1555
1556 Method modifiers are hooks which allow a method to be wrapped with
1557 I<before>, I<after> and I<around> method modifiers. Every time a
1558 method is called, it's modifiers are also called.
1559
1560 A class can modify its own methods, as well as methods defined in
1561 parent classes.
1562
1563 =head3 How method modifiers work?
1564
1565 Method modifiers work by wrapping the original method and then
1566 replacing it in the class's symbol table. The wrappers will handle
1567 calling all the modifiers in the appropriate order and preserving the
1568 calling context for the original method.
1569
1570 The return values of C<before> and C<after> modifiers are
1571 ignored. This is because their purpose is B<not> to filter the input
1572 and output of the primary method (this is done with an I<around>
1573 modifier).
1574
1575 This may seem like an odd restriction to some, but doing this allows
1576 for simple code to be added at the beginning or end of a method call
1577 without altering the function of the wrapped method or placing any
1578 extra responsibility on the code of the modifier.
1579
1580 Of course if you have more complex needs, you can use the C<around>
1581 modifier which allows you to change both the parameters passed to the
1582 wrapped method, as well as its return value.
1583
1584 Before and around modifiers are called in last-defined-first-called
1585 order, while after modifiers are called in first-defined-first-called
1586 order. So the call tree might looks something like this:
1587
1588   before 2
1589    before 1
1590     around 2
1591      around 1
1592       primary
1593      around 1
1594     around 2
1595    after 1
1596   after 2
1597
1598 =head3 What is the performance impact?
1599
1600 Of course there is a performance cost associated with method
1601 modifiers, but we have made every effort to make that cost directly
1602 proportional to the number of modifier features you utilize.
1603
1604 The wrapping method does it's best to B<only> do as much work as it
1605 absolutely needs to. In order to do this we have moved some of the
1606 performance costs to set-up time, where they are easier to amortize.
1607
1608 All this said, our benchmarks have indicated the following:
1609
1610   simple wrapper with no modifiers             100% slower
1611   simple wrapper with simple before modifier   400% slower
1612   simple wrapper with simple after modifier    450% slower
1613   simple wrapper with simple around modifier   500-550% slower
1614   simple wrapper with all 3 modifiers          1100% slower
1615
1616 These numbers may seem daunting, but you must remember, every feature
1617 comes with some cost. To put things in perspective, just doing a
1618 simple C<AUTOLOAD> which does nothing but extract the name of the
1619 method called and return it costs about 400% over a normal method
1620 call.
1621
1622 =over 4
1623
1624 =item B<< $metaclass->add_before_method_modifier($method_name, $code) >>
1625
1626 This wraps the specified method with the supplied subroutine
1627 reference. The modifier will be called as a method itself, and will
1628 receive the same arguments as are passed to the method.
1629
1630 When the modifier exits, the wrapped method will be called.
1631
1632 The return value of the modifier will be ignored.
1633
1634 =item B<< $metaclass->add_after_method_modifier($method_name, $code) >>
1635
1636 This wraps the specified method with the supplied subroutine
1637 reference. The modifier will be called as a method itself, and will
1638 receive the same arguments as are passed to the method.
1639
1640 When the wrapped methods exits, the modifier will be called.
1641
1642 The return value of the modifier will be ignored.
1643
1644 =item B<< $metaclass->add_around_method_modifier($method_name, $code) >>
1645
1646 This wraps the specified method with the supplied subroutine
1647 reference.
1648
1649 The first argument passed to the modifier will be a subroutine
1650 reference to the wrapped method. The second argument is the object,
1651 and after that come any arguments passed when the method is called.
1652
1653 The around modifier can choose to call the original method, as well as
1654 what arguments to pass if it does so.
1655
1656 The return value of the modifier is what will be seen by the caller.
1657
1658 =back
1659
1660 =head2 Introspection
1661
1662 =over 4
1663
1664 =item B<< Class::MOP::Class->meta >>
1665
1666 This will return a L<Class::MOP::Class> instance for this class.
1667
1668 It should also be noted that L<Class::MOP> will actually bootstrap
1669 this module by installing a number of attribute meta-objects into its
1670 metaclass.
1671
1672 =back
1673
1674 =head1 AUTHORS
1675
1676 Stevan Little E<lt>stevan@iinteractive.comE<gt>
1677
1678 =head1 COPYRIGHT AND LICENSE
1679
1680 Copyright 2006-2009 by Infinity Interactive, Inc.
1681
1682 L<http://www.iinteractive.com>
1683
1684 This library is free software; you can redistribute it and/or modify
1685 it under the same terms as Perl itself.
1686
1687 =cut