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