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