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