cleanup and warning notice
[gitmo/Role-Tiny.git] / lib / Sub / Defer.pm
CommitLineData
eae82931 1package Sub::Defer;
2
3use strictures 1;
4use base qw(Exporter);
b1eebd55 5use Moo::_Utils;
eae82931 6
a165a07f 7our @EXPORT = qw(defer_sub undefer_sub);
eae82931 8
9our %DEFERRED;
10
a165a07f 11sub undefer_sub {
eae82931 12 my ($deferred) = @_;
13 my ($target, $maker, $undeferred_ref) = @{
14 $DEFERRED{$deferred}||return $deferred
15 };
16 ${$undeferred_ref} = my $made = $maker->();
a165a07f 17 if (defined($target)) {
18 no warnings 'redefine';
19 *{_getglob($target)} = $made;
20 }
eae82931 21 return $made;
22}
23
a165a07f 24sub defer_sub {
eae82931 25 my ($target, $maker) = @_;
26 my $undeferred;
27 my $deferred_string;
9187b862 28 my $deferred = sub {
a165a07f 29 goto &{$undeferred ||= undefer_sub($deferred_string)};
9187b862 30 };
eae82931 31 $deferred_string = "$deferred";
32 $DEFERRED{$deferred} = [ $target, $maker, \$undeferred ];
a165a07f 33 *{_getglob $target} = $deferred if defined($target);
eae82931 34 return $deferred;
35}
36
371;
8213644a 38
0b6e5fff 39=head1 NAME
40
41Sub::Defer - defer generation of subroutines until they are first called
42
8213644a 43=head1 SYNOPSIS
44
45 use Sub::Defer;
46
47 my $deferred = defer_sub 'Logger::time_since_first_log' => sub {
48 my $t = time;
49 sub { time - $t };
50 };
51
0b6e5fff 52 Logger->time_since_first_log; # returns 0 and replaces itself
53 Logger->time_since_first_log; # returns time - $t
8213644a 54
55=head1 DESCRIPTION
56
0b6e5fff 57These subroutines provide the user with a convenient way to defer creation of
8213644a 58subroutines and methods until they are first called.
59
60=head1 SUBROUTINES
61
62=head2 defer_sub
63
64 my $coderef = defer_sub $name => sub { ... };
65
0b6e5fff 66This subroutine returns a coderef that encapsulates the provided sub - when
67it is first called, the provided sub is called and is -itself- expected to
68return a subroutine which will be goto'ed to on subsequent calls.
8213644a 69
0b6e5fff 70If a name is provided, this also installs the sub as that name - and when
71the subroutine is undeferred will re-install the final version for speed.
8213644a 72
73=head2 undefer_sub
74
75 my $coderef = undefer_sub \&Foo::name;
76
77If the passed coderef has been L<deferred|/defer_sub> this will "undefer" it.
78If the passed coderef has not been deferred, this will just return it.
79
80If this is confusing, take a look at the example in the L</SYNOPSIS>.