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