1 package Moose::Meta::Role::Application::ToRole;
7 use Scalar::Util 'blessed';
9 our $VERSION = '1.9900';
10 $VERSION = eval $VERSION;
11 our $AUTHORITY = 'cpan:STEVAN';
13 use base 'Moose::Meta::Role::Application';
16 my ($self, $role1, $role2) = @_;
17 $self->SUPER::apply($role1, $role2);
18 $role2->add_role($role1);
21 sub check_role_exclusions {
22 my ($self, $role1, $role2) = @_;
23 if ( $role2->excludes_role($role1->name) ) {
25 Moose->throw_error("Conflict detected: " . $role2->name . " excludes role '" . $role1->name . "'");
27 foreach my $excluded_role_name ($role1->get_excluded_roles_list) {
28 if ( $role2->does_role($excluded_role_name) ) {
30 Moose->throw_error("The class " . $role2->name . " does the excluded role '$excluded_role_name'");
32 $role2->add_excluded_roles($excluded_role_name);
36 sub check_required_methods {
37 my ($self, $role1, $role2) = @_;
38 foreach my $required_method ($role1->get_required_method_list) {
39 my $required_method_name = $required_method->name;
41 next if $self->is_aliased_method($required_method_name);
43 $role2->add_required_methods($required_method)
44 unless $role2->find_method_by_name($required_method_name);
48 sub check_required_attributes {
52 sub apply_attributes {
53 my ($self, $role1, $role2) = @_;
54 foreach my $attribute_name ($role1->get_attribute_list) {
55 # it if it has one already
56 if ($role2->has_attribute($attribute_name) &&
57 # make sure we haven't seen this one already too
58 $role2->get_attribute($attribute_name) != $role1->get_attribute($attribute_name)) {
60 my $role2_name = $role2->name;
63 Moose->throw_error( "Role '"
65 . "' has encountered an attribute conflict"
66 . " while being composed into '$role2_name'."
67 . " This is a fatal error and cannot be disambiguated."
68 . " The conflicting attribute is named '$attribute_name'." );
71 $role2->add_attribute(
72 $role1->get_attribute($attribute_name)->clone
79 my ( $self, $role1, $role2 ) = @_;
80 foreach my $method ( $role1->_get_local_methods ) {
82 my $method_name = $method->name;
84 next if $method->isa('Class::MOP::Method::Meta');
86 unless ( $self->is_method_excluded($method_name) ) {
88 my $role2_method = $role2->get_method($method_name);
90 && $role2_method->body != $method->body ) {
92 # method conflicts between roles result in the method becoming
94 $role2->add_conflicting_method(
96 roles => [ $role1->name, $role2->name ],
107 next unless $self->is_method_aliased($method_name);
109 my $aliased_method_name = $self->get_method_aliases->{$method_name};
111 my $role2_method = $role2->get_method($aliased_method_name);
114 && $role2_method->body != $method->body ) {
118 "Cannot create a method alias if a local method of the same name exists"
123 $aliased_method_name,
124 $role1->get_method($method_name)
127 if ( !$role2->has_method($method_name) ) {
128 $role2->add_required_methods($method_name)
129 unless $self->is_method_excluded($method_name);
134 sub apply_override_method_modifiers {
135 my ($self, $role1, $role2) = @_;
136 foreach my $method_name ($role1->get_method_modifier_list('override')) {
137 # it if it has one already then ...
138 if ($role2->has_method($method_name)) {
139 # if it is being composed into another role
140 # we have a conflict here, because you cannot
141 # combine an overridden method with a locally
144 Moose->throw_error("Role '" . $role1->name . "' has encountered an 'override' method conflict " .
145 "during composition (A local method of the same name as been found). This " .
149 # if we are a role, we need to make sure
150 # we dont have a conflict with the role
151 # we are composing into
152 if ($role2->has_override_method_modifier($method_name) &&
153 $role2->get_override_method_modifier($method_name) != $role2->get_override_method_modifier($method_name)) {
156 Moose->throw_error("Role '" . $role1->name . "' has encountered an 'override' method conflict " .
157 "during composition (Two 'override' methods of the same name encountered). " .
158 "This is fatal error.");
161 # if there is no conflict,
162 # just add it to the role
163 $role2->add_override_method_modifier(
165 $role1->get_override_method_modifier($method_name)
172 sub apply_method_modifiers {
173 my ($self, $modifier_type, $role1, $role2) = @_;
174 my $add = "add_${modifier_type}_method_modifier";
175 my $get = "get_${modifier_type}_method_modifiers";
176 foreach my $method_name ($role1->get_method_modifier_list($modifier_type)) {
180 ) foreach $role1->$get($method_name);
193 Moose::Meta::Role::Application::ToRole - Compose a role into another role
207 =item B<check_role_exclusions>
209 =item B<check_required_methods>
211 =item B<check_required_attributes>
213 =item B<apply_attributes>
215 =item B<apply_methods>
217 =item B<apply_method_modifiers>
219 =item B<apply_override_method_modifiers>
225 See L<Moose/BUGS> for details on reporting bugs.
229 Stevan Little E<lt>stevan@iinteractive.comE<gt>
231 =head1 COPYRIGHT AND LICENSE
233 Copyright 2006-2010 by Infinity Interactive, Inc.
235 L<http://www.iinteractive.com>
237 This library is free software; you can redistribute it and/or modify
238 it under the same terms as Perl itself.