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