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