X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FUtil.pm;h=db59d2f6d6c368714839f9247453943917fe346f;hb=5b5187e001776a5880742a5a78742c71c87fec16;hp=354613876617f1aac367aa2be8d250954032f387;hpb=89b29fceb53178306e4dbee6b6037988c8de773b;p=gitmo%2FMoose.git diff --git a/lib/Moose/Util.pm b/lib/Moose/Util.pm index 3546138..db59d2f 100644 --- a/lib/Moose/Util.pm +++ b/lib/Moose/Util.pm @@ -71,33 +71,38 @@ sub search_class_by_role { sub apply_all_roles { my $applicant = shift; - - confess "Must specify at least one role to apply to $applicant" unless @_; - - my $roles = Data::OptList::mkopt([ @_ ]); - - #use Data::Dumper; - #warn Dumper $roles; - - my $meta = (blessed $applicant ? $applicant : find_meta($applicant)); - + + apply_all_roles_with_method( $applicant, 'apply', [@_] ); +} + +sub apply_all_roles_with_method { + my ( $applicant, $apply_method, $role_list ) = @_; + + confess "Must specify at least one role to apply to $applicant" + unless @$role_list; + + my $roles = Data::OptList::mkopt($role_list); + + my $meta = ( blessed $applicant ? $applicant : find_meta($applicant) ); + foreach my $role_spec (@$roles) { - Class::MOP::load_class($role_spec->[0]); + Class::MOP::load_class( $role_spec->[0] ); } - - ($_->[0]->can('meta') && $_->[0]->meta->isa('Moose::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 : ())); + ( $_->[0]->can('meta') && $_->[0]->meta->isa('Moose::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_method( $meta, + ( defined $params ? %$params : () ) ); } else { - Moose::Meta::Role->combine( - @$roles - )->apply($meta); - } + Moose::Meta::Role->combine( @$roles )->$apply_method($meta); + } } # instance deconstruction ... @@ -223,6 +228,13 @@ actually used internally by both L and L, and the C<@roles> will be pre-processed through L to allow for the additional arguments to be passed. +=item B + +This function works just like C, except it allows +you to specify what method will be called on the role metaclass when +applying it to the C<$applicant>. This exists primarily so one can use +the C<< Moose::Meta::Role->apply_to_metaclass_instance() >> method. + =item B Returns the values of the C<$instance>'s fields keyed by the attribute names.