Release commit for 1.002000
[gitmo/Moo.git] / lib / Moo / Role.pm
CommitLineData
d245e471 1package Moo::Role;
2
3use strictures 1;
4use Moo::_Utils;
5use base qw(Role::Tiny);
6
a047096b 7require Moo::sification;
8
d245e471 9BEGIN { *INFO = \%Role::Tiny::INFO }
10
11our %INFO;
12
108f8ddc 13sub _install_tracked {
14 my ($target, $name, $code) = @_;
15 $INFO{$target}{exports}{$name} = $code;
16 _install_coderef "${target}::${name}" => "Moo::Role::${name}" => $code;
17}
18
d245e471 19sub import {
20 my $target = caller;
6c49212f 21 my ($me) = @_;
d245e471 22 strictures->import;
1791ba32 23 if ($Moo::MAKERS{$target} and $Moo::MAKERS{$target}{is_class}) {
24 die "Cannot import Moo::Role into a Moo class";
25 }
fa93bfb2 26 $INFO{$target} ||= {};
d245e471 27 # get symbol table reference
28 my $stash = do { no strict 'refs'; \%{"${target}::"} };
108f8ddc 29 _install_tracked $target => has => sub {
1d17c7c1 30 my ($name_proto, %spec) = @_;
31 my $name_isref = ref $name_proto eq 'ARRAY';
32 foreach my $name ($name_isref ? @$name_proto : $name_proto) {
33 my $spec_ref = $name_isref ? +{%spec} : \%spec;
34 ($INFO{$target}{accessor_maker} ||= do {
35 require Method::Generate::Accessor;
36 Method::Generate::Accessor->new
37 })->generate_method($target, $name, $spec_ref);
38 push @{$INFO{$target}{attributes}||=[]}, $name, $spec_ref;
39 $me->_maybe_reset_handlemoose($target);
40 }
d245e471 41 };
6c49212f 42 # install before/after/around subs
43 foreach my $type (qw(before after around)) {
108f8ddc 44 _install_tracked $target => $type => sub {
6c49212f 45 require Class::Method::Modifiers;
46 push @{$INFO{$target}{modifiers}||=[]}, [ $type => @_ ];
47 $me->_maybe_reset_handlemoose($target);
48 };
49 }
108f8ddc 50 _install_tracked $target => requires => sub {
6c49212f 51 push @{$INFO{$target}{requires}||=[]}, @_;
52 $me->_maybe_reset_handlemoose($target);
53 };
108f8ddc 54 _install_tracked $target => with => sub {
6c49212f 55 $me->apply_roles_to_package($target, @_);
56 $me->_maybe_reset_handlemoose($target);
57 };
fa93bfb2 58 return if $INFO{$target}{is_role}; # already exported into this package
59 $INFO{$target}{is_role} = 1;
60 *{_getglob("${target}::meta")} = $me->can('meta');
6c49212f 61 # grab all *non-constant* (stash slot is not a scalarref) subs present
62 # in the symbol table and store their refaddrs (no need to forcibly
63 # inflate constant subs into real subs) - also add '' to here (this
64 # is used later) with a map to the coderefs in case of copying or re-use
65 my @not_methods = ('', map { *$_{CODE}||() } grep !ref($_), values %$stash);
66 @{$INFO{$target}{not_methods}={}}{@not_methods} = @not_methods;
67 # a role does itself
68 $Role::Tiny::APPLIED_TO{$target} = { $target => undef };
69
7f9775b1 70 if ($INC{'Moo/HandleMoose.pm'}) {
71 Moo::HandleMoose::inject_fake_metaclass_for($target);
72 }
6c49212f 73}
74
fa93bfb2 75# duplicate from Moo::Object
76sub meta {
77 require Moo::HandleMoose::FakeMetaClass;
78 my $class = ref($_[0])||$_[0];
79 bless({ name => $class }, 'Moo::HandleMoose::FakeMetaClass');
80}
81
108f8ddc 82sub unimport {
83 my $target = caller;
84 _unimport_coderefs($target, $INFO{$target});
85}
86
6c49212f 87sub _maybe_reset_handlemoose {
88 my ($class, $target) = @_;
89 if ($INC{"Moo/HandleMoose.pm"}) {
90 Moo::HandleMoose::maybe_reinject_fake_metaclass_for($target);
91 }
d245e471 92}
93
a84066c7 94sub _inhale_if_moose {
95 my ($self, $role) = @_;
96 _load_module($role);
c100c04c 97 my $meta;
98 if (!$INFO{$role}
99 and (
100 $INC{"Moose.pm"}
101 and $meta = Class::MOP::class_of($role)
102 )
103 or (
96b09f21 104 Mouse::Util->can('find_meta')
c100c04c 105 and $meta = Mouse::Util::find_meta($role)
106 )
107 ) {
108 $INFO{$role}{methods} = {
109 map +($_ => $role->can($_)),
110 grep !$meta->get_method($_)->isa('Class::MOP::Method::Meta'),
111 $meta->get_method_list
112 };
113 $Role::Tiny::APPLIED_TO{$role} = {
114 map +($_->name => 1), $meta->calculate_all_roles
115 };
116 $INFO{$role}{requires} = [ $meta->get_required_method_list ];
117 $INFO{$role}{attributes} = [
a668eb67 118 map +($_ => do {
119 my $spec = { %{$meta->get_attribute($_)} };
f96bb37c 120
a668eb67 121 if ($spec->{isa}) {
f96bb37c 122
123 my $get_constraint = do {
124 my $pkg = $meta->isa('Mouse::Meta::Role')
125 ? 'Mouse::Util::TypeConstraints'
126 : 'Moose::Util::TypeConstraints';
127 _load_module($pkg);
128 $pkg->can('find_or_create_isa_type_constraint');
129 };
130
131 my $tc = $get_constraint->($spec->{isa});
a668eb67 132 my $check = $tc->_compiled_type_constraint;
f96bb37c 133
134 $spec->{isa} = sub {
135 &$check or die "Type constraint failed for $_[0]"
136 };
137
a668eb67 138 if ($spec->{coerce}) {
f96bb37c 139
140 # Mouse has _compiled_type_coercion straight on the TC object
141 $spec->{coerce} = $tc->${\(
142 $tc->can('coercion')||sub { $_[0] }
143 )}->_compiled_type_coercion;
a668eb67 144 }
145 }
146 $spec;
147 }), $meta->get_attribute_list
c100c04c 148 ];
149 my $mods = $INFO{$role}{modifiers} = [];
150 foreach my $type (qw(before after around)) {
151 # Mouse pokes its own internals so we have to fall back to doing
152 # the same thing in the absence of the Moose API method
153 my $map = $meta->${\(
154 $meta->can("get_${type}_method_modifiers_map")
155 or sub { shift->{"${type}_method_modifiers"} }
156 )};
157 foreach my $method (keys %$map) {
158 foreach my $mod (@{$map->{$method}}) {
159 push @$mods, [ $type => $method => $mod ];
a84066c7 160 }
161 }
a84066c7 162 }
c100c04c 163 require Class::Method::Modifiers if @$mods;
164 $INFO{$role}{inhaled_from_moose} = 1;
a84066c7 165 }
166}
167
a41e15c3 168sub _maybe_make_accessors {
169 my ($self, $role, $target) = @_;
170 my $m;
171 if ($INFO{$role}{inhaled_from_moose}
e9290d4a 172 or $INC{"Moo.pm"}
173 and $m = Moo->_accessor_maker_for($target)
a41e15c3 174 and ref($m) ne 'Method::Generate::Accessor') {
175 $self->_make_accessors($role, $target);
176 }
177}
178
a84066c7 179sub _make_accessors_if_moose {
180 my ($self, $role, $target) = @_;
181 if ($INFO{$role}{inhaled_from_moose}) {
a41e15c3 182 $self->_make_accessors($role, $target);
183 }
184}
185
186sub _make_accessors {
187 my ($self, $role, $target) = @_;
188 my $acc_gen = ($Moo::MAKERS{$target}{accessor} ||= do {
189 require Method::Generate::Accessor;
190 Method::Generate::Accessor->new
191 });
db10ae2d 192 my $con_gen = $Moo::MAKERS{$target}{constructor};
a41e15c3 193 my @attrs = @{$INFO{$role}{attributes}||[]};
194 while (my ($name, $spec) = splice @attrs, 0, 2) {
db10ae2d 195 # needed to ensure we got an index for an arrayref based generator
196 if ($con_gen) {
197 $spec = $con_gen->all_attribute_specs->{$name};
198 }
a41e15c3 199 $acc_gen->generate_method($target, $name, $spec);
a84066c7 200 }
201}
202
4a79464d 203sub apply_roles_to_package {
204 my ($me, $to, @roles) = @_;
141b507a 205 foreach my $role (@roles) {
206 $me->_inhale_if_moose($role);
207 }
4a79464d 208 $me->SUPER::apply_roles_to_package($to, @roles);
209}
210
6893ea30 211sub apply_single_role_to_package {
369a4c50 212 my ($me, $to, $role) = @_;
a84066c7 213 $me->_inhale_if_moose($role);
d245e471 214 $me->_handle_constructor($to, $INFO{$role}{attributes});
a41e15c3 215 $me->_maybe_make_accessors($role, $to);
216 $me->SUPER::apply_single_role_to_package($to, $role);
d245e471 217}
218
219sub create_class_with_roles {
220 my ($me, $superclass, @roles) = @_;
221
c69190f1 222 my $new_name = join(
223 '__WITH__', $superclass, my $compose_name = join '__AND__', @roles
224 );
225
d245e471 226 return $new_name if $Role::Tiny::COMPOSED{class}{$new_name};
227
141b507a 228 foreach my $role (@roles) {
229 $me->_inhale_if_moose($role);
230 }
a84066c7 231
64284a1b 232 my $m;
e9290d4a 233 if ($INC{"Moo.pm"}
234 and $m = Moo->_accessor_maker_for($superclass)
64284a1b 235 and ref($m) ne 'Method::Generate::Accessor') {
236 # old fashioned way time.
237 *{_getglob("${new_name}::ISA")} = [ $superclass ];
238 $me->apply_roles_to_package($new_name, @roles);
239 return $new_name;
240 }
241
faa9ce11 242 require Sub::Quote;
d245e471 243
244 $me->SUPER::create_class_with_roles($superclass, @roles);
245
246 foreach my $role (@roles) {
247 die "${role} is not a Role::Tiny" unless my $info = $INFO{$role};
248 }
249
c69190f1 250 $Moo::MAKERS{$new_name} = {};
251
d245e471 252 $me->_handle_constructor(
873df570 253 $new_name, [ map @{$INFO{$_}{attributes}||[]}, @roles ], $superclass
d245e471 254 );
255
256 return $new_name;
257}
258
a84066c7 259sub _composable_package_for {
260 my ($self, $role) = @_;
261 my $composed_name = 'Role::Tiny::_COMPOSABLE::'.$role;
262 return $composed_name if $Role::Tiny::COMPOSED{role}{$composed_name};
263 $self->_make_accessors_if_moose($role, $composed_name);
264 $self->SUPER::_composable_package_for($role);
265}
266
dccea57d 267sub _install_single_modifier {
268 my ($me, @args) = @_;
269 _install_modifier(@args);
d245e471 270}
271
272sub _handle_constructor {
c4570291 273 my ($me, $to, $attr_info, $superclass) = @_;
57d402ef 274 return unless $attr_info && @$attr_info;
d245e471 275 if ($INFO{$to}) {
57d402ef 276 push @{$INFO{$to}{attributes}||=[]}, @$attr_info;
d245e471 277 } else {
278 # only fiddle with the constructor if the target is a Moo class
279 if ($INC{"Moo.pm"}
c4570291 280 and my $con = Moo->_constructor_maker_for($to, $superclass)) {
a41e15c3 281 # shallow copy of the specs since the constructor will assign an index
57d402ef 282 $con->register_attribute_specs(map ref() ? { %$_ } : $_, @$attr_info);
d245e471 283 }
284 }
285}
286
2871;
bce933ec 288
0b6e5fff 289=head1 NAME
290
291Moo::Role - Minimal Object Orientation support for Roles
bce933ec 292
293=head1 SYNOPSIS
294
295 package My::Role;
296
297 use Moo::Role;
298
299 sub foo { ... }
300
301 sub bar { ... }
302
303 has baz => (
304 is => 'ro',
305 );
306
307 1;
308
52e8f144 309And elsewhere:
bce933ec 310
311 package Some::Class;
312
313 use Moo;
314
315 # bar gets imported, but not foo
316 with('My::Role');
317
318 sub foo { ... }
319
320 1;
321
322=head1 DESCRIPTION
323
324C<Moo::Role> builds upon L<Role::Tiny>, so look there for most of the
325documentation on how this works. The main addition here is extra bits to make
326the roles more "Moosey;" which is to say, it adds L</has>.
327
328=head1 IMPORTED SUBROUTINES
329
330See L<Role::Tiny/IMPORTED SUBROUTINES> for all the other subroutines that are
331imported by this module.
332
333=head2 has
334
335 has attr => (
336 is => 'ro',
337 );
338
339Declares an attribute for the class to be composed into. See
340L<Moo/has> for all options.
40f3e3aa 341
072d158f 342=head1 SUPPORT
343
344See L<Moo> for support and contact informations.
345
40f3e3aa 346=head1 AUTHORS
347
348See L<Moo> for authors.
349
350=head1 COPYRIGHT AND LICENSE
351
352See L<Moo> for the copyright and license.