44659cf4ed38c18c61be50f9fd10871ab25d6557
[gitmo/Role-Tiny.git] / lib / Role / Tiny.pm
1 package Role::Tiny;
2
3 sub _getglob { \*{$_[0]} }
4 sub _getstash { \%{"$_[0]::"} }
5
6 use strict;
7 use warnings FATAL => 'all';
8
9 our $VERSION = '1.002005'; # 1.2.5
10 $VERSION = eval $VERSION;
11
12 our %INFO;
13 our %APPLIED_TO;
14 our %COMPOSED;
15 our %COMPOSITE_INFO;
16
17 # Module state workaround totally stolen from Zefram's Module::Runtime.
18
19 BEGIN {
20   *_WORK_AROUND_BROKEN_MODULE_STATE = "$]" < 5.009 ? sub(){1} : sub(){0};
21 }
22
23 sub Role::Tiny::__GUARD__::DESTROY {
24   delete $INC{$_[0]->[0]} if @{$_[0]};
25 }
26
27 sub _load_module {
28   (my $proto = $_[0]) =~ s/::/\//g;
29   $proto .= '.pm';
30   return 1 if $INC{$proto};
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])||{}};
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;
38   return 1;
39 }
40
41 sub import {
42   my $target = caller;
43   my $me = shift;
44   strict->import;
45   warnings->import(FATAL => 'all');
46   return if $INFO{$target}; # already exported into this package
47   # get symbol table reference
48   my $stash = _getstash($target);
49   # install before/after/around subs
50   foreach my $type (qw(before after around)) {
51     *{_getglob "${target}::${type}"} = sub {
52       require Class::Method::Modifiers;
53       push @{$INFO{$target}{modifiers}||=[]}, [ $type => @_ ];
54       return;
55     };
56   }
57   *{_getglob "${target}::requires"} = sub {
58     push @{$INFO{$target}{requires}||=[]}, @_;
59     return;
60   };
61   *{_getglob "${target}::with"} = sub {
62     $me->apply_roles_to_package($target, @_);
63     return;
64   };
65   # grab all *non-constant* (stash slot is not a scalarref) subs present
66   # in the symbol table and store their refaddrs (no need to forcibly
67   # inflate constant subs into real subs) with a map to the coderefs in
68   # 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;
71   # a role does itself
72   $APPLIED_TO{$target} = { $target => undef };
73 }
74
75 sub apply_single_role_to_package {
76   my ($me, $to, $role) = @_;
77
78   _load_module($role);
79
80   die "This is apply_role_to_package" if ref($to);
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   # copy our role list into the target's
90   @{$APPLIED_TO{$to}||={}}{keys %{$APPLIED_TO{$role}}} = ();
91 }
92
93 sub 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
101 sub create_class_with_roles {
102   my ($me, $superclass, @roles) = @_;
103
104   die "No roles supplied!" unless @roles;
105
106   _load_module($superclass);
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
115   my $new_name = join(
116     '__WITH__', $superclass, my $compose_name = join '__AND__', @roles
117   );
118
119   return $new_name if $COMPOSED{class}{$new_name};
120
121   foreach my $role (@roles) {
122     _load_module($role);
123     die "${role} is not a Role::Tiny" unless $INFO{$role};
124   }
125
126   if ($] >= 5.010) {
127     require mro;
128   } else {
129     require MRO::Compat;
130   }
131
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
144   my @composable = map $me->_composable_package_for($_), reverse @roles;
145
146   *{_getglob("${new_name}::ISA")} = [ @composable, $superclass ];
147
148   my @info = map $INFO{$_}, @roles;
149
150   $me->_check_requires(
151     $new_name, $compose_name,
152     do { my %h; @h{map @{$_->{requires}||[]}, @info} = (); keys %h }
153   );
154
155   @{$APPLIED_TO{$new_name}||={}}{
156     map keys %{$APPLIED_TO{$_}}, @roles
157   } = ();
158
159   $COMPOSED{class}{$new_name} = 1;
160   return $new_name;
161 }
162
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
166 sub apply_role_to_package { shift->apply_single_role_to_package(@_) }
167
168 sub apply_roles_to_package {
169   my ($me, $to, @roles) = @_;
170
171   return $me->apply_role_to_package($to, $roles[0]) if @roles == 1;
172
173   my %conflicts = %{$me->_composite_info_for(@roles)->{conflicts}};
174   delete $conflicts{$_} for keys %{ $me->_concrete_methods_of($to) };
175   if (keys %conflicts) {
176     my $fail = 
177       join "\n",
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;
184   }
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
193   foreach my $role (@roles) {
194     $me->apply_single_role_to_package($to, $role);
195   }
196   $APPLIED_TO{$to}{join('|',@roles)} = 1;
197 }
198
199 sub _composite_info_for {
200   my ($me, @roles) = @_;
201   $COMPOSITE_INFO{join('|', sort @roles)} ||= do {
202     foreach my $role (@roles) {
203       _load_module($role);
204     }
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   };
213 }
214
215 sub _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';
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 ); }
226   my $modifiers = $INFO{$role}{modifiers}||[];
227   my @mod_base;
228   foreach my $modified (
229     do { my %h; @h{map $_->[1], @$modifiers} = (); keys %h }
230   ) {
231     push @mod_base, "sub ${modified} { shift->next::method(\@_) }";
232   }
233   my $e;
234   {
235     local $@;
236     eval(my $code = join "\n", "package ${base_name};", @mod_base);
237     $e = "Evaling failed: $@\nTrying to eval:\n${code}" if $@;
238   }
239   die $e if $e;
240   $me->_install_modifiers($composed_name, $modifiers);
241   $COMPOSED{role}{$composed_name} = 1;
242   return $composed_name;
243 }
244
245 sub _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
257 sub _concrete_methods_of {
258   my ($me, $role) = @_;
259   my $info = $INFO{$role};
260   # grab role symbol table
261   my $stash = _getstash($role);
262   # reverse so our keys become the values (captured coderefs) in case
263   # they got copied or re-used since
264   my $not_methods = { reverse %{$info->{not_methods}||{}} };
265   $info->{methods} ||= +{
266     # grab all code entries that aren't in the not_methods list
267     map {
268       my $code = *{$stash->{$_}}{CODE};
269       ( ! $code or exists $not_methods->{$code} ) ? () : ($_ => $code)
270     } grep !ref($stash->{$_}), keys %$stash
271   };
272 }
273
274 sub methods_provided_by {
275   my ($me, $role) = @_;
276   die "${role} is not a Role::Tiny" unless my $info = $INFO{$role};
277   (keys %{$me->_concrete_methods_of($role)}, @{$info->{requires}||[]});
278 }
279
280 sub _install_methods {
281   my ($me, $to, $role) = @_;
282
283   my $info = $INFO{$role};
284
285   my $methods = $me->_concrete_methods_of($role);
286
287   # grab target symbol table
288   my $stash = _getstash($to);
289
290   # determine already extant methods of target
291   my %has_methods;
292   @has_methods{grep
293     +(ref($stash->{$_}) || *{$stash->{$_}}{CODE}),
294     keys %$stash
295   } = ();
296
297   foreach my $i (grep !exists $has_methods{$_}, keys %$methods) {
298     no warnings 'once';
299     *{_getglob "${to}::${i}"} = $methods->{$i};
300   }
301   
302   $me->_install_does($to);
303 }
304
305 sub _install_modifiers {
306   my ($me, $to, $modifiers) = @_;
307   if (my $info = $INFO{$to}) {
308     push @{$info->{modifiers}}, @{$modifiers||[]};
309   } else {
310     foreach my $modifier (@{$modifiers||[]}) {
311       $me->_install_single_modifier($to, @$modifier);
312     }
313   }
314 }
315
316 my $vcheck_error;
317
318 sub _install_single_modifier {
319   my ($me, @args) = @_;
320   defined($vcheck_error) or $vcheck_error = do {
321     local $@;
322     eval { Class::Method::Modifiers->VERSION(1.05); 1 }
323       ? 0
324       : $@
325   };
326   $vcheck_error and die $vcheck_error;
327   Class::Method::Modifiers::install_modifier(@args);
328 }
329
330 my $FALLBACK = sub { 0 };
331 sub _install_does {
332   my ($me, $to) = @_;
333   
334   # only add does() method to classes
335   return if $INFO{$to};
336   
337   # add does() only if they don't have one
338   *{_getglob "${to}::does"} = \&does_role unless $to->can('does');
339   
340   return if ($to->can('DOES') and $to->can('DOES') != (UNIVERSAL->can('DOES') || 0));
341   
342   my $existing = $to->can('DOES') || $to->can('isa') || $FALLBACK;
343   my $new_sub = sub {
344     my ($proto, $role) = @_;
345     Role::Tiny::does_role($proto, $role) or $proto->$existing($role);
346   };
347   no warnings 'redefine';
348   *{_getglob "${to}::DOES"} = $new_sub;
349 }
350
351 sub does_role {
352   my ($proto, $role) = @_;
353   if ($] >= 5.010) {
354     require mro;
355   } else {
356     require MRO::Compat;
357   }
358   foreach my $class (@{mro::get_linear_isa(ref($proto)||$proto)}) {
359     return 1 if exists $APPLIED_TO{$class}{$role};
360   }
361   return 0;
362 }
363
364 sub is_role {
365   my ($me, $role) = @_;
366   return !!$INFO{$role};
367 }
368
369 1;
370
371 =encoding utf-8
372
373 =head1 NAME
374
375 Role::Tiny - Roles. Like a nouvelle cuisine portion size slice of Moose.
376
377 =head1 SYNOPSIS
378
379  package Some::Role;
380
381  use Role::Tiny;
382
383  sub foo { ... }
384
385  sub bar { ... }
386
387  around baz => sub { ... }
388
389  1;
390
391 else where
392
393  package Some::Class;
394
395  use Role::Tiny::With;
396
397  # bar gets imported, but not foo
398  with 'Some::Role';
399
400  sub foo { ... }
401
402  # baz is wrapped in the around modifier by Class::Method::Modifiers
403  sub baz { ... }
404
405  1;
406
407 If you wanted attributes as well, look at L<Moo::Role>.
408
409 =head1 DESCRIPTION
410
411 C<Role::Tiny> is a minimalist role composition tool.
412
413 =head1 ROLE COMPOSITION
414
415 Role composition can be thought of as much more clever and meaningful multiple
416 inheritance.  The basics of this implementation of roles is:
417
418 =over 2
419
420 =item *
421
422 If a method is already defined on a class, that method will not be composed in
423 from the role.
424
425 =item *
426
427 If a method that the role L</requires> to be implemented is not implemented,
428 role application will fail loudly.
429
430 =back
431
432 Unlike L<Class::C3>, where the B<last> class inherited from "wins," role
433 composition is the other way around, where the class wins. If multiple roles
434 are applied in a single call (single with statement), then if any of their
435 provided methods clash, an exception is raised unless the class provides
436 a method since this conflict indicates a potential problem.
437
438 =head1 IMPORTED SUBROUTINES
439
440 =head2 requires
441
442  requires qw(foo bar);
443
444 Declares a list of methods that must be defined to compose role.
445
446 =head2 with
447
448  with 'Some::Role1';
449
450  with 'Some::Role1', 'Some::Role2';
451
452 Composes another role into the current role (or class via L<Role::Tiny::With>).
453
454 If you have conflicts and want to resolve them in favour of Some::Role1 you
455 can instead write: 
456
457  with 'Some::Role1';
458  with 'Some::Role2';
459
460 If you have conflicts and want to resolve different conflicts in favour of
461 different roles, please refactor your codebase.
462
463 =head2 before
464
465  before foo => sub { ... };
466
467 See L<< Class::Method::Modifiers/before method(s) => sub { ... } >> for full
468 documentation.
469
470 Note that since you are not required to use method modifiers,
471 L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
472 a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
473 both L<Class::Method::Modifiers> and L<Role::Tiny>.
474
475 =head2 around
476
477  around foo => sub { ... };
478
479 See L<< Class::Method::Modifiers/around method(s) => sub { ... } >> for full
480 documentation.
481
482 Note that since you are not required to use method modifiers,
483 L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
484 a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
485 both L<Class::Method::Modifiers> and L<Role::Tiny>.
486
487 =head2 after
488
489  after foo => sub { ... };
490
491 See L<< Class::Method::Modifiers/after method(s) => sub { ... } >> for full
492 documentation.
493
494 Note that since you are not required to use method modifiers,
495 L<Class::Method::Modifiers> is lazily loaded and we do not declare it as
496 a dependency. If your L<Role::Tiny> role uses modifiers you must depend on
497 both L<Class::Method::Modifiers> and L<Role::Tiny>.
498
499 =head1 SUBROUTINES
500
501 =head2 does_role
502
503  if (Role::Tiny::does_role($foo, 'Some::Role')) {
504    ...
505  }
506
507 Returns true if class has been composed with role.
508
509 This subroutine is also installed as ->does on any class a Role::Tiny is
510 composed into unless that class already has an ->does method, so
511
512   if ($foo->does('Some::Role')) {
513     ...
514   }
515
516 will work for classes but to test a role, one must use ::does_role directly.
517
518 Additionally, Role::Tiny will override the standard Perl C<DOES> method
519 for your class. However, if C<any> class in your class' inheritance
520 hierarchy provides C<DOES>, then Role::Tiny will not override it.
521
522 =head1 METHODS
523
524 =head2 apply_roles_to_package
525
526  Role::Tiny->apply_roles_to_package(
527    'Some::Package', 'Some::Role', 'Some::Other::Role'
528  );
529
530 Composes role with package.  See also L<Role::Tiny::With>.
531
532 =head2 apply_roles_to_object
533
534  Role::Tiny->apply_roles_to_object($foo, qw(Some::Role1 Some::Role2));
535
536 Composes roles in order into object directly.  Object is reblessed into the
537 resulting class.
538
539 =head2 create_class_with_roles
540
541  Role::Tiny->create_class_with_roles('Some::Base', qw(Some::Role1 Some::Role2));
542
543 Creates a new class based on base, with the roles composed into it in order.
544 New class is returned.
545
546 =head2 is_role
547
548  Role::Tiny->is_role('Some::Role1')
549
550 Returns true if the given package is a role.
551
552 =head1 SEE ALSO
553
554 L<Role::Tiny> is the attribute-less subset of L<Moo::Role>; L<Moo::Role> is
555 a meta-protocol-less subset of the king of role systems, L<Moose::Role>.
556
557 If you don't want method modifiers and do want to be forcibly restricted
558 to a single role application per class, Ovid's L<Role::Basic> exists. But
559 Stevan Little (the L<Moose> author) and I don't find the additional
560 restrictions to be amazingly helpful in most cases; L<Role::Basic>'s choices
561 are more a guide to what you should prefer doing, to our mind, rather than
562 something that needs to be enforced.
563
564 =head1 AUTHOR
565
566 mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
567
568 =head1 CONTRIBUTORS
569
570 dg - David Leadbeater (cpan:DGL) <dgl@dgl.cx>
571
572 frew - Arthur Axel "fREW" Schmidt (cpan:FREW) <frioux@gmail.com>
573
574 hobbs - Andrew Rodland (cpan:ARODLAND) <arodland@cpan.org>
575
576 jnap - John Napiorkowski (cpan:JJNAPIORK) <jjn1056@yahoo.com>
577
578 ribasushi - Peter Rabbitson (cpan:RIBASUSHI) <ribasushi@cpan.org>
579
580 chip - Chip Salzenberg (cpan:CHIPS) <chip@pobox.com>
581
582 ajgb - Alex J. G. Burzyński (cpan:AJGB) <ajgb@cpan.org>
583
584 doy - Jesse Luehrs (cpan:DOY) <doy at tozt dot net>
585
586 perigrin - Chris Prather (cpan:PERIGRIN) <chris@prather.org>
587
588 Mithaldu - Christian Walde (cpan:MITHALDU) <walde.christian@googlemail.com>
589
590 ilmari - Dagfinn Ilmari Mannsåker (cpan:ILMARI) <ilmari@ilmari.org>
591
592 tobyink - Toby Inkster (cpan:TOBYINK) <tobyink@cpan.org>
593
594 =head1 COPYRIGHT
595
596 Copyright (c) 2010-2012 the Role::Tiny L</AUTHOR> and L</CONTRIBUTORS>
597 as listed above.
598
599 =head1 LICENSE
600
601 This library is free software and may be distributed under the same terms
602 as perl itself.
603
604 =cut