From: gfx Date: Tue, 23 Feb 2010 02:18:38 +0000 (+0900) Subject: Refactor get_linear_isa() X-Git-Tag: 0.50_04~19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=74690b263c1c34456bca81201ccdf30259d22a45 Refactor get_linear_isa() --- diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index a819618..187aa34 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -121,7 +121,7 @@ BEGIN { require mro; $get_linear_isa = \&mro::get_linear_isa; } else { -# VVVVV CODE TAKEN FROM MRO::COMPAT VVVVV + # this code is based on MRO::Compat::__get_linear_isa my $_get_linear_isa_dfs; # this recurses so it isn't pretty $_get_linear_isa_dfs = sub { my($classname) = @_; @@ -131,8 +131,7 @@ BEGIN { no strict 'refs'; foreach my $parent (@{"$classname\::ISA"}) { - my $plin = $_get_linear_isa_dfs->($parent); - foreach my $p(@$plin) { + foreach my $p(@{ $_get_linear_isa_dfs->($parent) }) { next if exists $stored{$p}; push(@lin, $p); $stored{$p} = 1; @@ -140,24 +139,29 @@ BEGIN { } return \@lin; }; -# ^^^^^ CODE TAKEN FROM MRO::COMPAT ^^^^^ - eval{ require Class::C3 }; + { + package # hide from PAUSE + Class::C3; + our %MRO; # work around 'once' warnings + } # MRO::Compat::__get_linear_isa has no prototype, so # we define a prototyped version for compatibility with core's # See also MRO::Compat::__get_linear_isa. $get_linear_isa = sub ($;$){ my($classname, $type) = @_; - package # hide from PAUSE - Class::C3; + if(!defined $type){ - our %MRO; - $type = exists $MRO{$classname} ? 'c3' : 'dfs'; + $type = exists $Class::C3::MRO{$classname} ? 'c3' : 'dfs'; + } + if($type eq 'c3'){ + require Class::C3; + return [Class::C3::calculateMRO($classname)]; + } + else{ + return $_get_linear_isa_dfs->($classname); } - return $type eq 'c3' - ? [calculateMRO($classname)] - : $_get_linear_isa_dfs->($classname); }; }