File Coverage

inc/Try/Tiny.pm
Criterion Covered Total %
statement 53 72 73.6
branch 14 34 41.1
condition n/a
subroutine 12 15 80.0
pod 3 3 100.0
total 82 124 66.1


line stmt bran cond sub pod time code
1             package Try::Tiny;
2             BEGIN {
3 193     193   11232 $Try::Tiny::AUTHORITY = 'cpan:NUFFIN';
4             }
5             $Try::Tiny::VERSION = '0.21';
6 193     193   5171 use 5.006;
  193         659  
7             # ABSTRACT: minimal try/catch with proper preservation of $@
8              
9 193     193   1075 use strict;
  193         438  
  193         5120  
10 193     193   1093 use warnings;
  193         473  
  193         5766  
11              
12 193     193   1142 use Exporter ();
  193         504  
  193         12431  
13             our @ISA = qw( Exporter );
14             our @EXPORT = our @EXPORT_OK = qw(try catch finally);
15              
16 193     193   1314 use Carp;
  193         448  
  193         20977  
17             $Carp::Internal{+__PACKAGE__}++;
18              
19 193 50   193   14597 BEGIN { eval "use Sub::Name; 1" or *{subname} = sub {1} }
  2072     193   2906  
  193     2072   140102  
  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 1036     1036 1 2558 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 1036         1881 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 1036         1964 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 1036         2126 foreach my $code_ref (@code_refs) {
39              
40 1036 50       3352 if ( ref($code_ref) eq 'Try::Tiny::Catch' ) {
    0          
41 1036 50       2370 croak 'A try() may not be followed by multiple catch() blocks'
42             if $catch;
43 1036         1436 $catch = ${$code_ref};
  1036         2535  
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 1036         2196 my $caller = caller;
61 1036         3733 subname("${caller}::try {...} " => $try);
62 1036 50       4611 subname("${caller}::catch {...} " => $catch) if $catch;
63 1036         2109 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 1036         1729 my $prev_error = $@;
68              
69 1036         1610 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 1036         1938 my $failed = not eval {
74 1036         1563 $@ = $prev_error;
75              
76             # evaluate the try block in the correct context
77 1036 100       2848 if ( $wantarray ) {
    100          
78 5         11 @ret = $try->();
79             } elsif ( defined $wantarray ) {
80 1029         2324 $ret[0] = $try->();
81             } else {
82 2         6 $try->();
83             };
84              
85 212         6114 return 1; # properly set $fail to false
86             };
87              
88             # preserve the current error and reset the original value of $@
89 1036         5410 $error = $@;
90 1036         1874 $@ = $prev_error;
91              
92             # set up a scope guard to invoke the finally block at the end
93             my @guards =
94 1036 0       2645 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 1036 100       2337 if ( $failed ) {
100             # if we got an error, invoke the catch block.
101 824 50       1900 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 824         1693 for ($error) {
105 824         2244 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 212 50       1315 return $wantarray ? @ret : $ret[0];
116             }
117             }
118              
119             sub catch (&;@) {
120 1036     1036 1 4833 my ( $block, @rest ) = @_;
121              
122 1036 50       2958 croak 'Useless bare catch()' unless wantarray;
123              
124             return (
125 1036         5083 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 193 50   193   1881 use constant UNSTABLE_DOLLARAT => ($] < '5.013002') ? 1 : 0;
  193         459  
  193         59687  
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__