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