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