deprecate compute_all_applicable_attributes
[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->get_all_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->get_all_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->get_all_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->get_all_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->get_all_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->get_all_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     my $self = shift;
971     my %attrs = map { %{ $self->initialize($_)->get_attribute_map } } reverse $self->linearized_isa;
972     return values %attrs;
973 }
974
975 sub compute_all_applicable_attributes {
976     warn 'The construct_class_instance method has been deprecated.'
977         . " Use get_all_attributes instead.\n";
978
979     shift->get_all_attributes;
980 }
981
982 sub find_attribute_by_name {
983     my ($self, $attr_name) = @_;
984     foreach my $class ($self->linearized_isa) {
985         # fetch the meta-class ...
986         my $meta = $self->initialize($class);
987         return $meta->get_attribute($attr_name)
988             if $meta->has_attribute($attr_name);
989     }
990     return;
991 }
992
993 # check if we can reinitialize
994 sub is_pristine {
995     my $self = shift;
996
997     # if any local attr is defined
998     return if $self->get_attribute_list;
999
1000     # or any non-declared methods
1001     if ( my @methods = values %{ $self->get_method_map } ) {
1002         my $metaclass = $self->method_metaclass;
1003         foreach my $method ( @methods ) {
1004             return if $method->isa("Class::MOP::Method::Generated");
1005             # FIXME do we need to enforce this too? return unless $method->isa($metaclass);
1006         }
1007     }
1008
1009     return 1;
1010 }
1011
1012 ## Class closing
1013
1014 sub is_mutable   { 1 }
1015 sub is_immutable { 0 }
1016
1017 sub immutable_transformer { $_[0]->{immutable_transformer} }
1018 sub _set_immutable_transformer { $_[0]->{immutable_transformer} = $_[1] }
1019
1020 sub make_immutable {
1021     my $self = shift;
1022
1023     return if $self->is_immutable;
1024
1025     my $transformer = $self->immutable_transformer
1026         || $self->_make_immutable_transformer(@_);
1027
1028     $self->_set_immutable_transformer($transformer);
1029
1030     $transformer->make_metaclass_immutable;
1031 }
1032
1033 {
1034     my %Default_Immutable_Options = (
1035         read_only   => [qw/superclasses/],
1036         cannot_call => [
1037             qw(
1038                 add_method
1039                 alias_method
1040                 remove_method
1041                 add_attribute
1042                 remove_attribute
1043                 remove_package_symbol
1044                 )
1045         ],
1046         memoize => {
1047             class_precedence_list => 'ARRAY',
1048             # FIXME perl 5.10 memoizes this on its own, no need?
1049             linearized_isa                    => 'ARRAY',
1050             get_all_methods                   => 'ARRAY',
1051             get_all_method_names              => 'ARRAY',
1052             compute_all_applicable_attributes => 'ARRAY',
1053             get_meta_instance                 => 'SCALAR',
1054             get_method_map                    => 'SCALAR',
1055         },
1056
1057         # NOTE:
1058         # this is ugly, but so are typeglobs,
1059         # so whattayahgonnadoboutit
1060         # - SL
1061         wrapped => {
1062             add_package_symbol => sub {
1063                 my $original = shift;
1064                 confess "Cannot add package symbols to an immutable metaclass"
1065                     unless ( caller(2) )[3] eq
1066                     'Class::MOP::Package::get_package_symbol';
1067
1068                 # This is a workaround for a bug in 5.8.1 which thinks that
1069                 # goto $original->body
1070                 # is trying to go to a label
1071                 my $body = $original->body;
1072                 goto $body;
1073             },
1074         },
1075     );
1076
1077     sub _default_immutable_transformer_options {
1078         return %Default_Immutable_Options;
1079     }
1080 }
1081
1082 sub _make_immutable_transformer {
1083     my $self = shift;
1084
1085     Class::MOP::Immutable->new(
1086         $self,
1087         $self->_default_immutable_transformer_options,
1088         @_
1089     );
1090 }
1091
1092 sub make_mutable {
1093     my $self = shift;
1094
1095     return if $self->is_mutable;
1096
1097     $self->immutable_transformer->make_metaclass_mutable;
1098 }
1099
1100 1;
1101
1102 __END__
1103
1104 =pod
1105
1106 =head1 NAME
1107
1108 Class::MOP::Class - Class Meta Object
1109
1110 =head1 SYNOPSIS
1111
1112   # assuming that class Foo
1113   # has been defined, you can
1114
1115   # use this for introspection ...
1116
1117   # add a method to Foo ...
1118   Foo->meta->add_method( 'bar' => sub {...} )
1119
1120       # get a list of all the classes searched
1121       # the method dispatcher in the correct order
1122       Foo->meta->class_precedence_list()
1123
1124       # remove a method from Foo
1125       Foo->meta->remove_method('bar');
1126
1127   # or use this to actually create classes ...
1128
1129   Class::MOP::Class->create(
1130       'Bar' => (
1131           version      => '0.01',
1132           superclasses => ['Foo'],
1133           attributes   => [
1134               Class::MOP:: : Attribute->new('$bar'),
1135               Class::MOP:: : Attribute->new('$baz'),
1136           ],
1137           methods => {
1138               calculate_bar => sub {...},
1139               construct_baz => sub {...}
1140           }
1141       )
1142   );
1143
1144 =head1 DESCRIPTION
1145
1146 The Class Protocol is the largest and most complex part of the
1147 Class::MOP meta-object protocol. It controls the introspection and
1148 manipulation of Perl 5 classes, and it can create them as well. The
1149 best way to understand what this module can do, is to read the
1150 documentation for each of its methods.
1151
1152 =head1 INHERITANCE
1153
1154 C<Class::MOP::Class> is a subclass of L<Class::MOP::Module>.
1155
1156 =head1 METHODS
1157
1158 =head2 Class construction
1159
1160 These methods all create new C<Class::MOP::Class> objects. These
1161 objects can represent existing classes, or they can be used to create
1162 new classes from scratch.
1163
1164 The metaclass object for a given class is a singleton. If you attempt
1165 to create a metaclass for the same class twice, you will just get the
1166 existing object.
1167
1168 =over 4
1169
1170 =item B<< Class::MOP::Class->create($package_name, %options) >>
1171
1172 This method creates a new C<Class::MOP::Class> object with the given
1173 package name. It accepts a number of options.
1174
1175 =over 8
1176
1177 =item * version
1178
1179 An optional version number for the newly created package.
1180
1181 =item * authority
1182
1183 An optional authority for the newly created package.
1184
1185 =item * superclasses
1186
1187 An optional array reference of superclass names.
1188
1189 =item * methods
1190
1191 An optional hash reference of methods for the class. The keys of the
1192 hash reference are method names, and values are subroutine references.
1193
1194 =item * attributes
1195
1196 An optional array reference of attributes.
1197
1198 An attribute can be passed as an existing L<Class::MOP::Attribute>
1199 object, I<or> or as a hash reference of options which will be passed
1200 to the attribute metaclass's constructor.
1201
1202 =back
1203
1204 =item B<< Class::MOP::Class->create_anon_class(%options) >>
1205
1206 This method works just like C<< Class::MOP::Class->create >> but it
1207 creates an "anonymous" class. In fact, the class does have a name, but
1208 that name is a unique name generated internally by this module.
1209
1210 It accepts the same C<superclasses>, C<methods>, and C<attributes>
1211 parameters that C<create> accepts.
1212
1213 Anonymous classes are destroyed once the metaclass they are attached
1214 to goes out of scope, and will be removed from Perl's internal symbol
1215 table.
1216
1217 All instances of an anonymous class keep a special reference to the
1218 metaclass object, which prevents the metaclass from going out of scope
1219 while any instances exist.
1220
1221 This only works if the instance if based on a hash reference, however.
1222
1223 =item B<< Class::MOP::Class->initialize($package_name, %options) >>
1224
1225 This method will initialize a C<Class::MOP::Class> object for the
1226 named package. Unlike C<create>, this method I<will not> create a new
1227 class.
1228
1229 The purpose of this method is to retrieve a C<Class::MOP::Class>
1230 object for introspecting an existing class.
1231
1232 If an existing C<Class::MOP::Class> object exists for the named
1233 package, it will be returned, and any options provided will be
1234 ignored!
1235
1236 If the object does not yet exist, it will be created.
1237
1238 The valid options that can be passed to this method are
1239 C<attribute_metaclass>, C<method_metaclass>,
1240 C<wrapped_method_metaclass>, and C<instance_metaclass>. These are all
1241 optional, and default to the appropriate class in the C<Class::MOP>
1242 distribution.
1243
1244 =back
1245
1246 =head2 Object instance construction and cloning
1247
1248 These methods are all related to creating and/or cloning object
1249 instances.
1250
1251 =over 4
1252
1253 =item B<< $metaclass->clone_object($instance, %params) >>
1254
1255 This method clones an existing object instance. Any parameters you
1256 provide are will override existing attribute values in the object.
1257
1258 This is a convenience method for cloning an object instance, then
1259 blessing it into the appropriate package.
1260
1261 You could implement a clone method in your class, using this method:
1262
1263   sub clone {
1264       my ($self, %params) = @_;
1265       $self->meta->clone_object($self, %params);
1266   }
1267
1268 =item B<< $metaclass->rebless_instance($instance, %params) >>
1269
1270 This method changes the class of C<$instance> to the metaclass's class.
1271
1272 You can only rebless an instance into a subclass of its current
1273 class. If you pass any additional parameters, these will be treated
1274 like constructor parameters and used to initialize the object's
1275 attributes. Any existing attributes that are already set will be
1276 overwritten.
1277
1278 Before reblessing the instance, this method will call
1279 C<rebless_instance_away> on the instance's current metaclass. This method
1280 will be passed the instance, the new metaclass, and any parameters
1281 specified to C<rebless_instance>. By default, C<rebless_instance_away>
1282 does nothing; it is merely a hook.
1283
1284 =item B<< $metaclass->new_object(%params) >>
1285
1286 This method is used to create a new object of the metaclass's
1287 class. Any parameters you provide are used to initialize the
1288 instance's attributes.
1289
1290 =item B<< $metaclass->instance_metaclass >>
1291
1292 Returns the class name of the instance metaclass, see
1293 L<Class::MOP::Instance> for more information on the instance
1294 metaclass.
1295
1296 =item B<< $metaclass->get_meta_instance >>
1297
1298 Returns an instance of the C<instance_metaclass> to be used in the
1299 construction of a new instance of the class.
1300
1301 =back
1302
1303 =head2 Informational predicates
1304
1305 These are a few predicate methods for asking information about the
1306 class itself.
1307
1308 =over 4
1309
1310 =item B<< $metaclass->is_anon_class >>
1311
1312 This returns true if the class was created by calling C<<
1313 Class::MOP::Class->create_anon_class >>.
1314
1315 =item B<< $metaclass->is_mutable >>
1316
1317 This returns true if the class is still mutable.
1318
1319 =item B<< $metaclass->is_immutable >>
1320
1321 This returns true if the class has been made immutable.
1322
1323 =item B<< $metaclass->is_pristine >>
1324
1325 A class is I<not> pristine if it has non-inherited attributes or if it
1326 has any generated methods.
1327
1328 =back
1329
1330 =head2 Inheritance Relationships
1331
1332 =over 4
1333
1334 =item B<< $metaclass->superclasses(@superclasses) >>
1335
1336 This is a read-write accessor which represents the superclass
1337 relationships of the metaclass's class.
1338
1339 This is basically sugar around getting and setting C<@ISA>.
1340
1341 =item B<< $metaclass->class_precedence_list >>
1342
1343 This returns a list of all of the class's ancestor classes. The
1344 classes are returned in method dispatch order.
1345
1346 =item B<< $metaclass->linearized_isa >>
1347
1348 This returns a list based on C<class_precedence_list> but with all
1349 duplicates removed.
1350
1351 =item B<< $metaclass->subclasses >>
1352
1353 This returns a list of subclasses for this class.
1354
1355 =back
1356
1357 =head2 Method introspection and creation
1358
1359 These methods allow you to introspect a class's methods, as well as
1360 add, remove, or change methods.
1361
1362 Determining what is truly a method in a Perl 5 class requires some
1363 heuristics (aka guessing).
1364
1365 Methods defined outside the package with a fully qualified name (C<sub
1366 Package::name { ... }>) will be included. Similarly, methods named
1367 with a fully qualified name using L<Sub::Name> are also included.
1368
1369 However, we attempt to ignore imported functions.
1370
1371 Ultimately, we are using heuristics to determine what truly is a
1372 method in a class, and these heuristics may get the wrong answer in
1373 some edge cases. However, for most "normal" cases the heuristics work
1374 correctly.
1375
1376 =over 4
1377
1378 =item B<< $metaclass->get_method($method_name) >>
1379
1380 This will return a L<Class::MOP::Method> for the specified
1381 C<$method_name>. If the class does not have the specified method, it
1382 returns C<undef>
1383
1384 =item B<< $metaclass->has_method($method_name) >>
1385
1386 Returns a boolean indicating whether or not the class defines the
1387 named method. It does not include methods inherited from parent
1388 classes.
1389
1390 =item B<< $metaclass->get_method_map >>
1391
1392 Returns a hash reference representing the methods defined in this
1393 class. The keys are method names and the values are
1394 L<Class::MOP::Method> objects.
1395
1396 =item B<< $metaclass->get_method_list >>
1397
1398 This will return a list of method I<names> for all methods defined in
1399 this class.
1400
1401 =item B<< $metaclass->get_all_methods >>
1402
1403 This will traverse the inheritance hierarchy and return a list of all
1404 the L<Class::MOP::Method> objects for this class and its parents.
1405
1406 =item B<< $metaclass->find_method_by_name($method_name) >>
1407
1408 This will return a L<Class::MOP::Method> for the specified
1409 C<$method_name>. If the class does not have the specified method, it
1410 returns C<undef>
1411
1412 Unlike C<get_method>, this method I<will> look for the named method in
1413 superclasses.
1414
1415 =item B<< $metaclass->get_all_method_names >>
1416
1417 This will return a list of method I<names> for all of this class's
1418 methods, including inherited methods.
1419
1420 =item B<< $metaclass->find_all_methods_by_name($method_name) >>
1421
1422 This method looks for the named method in the class and all of its
1423 parents. It returns every matching method it finds in the inheritance
1424 tree, so it returns a list of methods.
1425
1426 Each method is returned as a hash reference with three keys. The keys
1427 are C<name>, C<class>, and C<code>. The C<code> key has a
1428 L<Class::MOP::Method> object as its value.
1429
1430 The list of methods is distinct.
1431
1432 =item B<< $metaclass->find_next_method_by_name($method_name) >>
1433
1434 This method returns the first method in any superclass matching the
1435 given name. It is effectively the method that C<SUPER::$method_name>
1436 would dispatch to.
1437
1438 =item B<< $metaclass->add_method($method_name, $method) >>
1439
1440 This method takes a method name and a subroutine reference, and adds
1441 the method to the class.
1442
1443 The subroutine reference can be a L<Class::MOP::Method>, and you are
1444 strongly encouraged to pass a meta method object instead of a code
1445 reference. If you do so, that object gets stored as part of the
1446 class's method map directly. If not, the meta information will have to
1447 be recreated later, and may be incorrect.
1448
1449 If you provide a method object, this method will clone that object if
1450 the object's package name does not match the class name. This lets us
1451 track the original source of any methods added from other classes
1452 (notably Moose roles).
1453
1454 =item B<< $metaclass->remove_method($method_name) >>
1455
1456 Remove the named method from the class. This method returns the
1457 L<Class::MOP::Method> object for the method.
1458
1459 =item B<< $metaclass->method_metaclass >>
1460
1461 Returns the class name of the method metaclass, see
1462 L<Class::MOP::Method> for more information on the method metaclass.
1463
1464 =item B<< $metaclass->wrapped_method_metaclass >>
1465
1466 Returns the class name of the wrapped method metaclass, see
1467 L<Class::MOP::Method::Wrapped> for more information on the wrapped
1468 method metaclass.
1469
1470 =back
1471
1472 =head2 Attribute introspection and creation
1473
1474 Because Perl 5 does not have a core concept of attributes in classes,
1475 we can only return information about attributes which have been added
1476 via this class's methods. We cannot discover information about
1477 attributes which are defined in terms of "regular" Perl 5 methods.
1478
1479 =over 4
1480
1481 =item B<< $metaclass->get_attribute($attribute_name) >>
1482
1483 This will return a L<Class::MOP::Attribute> for the specified
1484 C<$attribute_name>. If the class does not have the specified
1485 attribute, it returns C<undef>
1486
1487 =item B<< $metaclass->has_attribute($attribute_name) >>
1488
1489 Returns a boolean indicating whether or not the class defines the
1490 named attribute. It does not include attributes inherited from parent
1491 classes.
1492
1493 =item B<< $metaclass->get_attribute_map >>
1494
1495 Returns a hash reference representing the attributes defined in this
1496 class. The keys are attribute names and the values are
1497 L<Class::MOP::Attribute> objects.
1498
1499 =item B<< $metaclass->get_attribute_list >>
1500
1501 This will return a list of attributes I<names> for all attributes
1502 defined in this class.
1503
1504 =item B<< $metaclass->get_all_attributes >>
1505
1506 This will traverse the inheritance hierarchy and return a list of all
1507 the L<Class::MOP::Attribute> objects for this class and its parents.
1508
1509 =item B<< $metaclass->find_attribute_by_name($attribute_name) >>
1510
1511 This will return a L<Class::MOP::Attribute> for the specified
1512 C<$attribute_name>. If the class does not have the specified
1513 attribute, it returns C<undef>
1514
1515 Unlike C<get_attribute>, this attribute I<will> look for the named
1516 attribute in superclasses.
1517
1518 =item B<< $metaclass->add_attribute(...) >>
1519
1520 This method accepts either an existing L<Class::MOP::Attribute>
1521 object, or parameters suitable for passing to that class's C<new>
1522 method.
1523
1524 The attribute provided will be added to the class.
1525
1526 Any accessor methods defined by the attribute will be added to the
1527 class when the attribute is added.
1528
1529 If an attribute of the same name already exists, the old attribute
1530 will be removed first.
1531
1532 =item B<< $metaclass->remove_attribute($attribute_name) >>
1533
1534 This will remove the named attribute from the class, and
1535 L<Class::MOP::Attribute> object.
1536
1537 Removing an attribute also removes any accessor methods defined by the
1538 attribute.
1539
1540 However, note that removing an attribute will only affect I<future>
1541 object instances created for this class, not existing instances.
1542
1543 =item B<< $metaclass->attribute_metaclass >>
1544
1545 Returns the class name of the attribute metaclass for this class. By
1546 default, this is L<Class::MOP::Attribute>.  for more information on
1547
1548 =back
1549
1550 =head2 Class Immutability
1551
1552 Making a class immutable "freezes" the class definition. You can no
1553 longer call methods which alter the class, such as adding or removing
1554 methods or attributes.
1555
1556 Making a class immutable lets us optimize the class by inlining some
1557 methods, and also allows us to optimize some methods on the metaclass
1558 object itself.
1559
1560 The immutabilization system in L<Moose> takes much greater advantage
1561 of the inlining features than Class::MOP itself does.
1562
1563 =over 4
1564
1565 =item B<< $metaclass->make_immutable(%options) >>
1566
1567 This method will create an immutable transformer and uses it to make
1568 the class and its metaclass object immutable.
1569
1570 Details of how immutabilization works are in L<Class::MOP::Immutable>
1571 documentation.
1572
1573 =item B<< $metaclass->make_mutable >>
1574
1575 Calling this method reverse the immutabilization transformation.
1576
1577 =item B<< $metaclass->immutable_transformer >>
1578
1579 If the class has been made immutable previously, this returns the
1580 L<Class::MOP::Immutable> object that was created to do the
1581 transformation.
1582
1583 If the class was never made immutable, this method will die.
1584
1585 =back
1586
1587 =head2 Method Modifiers
1588
1589 Method modifiers are hooks which allow a method to be wrapped with
1590 I<before>, I<after> and I<around> method modifiers. Every time a
1591 method is called, it's modifiers are also called.
1592
1593 A class can modify its own methods, as well as methods defined in
1594 parent classes.
1595
1596 =head3 How method modifiers work?
1597
1598 Method modifiers work by wrapping the original method and then
1599 replacing it in the class's symbol table. The wrappers will handle
1600 calling all the modifiers in the appropriate order and preserving the
1601 calling context for the original method.
1602
1603 The return values of C<before> and C<after> modifiers are
1604 ignored. This is because their purpose is B<not> to filter the input
1605 and output of the primary method (this is done with an I<around>
1606 modifier).
1607
1608 This may seem like an odd restriction to some, but doing this allows
1609 for simple code to be added at the beginning or end of a method call
1610 without altering the function of the wrapped method or placing any
1611 extra responsibility on the code of the modifier.
1612
1613 Of course if you have more complex needs, you can use the C<around>
1614 modifier which allows you to change both the parameters passed to the
1615 wrapped method, as well as its return value.
1616
1617 Before and around modifiers are called in last-defined-first-called
1618 order, while after modifiers are called in first-defined-first-called
1619 order. So the call tree might looks something like this:
1620
1621   before 2
1622    before 1
1623     around 2
1624      around 1
1625       primary
1626      around 1
1627     around 2
1628    after 1
1629   after 2
1630
1631 =head3 What is the performance impact?
1632
1633 Of course there is a performance cost associated with method
1634 modifiers, but we have made every effort to make that cost directly
1635 proportional to the number of modifier features you utilize.
1636
1637 The wrapping method does it's best to B<only> do as much work as it
1638 absolutely needs to. In order to do this we have moved some of the
1639 performance costs to set-up time, where they are easier to amortize.
1640
1641 All this said, our benchmarks have indicated the following:
1642
1643   simple wrapper with no modifiers             100% slower
1644   simple wrapper with simple before modifier   400% slower
1645   simple wrapper with simple after modifier    450% slower
1646   simple wrapper with simple around modifier   500-550% slower
1647   simple wrapper with all 3 modifiers          1100% slower
1648
1649 These numbers may seem daunting, but you must remember, every feature
1650 comes with some cost. To put things in perspective, just doing a
1651 simple C<AUTOLOAD> which does nothing but extract the name of the
1652 method called and return it costs about 400% over a normal method
1653 call.
1654
1655 =over 4
1656
1657 =item B<< $metaclass->add_before_method_modifier($method_name, $code) >>
1658
1659 This wraps the specified method with the supplied subroutine
1660 reference. The modifier will be called as a method itself, and will
1661 receive the same arguments as are passed to the method.
1662
1663 When the modifier exits, the wrapped method will be called.
1664
1665 The return value of the modifier will be ignored.
1666
1667 =item B<< $metaclass->add_after_method_modifier($method_name, $code) >>
1668
1669 This wraps the specified method with the supplied subroutine
1670 reference. The modifier will be called as a method itself, and will
1671 receive the same arguments as are passed to the method.
1672
1673 When the wrapped methods exits, the modifier will be called.
1674
1675 The return value of the modifier will be ignored.
1676
1677 =item B<< $metaclass->add_around_method_modifier($method_name, $code) >>
1678
1679 This wraps the specified method with the supplied subroutine
1680 reference.
1681
1682 The first argument passed to the modifier will be a subroutine
1683 reference to the wrapped method. The second argument is the object,
1684 and after that come any arguments passed when the method is called.
1685
1686 The around modifier can choose to call the original method, as well as
1687 what arguments to pass if it does so.
1688
1689 The return value of the modifier is what will be seen by the caller.
1690
1691 =back
1692
1693 =head2 Introspection
1694
1695 =over 4
1696
1697 =item B<< Class::MOP::Class->meta >>
1698
1699 This will return a L<Class::MOP::Class> instance for this class.
1700
1701 It should also be noted that L<Class::MOP> will actually bootstrap
1702 this module by installing a number of attribute meta-objects into its
1703 metaclass.
1704
1705 =back
1706
1707 =head1 AUTHORS
1708
1709 Stevan Little E<lt>stevan@iinteractive.comE<gt>
1710
1711 =head1 COPYRIGHT AND LICENSE
1712
1713 Copyright 2006-2009 by Infinity Interactive, Inc.
1714
1715 L<http://www.iinteractive.com>
1716
1717 This library is free software; you can redistribute it and/or modify
1718 it under the same terms as Perl itself.
1719
1720 =cut