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