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