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