X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FUtil.pm;h=ff39422f74aa334df4cb293b4ef2d9b8a9e673c0;hp=4c194fda6bece9516da73b413fe449173c24ab28;hb=3a63a2e7ef8fbac5f61eab04baecbf5d19374b83;hpb=eae8075956ba01581ea7488b4ddb2506db1111da diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index 4c194fd..ff39422 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -1,75 +1,39 @@ -#!/usr/bin/env perl package Mouse::Util; use strict; use warnings; -use Exporter 'import'; -use Carp; +use base qw/Exporter/; +use Carp qw(confess); +use B (); our @EXPORT_OK = qw( - blessed get_linear_isa - looks_like_number - openhandle - reftype - weaken + apply_all_roles + version + authority + identifier + get_code_info ); our %EXPORT_TAGS = ( all => \@EXPORT_OK, ); -# We only have to do this nastiness if we haven't loaded XS version of -# Mouse.pm, so check if we're running under PurePerl or not BEGIN { - if ($Mouse::PurePerl) { - _install_pp_func(); + my $impl; + if ($] >= 5.009_005) { + require mro; + $impl = \&mro::get_linear_isa; } else { - # If we're running under XS, we can provide - # blessed - # looks_like_number - # reftype - # weaken - # other functions need to be loaded from our respective sources - - if (defined &Scalar::Util::openhandle) { - *openhandle = \&Scalar::Util::openhandle; - } else { - # XXX - room for improvement - *openhandle = sub { - local($@, $SIG{__DIE__}, $SIG{__WARN__}); - my $r = shift; - my $t; - - length($t = ref($r)) or return undef; - - # This eval will fail if the reference is not blessed - eval { $r->a_sub_not_likely_to_be_here; 1 } - ? do { - $t = eval { - # we have a GLOB or an IO. Stringify a GLOB gives it's name - my $q = *$r; - $q =~ /^\*/ ? "GLOB" : "IO"; - } - or do { - # OK, if we don't have a GLOB what parts of - # a glob will it populate. - # NOTE: A glob always has a SCALAR - local *glob = $r; - defined *glob{ARRAY} && "ARRAY" - or defined *glob{HASH} && "HASH" - or defined *glob{CODE} && "CODE" - or length(ref(${$r})) ? "REF" : "SCALAR"; - } - } - : $t - }; - } - - if (defined &mro::get_linear_isa) { - *get_linear_isa = \&mro::get_linear_isa; + my $e = do { + local $@; + eval { require MRO::Compat }; + $@; + }; + if (!$e) { + $impl = \&mro::get_linear_isa; } else { - # this recurses so it isn't pretty - my $code; - *get_linear_isa = $code = sub { +# VVVVV CODE TAKEN FROM MRO::COMPAT VVVVV + my $_get_linear_isa_dfs; # this recurses so it isn't pretty + $_get_linear_isa_dfs = sub { no strict 'refs'; my $classname = shift; @@ -77,209 +41,194 @@ BEGIN { my @lin = ($classname); my %stored; foreach my $parent (@{"$classname\::ISA"}) { - my $plin = $code->($parent); - foreach (@$plin) { - next if exists $stored{$_}; - push(@lin, $_); - $stored{$_} = 1; + my $plin = $_get_linear_isa_dfs->($parent); + foreach my $p(@$plin) { + next if exists $stored{$p}; + push(@lin, $p); + $stored{$p} = 1; } } return \@lin; }; +# ^^^^^ CODE TAKEN FROM MRO::COMPAT ^^^^^ + $impl = $_get_linear_isa_dfs; } } + + no strict 'refs'; + *{ __PACKAGE__ . '::get_linear_isa'} = $impl; } -sub _install_pp_func { - my %dependencies = ( - 'Scalar::Util' => { -# VVVVV CODE TAKEN FROM SCALAR::UTIL VVVVV - 'blessed' => do { - *UNIVERSAL::a_sub_not_likely_to_be_here = sub { - my $ref = ref($_[0]); - - # deviation from Scalar::Util - # XS returns undef, PP returns GLOB. - # let's make that more consistent by having PP return - # undef if it's a GLOB. :/ - - # \*STDOUT would be allowed as an object in PP blessed - # but not XS - return $ref eq 'GLOB' ? undef : $ref; - }; - - sub { - local($@, $SIG{__DIE__}, $SIG{__WARN__}); - length(ref($_[0])) - ? eval { $_[0]->a_sub_not_likely_to_be_here } - : undef; - }, - }, - 'looks_like_number' => sub { - local $_ = shift; - - # checks from perlfaq4 - return 0 if !defined($_) or ref($_); - return 1 if (/^[+-]?\d+$/); # is a +/- integer - return 1 if (/^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/); # a C float - return 1 if ($] >= 5.008 and /^(Inf(inity)?|NaN)$/i) or ($] >= 5.006001 and /^Inf$/i); - - 0; - }, - 'reftype' => sub { - local($@, $SIG{__DIE__}, $SIG{__WARN__}); - my $r = shift; - my $t; - - length($t = ref($r)) or return undef; - - # This eval will fail if the reference is not blessed - eval { $r->a_sub_not_likely_to_be_here; 1 } - ? do { - $t = eval { - # we have a GLOB or an IO. Stringify a GLOB gives it's name - my $q = *$r; - $q =~ /^\*/ ? "GLOB" : "IO"; - } - or do { - # OK, if we don't have a GLOB what parts of - # a glob will it populate. - # NOTE: A glob always has a SCALAR - local *glob = $r; - defined *glob{ARRAY} && "ARRAY" - or defined *glob{HASH} && "HASH" - or defined *glob{CODE} && "CODE" - or length(ref(${$r})) ? "REF" : "SCALAR"; - } - } - : $t - }, - 'openhandle' => sub { - my $fh = shift; - my $rt = reftype($fh) || ''; +{ # taken from Sub::Identify + sub get_code_info($) { + my ($coderef) = @_; + ref($coderef) or return; + my $cv = B::svref_2object($coderef); + $cv->isa('B::CV') or return; + + my $gv = $cv->GV; + # bail out if GV is undefined + $gv->isa('B::SPECIAL') and return; + + return ($gv->STASH->NAME, $gv->NAME); + } +} + +{ # adapted from Class::MOP::Module + + sub version { no strict 'refs'; ${shift->name.'::VERSION'} } + sub authority { no strict 'refs'; ${shift->name.'::AUTHORITY'} } + sub identifier { + my $self = shift; + join '-' => ( + $self->name, + ($self->version || ()), + ($self->authority || ()), + ); + } +} - return defined(fileno($fh)) ? $fh : undef - if $rt eq 'IO'; +# taken from Class/MOP.pm +{ + my %cache; - if (reftype(\$fh) eq 'GLOB') { # handle openhandle(*DATA) - $fh = \(my $tmp=$fh); - } - elsif ($rt ne 'GLOB') { - return undef; - } + sub resolve_metaclass_alias { + my ( $type, $metaclass_name, %options ) = @_; - (tied(*$fh) or defined(fileno($fh))) - ? $fh : undef; - }, - weaken => { - loaded => \&Scalar::Util::weaken, - not_loaded => sub { die "Scalar::Util required for weak reference support" }, - }, -# ^^^^^ CODE TAKEN FROM SCALAR::UTIL ^^^^^ - }, - 'MRO::Compat' => { -# VVVVV CODE TAKEN FROM MRO::COMPAT VVVVV - 'get_linear_isa' => { - loaded => \&mro::get_linear_isa, - not_loaded => do { - # this recurses so it isn't pretty - my $code; - $code = sub { - no strict 'refs'; - - my $classname = shift; - - my @lin = ($classname); - my %stored; - foreach my $parent (@{"$classname\::ISA"}) { - my $plin = $code->($parent); - foreach (@$plin) { - next if exists $stored{$_}; - push(@lin, $_); - $stored{$_} = 1; - } - } - return \@lin; - } - }, - }, -# ^^^^^ CODE TAKEN FROM MRO::COMPAT ^^^^^ - }, - ); + my $cache_key = $type; + return $cache{$cache_key}{$metaclass_name} + if $cache{$cache_key}{$metaclass_name}; - my %loaded; - for my $module_name (keys %dependencies) { - my $loaded = do { - local $SIG{__DIE__} = 'DEFAULT'; - eval "require $module_name; 1"; - }; + my $possible_full_name = + 'Mouse::Meta::' + . $type + . '::Custom::' + . $metaclass_name; - $loaded{$module_name} = $loaded; - - for my $method_name (keys %{ $dependencies{ $module_name } }) { - my $producer = $dependencies{$module_name}{$method_name}; - my $implementation; - - if (ref($producer) eq 'HASH') { - $implementation = $loaded - ? $producer->{loaded} - : $producer->{not_loaded}; - } - else { - $implementation = $loaded - ? $module_name->can($method_name) - : $producer; - } - - no strict 'refs'; - *{ __PACKAGE__ . '::' . $method_name } = $implementation; - } + my $loaded_class = + load_first_existing_class( $possible_full_name, + $metaclass_name ); + + return $cache{$cache_key}{$metaclass_name} = + $loaded_class->can('register_implementation') + ? $loaded_class->register_implementation + : $loaded_class; } } -sub apply_all_roles { - my $meta = Mouse::Meta::Class->initialize(shift); - my $role = shift; - confess "Mouse::Util only supports 'apply_all_roles' on individual roles at a time" if @_; +# taken from Class/MOP.pm +sub _is_valid_class_name { + my $class = shift; + + return 0 if ref($class); + return 0 unless defined($class); + return 0 unless length($class); - Mouse::load_class($role); - $role->meta->apply($meta); + return 1 if $class =~ /^\w+(?:::\w+)*$/; + + return 0; } -1; +# taken from Class/MOP.pm +sub load_first_existing_class { + my @classes = @_ + or return; -__END__ + foreach my $class (@classes) { + unless ( _is_valid_class_name($class) ) { + my $display = defined($class) ? $class : 'undef'; + confess "Invalid class name ($display)"; + } + } -=head1 NAME + my $found; + my %exceptions; + for my $class (@classes) { + my $e = _try_load_one_class($class); -Mouse::Util - features, with or without their dependencies + if ($e) { + $exceptions{$class} = $e; + } + else { + $found = $class; + last; + } + } + return $found if $found; + + confess join( + "\n", + map { + sprintf( "Could not load class (%s) because : %s", + $_, $exceptions{$_} ) + } @classes + ); +} -=head1 IMPLEMENTATIONS FOR +# taken from Class/MOP.pm +sub _try_load_one_class { + my $class = shift; -=head2 L + return if Mouse::is_class_loaded($class); -=head3 get_linear_isa + my $file = $class . '.pm'; + $file =~ s{::}{/}g; -=head2 L + return do { + local $@; + eval { require($file) }; + $@; + }; +} -=head3 blessed +sub apply_all_roles { + my $meta = Mouse::Meta::Class->initialize(shift); -=head3 looks_like_number + my @roles; -=head3 reftype + # Basis of Data::OptList + my $max = scalar(@_); + for (my $i = 0; $i < $max ; $i++) { + if ($i + 1 < $max && ref($_[$i + 1])) { + push @roles, [ $_[$i++] => $_[$i] ]; + } else { + push @roles, [ $_[$i] => {} ]; + } + } -=head3 openhandle + foreach my $role_spec (@roles) { + Mouse::load_class( $role_spec->[0] ); + } + + ( $_->[0]->can('meta') && $_->[0]->meta->isa('Mouse::Meta::Role') ) + || confess("You can only consume roles, " + . $_->[0] + . " is not a Moose role") + foreach @roles; + + if ( scalar @roles == 1 ) { + my ( $role, $params ) = @{ $roles[0] }; + $role->meta->apply( $meta, ( defined $params ? %$params : () ) ); + } + else { + Mouse::Meta::Role->combine_apply($meta, @roles); + } + +} + +1; + +__END__ -=head3 weaken +=head1 NAME -C I be implemented in XS. If the user tries to use C -without L, an error is thrown. +Mouse::Util - features, with or without their dependencies -=head2 Test::Exception +=head1 IMPLEMENTATIONS FOR -=head3 throws_ok +=head2 L -=head3 lives_ok +=head3 get_linear_isa =cut