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