No need to explicitly uniq, since assigning to a hash does that already
[gitmo/Moose.git] / lib / Moose / Meta / Role / Application / RoleSummation.pm
1 package Moose::Meta::Role::Application::RoleSummation;
2
3 use strict;
4 use warnings;
5 use metaclass;
6
7 use Scalar::Util 'blessed';
8
9 use Moose::Meta::Role::Composite;
10
11 our $VERSION   = '0.79';
12 $VERSION = eval $VERSION;
13 our $AUTHORITY = 'cpan:STEVAN';
14
15 use base 'Moose::Meta::Role::Application';
16
17 __PACKAGE__->meta->add_attribute('role_params' => (
18     reader  => 'role_params',
19     default => sub { {} }
20 ));
21
22 sub get_exclusions_for_role {
23     my ($self, $role) = @_;
24     $role = $role->name if blessed $role;
25     if ($self->role_params->{$role} && defined $self->role_params->{$role}->{excludes}) {
26         if (ref $self->role_params->{$role}->{excludes} eq 'ARRAY') {
27             return $self->role_params->{$role}->{excludes};
28         }
29         return [ $self->role_params->{$role}->{excludes} ];
30     }
31     return [];
32 }
33
34 sub get_method_aliases_for_role {
35     my ($self, $role) = @_;
36     $role = $role->name if blessed $role;
37     if ($self->role_params->{$role} && defined $self->role_params->{$role}->{alias}) {
38         return $self->role_params->{$role}->{alias};
39     }
40     return {};
41 }
42
43 sub is_method_excluded {
44     my ($self, $role, $method_name) = @_;
45     foreach ($self->get_exclusions_for_role($role->name)) {
46         return 1 if $_ eq $method_name;
47     }
48     return 0;
49 }
50
51 sub is_method_aliased {
52     my ($self, $role, $method_name) = @_;
53     exists $self->get_method_aliases_for_role($role->name)->{$method_name} ? 1 : 0
54 }
55
56 sub is_aliased_method {
57     my ($self, $role, $method_name) = @_;
58     my %aliased_names = reverse %{$self->get_method_aliases_for_role($role->name)};
59     exists $aliased_names{$method_name} ? 1 : 0;
60 }
61
62 sub check_role_exclusions {
63     my ($self, $c) = @_;
64
65     my %excluded_roles;
66     for my $role (@{ $c->get_roles }) {
67         my $name = $role->name;
68
69         for my $excluded ($role->get_excluded_roles_list) {
70             push @{ $excluded_roles{$excluded} }, $name;
71         }
72     }
73
74     foreach my $role (@{$c->get_roles}) {
75         foreach my $excluded (keys %excluded_roles) {
76             next unless $role->does_role($excluded);
77
78             my @excluding = @{ $excluded_roles{$excluded} };
79
80             require Moose;
81             Moose->throw_error(sprintf "Conflict detected: Role%s %s exclude%s role '%s'", (@excluding == 1 ? '' : 's'), join(', ', @excluding), (@excluding == 1 ? 's' : ''), $excluded);
82         }
83     }
84
85     $c->add_excluded_roles(keys %excluded_roles);
86 }
87
88 sub check_required_methods {
89     my ($self, $c) = @_;
90
91     my %all_required_methods =
92         map { $_ => undef }
93         map { $_->get_required_method_list }
94         @{$c->get_roles};
95
96     foreach my $role (@{$c->get_roles}) {
97         foreach my $required (keys %all_required_methods) {
98
99             delete $all_required_methods{$required}
100                 if $role->has_method($required)
101                 || $self->is_aliased_method($role, $required);
102         }
103     }
104
105     $c->add_required_methods(keys %all_required_methods);
106 }
107
108 sub check_required_attributes {
109
110 }
111
112 sub apply_attributes {
113     my ($self, $c) = @_;
114
115     my @all_attributes = map {
116         my $role = $_;
117         map {
118             +{
119                 name => $_,
120                 attr => $role->get_attribute($_),
121             }
122         } $role->get_attribute_list
123     } @{$c->get_roles};
124
125     my %seen;
126     foreach my $attr (@all_attributes) {
127         if (exists $seen{$attr->{name}}) {
128             if ( $seen{$attr->{name}} != $attr->{attr} ) {
129                 require Moose;
130                 Moose->throw_error("We have encountered an attribute conflict with '" . $attr->{name} . "' "
131                                    . "during composition. This is fatal error and cannot be disambiguated.")
132             }
133         }
134         $seen{$attr->{name}} = $attr->{attr};
135     }
136
137     foreach my $attr (@all_attributes) {
138         $c->add_attribute($attr->{name}, $attr->{attr});
139     }
140 }
141
142 sub apply_methods {
143     my ($self, $c) = @_;
144
145     my @all_methods = map {
146         my $role     = $_;
147         my $aliases  = $self->get_method_aliases_for_role($role);
148         my %excludes = map { $_ => undef } @{ $self->get_exclusions_for_role($role) };
149         (
150             (map {
151                 exists $excludes{$_} ? () :
152                 +{
153                     role   => $role,
154                     name   => $_,
155                     method => $role->get_method($_),
156                 }
157             } $role->get_method_list),
158             (map {
159                 +{
160                     role   => $role,
161                     name   => $aliases->{$_},
162                     method => $role->get_method($_),
163                 }
164             } keys %$aliases)
165         );
166     } @{$c->get_roles};
167
168     my (%seen, %method_map);
169     foreach my $method (@all_methods) {
170         if (exists $seen{$method->{name}}) {
171             if ($seen{$method->{name}}->body != $method->{method}->body) {
172                 $c->add_required_methods($method->{name});
173                 delete $method_map{$method->{name}};
174                 next;
175             }
176         }
177
178         $seen{$method->{name}}       = $method->{method};
179         $method_map{$method->{name}} = $method->{method};
180     }
181
182     $c->add_method($_ => $method_map{$_}) for keys %method_map;
183 }
184
185 sub apply_override_method_modifiers {
186     my ($self, $c) = @_;
187
188     my @all_overrides = map {
189         my $role = $_;
190         map {
191             +{
192                 name   => $_,
193                 method => $role->get_override_method_modifier($_),
194             }
195         } $role->get_method_modifier_list('override');
196     } @{$c->get_roles};
197
198     my %seen;
199     foreach my $override (@all_overrides) {
200         if ( $c->has_method($override->{name}) ){
201             require Moose;
202             Moose->throw_error( "Role '" . $c->name . "' has encountered an 'override' method conflict " .
203                                 "during composition (A local method of the same name as been found). This " .
204                                 "is fatal error." )
205         }
206         if (exists $seen{$override->{name}}) {
207             if ( $seen{$override->{name}} != $override->{method} ) {
208                 require Moose;
209                 Moose->throw_error( "We have encountered an 'override' method conflict during " .
210                                     "composition (Two 'override' methods of the same name encountered). " .
211                                     "This is fatal error.")
212             }
213         }
214         $seen{$override->{name}} = $override->{method};
215     }
216
217     $c->add_override_method_modifier(
218         $_->{name}, $_->{method}
219     ) for @all_overrides;
220
221 }
222
223 sub apply_method_modifiers {
224     my ($self, $modifier_type, $c) = @_;
225     my $add = "add_${modifier_type}_method_modifier";
226     my $get = "get_${modifier_type}_method_modifiers";
227     foreach my $role (@{$c->get_roles}) {
228         foreach my $method_name ($role->get_method_modifier_list($modifier_type)) {
229             $c->$add(
230                 $method_name,
231                 $_
232             ) foreach $role->$get($method_name);
233         }
234     }
235 }
236
237 1;
238
239 __END__
240
241 =pod
242
243 =head1 NAME
244
245 Moose::Meta::Role::Application::RoleSummation - Combine two or more roles
246
247 =head1 DESCRIPTION
248
249 Summation composes two traits, forming the union of non-conflicting
250 bindings and 'disabling' the conflicting bindings
251
252 =head2 METHODS
253
254 =over 4
255
256 =item B<new>
257
258 =item B<meta>
259
260 =item B<role_params>
261
262 =item B<get_exclusions_for_role>
263
264 =item B<get_method_aliases_for_role>
265
266 =item B<is_aliased_method>
267
268 =item B<is_method_aliased>
269
270 =item B<is_method_excluded>
271
272 =item B<apply>
273
274 =item B<check_role_exclusions>
275
276 =item B<check_required_methods>
277
278 =item B<check_required_attributes>
279
280 =item B<apply_attributes>
281
282 =item B<apply_methods>
283
284 =item B<apply_method_modifiers>
285
286 =item B<apply_override_method_modifiers>
287
288 =back
289
290 =head1 BUGS
291
292 All complex software has bugs lurking in it, and this module is no
293 exception. If you find a bug please either email me, or add the bug
294 to cpan-RT.
295
296 =head1 AUTHOR
297
298 Stevan Little E<lt>stevan@iinteractive.comE<gt>
299
300 =head1 COPYRIGHT AND LICENSE
301
302 Copyright 2006-2009 by Infinity Interactive, Inc.
303
304 L<http://www.iinteractive.com>
305
306 This library is free software; you can redistribute it and/or modify
307 it under the same terms as Perl itself.
308
309 =cut
310