Method::Required->name is required
[gitmo/Moose.git] / lib / Moose / Meta / Role / Application / ToClass.pm
CommitLineData
fb1e11d5 1package Moose::Meta::Role::Application::ToClass;
2
3use strict;
4use warnings;
5use metaclass;
6
d939e016 7use Moose::Util 'english_list';
154a4aae 8use Scalar::Util 'weaken', 'blessed';
fb1e11d5 9
dbe21639 10our $VERSION = '0.79';
e606ae5f 11$VERSION = eval $VERSION;
fb1e11d5 12our $AUTHORITY = 'cpan:STEVAN';
13
14use base 'Moose::Meta::Role::Application';
15
ff9c4953 16__PACKAGE__->meta->add_attribute('role' => (
17 reader => 'role',
ff9c4953 18));
19
20__PACKAGE__->meta->add_attribute('class' => (
21 reader => 'class',
ff9c4953 22));
23
1c9db35c 24sub apply {
d03bd989 25 my ($self, $role, $class) = @_;
ff9c4953 26
154a4aae 27 # We need weak_ref in CMOP :(
28 weaken($self->{role} = $role);
29 weaken($self->{class} = $class);
ff9c4953 30
1c9db35c 31 $self->SUPER::apply($role, $class);
a9b63d79 32
d03bd989 33 $class->add_role($role);
a9b63d79 34 $class->add_role_application($self);
1c9db35c 35}
36
37sub check_role_exclusions {
38 my ($self, $role, $class) = @_;
39 if ($class->excludes_role($role->name)) {
4c0b3599 40 $class->throw_error("Conflict detected: " . $class->name . " excludes role '" . $role->name . "'");
1c9db35c 41 }
42 foreach my $excluded_role_name ($role->get_excluded_roles_list) {
43 if ($class->does_role($excluded_role_name)) {
4c0b3599 44 $class->throw_error("The class " . $class->name . " does the excluded role '$excluded_role_name'");
1c9db35c 45 }
46 }
47}
48
49sub check_required_methods {
50 my ($self, $role, $class) = @_;
d939e016 51
52 my @missing;
53 my @is_attr;
54
1c9db35c 55 # NOTE:
56 # we might need to move this down below the
57 # the attributes so that we can require any
58 # attribute accessors. However I am thinking
59 # that maybe those are somehow exempt from
60 # the require methods stuff.
92b7f727 61 foreach my $required_method ($role->get_required_method_list) {
62 my $required_method_name = $required_method->name;
1c9db35c 63
3e19778d 64 if (!$class->find_method_by_name($required_method_name)) {
d03bd989 65
3e19778d 66 next if $self->is_aliased_method($required_method_name);
d939e016 67
92b7f727 68 push @missing, $required_method;
1c9db35c 69 }
1c9db35c 70 }
d939e016 71
f3e76c8f 72 return unless @missing;
d939e016 73
74 my $error = '';
75
76 if (@missing) {
77 my $noun = @missing == 1 ? 'method' : 'methods';
78
79 my $list
80 = Moose::Util::english_list( map { q{'} . $_ . q{'} } @missing );
81
82 $error
83 .= q{'}
84 . $role->name
85 . "' requires the $noun $list "
86 . "to be implemented by '"
87 . $class->name . q{'};
88 }
89
d939e016 90 $class->throw_error($error);
1c9db35c 91}
92
709c321c 93sub check_required_attributes {
d03bd989 94
709c321c 95}
96
1c9db35c 97sub apply_attributes {
98 my ($self, $role, $class) = @_;
99 foreach my $attribute_name ($role->get_attribute_list) {
100 # it if it has one already
101 if ($class->has_attribute($attribute_name) &&
102 # make sure we haven't seen this one already too
103 $class->get_attribute($attribute_name) != $role->get_attribute($attribute_name)) {
104 next;
105 }
106 else {
d7d8a8c7 107 $class->add_attribute(
108 $attribute_name,
109 $role->get_attribute($attribute_name)
110 );
1c9db35c 111 }
112 }
113}
114
115sub apply_methods {
116 my ($self, $role, $class) = @_;
117 foreach my $method_name ($role->get_method_list) {
d03bd989 118
f5b6d42e 119 unless ($self->is_method_excluded($method_name)) {
120 # it if it has one already
121 if ($class->has_method($method_name) &&
122 # and if they are not the same thing ...
123 $class->get_method($method_name)->body != $role->get_method($method_name)->body) {
124 next;
125 }
126 else {
6549b0d1 127 # add it, although it could be overridden
f5b6d42e 128 $class->add_method(
129 $method_name,
130 $role->get_method($method_name)
d03bd989 131 );
f5b6d42e 132 }
1c9db35c 133 }
d03bd989 134
43a41ede 135 if ($self->is_method_aliased($method_name)) {
136 my $aliased_method_name = $self->get_method_aliases->{$method_name};
137 # it if it has one already
138 if ($class->has_method($aliased_method_name) &&
139 # and if they are not the same thing ...
140 $class->get_method($aliased_method_name)->body != $role->get_method($method_name)->body) {
4c0b3599 141 $class->throw_error("Cannot create a method alias if a local method of the same name exists");
d03bd989 142 }
87e63626 143 $class->add_method(
43a41ede 144 $aliased_method_name,
145 $role->get_method($method_name)
d03bd989 146 );
147 }
1c9db35c 148 }
149 # we must reset the cache here since
150 # we are just aliasing methods, otherwise
151 # the modifiers go wonky.
d03bd989 152 $class->reset_package_cache_flag;
1c9db35c 153}
154
155sub apply_override_method_modifiers {
156 my ($self, $role, $class) = @_;
157 foreach my $method_name ($role->get_method_modifier_list('override')) {
158 # it if it has one already then ...
159 if ($class->has_method($method_name)) {
160 next;
161 }
162 else {
163 # if this is not a role, then we need to
164 # find the original package of the method
165 # so that we can tell the class were to
166 # find the right super() method
167 my $method = $role->get_override_method_modifier($method_name);
168 my ($package) = Class::MOP::get_code_info($method);
169 # if it is a class, we just add it
170 $class->add_override_method_modifier($method_name, $method, $package);
171 }
172 }
173}
174
175sub apply_method_modifiers {
176 my ($self, $modifier_type, $role, $class) = @_;
177 my $add = "add_${modifier_type}_method_modifier";
178 my $get = "get_${modifier_type}_method_modifiers";
179 foreach my $method_name ($role->get_method_modifier_list($modifier_type)) {
180 $class->$add(
181 $method_name,
182 $_
183 ) foreach $role->$get($method_name);
184 }
185}
186
fb1e11d5 1871;
188
189__END__
190
191=pod
192
193=head1 NAME
194
ab76842e 195Moose::Meta::Role::Application::ToClass - Compose a role into a class
fb1e11d5 196
197=head1 DESCRIPTION
198
199=head2 METHODS
200
201=over 4
202
203=item B<new>
204
205=item B<meta>
206
1c9db35c 207=item B<apply>
208
709c321c 209=item B<check_role_exclusions>
210
1c9db35c 211=item B<check_required_methods>
212
709c321c 213=item B<check_required_attributes>
1c9db35c 214
215=item B<apply_attributes>
216
217=item B<apply_methods>
218
219=item B<apply_method_modifiers>
220
1c9db35c 221=item B<apply_override_method_modifiers>
222
fb1e11d5 223=back
224
225=head1 BUGS
226
227All complex software has bugs lurking in it, and this module is no
228exception. If you find a bug please either email me, or add the bug
229to cpan-RT.
230
231=head1 AUTHOR
232
233Stevan Little E<lt>stevan@iinteractive.comE<gt>
234
235=head1 COPYRIGHT AND LICENSE
236
2840a3b2 237Copyright 2006-2009 by Infinity Interactive, Inc.
fb1e11d5 238
239L<http://www.iinteractive.com>
240
241This library is free software; you can redistribute it and/or modify
242it under the same terms as Perl itself.
243
244=cut
245