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