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