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