more testing for create_class_with_roles
[gitmo/Moo.git] / lib / Moo / Role.pm
1 package Moo::Role;
2
3 use strictures 1;
4 use Moo::_Utils;
5 use Role::Tiny ();
6 use base qw(Role::Tiny);
7
8 require Moo::sification;
9
10 BEGIN { *INFO = \%Role::Tiny::INFO }
11
12 our %INFO;
13 our %APPLY_DEFAULTS;
14
15 sub _install_tracked {
16   my ($target, $name, $code) = @_;
17   $INFO{$target}{exports}{$name} = $code;
18   _install_coderef "${target}::${name}" => "Moo::Role::${name}" => $code;
19 }
20
21 sub import {
22   my $target = caller;
23   my ($me) = @_;
24   strictures->import;
25   if ($Moo::MAKERS{$target} and $Moo::MAKERS{$target}{is_class}) {
26     die "Cannot import Moo::Role into a Moo class";
27   }
28   $INFO{$target} ||= {};
29   # get symbol table reference
30   my $stash = do { no strict 'refs'; \%{"${target}::"} };
31   _install_tracked $target => has => sub {
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     }
43   };
44   # install before/after/around subs
45   foreach my $type (qw(before after around)) {
46     _install_tracked $target => $type => sub {
47       require Class::Method::Modifiers;
48       push @{$INFO{$target}{modifiers}||=[]}, [ $type => @_ ];
49       $me->_maybe_reset_handlemoose($target);
50     };
51   }
52   _install_tracked $target => requires => sub {
53     push @{$INFO{$target}{requires}||=[]}, @_;
54     $me->_maybe_reset_handlemoose($target);
55   };
56   _install_tracked $target => with => sub {
57     $me->apply_roles_to_package($target, @_);
58     $me->_maybe_reset_handlemoose($target);
59   };
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');
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
72   if ($INC{'Moo/HandleMoose.pm'}) {
73     Moo::HandleMoose::inject_fake_metaclass_for($target);
74   }
75 }
76
77 # duplicate from Moo::Object
78 sub meta {
79   require Moo::HandleMoose::FakeMetaClass;
80   my $class = ref($_[0])||$_[0];
81   bless({ name => $class }, 'Moo::HandleMoose::FakeMetaClass');
82 }
83
84 sub unimport {
85   my $target = caller;
86   _unimport_coderefs($target, $INFO{$target});
87 }
88
89 sub _maybe_reset_handlemoose {
90   my ($class, $target) = @_;
91   if ($INC{"Moo/HandleMoose.pm"}) {
92     Moo::HandleMoose::maybe_reinject_fake_metaclass_for($target);
93   }
94 }
95
96 sub _inhale_if_moose {
97   my ($self, $role) = @_;
98   _load_module($role);
99   my $meta;
100   if (!$INFO{$role}
101       and (
102         $INC{"Moose.pm"}
103         and $meta = Class::MOP::class_of($role)
104         and $meta->isa('Moose::Meta::Role')
105       )
106       or (
107         Mouse::Util->can('find_meta')
108         and $meta = Mouse::Util::find_meta($role)
109         and $meta->isa('Mouse::Meta::Role')
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} = [
122       map +($_ => do {
123         my $attr = $meta->get_attribute($_);
124         my $is_mouse = $meta->isa('Mouse::Meta::Role');
125         my $spec = { %{ $is_mouse ? $attr : $attr->original_options } };
126
127         if ($spec->{isa}) {
128
129           my $get_constraint = do {
130             my $pkg = $is_mouse
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});
138           my $check = $tc->_compiled_type_constraint;
139
140           $spec->{isa} = sub {
141             &$check or die "Type constraint failed for $_[0]"
142           };
143
144           if ($spec->{coerce}) {
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;
150           }
151         }
152         $spec;
153       }), $meta->get_attribute_list
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 ];
166         }
167       }
168     }
169     require Class::Method::Modifiers if @$mods;
170     $INFO{$role}{inhaled_from_moose} = 1;
171   }
172 }
173
174 sub _maybe_make_accessors {
175   my ($self, $target, $role) = @_;
176   my $m;
177   if ($INFO{$role} && $INFO{$role}{inhaled_from_moose}
178       or $INC{"Moo.pm"}
179       and $m = Moo->_accessor_maker_for($target)
180       and ref($m) ne 'Method::Generate::Accessor') {
181     $self->_make_accessors($target, $role);
182   }
183 }
184
185 sub _make_accessors_if_moose {
186   my ($self, $target, $role) = @_;
187   if ($INFO{$role} && $INFO{$role}{inhaled_from_moose}) {
188     $self->_make_accessors($target, $role);
189   }
190 }
191
192 sub _make_accessors {
193   my ($self, $target, $role) = @_;
194   my $acc_gen = ($Moo::MAKERS{$target}{accessor} ||= do {
195     require Method::Generate::Accessor;
196     Method::Generate::Accessor->new
197   });
198   my $con_gen = $Moo::MAKERS{$target}{constructor};
199   my @attrs = @{$INFO{$role}{attributes}||[]};
200   while (my ($name, $spec) = splice @attrs, 0, 2) {
201     # needed to ensure we got an index for an arrayref based generator
202     if ($con_gen) {
203       $spec = $con_gen->all_attribute_specs->{$name};
204     }
205     $acc_gen->generate_method($target, $name, $spec);
206   }
207 }
208
209 sub role_application_steps {
210   qw(_handle_constructor _maybe_make_accessors),
211     $_[0]->SUPER::role_application_steps;
212 }
213
214 sub apply_roles_to_package {
215   my ($me, $to, @roles) = @_;
216   foreach my $role (@roles) {
217     $me->_inhale_if_moose($role);
218     die "${role} is not a Moo::Role" unless $INFO{$role};
219   }
220   $me->SUPER::apply_roles_to_package($to, @roles);
221 }
222
223 sub apply_single_role_to_package {
224   my ($me, $to, $role) = @_;
225   $me->_inhale_if_moose($role);
226   die "${role} is not a Moo::Role" unless $INFO{$role};
227   $me->SUPER::apply_single_role_to_package($to, $role);
228 }
229
230 sub create_class_with_roles {
231   my ($me, $superclass, @roles) = @_;
232
233   my $new_name = join(
234     '__WITH__', $superclass, my $compose_name = join '__AND__', @roles
235   );
236
237   return $new_name if $Role::Tiny::COMPOSED{class}{$new_name};
238
239   foreach my $role (@roles) {
240       $me->_inhale_if_moose($role);
241   }
242
243   my $m;
244   if ($INC{"Moo.pm"}
245       and $m = Moo->_accessor_maker_for($superclass)
246       and ref($m) ne 'Method::Generate::Accessor') {
247     # old fashioned way time.
248     *{_getglob("${new_name}::ISA")} = [ $superclass ];
249     $me->apply_roles_to_package($new_name, @roles);
250     return $new_name;
251   }
252
253   require Sub::Quote;
254
255   $me->SUPER::create_class_with_roles($superclass, @roles);
256
257   foreach my $role (@roles) {
258     die "${role} is not a Role::Tiny" unless $INFO{$role};
259   }
260
261   $Moo::MAKERS{$new_name} = {};
262
263   $me->_handle_constructor($new_name, $_) for @roles;
264
265   return $new_name;
266 }
267
268 sub apply_roles_to_object {
269   my ($me, $object, @roles) = @_;
270   my $new = $me->SUPER::apply_roles_to_object($object, @roles);
271
272   my $apply_defaults = $APPLY_DEFAULTS{ref $new} ||= do {
273     my %attrs = map { @{$INFO{$_}{attributes}||[]} } @roles;
274
275     if ($INC{'Moo.pm'}
276         and keys %attrs
277         and my $con_gen = Moo->_constructor_maker_for(ref $new)
278         and my $m = Moo->_accessor_maker_for(ref $new)) {
279       require Sub::Quote;
280
281       my $specs = $con_gen->all_attribute_specs;
282
283       my $assign = '';
284       my %captures;
285       foreach my $name ( keys %attrs ) {
286         my $spec = $specs->{$name};
287         if ($m->has_eager_default($name, $spec)) {
288           my ($has, $has_cap)
289             = $m->generate_simple_has('$_[0]', $name, $spec);
290           my ($code, $pop_cap)
291             = $m->generate_use_default('$_[0]', $name, $spec, $has);
292
293           $assign .= $code;
294           @captures{keys %$has_cap, keys %$pop_cap}
295             = (values %$has_cap, values %$pop_cap);
296         }
297       }
298       Sub::Quote::quote_sub($assign, \%captures);
299     }
300     else {
301       sub {};
302     }
303   };
304   $new->$apply_defaults;
305   return $new;
306 }
307
308 sub _composable_package_for {
309   my ($self, $role) = @_;
310   my $composed_name = 'Role::Tiny::_COMPOSABLE::'.$role;
311   return $composed_name if $Role::Tiny::COMPOSED{role}{$composed_name};
312   $self->_make_accessors_if_moose($composed_name, $role);
313   $self->SUPER::_composable_package_for($role);
314 }
315
316 sub _install_single_modifier {
317   my ($me, @args) = @_;
318   _install_modifier(@args);
319 }
320
321 sub _handle_constructor {
322   my ($me, $to, $role) = @_;
323   my $attr_info = $INFO{$role} && $INFO{$role}{attributes};
324   return unless $attr_info && @$attr_info;
325   if ($INFO{$to}) {
326     push @{$INFO{$to}{attributes}||=[]}, @$attr_info;
327   } else {
328     # only fiddle with the constructor if the target is a Moo class
329     if ($INC{"Moo.pm"}
330         and my $con = Moo->_constructor_maker_for($to)) {
331       # shallow copy of the specs since the constructor will assign an index
332       $con->register_attribute_specs(map ref() ? { %$_ } : $_, @$attr_info);
333     }
334   }
335 }
336
337 1;
338
339 =head1 NAME
340
341 Moo::Role - Minimal Object Orientation support for Roles
342
343 =head1 SYNOPSIS
344
345  package My::Role;
346
347  use Moo::Role;
348
349  sub foo { ... }
350
351  sub bar { ... }
352
353  has baz => (
354    is => 'ro',
355  );
356
357  1;
358
359 And elsewhere:
360
361  package Some::Class;
362
363  use Moo;
364
365  # bar gets imported, but not foo
366  with('My::Role');
367
368  sub foo { ... }
369
370  1;
371
372 =head1 DESCRIPTION
373
374 C<Moo::Role> builds upon L<Role::Tiny>, so look there for most of the
375 documentation on how this works.  The main addition here is extra bits to make
376 the roles more "Moosey;" which is to say, it adds L</has>.
377
378 =head1 IMPORTED SUBROUTINES
379
380 See L<Role::Tiny/IMPORTED SUBROUTINES> for all the other subroutines that are
381 imported by this module.
382
383 =head2 has
384
385  has attr => (
386    is => 'ro',
387  );
388
389 Declares an attribute for the class to be composed into.  See
390 L<Moo/has> for all options.
391
392 =head1 SUPPORT
393
394 See L<Moo> for support and contact information.
395
396 =head1 AUTHORS
397
398 See L<Moo> for authors.
399
400 =head1 COPYRIGHT AND LICENSE
401
402 See L<Moo> for the copyright and license.