Fix a testname (poe-coverage-moose.t -> pod-coverage-moose.t)
[gitmo/Mouse.git] / lib / Mouse / Meta / Role.pm
CommitLineData
a2227e71 1package Mouse::Meta::Role;
bc69ee88 2use Mouse::Util qw(:meta not_supported english_list); # enables strict and warnings
74be9f76 3
6d28c5cf 4use Mouse::Meta::Module;
f3bb863f 5our @ISA = qw(Mouse::Meta::Module);
a2227e71 6
6cfa1e5e 7sub method_metaclass(){ 'Mouse::Meta::Role::Method' } # required for get_method()
8
8e64d0fa 9sub _construct_meta {
acf0f643 10 my $class = shift;
7a50b450 11
acf0f643 12 my %args = @_;
13
3a63a2e7 14 $args{methods} ||= {};
59089ec3 15 $args{attributes} ||= {};
16 $args{required_methods} ||= [];
47f36c05 17 $args{roles} ||= [];
274b6cce 18
9009aca1 19 my $self = bless \%args, ref($class) || $class;
20 if($class ne __PACKAGE__){
21 $self->meta->_initialize_object($self, \%args);
22 }
7a50b450 23
9009aca1 24 return $self;
7a50b450 25}
26
27sub create_anon_role{
28 my $self = shift;
29 return $self->create(undef, @_);
30}
31
32sub is_anon_role{
33 return exists $_[0]->{anon_serial_id};
acf0f643 34}
a2227e71 35
afc73948 36sub get_roles { $_[0]->{roles} }
37
6cfa1e5e 38sub get_required_method_list{
39 return @{ $_[0]->{required_methods} };
40}
afc73948 41
59089ec3 42sub add_required_methods {
ea249879 43 my($self, @methods) = @_;
71e7b544 44 my %required = map{ $_ => 1 } @{$self->{required_methods}};
45 push @{$self->{required_methods}}, grep{ !$required{$_}++ && !$self->has_method($_) } @methods;
46 return;
59089ec3 47}
48
6cfa1e5e 49sub requires_method {
50 my($self, $name) = @_;
51 return scalar( grep{ $_ eq $name } @{ $self->{required_methods} } ) != 0;
52}
53
274b6cce 54sub add_attribute {
55 my $self = shift;
56 my $name = shift;
6cfa1e5e 57
58 $self->{attributes}->{$name} = (@_ == 1) ? $_[0] : { @_ };
c9313657 59 return;
da0c885d 60}
61
3a63a2e7 62sub _check_required_methods{
71e7b544 63 my($role, $applicant, $args) = @_;
3a63a2e7 64
71e7b544 65 if($args->{_to} eq 'role'){
66 $applicant->add_required_methods($role->get_required_method_list);
67 }
68 else{ # to class or instance
2d2e77f9 69 my $applicant_class_name = $applicant->name;
70
7a50b450 71 my @missing;
3a63a2e7 72 foreach my $method_name(@{$role->{required_methods}}){
2d2e77f9 73 next if exists $args->{aliased_methods}{$method_name};
74 next if exists $role->{methods}{$method_name};
75 next if $applicant_class_name->can($method_name);
76
77 push @missing, $method_name;
3a63a2e7 78 }
7a50b450 79 if(@missing){
2d2e77f9 80 $role->throw_error(sprintf "'%s' requires the method%s %s to be implemented by '%s'",
81 $role->name,
82 (@missing == 1 ? '' : 's'), # method or methods
83 english_list(map{ sprintf q{'%s'}, $_ } @missing),
84 $applicant_class_name);
7a50b450 85 }
86 }
2e92bb89 87
3a63a2e7 88 return;
2e92bb89 89}
90
3a63a2e7 91sub _apply_methods{
71e7b544 92 my($role, $applicant, $args) = @_;
da0c885d 93
7a50b450 94 my $alias = $args->{-alias};
95 my $excludes = $args->{-excludes};
e0b163e1 96
3a63a2e7 97 foreach my $method_name($role->get_method_list){
98 next if $method_name eq 'meta';
99
71e7b544 100 my $code = $role->get_method_body($method_name);
6cfa1e5e 101
2d2e77f9 102 if(!exists $excludes->{$method_name}){
71e7b544 103 if(!$applicant->has_method($method_name)){
2d2e77f9 104 # The third argument $role is used in Role::Composite
71e7b544 105 $applicant->add_method($method_name => $code, $role);
6cfa1e5e 106 }
2e92bb89 107 }
2e92bb89 108
2d2e77f9 109 if(exists $alias->{$method_name}){
3a63a2e7 110 my $dstname = $alias->{$method_name};
6cfa1e5e 111
71e7b544 112 my $dstcode = $applicant->get_method_body($dstname);
7a50b450 113
114 if(defined($dstcode) && $dstcode != $code){
71e7b544 115 $role->throw_error("Cannot create a method alias if a local method of the same name exists");
21498b08 116 }
3a63a2e7 117 else{
71e7b544 118 $applicant->add_method($dstname => $code, $role);
2e92bb89 119 }
59089ec3 120 }
121 }
122
3a63a2e7 123 return;
124}
125
126sub _apply_attributes{
71e7b544 127 my($role, $applicant, $args) = @_;
3a63a2e7 128
71e7b544 129 for my $attr_name ($role->get_attribute_list) {
130 next if $applicant->has_attribute($attr_name);
3a63a2e7 131
71e7b544 132 $applicant->add_attribute($attr_name => $role->get_attribute($attr_name));
da0c885d 133 }
3a63a2e7 134 return;
135}
136
137sub _apply_modifiers{
71e7b544 138 my($role, $applicant, $args) = @_;
3a63a2e7 139
2d2e77f9 140 if(my $modifiers = $role->{override_method_modifiers}){
141 foreach my $method_name (keys %{$modifiers}){
142 $applicant->add_override_method_modifier($method_name => $modifiers->{$method_name});
143 }
144 }
145
146 for my $modifier_type (qw/before around after/) {
71e7b544 147 my $modifiers = $role->{"${modifier_type}_method_modifiers"}
148 or next;
149
3a63a2e7 150 my $add_modifier = "add_${modifier_type}_method_modifier";
d99db7b6 151
71e7b544 152 foreach my $method_name (keys %{$modifiers}){
2d2e77f9 153 foreach my $code(@{ $modifiers->{$method_name} }){
154 next if $applicant->{"_applied_$modifier_type"}{$method_name, $code}++; # skip applied modifiers
71e7b544 155 $applicant->$add_modifier($method_name => $code);
d99db7b6 156 }
157 }
158 }
3a63a2e7 159 return;
da0c885d 160}
0fc8adbc 161
3a63a2e7 162sub _append_roles{
71e7b544 163 my($role, $applicant, $args) = @_;
21498b08 164
71e7b544 165 my $roles = ($args->{_to} eq 'role') ? $applicant->get_roles : $applicant->roles;
3a63a2e7 166
167 foreach my $r($role, @{$role->get_roles}){
71e7b544 168 if(!$applicant->does_role($r->name)){
3a63a2e7 169 push @{$roles}, $r;
21498b08 170 }
171 }
3a63a2e7 172 return;
173}
21498b08 174
3a63a2e7 175# Moose uses Application::ToInstance, Application::ToClass, Application::ToRole
176sub apply {
7a50b450 177 my $self = shift;
178 my $applicant = shift;
7a50b450 179
71e7b544 180 my %args = (@_ == 1) ? %{ $_[0] } : @_;
60b5c3be 181
f774b7de 182 my $instance;
183
71e7b544 184 if($applicant->isa('Mouse::Meta::Class')){ # Application::ToClass
185 $args{_to} = 'class';
186 }
187 elsif($applicant->isa('Mouse::Meta::Role')){ # Application::ToRole
188 $args{_to} = 'role';
189 }
190 else{ # Appplication::ToInstance
191 $args{_to} = 'instance';
f774b7de 192 $instance = $applicant;
60b5c3be 193
f774b7de 194 $applicant = (Mouse::Util::class_of($instance) || 'Mouse::Meta::Class')->create_anon_class(
195 superclasses => [ref $instance],
71e7b544 196 cache => 1,
197 );
71e7b544 198 }
60b5c3be 199
71e7b544 200 if($args{alias} && !exists $args{-alias}){
201 $args{-alias} = $args{alias};
202 }
203 if($args{excludes} && !exists $args{-excludes}){
204 $args{-excludes} = $args{excludes};
205 }
60b5c3be 206
2d2e77f9 207 $args{aliased_methods} = {};
71e7b544 208 if(my $alias = $args{-alias}){
2d2e77f9 209 @{$args{aliased_methods}}{ values %{$alias} } = ();
60b5c3be 210 }
71e7b544 211
212 if(my $excludes = $args{-excludes}){
213 $args{-excludes} = {}; # replace with a hash ref
214 if(ref $excludes){
215 %{$args{-excludes}} = (map{ $_ => undef } @{$excludes});
60b5c3be 216 }
217 else{
71e7b544 218 $args{-excludes}{$excludes} = undef;
60b5c3be 219 }
220 }
221
71e7b544 222 $self->_check_required_methods($applicant, \%args);
223 $self->_apply_attributes($applicant, \%args);
224 $self->_apply_methods($applicant, \%args);
225 $self->_apply_modifiers($applicant, \%args);
226 $self->_append_roles($applicant, \%args);
f774b7de 227
228
229 if(defined $instance){ # Application::ToInstance
230 # rebless instance
231 bless $instance, $applicant->name;
232 $applicant->_initialize_object($instance, $instance);
233 }
234
71e7b544 235 return;
236}
237
21498b08 238
71e7b544 239sub combine {
240 my($role_class, @role_specs) = @_;
21498b08 241
71e7b544 242 require 'Mouse/Meta/Role/Composite.pm'; # we don't want to create its namespace
7a50b450 243
71e7b544 244 my $composite = Mouse::Meta::Role::Composite->create_anon_role();
245
246 foreach my $role_spec (@role_specs) {
247 my($role_name, $args) = @{$role_spec};
248 $role_name->meta->apply($composite, %{$args});
21498b08 249 }
71e7b544 250 return $composite;
21498b08 251}
252
6cfa1e5e 253for my $modifier_type (qw/before after around/) {
3a63a2e7 254
255 my $modifier = "${modifier_type}_method_modifiers";
c9313657 256
3a63a2e7 257 my $add_method_modifier = sub {
fc0e0bbd 258 my ($self, $method_name, $method) = @_;
259
3a63a2e7 260 push @{ $self->{$modifier}->{$method_name} ||= [] }, $method;
261 return;
fc0e0bbd 262 };
c9313657 263
3a63a2e7 264 my $get_method_modifiers = sub {
265 my ($self, $method_name) = @_;
266 return @{ $self->{$modifier}->{$method_name} ||= [] }
c2f128e7 267 };
c2f128e7 268
3a63a2e7 269 no strict 'refs';
270 *{ 'add_' . $modifier_type . '_method_modifier' } = $add_method_modifier;
271 *{ 'get_' . $modifier_type . '_method_modifiers' } = $get_method_modifiers;
c9313657 272
273 # has_${modifier_type}_method_modifiers is moved into t::lib::Test::Mouse
3a63a2e7 274}
47f36c05 275
6cfa1e5e 276sub add_override_method_modifier{
277 my($self, $method_name, $method) = @_;
278
60b5c3be 279 if($self->has_method($method_name)){
280 # This error happens in the override keyword or during role composition,
281 # so I added a message, "A local method of ...", only for compatibility (gfx)
8e64d0fa 282 $self->throw_error("Cannot add an override of method '$method_name' "
60b5c3be 283 . "because there is a local version of '$method_name'"
284 . "(A local method of the same name as been found)");
285 }
6cfa1e5e 286
287 $self->{override_method_modifiers}->{$method_name} = $method;
288}
289
8e64d0fa 290sub get_override_method_modifier {
291 my ($self, $method_name) = @_;
292 return $self->{override_method_modifiers}->{$method_name};
6cfa1e5e 293}
294
67199842 295sub does_role {
296 my ($self, $role_name) = @_;
297
298 (defined $role_name)
fce211ae 299 || $self->throw_error("You must supply a role name to look for");
67199842 300
301 # if we are it,.. then return true
302 return 1 if $role_name eq $self->name;
3a63a2e7 303 # otherwise.. check our children
304 for my $role (@{ $self->get_roles }) {
67199842 305 return 1 if $role->does_role($role_name);
306 }
307 return 0;
308}
309
a2227e71 3101;
1820fffe 311__END__
312
313=head1 NAME
314
315Mouse::Meta::Role - The Mouse Role metaclass
316
a25ca8d6 317=head1 VERSION
318
9b9e4b65 319This document describes Mouse version 0.39
a25ca8d6 320
1820fffe 321=head1 SEE ALSO
322
323L<Moose::Meta::Role>
324
325=cut