line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Try::Tiny; |
2
|
|
|
|
|
|
|
BEGIN { |
3
|
5
|
|
|
5
|
|
166
|
$Try::Tiny::AUTHORITY = 'cpan:NUFFIN'; |
4
|
|
|
|
|
|
|
} |
5
|
|
|
|
|
|
|
$Try::Tiny::VERSION = '0.21'; |
6
|
5
|
|
|
5
|
|
86
|
use 5.006; |
|
5
|
|
|
|
|
19
|
|
7
|
|
|
|
|
|
|
# ABSTRACT: minimal try/catch with proper preservation of $@ |
8
|
|
|
|
|
|
|
|
9
|
5
|
|
|
5
|
|
24
|
use strict; |
|
5
|
|
|
|
|
18
|
|
|
5
|
|
|
|
|
118
|
|
10
|
5
|
|
|
5
|
|
24
|
use warnings; |
|
5
|
|
|
|
|
8
|
|
|
5
|
|
|
|
|
136
|
|
11
|
|
|
|
|
|
|
|
12
|
5
|
|
|
5
|
|
26
|
use Exporter (); |
|
5
|
|
|
|
|
9
|
|
|
5
|
|
|
|
|
264
|
|
13
|
|
|
|
|
|
|
our @ISA = qw( Exporter ); |
14
|
|
|
|
|
|
|
our @EXPORT = our @EXPORT_OK = qw(try catch finally); |
15
|
|
|
|
|
|
|
|
16
|
5
|
|
|
5
|
|
28
|
use Carp; |
|
5
|
|
|
|
|
8
|
|
|
5
|
|
|
|
|
474
|
|
17
|
|
|
|
|
|
|
$Carp::Internal{+__PACKAGE__}++; |
18
|
|
|
|
|
|
|
|
19
|
5
|
50
|
|
5
|
|
369
|
BEGIN { eval "use Sub::Name; 1" or *{subname} = sub {1} } |
|
34
|
|
|
5
|
|
40
|
|
|
5
|
|
|
34
|
|
3554
|
|
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
# Need to prototype as @ not $$ because of the way Perl evaluates the prototype. |
22
|
|
|
|
|
|
|
# Keeping it at $$ means you only ever get 1 sub because we need to eval in a list |
23
|
|
|
|
|
|
|
# context & not a scalar one |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
sub try (&;@) { |
26
|
17
|
|
|
17
|
1
|
53
|
my ( $try, @code_refs ) = @_; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
# we need to save this here, the eval block will be in scalar context due |
29
|
|
|
|
|
|
|
# to $failed |
30
|
17
|
|
|
|
|
31
|
my $wantarray = wantarray; |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
# work around perl bug by explicitly initializing these, due to the likelyhood |
33
|
|
|
|
|
|
|
# this will be used in global destruction (perl rt#119311) |
34
|
17
|
|
|
|
|
37
|
my ( $catch, @finally ) = (); |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
# find labeled blocks in the argument list. |
37
|
|
|
|
|
|
|
# catch and finally tag the blocks by blessing a scalar reference to them. |
38
|
17
|
|
|
|
|
33
|
foreach my $code_ref (@code_refs) { |
39
|
|
|
|
|
|
|
|
40
|
17
|
50
|
|
|
|
48
|
if ( ref($code_ref) eq 'Try::Tiny::Catch' ) { |
|
|
0
|
|
|
|
|
|
41
|
17
|
50
|
|
|
|
36
|
croak 'A try() may not be followed by multiple catch() blocks' |
42
|
|
|
|
|
|
|
if $catch; |
43
|
17
|
|
|
|
|
32
|
$catch = ${$code_ref}; |
|
17
|
|
|
|
|
42
|
|
44
|
|
|
|
|
|
|
} elsif ( ref($code_ref) eq 'Try::Tiny::Finally' ) { |
45
|
0
|
|
|
|
|
0
|
push @finally, ${$code_ref}; |
|
0
|
|
|
|
|
0
|
|
46
|
|
|
|
|
|
|
} else { |
47
|
0
|
0
|
|
|
|
0
|
croak( |
48
|
|
|
|
|
|
|
'try() encountered an unexpected argument (' |
49
|
|
|
|
|
|
|
. ( defined $code_ref ? $code_ref : 'undef' ) |
50
|
|
|
|
|
|
|
. ') - perhaps a missing semi-colon before or' |
51
|
|
|
|
|
|
|
); |
52
|
|
|
|
|
|
|
} |
53
|
|
|
|
|
|
|
} |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
# FIXME consider using local $SIG{__DIE__} to accumulate all errors. It's |
56
|
|
|
|
|
|
|
# not perfect, but we could provide a list of additional errors for |
57
|
|
|
|
|
|
|
# $catch->(); |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
# name the blocks if we have Sub::Name installed |
60
|
17
|
|
|
|
|
33
|
my $caller = caller; |
61
|
17
|
|
|
|
|
60
|
subname("${caller}::try {...} " => $try); |
62
|
17
|
50
|
|
|
|
63
|
subname("${caller}::catch {...} " => $catch) if $catch; |
63
|
17
|
|
|
|
|
30
|
subname("${caller}::finally {...} " => $_) foreach @finally; |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
# save the value of $@ so we can set $@ back to it in the beginning of the eval |
66
|
|
|
|
|
|
|
# and restore $@ after the eval finishes |
67
|
17
|
|
|
|
|
26
|
my $prev_error = $@; |
68
|
|
|
|
|
|
|
|
69
|
17
|
|
|
|
|
27
|
my ( @ret, $error ); |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
# failed will be true if the eval dies, because 1 will not be returned |
72
|
|
|
|
|
|
|
# from the eval body |
73
|
17
|
|
|
|
|
23
|
my $failed = not eval { |
74
|
17
|
|
|
|
|
26
|
$@ = $prev_error; |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
# evaluate the try block in the correct context |
77
|
17
|
50
|
|
|
|
41
|
if ( $wantarray ) { |
|
|
50
|
|
|
|
|
|
78
|
0
|
|
|
|
|
0
|
@ret = $try->(); |
79
|
|
|
|
|
|
|
} elsif ( defined $wantarray ) { |
80
|
17
|
|
|
|
|
35
|
$ret[0] = $try->(); |
81
|
|
|
|
|
|
|
} else { |
82
|
0
|
|
|
|
|
0
|
$try->(); |
83
|
|
|
|
|
|
|
}; |
84
|
|
|
|
|
|
|
|
85
|
0
|
|
|
|
|
0
|
return 1; # properly set $fail to false |
86
|
|
|
|
|
|
|
}; |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
# preserve the current error and reset the original value of $@ |
89
|
17
|
|
|
|
|
1446
|
$error = $@; |
90
|
17
|
|
|
|
|
29
|
$@ = $prev_error; |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
# set up a scope guard to invoke the finally block at the end |
93
|
|
|
|
|
|
|
my @guards = |
94
|
17
|
0
|
|
|
|
32
|
map { Try::Tiny::ScopeGuard->_new($_, $failed ? $error : ()) } |
|
0
|
|
|
|
|
0
|
|
95
|
|
|
|
|
|
|
@finally; |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
# at this point $failed contains a true value if the eval died, even if some |
98
|
|
|
|
|
|
|
# destructor overwrote $@ as the eval was unwinding. |
99
|
17
|
50
|
|
|
|
55
|
if ( $failed ) { |
100
|
|
|
|
|
|
|
# if we got an error, invoke the catch block. |
101
|
17
|
50
|
|
|
|
42
|
if ( $catch ) { |
102
|
|
|
|
|
|
|
# This works like given($error), but is backwards compatible and |
103
|
|
|
|
|
|
|
# sets $_ in the dynamic scope for the body of C<$catch> |
104
|
17
|
|
|
|
|
34
|
for ($error) { |
105
|
17
|
|
|
|
|
53
|
return $catch->($error); |
106
|
|
|
|
|
|
|
} |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
# in case when() was used without an explicit return, the C |
109
|
|
|
|
|
|
|
# loop will be aborted and there's no useful return value |
110
|
|
|
|
|
|
|
} |
111
|
|
|
|
|
|
|
|
112
|
0
|
|
|
|
|
0
|
return; |
113
|
|
|
|
|
|
|
} else { |
114
|
|
|
|
|
|
|
# no failure, $@ is back to what it was, everything is fine |
115
|
0
|
0
|
|
|
|
0
|
return $wantarray ? @ret : $ret[0]; |
116
|
|
|
|
|
|
|
} |
117
|
|
|
|
|
|
|
} |
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
sub catch (&;@) { |
120
|
17
|
|
|
17
|
1
|
38
|
my ( $block, @rest ) = @_; |
121
|
|
|
|
|
|
|
|
122
|
17
|
50
|
|
|
|
46
|
croak 'Useless bare catch()' unless wantarray; |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
return ( |
125
|
17
|
|
|
|
|
72
|
bless(\$block, 'Try::Tiny::Catch'), |
126
|
|
|
|
|
|
|
@rest, |
127
|
|
|
|
|
|
|
); |
128
|
|
|
|
|
|
|
} |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
sub finally (&;@) { |
131
|
0
|
|
|
0
|
1
|
|
my ( $block, @rest ) = @_; |
132
|
|
|
|
|
|
|
|
133
|
0
|
0
|
|
|
|
|
croak 'Useless bare finally()' unless wantarray; |
134
|
|
|
|
|
|
|
|
135
|
|
|
|
|
|
|
return ( |
136
|
0
|
|
|
|
|
|
bless(\$block, 'Try::Tiny::Finally'), |
137
|
|
|
|
|
|
|
@rest, |
138
|
|
|
|
|
|
|
); |
139
|
|
|
|
|
|
|
} |
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
{ |
142
|
|
|
|
|
|
|
package # hide from PAUSE |
143
|
|
|
|
|
|
|
Try::Tiny::ScopeGuard; |
144
|
|
|
|
|
|
|
|
145
|
5
|
50
|
|
5
|
|
39
|
use constant UNSTABLE_DOLLARAT => ($] < '5.013002') ? 1 : 0; |
|
5
|
|
|
|
|
9
|
|
|
5
|
|
|
|
|
1338
|
|
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
sub _new { |
148
|
0
|
|
|
0
|
|
|
shift; |
149
|
0
|
|
|
|
|
|
bless [ @_ ]; |
150
|
|
|
|
|
|
|
} |
151
|
|
|
|
|
|
|
|
152
|
|
|
|
|
|
|
sub DESTROY { |
153
|
0
|
|
|
0
|
|
|
my ($code, @args) = @{ $_[0] }; |
|
0
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
|
155
|
0
|
|
|
|
|
|
local $@ if UNSTABLE_DOLLARAT; |
156
|
|
|
|
|
|
|
eval { |
157
|
0
|
|
|
|
|
|
$code->(@args); |
158
|
0
|
|
|
|
|
|
1; |
159
|
0
|
0
|
|
|
|
|
} or do { |
160
|
0
|
0
|
|
|
|
|
warn |
161
|
|
|
|
|
|
|
"Execution of finally() block $code resulted in an exception, which " |
162
|
|
|
|
|
|
|
. '*CAN NOT BE PROPAGATED* due to fundamental limitations of Perl. ' |
163
|
|
|
|
|
|
|
. 'Your program will continue as if this event never took place. ' |
164
|
|
|
|
|
|
|
. "Original exception text follows:\n\n" |
165
|
|
|
|
|
|
|
. (defined $@ ? $@ : '$@ left undefined...') |
166
|
|
|
|
|
|
|
. "\n" |
167
|
|
|
|
|
|
|
; |
168
|
|
|
|
|
|
|
} |
169
|
|
|
|
|
|
|
} |
170
|
|
|
|
|
|
|
} |
171
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
__PACKAGE__ |
173
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
__END__ |