X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FClass%2FMOP.pm;h=b7005f1017ea91c1c36d0f9a575a2d1a58ef4406;hb=1f6240bf8910a1fe50afef4d7bd524175a3aef6a;hp=c1f76427b457887bd3462769df6910f484c927e4;hpb=94278c1ba6283af20c09a6aef615954825d08162;p=gitmo%2FClass-MOP.git diff --git a/lib/Class/MOP.pm b/lib/Class/MOP.pm index c1f7642..b7005f1 100644 --- a/lib/Class/MOP.pm +++ b/lib/Class/MOP.pm @@ -11,24 +11,6 @@ use MRO::Compat; use Carp 'confess'; use Scalar::Util 'weaken'; -BEGIN { - local $@; - eval { - require Sub::Name; - Sub::Name->import(qw(subname)); - 1 - } or eval 'sub subname { $_[1] }'; - - # this is either part of core or set up appropriately by MRO::Compat - *check_package_cache_flag = \&mro::get_pkg_gen; - - eval { - require Devel::GlobalDestruction; - Devel::GlobalDestruction->import("in_global_destruction"); - 1; - } or *in_global_destruction = sub () { !1 }; -} - use Class::MOP::Class; use Class::MOP::Attribute; @@ -44,15 +26,16 @@ BEGIN { *HAVE_ISAREV = defined(&mro::get_isarev) ? sub () { 1 } : sub () { 1 }; + + # this is either part of core or set up appropriately by MRO::Compat + *check_package_cache_flag = \&mro::get_pkg_gen; } -our $VERSION = '0.65'; +our $VERSION = '0.76'; our $XS_VERSION = $VERSION; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; - -# after that everything is loaded, if we're allowed try to load faster XS -# versions of various things + _try_load_xs() or _load_pure_perl(); sub _try_load_xs { @@ -66,6 +49,14 @@ sub _try_load_xs { # for some reason local $^W = 0; __PACKAGE__->XSLoader::load($XS_VERSION); + + require Sub::Name; + Sub::Name->import(qw(subname)); + + require Devel::GlobalDestruction; + Devel::GlobalDestruction->import("in_global_destruction"); + + *USING_XS = sub () { 1 }; }; $@; }; @@ -78,6 +69,11 @@ sub _try_load_xs { sub _load_pure_perl { require Sub::Identify; Sub::Identify->import('get_code_info'); + + *subname = sub { $_[1] }; + *in_global_destruction = sub () { !1 }; + + *USING_XS = sub () { 0 }; } @@ -106,28 +102,62 @@ sub _load_pure_perl { # because I don't yet see a good reason to do so. } -sub load_class { - my $class = shift; +sub load_first_existing_class { + my @classes = @_ + or return; - unless ( _is_valid_class_name($class) ) { - my $display = defined($class) ? $class : 'undef'; - confess "Invalid class name ($display)"; + foreach my $class (@classes) { + unless ( _is_valid_class_name($class) ) { + my $display = defined($class) ? $class : 'undef'; + confess "Invalid class name ($display)"; + } } - # if the class is not already loaded in the symbol table.. - unless (is_class_loaded($class)) { - # require it - my $e = do { local $@; eval "require $class"; $@ }; - confess "Could not load class ($class) because : $e" if $e; - } + my $found; + my %exceptions; + for my $class (@classes) { + my $e = _try_load_one_class($class); - # initialize a metaclass if necessary - unless (does_metaclass_exist($class)) { - my $e = do { local $@; eval { Class::MOP::Class->initialize($class) }; $@ }; - confess "Could not initialize class ($class) because : $e" if $e; + if ($e) { + $exceptions{$class} = $e; + } + else { + $found = $class; + last; + } } - return get_metaclass_by_name($class) if defined wantarray; + return $found if $found; + + confess join( + "\n", + map { + sprintf( + "Could not load class (%s) because : %s", $_, + $exceptions{$_} + ) + } @classes + ); +} + +sub _try_load_one_class { + my $class = shift; + + return if is_class_loaded($class); + + my $file = $class . '.pm'; + $file =~ s{::}{/}g; + + return do { + local $@; + eval { require($file) }; + $@; + }; +} + +sub load_class { + my $class = load_first_existing_class($_[0]); + return get_metaclass_by_name($class) || $class; } sub _is_valid_class_name { @@ -145,7 +175,7 @@ sub _is_valid_class_name { sub is_class_loaded { my $class = shift; - return 0 if ref($class) || !defined($class) || !length($class); + return 0 unless _is_valid_class_name($class); # walk the symbol table tree to avoid autovififying # \*{${main::}{"Foo::"}} == \*main::Foo:: @@ -421,6 +451,12 @@ Class::MOP::Attribute->meta->add_attribute( ); Class::MOP::Attribute->meta->add_attribute( + Class::MOP::Attribute->new('definition_context' => ( + reader => { 'definition_context' => \&Class::MOP::Attribute::definition_context }, + )) +); + +Class::MOP::Attribute->meta->add_attribute( Class::MOP::Attribute->new('writer' => ( reader => { 'writer' => \&Class::MOP::Attribute::writer }, predicate => { 'has_writer' => \&Class::MOP::Attribute::has_writer }, @@ -500,9 +536,18 @@ Class::MOP::Method->meta->add_attribute( )) ); +Class::MOP::Method->meta->add_attribute( + Class::MOP::Attribute->new('original_method' => ( + reader => { 'original_method' => \&Class::MOP::Method::original_method }, + writer => { '_set_original_method' => \&Class::MOP::Method::_set_original_method }, + )) +); + Class::MOP::Method->meta->add_method('clone' => sub { my $self = shift; - $self->meta->clone_object($self, @_); + my $clone = $self->meta->clone_object($self, @_); + $clone->_set_original_method($self); + return $clone; }); ## -------------------------------------------------------- @@ -527,6 +572,12 @@ Class::MOP::Method::Generated->meta->add_attribute( )) ); +Class::MOP::Method::Generated->meta->add_attribute( + Class::MOP::Attribute->new('definition_context' => ( + reader => { 'definition_context' => \&Class::MOP::Method::Generated::definition_context }, + )) +); + ## -------------------------------------------------------- ## Class::MOP::Method::Accessor @@ -616,12 +667,8 @@ undef Class::MOP::Instance->meta->{_package_cache_flag}; ## -------------------------------------------------------- ## Now close all the Class::MOP::* classes -# NOTE: -# we don't need to inline the -# constructors or the accessors -# this only lengthens the compile -# time of the MOP, and gives us -# no actual benefits. +# NOTE: we don't need to inline the the accessors this only lengthens +# the compile time of the MOP, and gives us no actual benefits. $_->meta->make_immutable( inline_constructor => 1, @@ -846,10 +893,16 @@ compat. Whether or not C provides C, a much faster way to get all the subclasses of a certain class. +=item I + +Whether or not the running C is using its XS version. + =back =head2 Utility functions +Note that these are all called as B. + =over 4 =item B @@ -870,6 +923,8 @@ is probably correct about 99% of the time. =item B +B + This will return an integer that is managed by C to determine if a module's symbol table has been altered. @@ -879,6 +934,8 @@ which is not package specific. =item B +B + This function returns two values, the name of the package the C<$code> is from and the name of the C<$code> itself. This is used by several elements of the MOP to detemine where a given C<$code> reference is from. @@ -893,41 +950,53 @@ argument. =item B +B + If L is available, this returns true under global destruction. Otherwise it's a constant returning false. +=item B + +B + +Given a list of class names, this function will attempt to load each +one in turn. + +If it finds a class it can load, it will return that class' name. +If none of the classes can be loaded, it will throw an exception. + =back =head2 Metaclass cache functions -Class::MOP holds a cache of metaclasses, the following are functions +Class::MOP holds a cache of metaclasses. The following are functions (B) which can be used to access that cache. It is not -recommended that you mess with this, bad things could happen. But if -you are brave and willing to risk it, go for it. +recommended that you mess with these. Bad things could happen, but if +you are brave and willing to risk it: go for it! =over 4 =item B -This will return an hash of all the metaclass instances that have -been cached by B keyed by the package name. +This will return a hash of all the metaclass instances that have +been cached by B, keyed by the package name. =item B -This will return an array of all the metaclass instances that have +This will return a list of all the metaclass instances that have been cached by B. =item B -This will return an array of all the metaclass names that have +This will return a list of all the metaclass names that have been cached by B. =item B -This will return a cached B instance of nothing -if no metaclass exist by that C<$name>. +This will return a cached B instance, or nothing +if no metaclass exists with that C<$name>. =item B @@ -935,18 +1004,19 @@ This will store a metaclass in the cache at the supplied C<$key>. =item B -In rare cases it is desireable to store a weakened reference in -the metaclass cache. This function will weaken the reference to -the metaclass stored in C<$name>. +In rare cases (e.g. anonymous metaclasses) it is desirable to +store a weakened reference in the metaclass cache. This +function will weaken the reference to the metaclass stored +in C<$name>. =item B This will return true of there exists a metaclass stored in the -C<$name> key and return false otherwise. +C<$name> key, and return false otherwise. =item B -This will remove a the metaclass stored in the C<$name> key. +This will remove the metaclass stored in the C<$name> key. =back @@ -1053,6 +1123,8 @@ B Brandon (blblack) Black +Florian (rafl) Ragwitz + Guillermo (groditi) Roditi Matt (mst) Trout