No base.pm
[gitmo/Mouse.git] / lib / Mouse / Meta / Role.pm
1 package Mouse::Meta::Role;
2 use strict;
3 use warnings;
4
5 use Mouse::Util qw(not_supported english_list);
6 use Mouse::Meta::Module;
7 our @ISA = qw(Mouse::Meta::Module);
8
9 sub method_metaclass(){ 'Mouse::Meta::Role::Method' } # required for get_method()
10
11 sub _construct_meta {
12     my $class = shift;
13
14     my %args  = @_;
15
16     $args{methods}          ||= {};
17     $args{attributes}       ||= {};
18     $args{required_methods} ||= [];
19     $args{roles}            ||= [];
20
21 #    return Mouse::Meta::Class->initialize($class)->new_object(%args)
22 #        if $class ne __PACKAGE__;
23
24     return bless \%args, ref($class) || $class;
25 }
26
27 sub create_anon_role{
28     my $self = shift;
29     return $self->create(undef, @_);
30 }
31
32 sub is_anon_role{
33     return exists $_[0]->{anon_serial_id};
34 }
35
36 sub get_roles { $_[0]->{roles} }
37
38 sub get_required_method_list{
39     return @{ $_[0]->{required_methods} };
40 }
41
42 sub add_required_methods {
43     my($self, @methods) = @_;
44     push @{$self->{required_methods}}, @methods;
45 }
46
47 sub requires_method {
48     my($self, $name) = @_;
49     return scalar( grep{ $_ eq $name } @{ $self->{required_methods} } ) != 0;
50 }
51
52 sub add_attribute {
53     my $self = shift;
54     my $name = shift;
55
56     $self->{attributes}->{$name} = (@_ == 1) ? $_[0] : { @_ };
57 }
58
59 sub _canonicalize_apply_args{
60     my($self, $applicant, %args) = @_;
61
62     if($applicant->isa('Mouse::Meta::Class')){
63         $args{_to} = 'class';
64     }
65     elsif($applicant->isa('Mouse::Meta::Role')){
66         $args{_to} = 'role';
67     }
68     else{
69         $args{_to} = 'instance';
70
71         not_supported 'Application::ToInstance';
72     }
73
74     if($args{alias} && !exists $args{-alias}){
75         $args{-alias} = $args{alias};
76     }
77     if($args{excludes} && !exists $args{-excludes}){
78         $args{-excludes} = $args{excludes};
79     }
80
81     if(my $excludes = $args{-excludes}){
82         $args{-excludes} = {}; # replace with a hash ref
83         if(ref $excludes){
84             %{$args{-excludes}} = (map{ $_ => undef } @{$excludes});
85         }
86         else{
87             $args{-excludes}{$excludes} = undef;
88         }
89     }
90
91     return \%args;
92 }
93
94 sub _check_required_methods{
95     my($role, $class, $args, @other_roles) = @_;
96
97     if($args->{_to} eq 'class'){
98         my $class_name = $class->name;
99         my $role_name  = $role->name;
100         my @missing;
101         foreach my $method_name(@{$role->{required_methods}}){
102             if(!$class_name->can($method_name)){
103                 my $has_method      = 0;
104
105                 foreach my $another_role_spec(@other_roles){
106                     my $another_role_name = $another_role_spec->[0];
107                     if($role_name ne $another_role_name && $another_role_name->can($method_name)){
108                         $has_method = 1;
109                         last;
110                     }
111                 }
112
113                 push @missing, $method_name if !$has_method;
114             }
115         }
116         if(@missing){
117             $class->throw_error("'$role_name' requires the "
118                 . (@missing == 1 ? 'method' : 'methods')
119                 . " "
120                 . english_list(map{ sprintf q{'%s'}, $_ } @missing)
121                 . " to be implemented by '$class_name'");
122         }
123     }
124     elsif($args->{_to} eq 'role'){
125         # apply role($role) to role($class)
126         foreach my $method_name($role->get_required_method_list){
127             next if $class->has_method($method_name); # already has it
128             $class->add_required_methods($method_name);
129         }
130     }
131
132     return;
133 }
134
135 sub _apply_methods{
136     my($role, $class, $args) = @_;
137
138     my $role_name  = $role->name;
139     my $class_name = $class->name;
140
141     my $alias    = $args->{-alias};
142     my $excludes = $args->{-excludes};
143
144     foreach my $method_name($role->get_method_list){
145         next if $method_name eq 'meta';
146
147         my $code = $role_name->can($method_name);
148
149         if(!exists $excludes->{$method_name}){
150             if(!$class->has_method($method_name)){
151                 $class->add_method($method_name => $code);
152             }
153         }
154
155         if($alias && $alias->{$method_name}){
156             my $dstname = $alias->{$method_name};
157
158             my $dstcode = do{ no strict 'refs'; *{$class_name . '::' . $dstname}{CODE} };
159
160             if(defined($dstcode) && $dstcode != $code){
161                 $class->throw_error("Cannot create a method alias if a local method of the same name exists");
162             }
163             else{
164                 $class->add_method($dstname => $code);
165             }
166         }
167     }
168
169     return;
170 }
171
172 sub _apply_attributes{
173     my($role, $class, $args) = @_;
174
175     if ($args->{_to} eq 'class') {
176         # apply role to class
177         for my $attr_name ($role->get_attribute_list) {
178             next if $class->has_attribute($attr_name);
179
180             my $spec = $role->get_attribute($attr_name);
181
182             $class->add_attribute($attr_name => %{$spec});
183         }
184     }
185     elsif($args->{_to} eq 'role'){
186         # apply role to role
187         for my $attr_name ($role->get_attribute_list) {
188             next if $class->has_attribute($attr_name);
189
190             my $spec = $role->get_attribute($attr_name);
191             $class->add_attribute($attr_name => $spec);
192         }
193     }
194
195     return;
196 }
197
198 sub _apply_modifiers{
199     my($role, $class, $args) = @_;
200
201     for my $modifier_type (qw/override before around after/) {
202         my $add_modifier = "add_${modifier_type}_method_modifier";
203         my $modifiers    = $role->{"${modifier_type}_method_modifiers"};
204
205         while(my($method_name, $modifier_codes) = each %{$modifiers}){
206             foreach my $code(ref($modifier_codes) eq 'ARRAY' ? @{$modifier_codes} : $modifier_codes){
207                 $class->$add_modifier($method_name => $code);
208             }
209         }
210     }
211     return;
212 }
213
214 sub _append_roles{
215     my($role, $class, $args) = @_;
216
217     my $roles = ($args->{_to} eq 'class') ? $class->roles : $class->get_roles;
218
219     foreach my $r($role, @{$role->get_roles}){
220         if(!$class->does_role($r->name)){
221             push @{$roles}, $r;
222         }
223     }
224     return;
225 }
226
227 # Moose uses Application::ToInstance, Application::ToClass, Application::ToRole
228 sub apply {
229     my $self      = shift;
230     my $applicant = shift;
231
232     my $args = $self->_canonicalize_apply_args($applicant, @_);
233
234     $self->_check_required_methods($applicant, $args);
235     $self->_apply_methods($applicant, $args);
236     $self->_apply_attributes($applicant, $args);
237     $self->_apply_modifiers($applicant, $args);
238     $self->_append_roles($applicant, $args);
239     return;
240 }
241
242 sub combine_apply {
243     my(undef, $class, @roles) = @_;
244
245     if($class->isa('Mouse::Object')){
246         not_supported 'Application::ToInstance';
247     }
248
249     # check conflicting
250     my %method_provided;
251     my @method_conflicts;
252     my %attr_provided;
253     my %override_provided;
254
255     foreach my $role_spec (@roles) {
256         my $role      = $role_spec->[0]->meta;
257         my $role_name = $role->name;
258
259         # methods
260         foreach my $method_name($role->get_method_list){
261             next if $class->has_method($method_name); # manually resolved
262
263             my $code = do{ no strict 'refs'; \&{ $role_name . '::' . $method_name } };
264
265             my $c = $method_provided{$method_name};
266
267             if($c && $c->[0] != $code){
268                 push @{$c}, $role;
269                 push @method_conflicts, $c;
270             }
271             else{
272                 $method_provided{$method_name} = [$code, $method_name, $role];
273             }
274         }
275
276         # attributes
277         foreach my $attr_name($role->get_attribute_list){
278             my $attr = $role->get_attribute($attr_name);
279             my $c    = $attr_provided{$attr_name};
280             if($c && $c != $attr){
281                 $class->throw_error("We have encountered an attribute conflict with '$attr_name' "
282                                    . "during composition. This is fatal error and cannot be disambiguated.")
283             }
284             else{
285                 $attr_provided{$attr_name} = $attr;
286             }
287         }
288
289         # override modifiers
290         foreach my $method_name($role->get_method_modifier_list('override')){
291             my $override = $role->get_override_method_modifier($method_name);
292             my $c        = $override_provided{$method_name};
293             if($c && $c != $override){
294                 $class->throw_error( "We have encountered an 'override' method conflict with '$method_name' during "
295                                    . "composition (Two 'override' methods of the same name encountered). "
296                                    . "This is fatal error.")
297             }
298             else{
299                 $override_provided{$method_name} = $override;
300             }
301         }
302     }
303     if(@method_conflicts){
304         my $error;
305
306         if(@method_conflicts == 1){
307             my($code, $method_name, @roles) = @{$method_conflicts[0]};
308             $class->throw_error(
309                 sprintf q{Due to a method name conflict in roles %s, the method '%s' must be implemented or excluded by '%s'},
310                     english_list(map{ sprintf q{'%s'}, $_->name } @roles), $method_name, $class->name
311             );
312         }
313         else{
314             @method_conflicts = sort { $a->[0] cmp $b->[0] } @method_conflicts; # to avoid hash-ordering bugs
315             my $methods = english_list(map{ sprintf q{'%s'}, $_->[1] } @method_conflicts);
316             my $roles   = english_list(
317                 map{ sprintf q{'%s'}, $_->name }
318                 map{ my($code, $method_name, @roles) = @{$_}; @roles } @method_conflicts
319             );
320
321             $class->throw_error(
322                 sprintf q{Due to method name conflicts in roles %s, the methods %s must be implemented or excluded by '%s'},
323                     $roles, $methods, $class->name
324             );
325         }
326     }
327
328     foreach my $role_spec (@roles) {
329         my($role_name, $args) = @{$role_spec};
330
331         my $role = $role_name->meta;
332
333         $args = $role->_canonicalize_apply_args($class, %{$args});
334
335         $role->_check_required_methods($class, $args, @roles);
336         $role->_apply_methods($class, $args);
337         $role->_apply_attributes($class, $args);
338         $role->_apply_modifiers($class, $args);
339         $role->_append_roles($class, $args);
340     }
341     return;
342 }
343
344 for my $modifier_type (qw/before after around/) {
345
346     my $modifier = "${modifier_type}_method_modifiers";
347     my $add_method_modifier =  sub {
348         my ($self, $method_name, $method) = @_;
349
350         push @{ $self->{$modifier}->{$method_name} ||= [] }, $method;
351         return;
352     };
353     my $has_method_modifiers = sub{
354         my($self, $method_name) = @_;
355         my $m = $self->{$modifier}->{$method_name};
356         return $m && @{$m} != 0;
357     };
358     my $get_method_modifiers = sub {
359         my ($self, $method_name) = @_;
360         return @{ $self->{$modifier}->{$method_name} ||= [] }
361     };
362
363     no strict 'refs';
364     *{ 'add_' . $modifier_type . '_method_modifier'  } = $add_method_modifier;
365     *{ 'has_' . $modifier_type . '_method_modifiers' } = $has_method_modifiers;
366     *{ 'get_' . $modifier_type . '_method_modifiers' } = $get_method_modifiers;
367 }
368
369 sub add_override_method_modifier{
370     my($self, $method_name, $method) = @_;
371
372     if($self->has_method($method_name)){
373         # This error happens in the override keyword or during role composition,
374         # so I added a message, "A local method of ...", only for compatibility (gfx)
375         $self->throw_error("Cannot add an override of method '$method_name' "
376                    . "because there is a local version of '$method_name'"
377                    . "(A local method of the same name as been found)");
378     }
379
380     $self->{override_method_modifiers}->{$method_name} = $method;
381 }
382
383 sub has_override_method_modifier {
384     my ($self, $method_name) = @_;
385     return exists $self->{override_method_modifiers}->{$method_name};
386 }
387
388 sub get_override_method_modifier {
389     my ($self, $method_name) = @_;
390     return $self->{override_method_modifiers}->{$method_name};
391 }
392
393 sub get_method_modifier_list {
394     my($self, $modifier_type) = @_;
395
396     return keys %{ $self->{$modifier_type . '_method_modifiers'} };
397 }
398
399 # This is currently not passing all the Moose tests.
400 sub does_role {
401     my ($self, $role_name) = @_;
402
403     (defined $role_name)
404         || $self->throw_error("You must supply a role name to look for");
405
406     # if we are it,.. then return true
407     return 1 if $role_name eq $self->name;
408     # otherwise.. check our children
409     for my $role (@{ $self->get_roles }) {
410         return 1 if $role->does_role($role_name);
411     }
412     return 0;
413 }
414
415
416 1;
417
418 __END__
419
420 =head1 NAME
421
422 Mouse::Meta::Role - The Mouse Role metaclass
423
424 =head1 SEE ALSO
425
426 L<Moose::Meta::Role>
427
428 =cut