X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FUtil.pm;h=3f6c00c7ccb2340a04983cc32ffe8c862da86054;hb=8974015ded994d2fbaf076de0bf29e5a130b1929;hp=59ef18b6feb0aae02f2310d876656f2a1d181cdd;hpb=2351f08e7d635babd893a7951af6ef553ef23cec;p=gitmo%2FMoose.git diff --git a/lib/Moose/Util.pm b/lib/Moose/Util.pm index 59ef18b..3f6c00c 100644 --- a/lib/Moose/Util.pm +++ b/lib/Moose/Util.pm @@ -5,9 +5,9 @@ use warnings; use Sub::Exporter; use Scalar::Util 'blessed'; -use Class::MOP 0.59; +use Class::MOP 0.60; -our $VERSION = '0.59'; +our $VERSION = '0.63'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; @@ -21,6 +21,7 @@ my @exports = qw[ resolve_metatrait_alias resolve_metaclass_alias add_method_modifier + english_list ]; Sub::Exporter::setup_exporter({ @@ -119,25 +120,35 @@ sub get_all_init_args { } sub resolve_metatrait_alias { - resolve_metaclass_alias( @_, trait => 1 ); + return resolve_metaclass_alias( @_, trait => 1 ); } -sub resolve_metaclass_alias { - my ( $type, $metaclass_name, %options ) = @_; +{ + my %cache; - if ( my $resolved = eval { - my $possible_full_name = 'Moose::Meta::' . $type . '::Custom::' . ( $options{trait} ? "Trait::" : "" ) . $metaclass_name; + sub resolve_metaclass_alias { + my ( $type, $metaclass_name, %options ) = @_; - Class::MOP::load_class($possible_full_name); + my $cache_key = $type . q{ } . ( $options{trait} ? '-Trait' : '' ); + return $cache{$cache_key}{$metaclass_name} + if $cache{$cache_key}{$metaclass_name}; - $possible_full_name->can('register_implementation') - ? $possible_full_name->register_implementation - : $possible_full_name; - } ) { - return $resolved; - } else { - Class::MOP::load_class($metaclass_name); - return $metaclass_name; + my $possible_full_name + = 'Moose::Meta::' + . $type + . '::Custom::' + . ( $options{trait} ? "Trait::" : "" ) + . $metaclass_name; + + my $loaded_class = Class::MOP::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; } } @@ -160,6 +171,19 @@ sub add_method_modifier { } } +sub english_list { + my @items = sort @_; + + return $items[0] if @items == 1; + return "$items[0] and $items[1]" if @items == 2; + + my $tail = pop @items; + my $list = join ', ', @items; + $list .= ', and ' . $tail; + + return $list; +} + 1; __END__ @@ -244,6 +268,12 @@ to a full class name. =item B +=item B + +Given a list of scalars, turns them into a proper list in English +("one and two", "one, two, three, and four"). This is used to help us +make nicer error messages. + =back =head1 TODO