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