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