Remove immutable transformer
[gitmo/Class-MOP.git] / lib / Class / MOP.pm
1
2 package Class::MOP;
3
4 use strict;
5 use warnings;
6
7 use 5.008;
8
9 use MRO::Compat;
10
11 use Carp          'confess';
12 use Devel::GlobalDestruction qw( in_global_destruction );
13 use Scalar::Util  'weaken', 'reftype', 'blessed';
14 use Sub::Name qw( subname );
15
16 use Class::MOP::Class;
17 use Class::MOP::Attribute;
18 use Class::MOP::Method;
19
20 BEGIN {
21     *IS_RUNNING_ON_5_10 = ($] < 5.009_005)
22         ? sub () { 0 }
23         : sub () { 1 };
24
25     sub HAVE_ISAREV () {
26         Carp::cluck("Class::MOP::HAVE_ISAREV is deprecated and will be removed in a future release. It has always returned 1 anyway.");
27         return 1;
28     }
29
30     # this is either part of core or set up appropriately by MRO::Compat
31     *check_package_cache_flag = \&mro::get_pkg_gen;
32 }
33
34 our $VERSION   = '0.81';
35 our $XS_VERSION = $VERSION;
36 $VERSION = eval $VERSION;
37 our $AUTHORITY = 'cpan:STEVAN';
38
39 require XSLoader;
40 XSLoader::load( __PACKAGE__, $XS_VERSION );
41
42
43 {
44     # Metaclasses are singletons, so we cache them here.
45     # there is no need to worry about destruction though
46     # because they should die only when the program dies.
47     # After all, do package definitions even get reaped?
48     my %METAS;
49
50     # means of accessing all the metaclasses that have
51     # been initialized thus far (for mugwumps obj browser)
52     sub get_all_metaclasses         {        %METAS         }
53     sub get_all_metaclass_instances { values %METAS         }
54     sub get_all_metaclass_names     { keys   %METAS         }
55     sub get_metaclass_by_name       { $METAS{$_[0]}         }
56     sub store_metaclass_by_name     { $METAS{$_[0]} = $_[1] }
57     sub weaken_metaclass            { weaken($METAS{$_[0]}) }
58     sub does_metaclass_exist        { exists $METAS{$_[0]} && defined $METAS{$_[0]} }
59     sub remove_metaclass_by_name    { $METAS{$_[0]} = undef }
60
61     # This handles instances as well as class names
62     sub class_of {
63         return unless defined $_[0];
64         my $class = blessed($_[0]) || $_[0];
65         return $METAS{$class};
66     }
67
68     # NOTE:
69     # We only cache metaclasses, meaning instances of
70     # Class::MOP::Class. We do not cache instance of
71     # Class::MOP::Package or Class::MOP::Module. Mostly
72     # because I don't yet see a good reason to do so.
73 }
74
75 sub _class_to_pmfile {
76     my $class = shift;
77
78     my $file = $class . '.pm';
79     $file =~ s{::}{/}g;
80
81     return $file;
82 }
83
84 sub load_first_existing_class {
85     my @classes = @_
86         or return;
87
88     foreach my $class (@classes) {
89         unless ( _is_valid_class_name($class) ) {
90             my $display = defined($class) ? $class : 'undef';
91             confess "Invalid class name ($display)";
92         }
93     }
94
95     my $found;
96     my %exceptions;
97     for my $class (@classes) {
98         my $pmfile = _class_to_pmfile($class);
99         my $e = _try_load_one_class($class);
100
101         if ($e) {
102             $exceptions{$class} = $e;
103             last if $e !~ /^Can't locate \Q$pmfile\E in \@INC/;
104         }
105         else {
106             $found = $class;
107             last;
108         }
109     }
110
111     return $found if $found;
112
113     confess join(
114         "\n",
115         map {
116             sprintf(
117                 "Could not load class (%s) because : %s", $_,
118                 $exceptions{$_}
119                 )
120             }
121         grep {
122             exists $exceptions{$_}
123             } @classes
124     );
125 }
126
127 sub _try_load_one_class {
128     my $class = shift;
129
130     return if is_class_loaded($class);
131
132     my $file = _class_to_pmfile($class);
133
134     return do {
135         local $@;
136         eval { require($file) };
137         $@;
138     };
139 }
140
141 sub load_class {
142     my $class = load_first_existing_class($_[0]);
143     return get_metaclass_by_name($class) || $class;
144 }
145
146 sub _is_valid_class_name {
147     my $class = shift;
148
149     return 0 if ref($class);
150     return 0 unless defined($class);
151     return 0 unless length($class);
152
153     return 1 if $class =~ /^\w+(?:::\w+)*$/;
154
155     return 0;
156 }
157
158 ## ----------------------------------------------------------------------------
159 ## Setting up our environment ...
160 ## ----------------------------------------------------------------------------
161 ## Class::MOP needs to have a few things in the global perl environment so
162 ## that it can operate effectively. Those things are done here.
163 ## ----------------------------------------------------------------------------
164
165 # ... nothing yet actually ;)
166
167 ## ----------------------------------------------------------------------------
168 ## Bootstrapping
169 ## ----------------------------------------------------------------------------
170 ## The code below here is to bootstrap our MOP with itself. This is also
171 ## sometimes called "tying the knot". By doing this, we make it much easier
172 ## to extend the MOP through subclassing and such since now you can use the
173 ## MOP itself to extend itself.
174 ##
175 ## Yes, I know, thats weird and insane, but it's a good thing, trust me :)
176 ## ----------------------------------------------------------------------------
177
178 # We need to add in the meta-attributes here so that
179 # any subclass of Class::MOP::* will be able to
180 # inherit them using _construct_instance
181
182 ## --------------------------------------------------------
183 ## Class::MOP::Package
184
185 Class::MOP::Package->meta->add_attribute(
186     Class::MOP::Attribute->new('package' => (
187         reader   => {
188             # NOTE: we need to do this in order
189             # for the instance meta-object to
190             # not fall into meta-circular death
191             #
192             # we just alias the original method
193             # rather than re-produce it here
194             'name' => \&Class::MOP::Package::name
195         },
196     ))
197 );
198
199 Class::MOP::Package->meta->add_attribute(
200     Class::MOP::Attribute->new('namespace' => (
201         reader => {
202             # NOTE:
203             # we just alias the original method
204             # rather than re-produce it here
205             'namespace' => \&Class::MOP::Package::namespace
206         },
207         init_arg => undef,
208         default  => sub { \undef }
209     ))
210 );
211
212 ## --------------------------------------------------------
213 ## Class::MOP::Module
214
215 # NOTE:
216 # yeah this is kind of stretching things a bit,
217 # but truthfully the version should be an attribute
218 # of the Module, the weirdness comes from having to
219 # stick to Perl 5 convention and store it in the
220 # $VERSION package variable. Basically if you just
221 # squint at it, it will look how you want it to look.
222 # Either as a package variable, or as a attribute of
223 # the metaclass, isn't abstraction great :)
224
225 Class::MOP::Module->meta->add_attribute(
226     Class::MOP::Attribute->new('version' => (
227         reader => {
228             # NOTE:
229             # we just alias the original method
230             # rather than re-produce it here
231             'version' => \&Class::MOP::Module::version
232         },
233         init_arg => undef,
234         default  => sub { \undef }
235     ))
236 );
237
238 # NOTE:
239 # By following the same conventions as version here,
240 # we are opening up the possibility that people can
241 # use the $AUTHORITY in non-Class::MOP modules as
242 # well.
243
244 Class::MOP::Module->meta->add_attribute(
245     Class::MOP::Attribute->new('authority' => (
246         reader => {
247             # NOTE:
248             # we just alias the original method
249             # rather than re-produce it here
250             'authority' => \&Class::MOP::Module::authority
251         },
252         init_arg => undef,
253         default  => sub { \undef }
254     ))
255 );
256
257 ## --------------------------------------------------------
258 ## Class::MOP::Class
259
260 Class::MOP::Class->meta->add_attribute(
261     Class::MOP::Attribute->new('attributes' => (
262         reader   => {
263             # NOTE: we need to do this in order
264             # for the instance meta-object to
265             # not fall into meta-circular death
266             #
267             # we just alias the original method
268             # rather than re-produce it here
269             'get_attribute_map' => \&Class::MOP::Class::get_attribute_map
270         },
271         default  => sub { {} }
272     ))
273 );
274
275 Class::MOP::Class->meta->add_attribute(
276     Class::MOP::Attribute->new('methods' => (
277         reader   => {
278             # NOTE:
279             # we just alias the original method
280             # rather than re-produce it here
281             'get_method_map' => \&Class::MOP::Class::get_method_map
282         },
283         default => sub { {} }
284     ))
285 );
286
287 Class::MOP::Class->meta->add_attribute(
288     Class::MOP::Attribute->new('superclasses' => (
289         accessor => {
290             # NOTE:
291             # we just alias the original method
292             # rather than re-produce it here
293             'superclasses' => \&Class::MOP::Class::superclasses
294         },
295         init_arg => undef,
296         default  => sub { \undef }
297     ))
298 );
299
300 Class::MOP::Class->meta->add_attribute(
301     Class::MOP::Attribute->new('attribute_metaclass' => (
302         reader   => {
303             # NOTE:
304             # we just alias the original method
305             # rather than re-produce it here
306             'attribute_metaclass' => \&Class::MOP::Class::attribute_metaclass
307         },
308         default  => 'Class::MOP::Attribute',
309     ))
310 );
311
312 Class::MOP::Class->meta->add_attribute(
313     Class::MOP::Attribute->new('method_metaclass' => (
314         reader   => {
315             # NOTE:
316             # we just alias the original method
317             # rather than re-produce it here
318             'method_metaclass' => \&Class::MOP::Class::method_metaclass
319         },
320         default  => 'Class::MOP::Method',
321     ))
322 );
323
324 Class::MOP::Class->meta->add_attribute(
325     Class::MOP::Attribute->new('wrapped_method_metaclass' => (
326         reader   => {
327             # NOTE:
328             # we just alias the original method
329             # rather than re-produce it here
330             'wrapped_method_metaclass' => \&Class::MOP::Class::wrapped_method_metaclass
331         },
332         default  => 'Class::MOP::Method::Wrapped',
333     ))
334 );
335
336 Class::MOP::Class->meta->add_attribute(
337     Class::MOP::Attribute->new('instance_metaclass' => (
338         reader   => {
339             # NOTE: we need to do this in order
340             # for the instance meta-object to
341             # not fall into meta-circular death
342             #
343             # we just alias the original method
344             # rather than re-produce it here
345             'instance_metaclass' => \&Class::MOP::Class::instance_metaclass
346         },
347         default  => 'Class::MOP::Instance',
348     ))
349 );
350
351 Class::MOP::Class->meta->add_attribute(
352     Class::MOP::Attribute->new('immutable_trait' => (
353         reader   => {
354             'immutable_trait' => \&Class::MOP::Class::immutable_trait
355         },
356         default => "Class::MOP::Class::Immutable::Trait",
357     ))
358 );
359
360 Class::MOP::Class->meta->add_attribute(
361     Class::MOP::Attribute->new('constructor_name' => (
362         reader   => {
363             'constructor_name' => \&Class::MOP::Class::constructor_name,
364         },
365         default => "new",
366     ))
367 );
368
369 Class::MOP::Class->meta->add_attribute(
370     Class::MOP::Attribute->new('constructor_class' => (
371         reader   => {
372             'constructor_class' => \&Class::MOP::Class::constructor_class,
373         },
374         default => "Class::MOP::Method::Constructor",
375     ))
376 );
377
378
379 Class::MOP::Class->meta->add_attribute(
380     Class::MOP::Attribute->new('destructor_class' => (
381         reader   => {
382             'destructor_class' => \&Class::MOP::Class::destructor_class,
383         },
384     ))
385 );
386
387 # NOTE:
388 # we don't actually need to tie the knot with
389 # Class::MOP::Class here, it is actually handled
390 # within Class::MOP::Class itself in the
391 # _construct_class_instance method.
392
393 ## --------------------------------------------------------
394 ## Class::MOP::Attribute
395
396 Class::MOP::Attribute->meta->add_attribute(
397     Class::MOP::Attribute->new('name' => (
398         reader   => {
399             # NOTE: we need to do this in order
400             # for the instance meta-object to
401             # not fall into meta-circular death
402             #
403             # we just alias the original method
404             # rather than re-produce it here
405             'name' => \&Class::MOP::Attribute::name
406         }
407     ))
408 );
409
410 Class::MOP::Attribute->meta->add_attribute(
411     Class::MOP::Attribute->new('associated_class' => (
412         reader   => {
413             # NOTE: we need to do this in order
414             # for the instance meta-object to
415             # not fall into meta-circular death
416             #
417             # we just alias the original method
418             # rather than re-produce it here
419             'associated_class' => \&Class::MOP::Attribute::associated_class
420         }
421     ))
422 );
423
424 Class::MOP::Attribute->meta->add_attribute(
425     Class::MOP::Attribute->new('accessor' => (
426         reader    => { 'accessor'     => \&Class::MOP::Attribute::accessor     },
427         predicate => { 'has_accessor' => \&Class::MOP::Attribute::has_accessor },
428     ))
429 );
430
431 Class::MOP::Attribute->meta->add_attribute(
432     Class::MOP::Attribute->new('reader' => (
433         reader    => { 'reader'     => \&Class::MOP::Attribute::reader     },
434         predicate => { 'has_reader' => \&Class::MOP::Attribute::has_reader },
435     ))
436 );
437
438 Class::MOP::Attribute->meta->add_attribute(
439     Class::MOP::Attribute->new('initializer' => (
440         reader    => { 'initializer'     => \&Class::MOP::Attribute::initializer     },
441         predicate => { 'has_initializer' => \&Class::MOP::Attribute::has_initializer },
442     ))
443 );
444
445 Class::MOP::Attribute->meta->add_attribute(
446     Class::MOP::Attribute->new('definition_context' => (
447         reader    => { 'definition_context'     => \&Class::MOP::Attribute::definition_context     },
448     ))
449 );
450
451 Class::MOP::Attribute->meta->add_attribute(
452     Class::MOP::Attribute->new('writer' => (
453         reader    => { 'writer'     => \&Class::MOP::Attribute::writer     },
454         predicate => { 'has_writer' => \&Class::MOP::Attribute::has_writer },
455     ))
456 );
457
458 Class::MOP::Attribute->meta->add_attribute(
459     Class::MOP::Attribute->new('predicate' => (
460         reader    => { 'predicate'     => \&Class::MOP::Attribute::predicate     },
461         predicate => { 'has_predicate' => \&Class::MOP::Attribute::has_predicate },
462     ))
463 );
464
465 Class::MOP::Attribute->meta->add_attribute(
466     Class::MOP::Attribute->new('clearer' => (
467         reader    => { 'clearer'     => \&Class::MOP::Attribute::clearer     },
468         predicate => { 'has_clearer' => \&Class::MOP::Attribute::has_clearer },
469     ))
470 );
471
472 Class::MOP::Attribute->meta->add_attribute(
473     Class::MOP::Attribute->new('builder' => (
474         reader    => { 'builder'     => \&Class::MOP::Attribute::builder     },
475         predicate => { 'has_builder' => \&Class::MOP::Attribute::has_builder },
476     ))
477 );
478
479 Class::MOP::Attribute->meta->add_attribute(
480     Class::MOP::Attribute->new('init_arg' => (
481         reader    => { 'init_arg'     => \&Class::MOP::Attribute::init_arg     },
482         predicate => { 'has_init_arg' => \&Class::MOP::Attribute::has_init_arg },
483     ))
484 );
485
486 Class::MOP::Attribute->meta->add_attribute(
487     Class::MOP::Attribute->new('default' => (
488         # default has a custom 'reader' method ...
489         predicate => { 'has_default' => \&Class::MOP::Attribute::has_default },
490     ))
491 );
492
493 Class::MOP::Attribute->meta->add_attribute(
494     Class::MOP::Attribute->new('associated_methods' => (
495         reader   => { 'associated_methods' => \&Class::MOP::Attribute::associated_methods },
496         default  => sub { [] }
497     ))
498 );
499
500 Class::MOP::Attribute->meta->add_method('clone' => sub {
501     my $self  = shift;
502     $self->meta->clone_object($self, @_);
503 });
504
505 ## --------------------------------------------------------
506 ## Class::MOP::Method
507 Class::MOP::Method->meta->add_attribute(
508     Class::MOP::Attribute->new('body' => (
509         reader   => { 'body' => \&Class::MOP::Method::body },
510     ))
511 );
512
513 Class::MOP::Method->meta->add_attribute(
514     Class::MOP::Attribute->new('associated_metaclass' => (
515         reader   => { 'associated_metaclass' => \&Class::MOP::Method::associated_metaclass },
516     ))
517 );
518
519 Class::MOP::Method->meta->add_attribute(
520     Class::MOP::Attribute->new('package_name' => (
521         reader   => { 'package_name' => \&Class::MOP::Method::package_name },
522     ))
523 );
524
525 Class::MOP::Method->meta->add_attribute(
526     Class::MOP::Attribute->new('name' => (
527         reader   => { 'name' => \&Class::MOP::Method::name },
528     ))
529 );
530
531 Class::MOP::Method->meta->add_attribute(
532     Class::MOP::Attribute->new('original_method' => (
533         reader   => { 'original_method'      => \&Class::MOP::Method::original_method },
534         writer   => { '_set_original_method' => \&Class::MOP::Method::_set_original_method },
535     ))
536 );
537
538 Class::MOP::Method->meta->add_method('clone' => sub {
539     my $self  = shift;
540     my $clone = $self->meta->clone_object($self, @_);
541     $clone->_set_original_method($self);
542     return $clone;
543 });
544
545 ## --------------------------------------------------------
546 ## Class::MOP::Method::Wrapped
547
548 # NOTE:
549 # the way this item is initialized, this
550 # really does not follow the standard
551 # practices of attributes, but we put
552 # it here for completeness
553 Class::MOP::Method::Wrapped->meta->add_attribute(
554     Class::MOP::Attribute->new('modifier_table')
555 );
556
557 ## --------------------------------------------------------
558 ## Class::MOP::Method::Generated
559
560 Class::MOP::Method::Generated->meta->add_attribute(
561     Class::MOP::Attribute->new('is_inline' => (
562         reader   => { 'is_inline' => \&Class::MOP::Method::Generated::is_inline },
563         default  => 0, 
564     ))
565 );
566
567 Class::MOP::Method::Generated->meta->add_attribute(
568     Class::MOP::Attribute->new('definition_context' => (
569         reader   => { 'definition_context' => \&Class::MOP::Method::Generated::definition_context },
570     ))
571 );
572
573 ## --------------------------------------------------------
574 ## Class::MOP::Method::Accessor
575
576 Class::MOP::Method::Accessor->meta->add_attribute(
577     Class::MOP::Attribute->new('attribute' => (
578         reader   => {
579             'associated_attribute' => \&Class::MOP::Method::Accessor::associated_attribute
580         },
581     ))
582 );
583
584 Class::MOP::Method::Accessor->meta->add_attribute(
585     Class::MOP::Attribute->new('accessor_type' => (
586         reader   => { 'accessor_type' => \&Class::MOP::Method::Accessor::accessor_type },
587     ))
588 );
589
590 ## --------------------------------------------------------
591 ## Class::MOP::Method::Constructor
592
593 Class::MOP::Method::Constructor->meta->add_attribute(
594     Class::MOP::Attribute->new('options' => (
595         reader   => {
596             'options' => \&Class::MOP::Method::Constructor::options
597         },
598         default  => sub { +{} }
599     ))
600 );
601
602 Class::MOP::Method::Constructor->meta->add_attribute(
603     Class::MOP::Attribute->new('associated_metaclass' => (
604         init_arg => "metaclass", # FIXME alias and rename
605         reader   => {
606             'associated_metaclass' => \&Class::MOP::Method::Constructor::associated_metaclass
607         },
608     ))
609 );
610
611 ## --------------------------------------------------------
612 ## Class::MOP::Instance
613
614 # NOTE:
615 # these don't yet do much of anything, but are just
616 # included for completeness
617
618 Class::MOP::Instance->meta->add_attribute(
619     Class::MOP::Attribute->new('associated_metaclass',
620         reader   => { associated_metaclass => \&Class::MOP::Instance::associated_metaclass },
621     ),
622 );
623
624 Class::MOP::Instance->meta->add_attribute(
625     Class::MOP::Attribute->new('_class_name',
626         init_arg => undef,
627         reader   => { _class_name => \&Class::MOP::Instance::_class_name },
628         #lazy     => 1, # not yet supported by Class::MOP but out our version does it anyway
629         #default  => sub { $_[0]->associated_metaclass->name },
630     ),
631 );
632
633 Class::MOP::Instance->meta->add_attribute(
634     Class::MOP::Attribute->new('attributes',
635         reader   => { attributes => \&Class::MOP::Instance::get_all_attributes },
636     ),
637 );
638
639 Class::MOP::Instance->meta->add_attribute(
640     Class::MOP::Attribute->new('slots',
641         reader   => { slots => \&Class::MOP::Instance::slots },
642     ),
643 );
644
645 Class::MOP::Instance->meta->add_attribute(
646     Class::MOP::Attribute->new('slot_hash',
647         reader   => { slot_hash => \&Class::MOP::Instance::slot_hash },
648     ),
649 );
650
651
652 # we need the meta instance of the meta instance to be created now, in order
653 # for the constructor to be able to use it
654 Class::MOP::Instance->meta->get_meta_instance;
655
656 # pretend the add_method never happenned. it hasn't yet affected anything
657 undef Class::MOP::Instance->meta->{_package_cache_flag};
658
659 ## --------------------------------------------------------
660 ## Now close all the Class::MOP::* classes
661
662 # NOTE: we don't need to inline the the accessors this only lengthens
663 # the compile time of the MOP, and gives us no actual benefits.
664
665 $_->meta->make_immutable(
666     inline_constructor  => 1,
667     replace_constructor => 1,
668     constructor_name    => "_new",
669     inline_accessors => 0,
670 ) for qw/
671     Class::MOP::Package
672     Class::MOP::Module
673     Class::MOP::Class
674     Class::MOP::Class::Immutable::Trait
675
676     Class::MOP::Attribute
677     Class::MOP::Method
678     Class::MOP::Instance
679
680     Class::MOP::Object
681
682     Class::MOP::Method::Generated
683
684     Class::MOP::Method::Accessor
685     Class::MOP::Method::Constructor
686     Class::MOP::Method::Wrapped
687 /;
688
689 1;
690
691 __END__
692
693 =pod
694
695 =head1 NAME
696
697 Class::MOP - A Meta Object Protocol for Perl 5
698
699 =head1 DESCRIPTION
700
701 This module is a fully functioning meta object protocol for the
702 Perl 5 object system. It makes no attempt to change the behavior or
703 characteristics of the Perl 5 object system, only to create a
704 protocol for its manipulation and introspection.
705
706 That said, it does attempt to create the tools for building a rich set
707 of extensions to the Perl 5 object system. Every attempt has been made
708 to abide by the spirit of the Perl 5 object system that we all know
709 and love.
710
711 This documentation is sparse on conceptual details. We suggest looking
712 at the items listed in the L<SEE ALSO> section for more
713 information. In particular the book "The Art of the Meta Object
714 Protocol" was very influential in the development of this system.
715
716 =head2 What is a Meta Object Protocol?
717
718 A meta object protocol is an API to an object system.
719
720 To be more specific, it abstracts the components of an object system
721 (classes, object, methods, object attributes, etc.). These
722 abstractions can then be used to inspect and manipulate the object
723 system which they describe.
724
725 It can be said that there are two MOPs for any object system; the
726 implicit MOP and the explicit MOP. The implicit MOP handles things
727 like method dispatch or inheritance, which happen automatically as
728 part of how the object system works. The explicit MOP typically
729 handles the introspection/reflection features of the object system.
730
731 All object systems have implicit MOPs. Without one, they would not
732 work. Explicit MOPs are much less common, and depending on the
733 language can vary from restrictive (Reflection in Java or C#) to wide
734 open (CLOS is a perfect example).
735
736 =head2 Yet Another Class Builder! Why?
737
738 This is B<not> a class builder so much as a I<class builder
739 B<builder>>. The intent is that an end user will not use this module
740 directly, but instead this module is used by module authors to build
741 extensions and features onto the Perl 5 object system.
742
743 This system is used by L<Moose>, which supplies a powerful class
744 builder system built entirely on top of C<Class::MOP>.
745
746 =head2 Who is this module for?
747
748 This module is for anyone who has ever created or wanted to create a
749 module for the Class:: namespace. The tools which this module provides
750 make doing complex Perl 5 wizardry simpler, by removing such barriers
751 as the need to hack symbol tables, or understand the fine details of
752 method dispatch.
753
754 =head2 What changes do I have to make to use this module?
755
756 This module was designed to be as unintrusive as possible. Many of its
757 features are accessible without B<any> change to your existing
758 code. It is meant to be a compliment to your existing code and not an
759 intrusion on your code base. Unlike many other B<Class::> modules,
760 this module B<does not> require you subclass it, or even that you
761 C<use> it in within your module's package.
762
763 The only features which requires additions to your code are the
764 attribute handling and instance construction features, and these are
765 both completely optional features. The only reason for this is because
766 Perl 5's object system does not actually have these features built
767 in. More information about this feature can be found below.
768
769 =head2 About Performance
770
771 It is a common misconception that explicit MOPs are a performance hit.
772 This is not a universal truth, it is a side-effect of some specific
773 implementations. For instance, using Java reflection is slow because
774 the JVM cannot take advantage of any compiler optimizations, and the
775 JVM has to deal with much more runtime type information as well.
776
777 Reflection in C# is marginally better as it was designed into the
778 language and runtime (the CLR). In contrast, CLOS (the Common Lisp
779 Object System) was built to support an explicit MOP, and so
780 performance is tuned for it.
781
782 This library in particular does its absolute best to avoid putting
783 B<any> drain at all upon your code's performance. In fact, by itself
784 it does nothing to affect your existing code. So you only pay for what
785 you actually use.
786
787 =head2 About Metaclass compatibility
788
789 This module makes sure that all metaclasses created are both upwards
790 and downwards compatible. The topic of metaclass compatibility is
791 highly esoteric and is something only encountered when doing deep and
792 involved metaclass hacking. There are two basic kinds of metaclass
793 incompatibility; upwards and downwards.
794
795 Upwards metaclass compatibility means that the metaclass of a
796 given class is either the same as (or a subclass of) all of the
797 class's ancestors.
798
799 Downward metaclass compatibility means that the metaclasses of a
800 given class's ancestors are all either the same as (or a subclass
801 of) that metaclass.
802
803 Here is a diagram showing a set of two classes (C<A> and C<B>) and
804 two metaclasses (C<Meta::A> and C<Meta::B>) which have correct
805 metaclass compatibility both upwards and downwards.
806
807     +---------+     +---------+
808     | Meta::A |<----| Meta::B |      <....... (instance of  )
809     +---------+     +---------+      <------- (inherits from)
810          ^               ^
811          :               :
812     +---------+     +---------+
813     |    A    |<----|    B    |
814     +---------+     +---------+
815
816 As I said this is a highly esoteric topic and one you will only run
817 into if you do a lot of subclassing of L<Class::MOP::Class>. If you
818 are interested in why this is an issue see the paper I<Uniform and
819 safe metaclass composition> linked to in the L<SEE ALSO> section of
820 this document.
821
822 =head2 Using custom metaclasses
823
824 Always use the L<metaclass> pragma when using a custom metaclass, this
825 will ensure the proper initialization order and not accidentally
826 create an incorrect type of metaclass for you. This is a very rare
827 problem, and one which can only occur if you are doing deep metaclass
828 programming. So in other words, don't worry about it.
829
830 Note that if you're using L<Moose> we encourage you to I<not> use
831 L<metaclass> pragma, and instead use L<Moose::Util::MetaRole> to apply
832 roles to a class's metaclasses. This topic is covered at length in
833 various L<Moose::Cookbook> recipes.
834
835 =head1 PROTOCOLS
836
837 The meta-object protocol is divided into 4 main sub-protocols:
838
839 =head2 The Class protocol
840
841 This provides a means of manipulating and introspecting a Perl 5
842 class. It handles symbol table hacking for you, and provides a rich
843 set of methods that go beyond simple package introspection.
844
845 See L<Class::MOP::Class> for more details.
846
847 =head2 The Attribute protocol
848
849 This provides a consistent representation for an attribute of a Perl 5
850 class. Since there are so many ways to create and handle attributes in
851 Perl 5 OO, the Attribute protocol provide as much of a unified
852 approach as possible. Of course, you are always free to extend this
853 protocol by subclassing the appropriate classes.
854
855 See L<Class::MOP::Attribute> for more details.
856
857 =head2 The Method protocol
858
859 This provides a means of manipulating and introspecting methods in the
860 Perl 5 object system. As with attributes, there are many ways to
861 approach this topic, so we try to keep it pretty basic, while still
862 making it possible to extend the system in many ways.
863
864 See L<Class::MOP::Method> for more details.
865
866 =head2 The Instance protocol
867
868 This provides a layer of abstraction for creating object instances.
869 Since the other layers use this protocol, it is relatively easy to
870 change the type of your instances from the default hash reference to
871 some other type of reference. Several examples are provided in the
872 F<examples/> directory included in this distribution.
873
874 See L<Class::MOP::Instance> for more details.
875
876 =head1 FUNCTIONS
877
878 Note that this module does not export any constants or functions.
879
880 =head2 Constants
881
882 =over 4
883
884 =item I<Class::MOP::IS_RUNNING_ON_5_10>
885
886 We set this constant depending on what version perl we are on, this
887 allows us to take advantage of new 5.10 features and stay backwards
888 compatible.
889
890 =back
891
892 =head2 Utility functions
893
894 Note that these are all called as B<functions, not methods>.
895
896 =over 4
897
898 =item B<Class::MOP::load_class($class_name)>
899
900 This will load the specified C<$class_name>. This function can be used
901 in place of tricks like C<eval "use $module"> or using C<require>
902 unconditionally. This will return the metaclass of C<$class_name>.
903
904 =item B<Class::MOP::is_class_loaded($class_name)>
905
906 Returns a boolean indicating whether or not C<$class_name> has been
907 loaded.
908
909 This does a basic check of the symbol table to try and determine as
910 best it can if the C<$class_name> is loaded, it is probably correct
911 about 99% of the time, but it can be fooled into reporting false
912 positives.
913
914 =item B<Class::MOP::get_code_info($code)>
915
916 This function returns two values, the name of the package the C<$code>
917 is from and the name of the C<$code> itself. This is used by several
918 elements of the MOP to determine where a given C<$code> reference is
919 from.
920
921 =item B<Class::MOP::class_of($instance_or_class_name)>
922
923 This will return the metaclass of the given instance or class name.
924 Even if the class lacks a metaclass, no metaclass will be initialized
925 and C<undef> will be returned.
926
927 =item B<Class::MOP::check_package_cache_flag($pkg)>
928
929 B<NOTE: DO NOT USE THIS FUNCTION, IT IS FOR INTERNAL USE ONLY!>
930
931 This will return an integer that is managed by L<Class::MOP::Class> to
932 determine if a module's symbol table has been altered.
933
934 In Perl 5.10 or greater, this flag is package specific. However in
935 versions prior to 5.10, this will use the C<PL_sub_generation>
936 variable which is not package specific.
937
938 =item B<Class::MOP::load_first_existing_class(@class_names)>
939
940 B<NOTE: DO NOT USE THIS FUNCTION, IT IS FOR INTERNAL USE ONLY!>
941
942 Given a list of class names, this function will attempt to load each
943 one in turn.
944
945 If it finds a class it can load, it will return that class' name.  If
946 none of the classes can be loaded, it will throw an exception.
947
948 =back
949
950 =head2 Metaclass cache functions
951
952 Class::MOP holds a cache of metaclasses. The following are functions
953 (B<not methods>) which can be used to access that cache. It is not
954 recommended that you mess with these. Bad things could happen, but if
955 you are brave and willing to risk it: go for it!
956
957 =over 4
958
959 =item B<Class::MOP::get_all_metaclasses>
960
961 This will return a hash of all the metaclass instances that have
962 been cached by L<Class::MOP::Class>, keyed by the package name.
963
964 =item B<Class::MOP::get_all_metaclass_instances>
965
966 This will return a list of all the metaclass instances that have
967 been cached by L<Class::MOP::Class>.
968
969 =item B<Class::MOP::get_all_metaclass_names>
970
971 This will return a list of all the metaclass names that have
972 been cached by L<Class::MOP::Class>.
973
974 =item B<Class::MOP::get_metaclass_by_name($name)>
975
976 This will return a cached L<Class::MOP::Class> instance, or nothing
977 if no metaclass exists with that C<$name>.
978
979 =item B<Class::MOP::store_metaclass_by_name($name, $meta)>
980
981 This will store a metaclass in the cache at the supplied C<$key>.
982
983 =item B<Class::MOP::weaken_metaclass($name)>
984
985 In rare cases (e.g. anonymous metaclasses) it is desirable to
986 store a weakened reference in the metaclass cache. This
987 function will weaken the reference to the metaclass stored
988 in C<$name>.
989
990 =item B<Class::MOP::does_metaclass_exist($name)>
991
992 This will return true of there exists a metaclass stored in the
993 C<$name> key, and return false otherwise.
994
995 =item B<Class::MOP::remove_metaclass_by_name($name)>
996
997 This will remove the metaclass stored in the C<$name> key.
998
999 =back
1000
1001 =head1 SEE ALSO
1002
1003 =head2 Books
1004
1005 There are very few books out on Meta Object Protocols and Metaclasses
1006 because it is such an esoteric topic. The following books are really
1007 the only ones I have found. If you know of any more, B<I<please>>
1008 email me and let me know, I would love to hear about them.
1009
1010 =over 4
1011
1012 =item I<The Art of the Meta Object Protocol>
1013
1014 =item I<Advances in Object-Oriented Metalevel Architecture and Reflection>
1015
1016 =item I<Putting MetaClasses to Work>
1017
1018 =item I<Smalltalk: The Language>
1019
1020 =back
1021
1022 =head2 Papers
1023
1024 =over 4
1025
1026 =item "Uniform and safe metaclass composition"
1027
1028 An excellent paper by the people who brought us the original Traits paper.
1029 This paper is on how Traits can be used to do safe metaclass composition,
1030 and offers an excellent introduction section which delves into the topic of
1031 metaclass compatibility.
1032
1033 L<http://www.iam.unibe.ch/~scg/Archive/Papers/Duca05ySafeMetaclassTrait.pdf>
1034
1035 =item "Safe Metaclass Programming"
1036
1037 This paper seems to precede the above paper, and propose a mix-in based
1038 approach as opposed to the Traits based approach. Both papers have similar
1039 information on the metaclass compatibility problem space.
1040
1041 L<http://citeseer.ist.psu.edu/37617.html>
1042
1043 =back
1044
1045 =head2 Prior Art
1046
1047 =over 4
1048
1049 =item The Perl 6 MetaModel work in the Pugs project
1050
1051 =over 4
1052
1053 =item L<http://svn.openfoundry.org/pugs/perl5/Perl6-MetaModel>
1054
1055 =item L<http://svn.openfoundry.org/pugs/perl5/Perl6-ObjectSpace>
1056
1057 =back
1058
1059 =back
1060
1061 =head2 Articles
1062
1063 =over 4
1064
1065 =item CPAN Module Review of Class::MOP
1066
1067 L<http://www.oreillynet.com/onlamp/blog/2006/06/cpan_module_review_classmop.html>
1068
1069 =back
1070
1071 =head1 SIMILAR MODULES
1072
1073 As I have said above, this module is a class-builder-builder, so it is
1074 not the same thing as modules like L<Class::Accessor> and
1075 L<Class::MethodMaker>. That being said there are very few modules on CPAN
1076 with similar goals to this module. The one I have found which is most
1077 like this module is L<Class::Meta>, although it's philosophy and the MOP it
1078 creates are very different from this modules.
1079
1080 =head1 BUGS
1081
1082 All complex software has bugs lurking in it, and this module is no
1083 exception. If you find a bug please either email me, or add the bug
1084 to cpan-RT.
1085
1086 =head1 ACKNOWLEDGEMENTS
1087
1088 =over 4
1089
1090 =item Rob Kinyon
1091
1092 Thanks to Rob for actually getting the development of this module kick-started.
1093
1094 =back
1095
1096 =head1 AUTHORS
1097
1098 Stevan Little E<lt>stevan@iinteractive.comE<gt>
1099
1100 B<with contributions from:>
1101
1102 Brandon (blblack) Black
1103
1104 Florian (rafl) Ragwitz
1105
1106 Guillermo (groditi) Roditi
1107
1108 Matt (mst) Trout
1109
1110 Rob (robkinyon) Kinyon
1111
1112 Yuval (nothingmuch) Kogman
1113
1114 Scott (konobi) McWhirter
1115
1116 =head1 COPYRIGHT AND LICENSE
1117
1118 Copyright 2006-2009 by Infinity Interactive, Inc.
1119
1120 L<http://www.iinteractive.com>
1121
1122 This library is free software; you can redistribute it and/or modify
1123 it under the same terms as Perl itself.
1124
1125 =cut