1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
package Return::MultiLevel;
use strict;
use warnings;
use 5.008001;
use Carp qw(confess);
use parent 'Exporter';
# ABSTRACT: Return across multiple call levels
our $VERSION = '0.08'; # VERSION
our @EXPORT_OK = qw(with_return);
our $_backend;
sub with_return (&);
if (!$ENV{RETURN_MULTILEVEL_PP} && eval { require Scope::Upper }) {
*with_return = sub (&) {
my ($f) = @_;
my $ctx = Scope::Upper::HERE();
my @canary = !$ENV{RETURN_MULTILEVEL_DEBUG}
? '-'
: Carp::longmess "Original call to with_return";
local $canary[0];
$f->(sub {
$canary[0] and confess $canary[0] eq '-'
? ""
: "Captured stack:\n$canary[0]\n",
"Attempt to re-enter dead call frame";
Scope::Upper::unwind(@_, $ctx);
})
};
$_backend = 'XS';
} else {
*_label_at = do {
my $_label_prefix = '_' . __PACKAGE__ . '_';
$_label_prefix =~ tr/A-Za-z0-9_/_/cs;
sub { $_label_prefix . $_[0] };
};
our @_trampoline_cache;
*_get_trampoline = sub {
my ($i) = @_;
my $label = _label_at($i);
(
$label,
$_trampoline_cache[$i] ||= eval ## no critic (BuiltinFunctions::ProhibitStringyEval)
qq{
sub {
my \$rr = shift;
my \$fn = shift;
return &\$fn;
$label: splice \@\$rr
}
},
)
};
our $_depth = 0;
*with_return = sub (&) {
my ($f) = @_;
my ($label, $trampoline) = _get_trampoline($_depth);
local $_depth = $_depth + 1;
my @canary = !$ENV{RETURN_MULTILEVEL_DEBUG}
? '-'
: Carp::longmess "Original call to with_return";
local $canary[0];
my @ret;
$trampoline->(
\@ret,
$f,
sub {
$canary[0] and confess $canary[0] eq '-'
? ""
: "Captured stack:\n$canary[0]\n",
"Attempt to re-enter dead call frame";
@ret = @_;
goto $label;
},
)
};
$_backend = 'PP';
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Return::MultiLevel - Return across multiple call levels
=head1 VERSION
version 0.08
=head1 SYNOPSIS
use Return::MultiLevel qw(with_return);
sub inner {
my ($f) = @_;
$f->(42); # implicitly return from 'with_return' below
print "You don't see this\n";
}
sub outer {
my ($f) = @_;
inner($f);
print "You don't see this either\n";
}
my $result = with_return {
my ($return) = @_;
outer($return);
die "Not reached";
};
print $result, "\n"; # 42
=head1 DESCRIPTION
This module provides a way to return immediately from a deeply nested call
stack. This is similar to exceptions, but exceptions don't stop automatically
at a target frame (and they can be caught by intermediate stack frames using
L<C<eval>|perlfunc/eval-EXPR>). In other words, this is more like
L<setjmp(3)>/L<longjmp(3)> than L<C<die>|perlfunc/die-LIST>.
Another way to think about it is that the "multi-level return" coderef
represents a single-use/upward-only continuation.
=head2 Functions
The following functions are available (and can be imported on demand).
=over
=item with_return BLOCK
Executes I<BLOCK>, passing it a code reference (called C<$return> in this
description) as a single argument. Returns whatever I<BLOCK> returns.
If C<$return> is called, it causes an immediate return from C<with_return>. Any
arguments passed to C<$return> become C<with_return>'s return value (if
C<with_return> is in scalar context, it will return the last argument passed to
C<$return>).
It is an error to invoke C<$return> after its surrounding I<BLOCK> has finished
executing. In particular, it is an error to call C<$return> twice.
=back
=head1 DEBUGGING
This module uses L<C<unwind>|Scope::Upper/unwind> from
L<C<Scope::Upper>|Scope::Upper> to do its work. If
L<C<Scope::Upper>|Scope::Upper> is not available, it substitutes its own pure
Perl implementation. You can force the pure Perl version to be used regardless
by setting the environment variable C<RETURN_MULTILEVEL_PP> to 1.
If you get the error message C<Attempt to re-enter dead call frame>, that means
something has called a C<$return> from outside of its C<with_return { ... }>
block. You can get a stack trace of where that C<with_return> was by setting
the environment variable C<RETURN_MULTILEVEL_DEBUG> to 1.
=head1 CAVEATS
You can't use this module to return across implicit function calls, such as
signal handlers (like C<$SIG{ALRM}>) or destructors (C<sub DESTROY { ... }>).
These are invoked automatically by perl and not part of the normal call chain.
=head1 AUTHORS
=over 4
=item *
Lukas Mai
=item *
Graham Ollis <plicease@cpan.org>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2013,2014,2021 by Lukas Mai.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|