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