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