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