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