e85159e508fbbee7a2812c468bf666c9e02f3387
[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.78_02';
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 =item B<< $metaclass->new_object(%params) >>
1243
1244 This method is used to create a new object of the metaclass's
1245 class. Any parameters you provide are used to initialize the
1246 instance's attributes.
1247
1248 =item B<< $metaclass->instance_metaclass >>
1249
1250 Returns the class name of the instance metaclass, see
1251 L<Class::MOP::Instance> for more information on the instance
1252 metaclass.
1253
1254 =item B<< $metaclass->get_meta_instance >>
1255
1256 Returns an instance of the C<instance_metaclass> to be used in the
1257 construction of a new instance of the class.
1258
1259 =back
1260
1261 =head2 Informational predicates
1262
1263 These are a few predicate methods for asking information about the
1264 class itself.
1265
1266 =over 4
1267
1268 =item B<< $metaclass->is_anon_class >>
1269
1270 This returns true if the class was created by calling C<<
1271 Class::MOP::Class->create_anon_class >>.
1272
1273 =item B<< $metaclass->is_mutable >>
1274
1275 This returns true if the class is still mutable.
1276
1277 =item B<< $metaclass->is_immutable >>
1278
1279 This returns true if the class has been made immutable.
1280
1281 =item B<< $metaclass->is_pristine >>
1282
1283 A class is I<not> pristine if it has non-inherited attributes or if it
1284 has any generated methods.
1285
1286 =back
1287
1288 =head2 Inheritance Relationships
1289
1290 =over 4
1291
1292 =item B<< $metaclass->superclasses(@superclasses) >>
1293
1294 This is a read-write accessor which represents the superclass
1295 relationships of the metaclass's class.
1296
1297 This is basically sugar around getting and setting C<@ISA>.
1298
1299 =item B<< $metaclass->class_precedence_list >>
1300
1301 This returns a list of all of the class's ancestor classes. The
1302 classes are returned in method dispatch order.
1303
1304 =item B<< $metaclass->linearized_isa >>
1305
1306 This returns a list based on C<class_precedence_list> but with all
1307 duplicates removed.
1308
1309 =item B<< $metaclass->subclasses >>
1310
1311 This returns a list of subclasses for this class.
1312
1313 =back
1314
1315 =head2 Method introspection and creation
1316
1317 These methods allow you to introspect a class's methods, as well as
1318 add, remove, or change methods.
1319
1320 Determining what is truly a method in a Perl 5 class requires some
1321 heuristics (aka guessing).
1322
1323 Methods defined outside the package with a fully qualified name (C<sub
1324 Package::name { ... }>) will be included. Similarly, methods named
1325 with a fully qualified name using L<Sub::Name> are also included.
1326
1327 However, we attempt to ignore imported functions.
1328
1329 Ultimately, we are using heuristics to determine what truly is a
1330 method in a class, and these heuristics may get the wrong answer in
1331 some edge cases. However, for most "normal" cases the heuristics work
1332 correctly.
1333
1334 =over 4
1335
1336 =item B<< $metaclass->get_method($method_name) >>
1337
1338 This will return a L<Class::MOP::Method> for the specified
1339 C<$method_name>. If the class does not have the specified method, it
1340 returns C<undef>
1341
1342 =item B<< $metaclass->has_method($method_name) >>
1343
1344 Returns a boolean indicating whether or not the class defines the
1345 named method. It does not include methods inherited from parent
1346 classes.
1347
1348 =item B<< $metaclass->get_method_map >>
1349
1350 Returns a hash reference representing the methods defined in this
1351 class. The keys are method names and the values are
1352 L<Class::MOP::Method> objects.
1353
1354 =item B<< $metaclass->get_method_list >>
1355
1356 This will return a list of method I<names> for all methods defined in
1357 this class.
1358
1359 =item B<< $metaclass->get_all_methods >>
1360
1361 This will traverse the inheritance hierarchy and return a list of all
1362 the L<Class::MOP::Method> objects for this class and its parents.
1363
1364 =item B<< $metaclass->find_method_by_name($method_name) >>
1365
1366 This will return a L<Class::MOP::Method> for the specified
1367 C<$method_name>. If the class does not have the specified method, it
1368 returns C<undef>
1369
1370 Unlike C<get_method>, this method I<will> look for the named method in
1371 superclasses.
1372
1373 =item B<< $metaclass->get_all_method_names >>
1374
1375 This will return a list of method I<names> for all of this class's
1376 methods, including inherited methods.
1377
1378 =item B<< $metaclass->find_all_methods_by_name($method_name) >>
1379
1380 This method looks for the named method in the class and all of its
1381 parents. It returns every matching method it finds in the inheritance
1382 tree, so it returns a list of methods.
1383
1384 Each method is returned as a hash reference with three keys. The keys
1385 are C<name>, C<class>, and C<code>. The C<code> key has a
1386 L<Class::MOP::Method> object as its value.
1387
1388 The list of methods is distinct.
1389
1390 =item B<< $metaclass->find_next_method_by_name($method_name) >>
1391
1392 This method returns the first method in any superclass matching the
1393 given name. It is effectively the method that C<SUPER::$method_name>
1394 would dispatch to.
1395
1396 =item B<< $metaclass->add_method($method_name, $method) >>
1397
1398 This method takes a method name and a subroutine reference, and adds
1399 the method to the class.
1400
1401 The subroutine reference can be a L<Class::MOP::Method>, and you are
1402 strongly encouraged to pass a meta method object instead of a code
1403 reference. If you do so, that object gets stored as part of the
1404 class's method map directly. If not, the meta information will have to
1405 be recreated later, and may be incorrect.
1406
1407 If you provide a method object, this method will clone that object if
1408 the object's package name does not match the class name. This lets us
1409 track the original source of any methods added from other classes
1410 (notably Moose roles).
1411
1412 =item B<< $metaclass->remove_method($method_name) >>
1413
1414 Remove the named method from the class. This method returns the
1415 L<Class::MOP::Method> object for the method.
1416
1417 =item B<< $metaclass->method_metaclass >>
1418
1419 Returns the class name of the method metaclass, see
1420 L<Class::MOP::Method> for more information on the method metaclass.
1421
1422 =item B<< $metaclass->wrapped_method_metaclass >>
1423
1424 Returns the class name of the wrapped method metaclass, see
1425 L<Class::MOP::Method::Wrapped> for more information on the wrapped
1426 method metaclass.
1427
1428 =back
1429
1430 =head2 Attribute introspection and creation
1431
1432 Because Perl 5 does not have a core concept of attributes in classes,
1433 we can only return information about attributes which have been added
1434 via this class's methods. We cannot discover information about
1435 attributes which are defined in terms of "regular" Perl 5 methods.
1436
1437 =over 4
1438
1439 =item B<< $metaclass->get_attribute($attribute_name) >>
1440
1441 This will return a L<Class::MOP::Attribute> for the specified
1442 C<$attribute_name>. If the class does not have the specified
1443 attribute, it returns C<undef>
1444
1445 =item B<< $metaclass->has_attribute($attribute_name) >>
1446
1447 Returns a boolean indicating whether or not the class defines the
1448 named attribute. It does not include attributes inherited from parent
1449 classes.
1450
1451 =item B<< $metaclass->get_attribute_map >>
1452
1453 Returns a hash reference representing the attributes defined in this
1454 class. The keys are attribute names and the values are
1455 L<Class::MOP::Attribute> objects.
1456
1457 =item B<< $metaclass->get_attribute_list >>
1458
1459 This will return a list of attributes I<names> for all attributes
1460 defined in this class.
1461
1462 =item B<< $metaclass->get_all_attributes >>
1463
1464 This will traverse the inheritance hierarchy and return a list of all
1465 the L<Class::MOP::Attribute> objects for this class and its parents.
1466
1467 This method can also be called as C<compute_all_applicable_attributes>.
1468
1469 =item B<< $metaclass->find_attribute_by_name($attribute_name) >>
1470
1471 This will return a L<Class::MOP::Attribute> for the specified
1472 C<$attribute_name>. If the class does not have the specified
1473 attribute, it returns C<undef>
1474
1475 Unlike C<get_attribute>, this attribute I<will> look for the named
1476 attribute in superclasses.
1477
1478 =item B<< $metaclass->add_attribute(...) >>
1479
1480 This method accepts either an existing L<Class::MOP::Attribute>
1481 object, or parameters suitable for passing to that class's C<new>
1482 method.
1483
1484 The attribute provided will be added to the class.
1485
1486 Any accessor methods defined by the attribute will be added to the
1487 class when the attribute is added.
1488
1489 If an attribute of the same name already exists, the old attribute
1490 will be removed first.
1491
1492 =item B<< $metaclass->remove_attribute($attribute_name) >>
1493
1494 This will remove the named attribute from the class, and
1495 L<Class::MOP::Attribute> object.
1496
1497 Removing an attribute also removes any accessor methods defined by the
1498 attribute.
1499
1500 However, note that removing an attribute will only affect I<future>
1501 object instances created for this class, not existing instances.
1502
1503 =item B<< $metaclass->attribute_metaclass >>
1504
1505 Returns the class name of the attribute metaclass for this class. By
1506 default, this is L<Class::MOP::Attribute>.  for more information on
1507
1508 =back
1509
1510 =head2 Class Immutability
1511
1512 Making a class immutable "freezes" the class definition. You can no
1513 longer call methods which alter the class, such as adding or removing
1514 methods or attributes.
1515
1516 Making a class immutable lets us optimize the class by inlining some
1517 methods, and also allows us to optimize some methods on the metaclass
1518 object itself.
1519
1520 The immutabilization system in L<Moose> takes much greater advantage
1521 of the inlining features than Class::MOP itself does.
1522
1523 =over 4
1524
1525 =item B<< $metaclass->make_immutable(%options) >>
1526
1527 This method will create an immutable transformer and uses it to make
1528 the class and its metaclass object immutable.
1529
1530 Details of how immutabilization works are in L<Class::MOP::Immutable>
1531 documentation.
1532
1533 =item B<< $metaclass->make_mutable >>
1534
1535 Calling this method reverse the immutabilization transformation.
1536
1537 =item B<< $metaclass->immutable_transformer >>
1538
1539 If the class has been made immutable previously, this returns the
1540 L<Class::MOP::Immutable> object that was created to do the
1541 transformation.
1542
1543 If the class was never made immutable, this method will die.
1544
1545 =back
1546
1547 =head2 Method Modifiers
1548
1549 Method modifiers are hooks which allow a method to be wrapped with
1550 I<before>, I<after> and I<around> method modifiers. Every time a
1551 method is called, it's modifiers are also called.
1552
1553 A class can modify its own methods, as well as methods defined in
1554 parent classes.
1555
1556 =head3 How method modifiers work?
1557
1558 Method modifiers work by wrapping the original method and then
1559 replacing it in the class's symbol table. The wrappers will handle
1560 calling all the modifiers in the appropriate order and preserving the
1561 calling context for the original method.
1562
1563 The return values of C<before> and C<after> modifiers are
1564 ignored. This is because their purpose is B<not> to filter the input
1565 and output of the primary method (this is done with an I<around>
1566 modifier).
1567
1568 This may seem like an odd restriction to some, but doing this allows
1569 for simple code to be added at the beginning or end of a method call
1570 without altering the function of the wrapped method or placing any
1571 extra responsibility on the code of the modifier.
1572
1573 Of course if you have more complex needs, you can use the C<around>
1574 modifier which allows you to change both the parameters passed to the
1575 wrapped method, as well as its return value.
1576
1577 Before and around modifiers are called in last-defined-first-called
1578 order, while after modifiers are called in first-defined-first-called
1579 order. So the call tree might looks something like this:
1580
1581   before 2
1582    before 1
1583     around 2
1584      around 1
1585       primary
1586      around 1
1587     around 2
1588    after 1
1589   after 2
1590
1591 =head3 What is the performance impact?
1592
1593 Of course there is a performance cost associated with method
1594 modifiers, but we have made every effort to make that cost directly
1595 proportional to the number of modifier features you utilize.
1596
1597 The wrapping method does it's best to B<only> do as much work as it
1598 absolutely needs to. In order to do this we have moved some of the
1599 performance costs to set-up time, where they are easier to amortize.
1600
1601 All this said, our benchmarks have indicated the following:
1602
1603   simple wrapper with no modifiers             100% slower
1604   simple wrapper with simple before modifier   400% slower
1605   simple wrapper with simple after modifier    450% slower
1606   simple wrapper with simple around modifier   500-550% slower
1607   simple wrapper with all 3 modifiers          1100% slower
1608
1609 These numbers may seem daunting, but you must remember, every feature
1610 comes with some cost. To put things in perspective, just doing a
1611 simple C<AUTOLOAD> which does nothing but extract the name of the
1612 method called and return it costs about 400% over a normal method
1613 call.
1614
1615 =over 4
1616
1617 =item B<< $metaclass->add_before_method_modifier($method_name, $code) >>
1618
1619 This wraps the specified method with the supplied subroutine
1620 reference. The modifier will be called as a method itself, and will
1621 receive the same arguments as are passed to the method.
1622
1623 When the modifier exits, the wrapped method will be called.
1624
1625 The return value of the modifier will be ignored.
1626
1627 =item B<< $metaclass->add_after_method_modifier($method_name, $code) >>
1628
1629 This wraps the specified method with the supplied subroutine
1630 reference. The modifier will be called as a method itself, and will
1631 receive the same arguments as are passed to the method.
1632
1633 When the wrapped methods exits, the modifier will be called.
1634
1635 The return value of the modifier will be ignored.
1636
1637 =item B<< $metaclass->add_around_method_modifier($method_name, $code) >>
1638
1639 This wraps the specified method with the supplied subroutine
1640 reference.
1641
1642 The first argument passed to the modifier will be a subroutine
1643 reference to the wrapped method. The second argument is the object,
1644 and after that come any arguments passed when the method is called.
1645
1646 The around modifier can choose to call the original method, as well as
1647 what arguments to pass if it does so.
1648
1649 The return value of the modifier is what will be seen by the caller.
1650
1651 =back
1652
1653 =head2 Introspection
1654
1655 =over 4
1656
1657 =item B<< Class::MOP::Class->meta >>
1658
1659 This will return a L<Class::MOP::Class> instance for this class.
1660
1661 It should also be noted that L<Class::MOP> will actually bootstrap
1662 this module by installing a number of attribute meta-objects into its
1663 metaclass.
1664
1665 =back
1666
1667 =head1 AUTHORS
1668
1669 Stevan Little E<lt>stevan@iinteractive.comE<gt>
1670
1671 =head1 COPYRIGHT AND LICENSE
1672
1673 Copyright 2006-2009 by Infinity Interactive, Inc.
1674
1675 L<http://www.iinteractive.com>
1676
1677 This library is free software; you can redistribute it and/or modify
1678 it under the same terms as Perl itself.
1679
1680 =cut