cleaning up and working on the spec a bit
[gitmo/Moose.git] / lib / Moose / Meta / Role / Application / RoleSummation.pm
CommitLineData
fb1e11d5 1package Moose::Meta::Role::Application::RoleSummation;
2
3use strict;
4use warnings;
5use metaclass;
6
7use Carp 'confess';
8use Scalar::Util 'blessed';
9use Data::Dumper;
10
11use Moose::Meta::Role::Composite;
12
13our $VERSION = '0.01';
14our $AUTHORITY = 'cpan:STEVAN';
15
16use base 'Moose::Meta::Role::Application';
17
18# stolen from List::MoreUtils ...
19my $uniq = sub { my %h; map { $h{$_}++ == 0 ? $_ : () } @_ };
20
21sub check_role_exclusions {
22 my ($self, $c) = @_;
23
24 my @all_excluded_roles = $uniq->(map {
25 $_->get_excluded_roles_list
26 } @{$c->get_roles});
27
28 foreach my $role (@{$c->get_roles}) {
29 foreach my $excluded (@all_excluded_roles) {
30 confess "Conflict detected: " . $role->name . " excludes role '" . $excluded . "'"
31 if $role->does_role($excluded);
32 }
33 }
34
35 $c->add_excluded_roles(@all_excluded_roles);
36}
37
38sub check_required_methods {
39 my ($self, $c) = @_;
40
41 my %all_required_methods = map { $_ => undef } $uniq->(map {
42 $_->get_required_method_list
43 } @{$c->get_roles});
44
45 foreach my $role (@{$c->get_roles}) {
46 foreach my $required (keys %all_required_methods) {
47 delete $all_required_methods{$required}
48 if $role->has_method($required);
49 }
50 }
51
52 $c->add_required_methods(keys %all_required_methods);
53}
54
709c321c 55sub check_required_attributes {
56
57}
58
fb1e11d5 59sub apply_attributes {
60 my ($self, $c) = @_;
61
62 my @all_attributes = map {
63 my $role = $_;
64 map {
65 +{
66 name => $_,
67 attr => $role->get_attribute($_),
68 }
69 } $role->get_attribute_list
70 } @{$c->get_roles};
71
72 my %seen;
73 foreach my $attr (@all_attributes) {
74 if (exists $seen{$attr->{name}}) {
75 confess "We have encountered an attribute conflict with '" . $attr->{name} . "'"
76 . "during composition. This is fatal error and cannot be disambiguated."
77 if $seen{$attr->{name}} != $attr->{attr};
78 }
79 $seen{$attr->{name}} = $attr->{attr};
80 }
81
82 foreach my $attr (@all_attributes) {
83 $c->add_attribute($attr->{name}, $attr->{attr});
84 }
85}
86
87sub apply_methods {
88 my ($self, $c) = @_;
89
90 my @all_methods = map {
91 my $role = $_;
92 map {
93 +{
94 name => $_,
95 method => $role->get_method($_),
96 }
97 } $role->get_method_list;
98 } @{$c->get_roles};
99
100 my (%seen, %method_map);
101 foreach my $method (@all_methods) {
102 if (exists $seen{$method->{name}}) {
103 if ($seen{$method->{name}}->body != $method->{method}->body) {
104 $c->add_required_methods($method->{name});
105 delete $method_map{$method->{name}};
106 next;
107 }
108 }
109 $seen{$method->{name}} = $method->{method};
110 $method_map{$method->{name}} = $method->{method};
111 }
112
113 $c->alias_method($_ => $method_map{$_}) for keys %method_map;
114}
115
116sub apply_override_method_modifiers {
117 my ($self, $c) = @_;
118
119 my @all_overrides = map {
120 my $role = $_;
121 map {
122 +{
123 name => $_,
124 method => $role->get_override_method_modifier($_),
125 }
126 } $role->get_method_modifier_list('override');
127 } @{$c->get_roles};
128
129 my %seen;
130 foreach my $override (@all_overrides) {
131 confess "Role '" . $c->name . "' has encountered an 'override' method conflict " .
132 "during composition (A local method of the same name as been found). This " .
133 "is fatal error."
134 if $c->has_method($override->{name});
135 if (exists $seen{$override->{name}}) {
136 confess "We have encountered an 'override' method conflict during " .
137 "composition (Two 'override' methods of the same name encountered). " .
138 "This is fatal error."
139 if $seen{$override->{name}} != $override->{method};
140 }
141 $seen{$override->{name}} = $override->{method};
142 }
143
144 $c->add_override_method_modifier(
145 $_->{name}, $_->{method}
146 ) for @all_overrides;
147
148}
149
150sub apply_method_modifiers {
151 my ($self, $modifier_type, $c) = @_;
152 my $add = "add_${modifier_type}_method_modifier";
153 my $get = "get_${modifier_type}_method_modifiers";
154 foreach my $role (@{$c->get_roles}) {
155 foreach my $method_name ($role->get_method_modifier_list($modifier_type)) {
156 $c->$add(
157 $method_name,
158 $_
159 ) foreach $role->$get($method_name);
160 }
161 }
162}
163
fb1e11d5 1641;
165
166__END__
167
168=pod
169
170=head1 NAME
171
172Moose::Meta::Role::Application::RoleSummation
173
174=head1 DESCRIPTION
175
176Summation composes two traits, forming the union of non-conflicting
177bindings and 'disabling' the conflicting bindings
178
179=head2 METHODS
180
181=over 4
182
183=item B<new>
184
185=item B<meta>
186
187=item B<apply>
188
709c321c 189=item B<check_role_exclusions>
190
fb1e11d5 191=item B<check_required_methods>
192
709c321c 193=item B<check_required_attributes>
fb1e11d5 194
195=item B<apply_attributes>
196
197=item B<apply_methods>
198
199=item B<apply_method_modifiers>
200
fb1e11d5 201=item B<apply_override_method_modifiers>
202
203=back
204
205=head1 BUGS
206
207All complex software has bugs lurking in it, and this module is no
208exception. If you find a bug please either email me, or add the bug
209to cpan-RT.
210
211=head1 AUTHOR
212
213Stevan Little E<lt>stevan@iinteractive.comE<gt>
214
215=head1 COPYRIGHT AND LICENSE
216
778db3ac 217Copyright 2006-2008 by Infinity Interactive, Inc.
fb1e11d5 218
219L<http://www.iinteractive.com>
220
221This library is free software; you can redistribute it and/or modify
222it under the same terms as Perl itself.
223
224=cut
225