method cache is required so Moose::Role inhalation can populate it
[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
424256bb 9our $VERSION = '1.000_900'; # 1.0.900
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
48 my $stash = do { no strict 'refs'; \%{"${target}::"} };
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 => @_ ];
54 };
55 }
5a247406 56 *{_getglob "${target}::requires"} = sub {
ab3370e7 57 push @{$INFO{$target}{requires}||=[]}, @_;
58 };
5a247406 59 *{_getglob "${target}::with"} = sub {
836aea1b 60 $me->apply_roles_to_package($target, @_);
96d3f07a 61 };
7b8177f8 62 # grab all *non-constant* (stash slot is not a scalarref) subs present
ab3370e7 63 # in the symbol table and store their refaddrs (no need to forcibly
64 # inflate constant subs into real subs) - also add '' to here (this
65 # is used later)
66 @{$INFO{$target}{not_methods}={}}{
faa9ce11 67 '', map { *$_{CODE}||() } grep !ref($_), values %$stash
ab3370e7 68 } = ();
69 # a role does itself
70 $APPLIED_TO{$target} = { $target => undef };
71}
72
836aea1b 73sub apply_single_role_to_package {
369a4c50 74 my ($me, $to, $role) = @_;
1947330a 75
fb5074f6 76 _load_module($role);
77
ab3370e7 78 die "This is apply_role_to_package" if ref($to);
1947330a 79 die "${role} is not a Role::Tiny" unless my $info = $INFO{$role};
80
81 $me->_check_requires($to, $role, @{$info->{requires}||[]});
82
83 $me->_install_methods($to, $role);
84
85 $me->_install_modifiers($to, $info->{modifiers});
86
87 # only add does() method to classes and only if they don't have one
88 if (not $INFO{$to} and not $to->can('does')) {
89 *{_getglob "${to}::does"} = \&does_role;
90 }
91
1947330a 92 # copy our role list into the target's
93 @{$APPLIED_TO{$to}||={}}{keys %{$APPLIED_TO{$role}}} = ();
94}
95
96sub apply_roles_to_object {
97 my ($me, $object, @roles) = @_;
98 die "No roles supplied!" unless @roles;
99 my $class = ref($object);
100 bless($object, $me->create_class_with_roles($class, @roles));
101 $object;
102}
103
104sub create_class_with_roles {
105 my ($me, $superclass, @roles) = @_;
106
fb5074f6 107 die "No roles supplied!" unless @roles;
108
2c580674 109 {
110 my %seen;
111 $seen{$_}++ for @roles;
112 if (my @dupes = grep $seen{$_} > 1, @roles) {
113 die "Duplicated roles: ".join(', ', @dupes);
114 }
115 }
116
c69190f1 117 my $new_name = join(
118 '__WITH__', $superclass, my $compose_name = join '__AND__', @roles
119 );
120
1947330a 121 return $new_name if $COMPOSED{class}{$new_name};
122
123 foreach my $role (@roles) {
fb5074f6 124 _load_module($role);
29dde8ba 125 die "${role} is not a Role::Tiny" unless $INFO{$role};
1947330a 126 }
127
786e5ba0 128 if ($] >= 5.010) {
7568ba55 129 require mro;
b1eebd55 130 } else {
7568ba55 131 require MRO::Compat;
b1eebd55 132 }
1947330a 133
134 my @composable = map $me->_composable_package_for($_), reverse @roles;
135
136 *{_getglob("${new_name}::ISA")} = [ @composable, $superclass ];
137
29dde8ba 138 my @info = map $INFO{$_}, @roles;
1947330a 139
140 $me->_check_requires(
141 $new_name, $compose_name,
142 do { my %h; @h{map @{$_->{requires}||[]}, @info} = (); keys %h }
143 );
1947330a 144
145 *{_getglob "${new_name}::does"} = \&does_role unless $new_name->can('does');
146
147 @{$APPLIED_TO{$new_name}||={}}{
148 map keys %{$APPLIED_TO{$_}}, @roles
149 } = ();
150
151 $COMPOSED{class}{$new_name} = 1;
152 return $new_name;
153}
154
836aea1b 155sub apply_role_to_package { shift->apply_single_role_to_package(@_) }
156
157sub apply_roles_to_package {
60dfe768 158 my ($me, $to, @roles) = @_;
159
836aea1b 160 return $me->apply_single_role_to_package($to, $roles[0]) if @roles == 1;
60dfe768 161
836aea1b 162 my %conflicts = %{$me->_composite_info_for(@roles)->{conflicts}};
671b5a88 163 delete $conflicts{$_} for $me->_concrete_methods_of($to);
164 if (keys %conflicts) {
60dfe768 165 my $fail =
166 join "\n",
671b5a88 167 map {
168 "Due to a method name conflict between roles "
169 ."'".join(' and ', sort values %{$conflicts{$_}})."'"
170 .", the method '$_' must be implemented by '${to}'"
171 } keys %conflicts;
172 die $fail;
60dfe768 173 }
eb8fcb2d 174 delete $INFO{$to}{methods}; # reset since we're about to add methods
836aea1b 175 $me->apply_single_role_to_package($to, $_) for @roles;
671b5a88 176 $APPLIED_TO{$to}{join('|',@roles)} = 1;
177}
178
836aea1b 179sub _composite_info_for {
671b5a88 180 my ($me, @roles) = @_;
836aea1b 181 $COMPOSITE_INFO{join('|', sort @roles)} ||= do {
671b5a88 182 _load_module($_) for @roles;
183 my %methods;
184 foreach my $role (@roles) {
185 my $this_methods = $me->_concrete_methods_of($role);
186 $methods{$_}{$this_methods->{$_}} = $role for keys %$this_methods;
187 }
188 delete $methods{$_} for grep keys(%{$methods{$_}}) == 1, keys %methods;
189 +{ conflicts => \%methods }
190 };
60dfe768 191}
192
1947330a 193sub _composable_package_for {
194 my ($me, $role) = @_;
195 my $composed_name = 'Role::Tiny::_COMPOSABLE::'.$role;
196 return $composed_name if $COMPOSED{role}{$composed_name};
197 $me->_install_methods($composed_name, $role);
198 my $base_name = $composed_name.'::_BASE';
199 *{_getglob("${composed_name}::ISA")} = [ $base_name ];
200 my $modifiers = $INFO{$role}{modifiers}||[];
b1eebd55 201 my @mod_base;
1947330a 202 foreach my $modified (
203 do { my %h; @h{map $_->[1], @$modifiers} = (); keys %h }
204 ) {
b1eebd55 205 push @mod_base, "sub ${modified} { shift->next::method(\@_) }";
1947330a 206 }
385f5087 207 my $e;
59812c87 208 {
209 local $@;
210 eval(my $code = join "\n", "package ${base_name};", @mod_base);
385f5087 211 $e = "Evaling failed: $@\nTrying to eval:\n${code}" if $@;
59812c87 212 }
385f5087 213 die $e if $e;
1947330a 214 $me->_install_modifiers($composed_name, $modifiers);
215 $COMPOSED{role}{$composed_name} = 1;
216 return $composed_name;
217}
218
219sub _check_requires {
220 my ($me, $to, $name, @requires) = @_;
221 if (my @requires_fail = grep !$to->can($_), @requires) {
222 # role -> role, add to requires, role -> class, error out
223 if (my $to_info = $INFO{$to}) {
224 push @{$to_info->{requires}||=[]}, @requires_fail;
225 } else {
226 die "Can't apply ${name} to ${to} - missing ".join(', ', @requires_fail);
227 }
228 }
229}
230
4db3a740 231sub _concrete_methods_of {
232 my ($me, $role) = @_;
1947330a 233 my $info = $INFO{$role};
60dfe768 234 # grab role symbol table
235 my $stash = do { no strict 'refs'; \%{"${role}::"}};
236 my $not_methods = $info->{not_methods};
eb8fcb2d 237 $info->{methods} ||= +{
60dfe768 238 # grab all code entries that aren't in the not_methods list
239 map {
240 my $code = *{$stash->{$_}}{CODE};
241 # rely on the '' key we added in import for "no code here"
242 exists $not_methods->{$code||''} ? () : ($_ => $code)
243 } grep !ref($stash->{$_}), keys %$stash
ab3370e7 244 };
4db3a740 245}
246
247sub methods_provided_by {
248 my ($me, $role) = @_;
249 die "${role} is not a Role::Tiny" unless my $info = $INFO{$role};
250 (keys %{$me->_concrete_methods_of($role)}, @{$info->{requires}||[]});
251}
252
253sub _install_methods {
254 my ($me, $to, $role) = @_;
255
256 my $info = $INFO{$role};
257
258 my $methods = $me->_concrete_methods_of($role);
1947330a 259
ab3370e7 260 # grab target symbol table
261 my $stash = do { no strict 'refs'; \%{"${to}::"}};
1947330a 262
ab3370e7 263 # determine already extant methods of target
264 my %has_methods;
265 @has_methods{grep
faa9ce11 266 +(ref($stash->{$_}) || *{$stash->{$_}}{CODE}),
ab3370e7 267 keys %$stash
268 } = ();
ab3370e7 269
1947330a 270 foreach my $i (grep !exists $has_methods{$_}, keys %$methods) {
ab3370e7 271 no warnings 'once';
5a247406 272 *{_getglob "${to}::${i}"} = $methods->{$i};
ab3370e7 273 }
1947330a 274}
ab3370e7 275
1947330a 276sub _install_modifiers {
277 my ($me, $to, $modifiers) = @_;
dccea57d 278 if (my $info = $INFO{$to}) {
279 push @{$info->{modifiers}}, @{$modifiers||[]};
280 } else {
281 foreach my $modifier (@{$modifiers||[]}) {
282 $me->_install_single_modifier($to, @$modifier);
283 }
96d3f07a 284 }
ab3370e7 285}
286
dccea57d 287sub _install_single_modifier {
288 my ($me, @args) = @_;
289 Class::Method::Modifiers::install_modifier(@args);
290}
291
ab3370e7 292sub does_role {
390ac406 293 my ($proto, $role) = @_;
294 return exists $APPLIED_TO{ref($proto)||$proto}{$role};
ab3370e7 295}
296
2971;
5febcf4d 298
0b6e5fff 299=head1 NAME
300
70061353 301Role::Tiny - Roles. Like a nouvelle cuisine portion size slice of Moose.
5febcf4d 302
303=head1 SYNOPSIS
304
305 package Some::Role;
306
307 use Role::Tiny;
308
309 sub foo { ... }
310
311 sub bar { ... }
312
adcb6c3d 313 around baz => sub { ... }
314
5febcf4d 315 1;
316
317else where
318
319 package Some::Class;
320
a1164a0b 321 use Role::Tiny::With;
5febcf4d 322
323 # bar gets imported, but not foo
a1164a0b 324 with 'Some::Role';
5febcf4d 325
326 sub foo { ... }
327
adcb6c3d 328 # baz is wrapped in the around modifier by Class::Method::Modifiers
329 sub baz { ... }
330
5febcf4d 331 1;
332
adcb6c3d 333If you wanted attributes as well, look at L<Moo::Role>.
334
5febcf4d 335=head1 DESCRIPTION
336
337C<Role::Tiny> is a minimalist role composition tool.
338
339=head1 ROLE COMPOSITION
340
341Role composition can be thought of as much more clever and meaningful multiple
342inheritance. The basics of this implementation of roles is:
343
344=over 2
345
346=item *
347
348If a method is already defined on a class, that method will not be composed in
349from the role.
350
351=item *
352
353If a method that the role L</requires> to be implemented is not implemented,
354role application will fail loudly.
355
0d39f9d3 356=back
357
5febcf4d 358Unlike L<Class::C3>, where the B<last> class inherited from "wins," role
836aea1b 359composition is the other way around, where the class wins. If multiple roles
360are applied in a single call (single with statement), then if any of their
361provided methods clash, an exception is raised unless the class provides
362a method since this conflict indicates a potential problem.
5febcf4d 363
364=head1 METHODS
365
836aea1b 366=head2 apply_roles_to_package
5febcf4d 367
836aea1b 368 Role::Tiny->apply_roles_to_package(
369 'Some::Package', 'Some::Role', 'Some::Other::Role'
370 );
5febcf4d 371
a1164a0b 372Composes role with package. See also L<Role::Tiny::With>.
5febcf4d 373
374=head2 apply_roles_to_object
375
376 Role::Tiny->apply_roles_to_object($foo, qw(Some::Role1 Some::Role2));
377
378Composes roles in order into object directly. Object is reblessed into the
379resulting class.
380
381=head2 create_class_with_roles
382
383 Role::Tiny->create_class_with_roles('Some::Base', qw(Some::Role1 Some::Role2));
384
385Creates a new class based on base, with the roles composed into it in order.
386New class is returned.
387
54e4000d 388=head1 SUBROUTINES
5febcf4d 389
390=head2 does_role
391
54e4000d 392 if (Role::Tiny::does_role($foo, 'Some::Role')) {
5febcf4d 393 ...
394 }
395
396Returns true if class has been composed with role.
397
54e4000d 398This subroutine is also installed as ->does on any class a Role::Tiny is
399composed into unless that class already has an ->does method, so
400
e4aa82b1 401 if ($foo->does('Some::Role')) {
54e4000d 402 ...
403 }
404
405will work for classes but to test a role, one must use ::does_role directly
406
5febcf4d 407=head1 IMPORTED SUBROUTINES
408
409=head2 requires
410
411 requires qw(foo bar);
412
413Declares a list of methods that must be defined to compose role.
414
415=head2 with
416
417 with 'Some::Role1';
836aea1b 418
419 with 'Some::Role1', 'Some::Role2';
420
421Composes another role into the current role (or class via L<Role::Tiny::With>).
422
423If you have conflicts and want to resolve them in favour of Some::Role1 you
424can instead write:
425
426 with 'Some::Role1';
5febcf4d 427 with 'Some::Role2';
428
836aea1b 429If you have conflicts and want to resolve different conflicts in favour of
430different roles, please refactor your codebase.
5febcf4d 431
432=head2 before
433
434 before foo => sub { ... };
435
436See L<< Class::Method::Modifiers/before method(s) => sub { ... } >> for full
437documentation.
438
adcb6c3d 439Note that since you are not required to use method modifiers,
440L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
441a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
442both L<Class::Method::Modifiers> and L<Role::Tiny>.
443
5febcf4d 444=head2 around
445
446 around foo => sub { ... };
447
448See L<< Class::Method::Modifiers/around method(s) => sub { ... } >> for full
449documentation.
450
adcb6c3d 451Note that since you are not required to use method modifiers,
452L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
453a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
454both L<Class::Method::Modifiers> and L<Role::Tiny>.
455
5febcf4d 456=head2 after
457
458 after foo => sub { ... };
459
460See L<< Class::Method::Modifiers/after method(s) => sub { ... } >> for full
461documentation.
462
adcb6c3d 463Note that since you are not required to use method modifiers,
464L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
465a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
466both L<Class::Method::Modifiers> and L<Role::Tiny>.
467
468=head1 SEE ALSO
469
470L<Role::Tiny> is the attribute-less subset of L<Moo::Role>; L<Moo::Role> is
471a meta-protocol-less subset of the king of role systems, L<Moose::Role>.
472
473If you don't want method modifiers and do want to be forcibly restricted
474to a single role application per class, Ovid's L<Role::Basic> exists. But
836aea1b 475Stevan Little (the L<Moose> author) don't find the additional restrictions
476to be amazingly helpful in most cases; L<Role::Basic>'s choices are more
477a guide to what you should prefer doing, to our mind, rather than something
478that needs to be enforced.
adcb6c3d 479
c334a5c1 480=head1 AUTHOR
481
482mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
483
484=head1 CONTRIBUTORS
485
486dg - David Leadbeater (cpan:DGL) <dgl@dgl.cx>
487
488frew - Arthur Axel "fREW" Schmidt (cpan:FREW) <frioux@gmail.com>
489
490hobbs - Andrew Rodland (cpan:ARODLAND) <arodland@cpan.org>
491
492jnap - John Napiorkowski (cpan:JJNAPIORK) <jjn1056@yahoo.com>
493
494ribasushi - Peter Rabbitson (cpan:RIBASUSHI) <ribasushi@cpan.org>
495
496chip - Chip Salzenberg (cpan:CHIPS) <chip@pobox.com>
497
498ajgb - Alex J. G. BurzyƄski (cpan:AJGB) <ajgb@cpan.org>
499
500doy - Jesse Luehrs (cpan:DOY) <doy at tozt dot net>
501
502perigrin - Chris Prather (cpan:PERIGRIN) <chris@prather.org>
503
504=head1 COPYRIGHT
40f3e3aa 505
c334a5c1 506Copyright (c) 2010-2012 the Role::Tiny L</AUTHOR> and L</CONTRIBUTORS>
507as listed above.
40f3e3aa 508
c334a5c1 509=head1 LICENSE
40f3e3aa 510
c334a5c1 511This library is free software and may be distributed under the same terms
512as perl itself.
40f3e3aa 513
514=cut