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