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