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