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