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