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