don't use $_ as loop variable when calling arbitrary code
[gitmo/Role-Tiny.git] / lib / Role / Tiny.pm
CommitLineData
ab3370e7 1package Role::Tiny;
2
119014a7 3sub _getglob { \*{$_[0]} }
5e03b55c 4sub _getstash { \%{"$_[0]::"} }
119014a7 5
b1eebd55 6use strict;
7use warnings FATAL => 'all';
ab3370e7 8
1205ded4 9our $VERSION = '1.002004'; # 1.2.4
c334a5c1 10$VERSION = eval $VERSION;
11
ab3370e7 12our %INFO;
13our %APPLIED_TO;
1947330a 14our %COMPOSED;
836aea1b 15our %COMPOSITE_INFO;
ab3370e7 16
cf62c989 17# Module state workaround totally stolen from Zefram's Module::Runtime.
18
19BEGIN {
20 *_WORK_AROUND_BROKEN_MODULE_STATE = "$]" < 5.009 ? sub(){1} : sub(){0};
21}
22
23sub Role::Tiny::__GUARD__::DESTROY {
24 delete $INC{$_[0]->[0]} if @{$_[0]};
25}
5e03b55c 26
fb5074f6 27sub _load_module {
fb5074f6 28 (my $proto = $_[0]) =~ s/::/\//g;
cf62c989 29 $proto .= '.pm';
30 return 1 if $INC{$proto};
5e03b55c 31 # can't just ->can('can') because a sub-package Foo::Bar::Baz
32 # creates a 'Baz::' key in Foo::Bar's symbol table
33 return 1 if grep !/::$/, keys %{_getstash($_[0])||{}};
cf62c989 34 my $guard = _WORK_AROUND_BROKEN_MODULE_STATE
35 && bless([ $proto ], 'Role::Tiny::__GUARD__');
36 require $proto;
37 pop @$guard if _WORK_AROUND_BROKEN_MODULE_STATE;
fb5074f6 38 return 1;
39}
40
ab3370e7 41sub import {
42 my $target = caller;
a1164a0b 43 my $me = shift;
3ca7ff56 44 strict->import;
45 warnings->import(FATAL => 'all');
1ba11455 46 return if $INFO{$target}; # already exported into this package
ab3370e7 47 # get symbol table reference
76acfa6c 48 my $stash = _getstash($target);
ab3370e7 49 # install before/after/around subs
50 foreach my $type (qw(before after around)) {
5a247406 51 *{_getglob "${target}::${type}"} = sub {
7568ba55 52 require Class::Method::Modifiers;
ab3370e7 53 push @{$INFO{$target}{modifiers}||=[]}, [ $type => @_ ];
ef2da711 54 return;
ab3370e7 55 };
56 }
5a247406 57 *{_getglob "${target}::requires"} = sub {
ab3370e7 58 push @{$INFO{$target}{requires}||=[]}, @_;
ef2da711 59 return;
ab3370e7 60 };
5a247406 61 *{_getglob "${target}::with"} = sub {
836aea1b 62 $me->apply_roles_to_package($target, @_);
ef2da711 63 return;
96d3f07a 64 };
7b8177f8 65 # grab all *non-constant* (stash slot is not a scalarref) subs present
ab3370e7 66 # in the symbol table and store their refaddrs (no need to forcibly
67 # inflate constant subs into real subs) - also add '' to here (this
12f8eb0b 68 # is used later) with a map to the coderefs in case of copying or re-use
69 my @not_methods = ('', map { *$_{CODE}||() } grep !ref($_), values %$stash);
70 @{$INFO{$target}{not_methods}={}}{@not_methods} = @not_methods;
ab3370e7 71 # a role does itself
72 $APPLIED_TO{$target} = { $target => undef };
73}
74
836aea1b 75sub apply_single_role_to_package {
369a4c50 76 my ($me, $to, $role) = @_;
1947330a 77
fb5074f6 78 _load_module($role);
79
ab3370e7 80 die "This is apply_role_to_package" if ref($to);
1947330a 81 die "${role} is not a Role::Tiny" unless my $info = $INFO{$role};
82
83 $me->_check_requires($to, $role, @{$info->{requires}||[]});
84
85 $me->_install_methods($to, $role);
86
87 $me->_install_modifiers($to, $info->{modifiers});
88
1947330a 89 # copy our role list into the target's
90 @{$APPLIED_TO{$to}||={}}{keys %{$APPLIED_TO{$role}}} = ();
91}
92
93sub apply_roles_to_object {
94 my ($me, $object, @roles) = @_;
95 die "No roles supplied!" unless @roles;
96 my $class = ref($object);
97 bless($object, $me->create_class_with_roles($class, @roles));
98 $object;
99}
100
101sub create_class_with_roles {
102 my ($me, $superclass, @roles) = @_;
103
fb5074f6 104 die "No roles supplied!" unless @roles;
105
f52b9821 106 _load_module($superclass);
2c580674 107 {
108 my %seen;
109 $seen{$_}++ for @roles;
110 if (my @dupes = grep $seen{$_} > 1, @roles) {
111 die "Duplicated roles: ".join(', ', @dupes);
112 }
113 }
114
c69190f1 115 my $new_name = join(
116 '__WITH__', $superclass, my $compose_name = join '__AND__', @roles
117 );
118
1947330a 119 return $new_name if $COMPOSED{class}{$new_name};
120
121 foreach my $role (@roles) {
fb5074f6 122 _load_module($role);
29dde8ba 123 die "${role} is not a Role::Tiny" unless $INFO{$role};
1947330a 124 }
125
786e5ba0 126 if ($] >= 5.010) {
7568ba55 127 require mro;
b1eebd55 128 } else {
7568ba55 129 require MRO::Compat;
b1eebd55 130 }
1947330a 131
471419f6 132 my %conflicts = %{$me->_composite_info_for(@roles)->{conflicts}};
133 if (keys %conflicts) {
134 my $fail =
135 join "\n",
136 map {
137 "Method name conflict for '$_' between roles "
138 ."'".join(' and ', sort values %{$conflicts{$_}})."'"
139 .", cannot apply these simultaneously to an object."
140 } keys %conflicts;
141 die $fail;
142 }
143
1947330a 144 my @composable = map $me->_composable_package_for($_), reverse @roles;
145
146 *{_getglob("${new_name}::ISA")} = [ @composable, $superclass ];
147
29dde8ba 148 my @info = map $INFO{$_}, @roles;
1947330a 149
150 $me->_check_requires(
151 $new_name, $compose_name,
152 do { my %h; @h{map @{$_->{requires}||[]}, @info} = (); keys %h }
153 );
1947330a 154
1947330a 155 @{$APPLIED_TO{$new_name}||={}}{
91037640 156 map keys %{$APPLIED_TO{$_}}, @roles
1947330a 157 } = ();
158
159 $COMPOSED{class}{$new_name} = 1;
160 return $new_name;
161}
162
92e1c5f8 163# preserved for compat, and apply_roles_to_package calls it to allow an
164# updated Role::Tiny to use a non-updated Moo::Role
165
836aea1b 166sub apply_role_to_package { shift->apply_single_role_to_package(@_) }
167
168sub apply_roles_to_package {
60dfe768 169 my ($me, $to, @roles) = @_;
170
92e1c5f8 171 return $me->apply_role_to_package($to, $roles[0]) if @roles == 1;
60dfe768 172
836aea1b 173 my %conflicts = %{$me->_composite_info_for(@roles)->{conflicts}};
671b5a88 174 delete $conflicts{$_} for $me->_concrete_methods_of($to);
175 if (keys %conflicts) {
60dfe768 176 my $fail =
177 join "\n",
671b5a88 178 map {
179 "Due to a method name conflict between roles "
180 ."'".join(' and ', sort values %{$conflicts{$_}})."'"
181 .", the method '$_' must be implemented by '${to}'"
182 } keys %conflicts;
183 die $fail;
60dfe768 184 }
06b06c8e 185
186 # the if guard here is essential since otherwise we accidentally create
187 # a $INFO for something that isn't a Role::Tiny (or Moo::Role) because
188 # autovivification hates us and wants us to die()
189 if ($INFO{$to}) {
190 delete $INFO{$to}{methods}; # reset since we're about to add methods
191 }
192
667f4e70 193 foreach my $role (@roles) {
194 $me->apply_single_role_to_package($to, $role);
195 }
671b5a88 196 $APPLIED_TO{$to}{join('|',@roles)} = 1;
197}
198
836aea1b 199sub _composite_info_for {
671b5a88 200 my ($me, @roles) = @_;
836aea1b 201 $COMPOSITE_INFO{join('|', sort @roles)} ||= do {
667f4e70 202 foreach my $role (@roles) {
203 _load_module($role);
204 }
671b5a88 205 my %methods;
206 foreach my $role (@roles) {
207 my $this_methods = $me->_concrete_methods_of($role);
208 $methods{$_}{$this_methods->{$_}} = $role for keys %$this_methods;
209 }
210 delete $methods{$_} for grep keys(%{$methods{$_}}) == 1, keys %methods;
211 +{ conflicts => \%methods }
212 };
60dfe768 213}
214
1947330a 215sub _composable_package_for {
216 my ($me, $role) = @_;
217 my $composed_name = 'Role::Tiny::_COMPOSABLE::'.$role;
218 return $composed_name if $COMPOSED{role}{$composed_name};
219 $me->_install_methods($composed_name, $role);
220 my $base_name = $composed_name.'::_BASE';
c49b0f72 221 # Not using _getglob, since setting @ISA via the typeglob breaks
222 # inheritance on 5.10.0 if the stash has previously been accessed an
223 # then a method called on the class (in that order!), which
224 # ->_install_methods (with the help of ->_install_does) ends up doing.
225 { no strict 'refs'; @{"${composed_name}::ISA"} = ( $base_name ); }
1947330a 226 my $modifiers = $INFO{$role}{modifiers}||[];
b1eebd55 227 my @mod_base;
1947330a 228 foreach my $modified (
229 do { my %h; @h{map $_->[1], @$modifiers} = (); keys %h }
230 ) {
b1eebd55 231 push @mod_base, "sub ${modified} { shift->next::method(\@_) }";
1947330a 232 }
385f5087 233 my $e;
59812c87 234 {
235 local $@;
236 eval(my $code = join "\n", "package ${base_name};", @mod_base);
385f5087 237 $e = "Evaling failed: $@\nTrying to eval:\n${code}" if $@;
59812c87 238 }
385f5087 239 die $e if $e;
1947330a 240 $me->_install_modifiers($composed_name, $modifiers);
241 $COMPOSED{role}{$composed_name} = 1;
242 return $composed_name;
243}
244
245sub _check_requires {
246 my ($me, $to, $name, @requires) = @_;
247 if (my @requires_fail = grep !$to->can($_), @requires) {
248 # role -> role, add to requires, role -> class, error out
249 if (my $to_info = $INFO{$to}) {
250 push @{$to_info->{requires}||=[]}, @requires_fail;
251 } else {
252 die "Can't apply ${name} to ${to} - missing ".join(', ', @requires_fail);
253 }
254 }
255}
256
4db3a740 257sub _concrete_methods_of {
258 my ($me, $role) = @_;
1947330a 259 my $info = $INFO{$role};
60dfe768 260 # grab role symbol table
76acfa6c 261 my $stash = _getstash($role);
12f8eb0b 262 # reverse so our keys become the values (captured coderefs) in case
263 # they got copied or re-used since
123a5a6e 264 my $not_methods = { reverse %{$info->{not_methods}||{}} };
eb8fcb2d 265 $info->{methods} ||= +{
60dfe768 266 # grab all code entries that aren't in the not_methods list
267 map {
268 my $code = *{$stash->{$_}}{CODE};
269 # rely on the '' key we added in import for "no code here"
270 exists $not_methods->{$code||''} ? () : ($_ => $code)
271 } grep !ref($stash->{$_}), keys %$stash
ab3370e7 272 };
4db3a740 273}
274
275sub methods_provided_by {
276 my ($me, $role) = @_;
277 die "${role} is not a Role::Tiny" unless my $info = $INFO{$role};
278 (keys %{$me->_concrete_methods_of($role)}, @{$info->{requires}||[]});
279}
280
281sub _install_methods {
282 my ($me, $to, $role) = @_;
283
284 my $info = $INFO{$role};
285
286 my $methods = $me->_concrete_methods_of($role);
1947330a 287
ab3370e7 288 # grab target symbol table
76acfa6c 289 my $stash = _getstash($to);
1947330a 290
ab3370e7 291 # determine already extant methods of target
292 my %has_methods;
293 @has_methods{grep
faa9ce11 294 +(ref($stash->{$_}) || *{$stash->{$_}}{CODE}),
ab3370e7 295 keys %$stash
296 } = ();
ab3370e7 297
1947330a 298 foreach my $i (grep !exists $has_methods{$_}, keys %$methods) {
ab3370e7 299 no warnings 'once';
5a247406 300 *{_getglob "${to}::${i}"} = $methods->{$i};
ab3370e7 301 }
fa89d582 302
303 $me->_install_does($to);
1947330a 304}
ab3370e7 305
1947330a 306sub _install_modifiers {
307 my ($me, $to, $modifiers) = @_;
dccea57d 308 if (my $info = $INFO{$to}) {
309 push @{$info->{modifiers}}, @{$modifiers||[]};
310 } else {
311 foreach my $modifier (@{$modifiers||[]}) {
312 $me->_install_single_modifier($to, @$modifier);
313 }
96d3f07a 314 }
ab3370e7 315}
316
dccea57d 317sub _install_single_modifier {
318 my ($me, @args) = @_;
319 Class::Method::Modifiers::install_modifier(@args);
320}
321
fa89d582 322my $FALLBACK = sub { 0 };
323sub _install_does {
324 my ($me, $to) = @_;
325
326 # only add does() method to classes
327 return if $INFO{$to};
328
329 # add does() only if they don't have one
330 *{_getglob "${to}::does"} = \&does_role unless $to->can('does');
331
211178ea 332 return if ($to->can('DOES') and $to->can('DOES') != (UNIVERSAL->can('DOES') || 0));
fa89d582 333
334 my $existing = $to->can('DOES') || $to->can('isa') || $FALLBACK;
335 my $new_sub = sub {
336 my ($proto, $role) = @_;
337 Role::Tiny::does_role($proto, $role) or $proto->$existing($role);
338 };
339 no warnings 'redefine';
340 *{_getglob "${to}::DOES"} = $new_sub;
341}
342
ab3370e7 343sub does_role {
390ac406 344 my ($proto, $role) = @_;
91037640 345 if ($] >= 5.010) {
346 require mro;
347 } else {
348 require MRO::Compat;
349 }
350 foreach my $class (@{mro::get_linear_isa(ref($proto)||$proto)}) {
351 return 1 if exists $APPLIED_TO{$class}{$role};
352 }
353 return 0;
ab3370e7 354}
355
3561;
5febcf4d 357
0b6e5fff 358=head1 NAME
359
70061353 360Role::Tiny - Roles. Like a nouvelle cuisine portion size slice of Moose.
5febcf4d 361
362=head1 SYNOPSIS
363
364 package Some::Role;
365
366 use Role::Tiny;
367
368 sub foo { ... }
369
370 sub bar { ... }
371
adcb6c3d 372 around baz => sub { ... }
373
5febcf4d 374 1;
375
376else where
377
378 package Some::Class;
379
a1164a0b 380 use Role::Tiny::With;
5febcf4d 381
382 # bar gets imported, but not foo
a1164a0b 383 with 'Some::Role';
5febcf4d 384
385 sub foo { ... }
386
adcb6c3d 387 # baz is wrapped in the around modifier by Class::Method::Modifiers
388 sub baz { ... }
389
5febcf4d 390 1;
391
adcb6c3d 392If you wanted attributes as well, look at L<Moo::Role>.
393
5febcf4d 394=head1 DESCRIPTION
395
396C<Role::Tiny> is a minimalist role composition tool.
397
398=head1 ROLE COMPOSITION
399
400Role composition can be thought of as much more clever and meaningful multiple
401inheritance. The basics of this implementation of roles is:
402
403=over 2
404
405=item *
406
407If a method is already defined on a class, that method will not be composed in
408from the role.
409
410=item *
411
412If a method that the role L</requires> to be implemented is not implemented,
413role application will fail loudly.
414
0d39f9d3 415=back
416
5febcf4d 417Unlike L<Class::C3>, where the B<last> class inherited from "wins," role
836aea1b 418composition is the other way around, where the class wins. If multiple roles
419are applied in a single call (single with statement), then if any of their
420provided methods clash, an exception is raised unless the class provides
421a method since this conflict indicates a potential problem.
5febcf4d 422
5febcf4d 423=head1 IMPORTED SUBROUTINES
424
425=head2 requires
426
427 requires qw(foo bar);
428
429Declares a list of methods that must be defined to compose role.
430
431=head2 with
432
433 with 'Some::Role1';
836aea1b 434
435 with 'Some::Role1', 'Some::Role2';
436
437Composes another role into the current role (or class via L<Role::Tiny::With>).
438
439If you have conflicts and want to resolve them in favour of Some::Role1 you
440can instead write:
441
442 with 'Some::Role1';
5febcf4d 443 with 'Some::Role2';
444
836aea1b 445If you have conflicts and want to resolve different conflicts in favour of
446different roles, please refactor your codebase.
5febcf4d 447
448=head2 before
449
450 before foo => sub { ... };
451
452See L<< Class::Method::Modifiers/before method(s) => sub { ... } >> for full
453documentation.
454
adcb6c3d 455Note that since you are not required to use method modifiers,
456L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
457a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
458both L<Class::Method::Modifiers> and L<Role::Tiny>.
459
5febcf4d 460=head2 around
461
462 around foo => sub { ... };
463
464See L<< Class::Method::Modifiers/around method(s) => sub { ... } >> for full
465documentation.
466
adcb6c3d 467Note that since you are not required to use method modifiers,
468L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
469a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
470both L<Class::Method::Modifiers> and L<Role::Tiny>.
471
5febcf4d 472=head2 after
473
474 after foo => sub { ... };
475
476See L<< Class::Method::Modifiers/after method(s) => sub { ... } >> for full
477documentation.
478
adcb6c3d 479Note that since you are not required to use method modifiers,
480L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
481a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
482both L<Class::Method::Modifiers> and L<Role::Tiny>.
483
ec28e16b 484=head1 SUBROUTINES
485
486=head2 does_role
487
488 if (Role::Tiny::does_role($foo, 'Some::Role')) {
489 ...
490 }
491
492Returns true if class has been composed with role.
493
494This subroutine is also installed as ->does on any class a Role::Tiny is
495composed into unless that class already has an ->does method, so
496
497 if ($foo->does('Some::Role')) {
498 ...
499 }
500
fa89d582 501will work for classes but to test a role, one must use ::does_role directly.
502
503Additionally, Role::Tiny will override the standard Perl C<DOES> method
504for your class. However, if C<any> class in your class' inheritance
505heirarchy provides C<DOES>, then Role::Tiny will not override it.
ec28e16b 506
507=head1 METHODS
508
509=head2 apply_roles_to_package
510
511 Role::Tiny->apply_roles_to_package(
512 'Some::Package', 'Some::Role', 'Some::Other::Role'
513 );
514
515Composes role with package. See also L<Role::Tiny::With>.
516
517=head2 apply_roles_to_object
518
519 Role::Tiny->apply_roles_to_object($foo, qw(Some::Role1 Some::Role2));
520
521Composes roles in order into object directly. Object is reblessed into the
522resulting class.
523
524=head2 create_class_with_roles
525
526 Role::Tiny->create_class_with_roles('Some::Base', qw(Some::Role1 Some::Role2));
527
528Creates a new class based on base, with the roles composed into it in order.
529New class is returned.
530
adcb6c3d 531=head1 SEE ALSO
532
533L<Role::Tiny> is the attribute-less subset of L<Moo::Role>; L<Moo::Role> is
534a meta-protocol-less subset of the king of role systems, L<Moose::Role>.
535
536If you don't want method modifiers and do want to be forcibly restricted
537to a single role application per class, Ovid's L<Role::Basic> exists. But
259ce3a0 538Stevan Little (the L<Moose> author) and I don't find the additional
539restrictions to be amazingly helpful in most cases; L<Role::Basic>'s choices
540are more a guide to what you should prefer doing, to our mind, rather than
541something that needs to be enforced.
adcb6c3d 542
c334a5c1 543=head1 AUTHOR
544
545mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
546
547=head1 CONTRIBUTORS
548
549dg - David Leadbeater (cpan:DGL) <dgl@dgl.cx>
550
551frew - Arthur Axel "fREW" Schmidt (cpan:FREW) <frioux@gmail.com>
552
553hobbs - Andrew Rodland (cpan:ARODLAND) <arodland@cpan.org>
554
555jnap - John Napiorkowski (cpan:JJNAPIORK) <jjn1056@yahoo.com>
556
557ribasushi - Peter Rabbitson (cpan:RIBASUSHI) <ribasushi@cpan.org>
558
559chip - Chip Salzenberg (cpan:CHIPS) <chip@pobox.com>
560
561ajgb - Alex J. G. Burzyński (cpan:AJGB) <ajgb@cpan.org>
562
563doy - Jesse Luehrs (cpan:DOY) <doy at tozt dot net>
564
565perigrin - Chris Prather (cpan:PERIGRIN) <chris@prather.org>
566
ec28e16b 567Mithaldu - Christian Walde (cpan:MITHALDU) <walde.christian@googlemail.com>
568
91037640 569ilmari - Dagfinn Ilmari Mannsåker (cpan:ILMARI) <ilmari@ilmari.org>
570
fa89d582 571tobyink - Toby Inkster (cpan:TOBYINK) <tobyink@cpan.org>
572
c334a5c1 573=head1 COPYRIGHT
40f3e3aa 574
c334a5c1 575Copyright (c) 2010-2012 the Role::Tiny L</AUTHOR> and L</CONTRIBUTORS>
576as listed above.
40f3e3aa 577
c334a5c1 578=head1 LICENSE
40f3e3aa 579
c334a5c1 580This library is free software and may be distributed under the same terms
581as perl itself.
40f3e3aa 582
583=cut