X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FUtil.pm;h=4f9139dc3673db757532e661c3e0a098a82df1df;hb=856e64d4108c5faf3ba9ead64d73dbf53022541d;hp=0d061af1122369f05f0623c07b5cb415508ea4c4;hpb=6302a7e870c9ed9bce511891a74e5bdd140fcc74;p=gitmo%2FMoose.git diff --git a/lib/Moose/Util.pm b/lib/Moose/Util.pm index 0d061af..4f9139d 100644 --- a/lib/Moose/Util.pm +++ b/lib/Moose/Util.pm @@ -3,18 +3,20 @@ package Moose::Util; use strict; use warnings; +use Data::OptList; use Sub::Exporter; use Scalar::Util 'blessed'; use Class::MOP 0.60; -our $VERSION = '0.73_02'; +our $VERSION = '0.80'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; my @exports = qw[ - find_meta + find_meta does_role - search_class_by_role + search_class_by_role + ensure_all_roles apply_all_roles get_all_init_args get_all_attribute_values @@ -39,7 +41,7 @@ sub does_role { my ($class_or_obj, $role) = @_; my $meta = find_meta($class_or_obj); - + return unless defined $meta; return unless $meta->can('does_role'); return 1 if $meta->does_role($role); @@ -48,14 +50,14 @@ sub does_role { sub search_class_by_role { my ($class_or_obj, $role_name) = @_; - + my $meta = find_meta($class_or_obj); return unless defined $meta; foreach my $class ($meta->class_precedence_list) { - - my $_meta = find_meta($class); + + my $_meta = find_meta($class); next unless defined $_meta; @@ -67,8 +69,22 @@ sub search_class_by_role { return; } +# this can possibly behave in unexpected ways because the roles being composed +# before being applied could differ from call to call; I'm not sure if or how +# to document this possible quirk. +sub ensure_all_roles { + my $applicant = shift; + _apply_all_roles($applicant, sub { !does_role($applicant, $_) }, @_); +} + sub apply_all_roles { my $applicant = shift; + _apply_all_roles($applicant, sub { 1 }, @_); +} + +sub _apply_all_roles { + my $applicant = shift; + my $role_filter = shift; unless (@_) { require Moose; @@ -78,9 +94,10 @@ sub apply_all_roles { my $roles = Data::OptList::mkopt( [@_] ); foreach my $role (@$roles) { - my $meta = Class::MOP::load_class( $role->[0] ); + Class::MOP::load_class( $role->[0] ); + my $meta = Class::MOP::class_of( $role->[0] ); - unless ($meta->isa('Moose::Meta::Role') ) { + unless ($meta && $meta->isa('Moose::Meta::Role') ) { require Moose; Moose->throw_error( "You can only consume roles, " . $role->[0] @@ -88,6 +105,10 @@ sub apply_all_roles { } } + @$roles = grep { local $_ = $_->[0]; $role_filter->() } @$roles; + + return unless @$roles; + my $meta = ( blessed $applicant ? $applicant : find_meta($applicant) ); if ( scalar @$roles == 1 ) { @@ -116,7 +137,7 @@ sub get_all_init_args { return +{ map { $_->init_arg => $_->get_value($instance) } grep { $_->has_value($instance) } - grep { defined($_->init_arg) } + grep { defined($_->init_arg) } $class->get_all_attributes }; } @@ -136,7 +157,7 @@ sub resolve_metatrait_alias { if $cache{$cache_key}{$metaclass_name}; my $possible_full_name - = 'Moose::Meta::' + = 'Moose::Meta::' . $type . '::Custom::' . ( $options{trait} ? "Trait::" : "" ) @@ -222,7 +243,7 @@ some of them may be useful for use in your own code. =item B This method takes a class name or object and attempts to find a -metaclass for the class, if one exists. It will not create one if it +metaclass for the class, if one exists. It will B create one if it does not yet exist. =item B @@ -249,6 +270,11 @@ The list of C<@roles> should be a list of names, each of which can be followed by an optional hash reference of options (C and C). +=item B + +This function is similar to L, but only applies roles that +C<$applicant> does not already consume. + =item B Returns a hash reference containing all of the C<$instance>'s @@ -299,7 +325,7 @@ Here is a list of possible functions to write =head1 BUGS -All complex software has bugs lurking in it, and this module is no +All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.