File Coverage

inc/Try/Tiny.pm
Criterion Covered Total %
statement 55 72 76.3
branch 16 34 47.0
condition n/a
subroutine 11 14 78.5
pod 3 3 100.0
total 85 123 69.1


line stmt bran cond sub pod time code
1             package Try::Tiny;
2             BEGIN {
3 230     230   417059 $Try::Tiny::AUTHORITY = 'cpan:NUFFIN';
4             }
5             $Try::Tiny::VERSION = '0.21';
6 230     230   6043 use 5.006;
  230         1144  
7             # ABSTRACT: minimal try/catch with proper preservation of $@
8              
9 230     230   1392 use strict;
  230         599  
  230         6015  
10 230     230   1325 use warnings;
  230         510  
  230         6991  
11              
12 230     230   1362 use Exporter ();
  230         600  
  230         14519  
13             our @ISA = qw( Exporter );
14             our @EXPORT = our @EXPORT_OK = qw(try catch finally);
15              
16 230     230   1586 use Carp;
  230         551  
  230         24572  
17             $Carp::Internal{+__PACKAGE__}++;
18              
19 230 50   230   17161 BEGIN { eval "use Sub::Name; 1" or *{subname} = sub {1} }
  0     230   0  
  230         115355  
  230         138958  
  230         8260  
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 22445     22445 1 126534 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 22445         30969 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 22445         33056 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 22445         37564 foreach my $code_ref (@code_refs) {
39              
40 22377 50       51708 if ( ref($code_ref) eq 'Try::Tiny::Catch' ) {
    0          
41 22377 50       39316 croak 'A try() may not be followed by multiple catch() blocks'
42             if $catch;
43 22377         27196 $catch = ${$code_ref};
  22377         45877  
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 22445         38649 my $caller = caller;
61 22445         131995 subname("${caller}::try {...} " => $try);
62 22445 100       118399 subname("${caller}::catch {...} " => $catch) if $catch;
63 22445         44051 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 22445         30428 my $prev_error = $@;
68              
69 22445         30638 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 22445         29702 my $failed = not eval {
74 22445         27792 $@ = $prev_error;
75              
76             # evaluate the try block in the correct context
77 22445 100       45612 if ( $wantarray ) {
    100          
78 5         12 @ret = $try->();
79             } elsif ( defined $wantarray ) {
80 8478         19205 $ret[0] = $try->();
81             } else {
82 13962         28390 $try->();
83             };
84              
85 19764         2984894 return 1; # properly set $fail to false
86             };
87              
88             # preserve the current error and reset the original value of $@
89 22445         163361 $error = $@;
90 22445         30566 $@ = $prev_error;
91              
92             # set up a scope guard to invoke the finally block at the end
93             my @guards =
94 22445 0       35675 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 22445 100       39170 if ( $failed ) {
100             # if we got an error, invoke the catch block.
101 2681 100       6381 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 2676         5096 for ($error) {
105 2676         7591 return $catch->($error);
106             }
107              
108             # in case when() was used without an explicit return, the C<for>
109             # loop will be aborted and there's no useful return value
110             }
111              
112 5         17 return;
113             } else {
114             # no failure, $@ is back to what it was, everything is fine
115 19764 50       78605 return $wantarray ? @ret : $ret[0];
116             }
117             }
118              
119             sub catch (&;@) {
120 22377     22377 1 11973895 my ( $block, @rest ) = @_;
121              
122 22377 50       51443 croak 'Useless bare catch()' unless wantarray;
123              
124             return (
125 22377         77701 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 230 50   230   2112 use constant UNSTABLE_DOLLARAT => ($] < '5.013002') ? 1 : 0;
  230         550  
  230         70583  
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__
175              
176             =pod
177              
178             =encoding UTF-8
179              
180             =head1 NAME
181              
182             Try::Tiny - minimal try/catch with proper preservation of $@
183              
184             =head1 VERSION
185              
186             version 0.21
187              
188             =head1 SYNOPSIS
189              
190             You can use Try::Tiny's C<try> and C<catch> to expect and handle exceptional
191             conditions, avoiding quirks in Perl and common mistakes:
192              
193             # handle errors with a catch handler
194             try {
195             die "foo";
196             } catch {
197             warn "caught error: $_"; # not $@
198             };
199              
200             You can also use it like a standalone C<eval> to catch and ignore any error
201             conditions. Obviously, this is an extreme measure not to be undertaken
202             lightly:
203              
204             # just silence errors
205             try {
206             die "foo";
207             };
208              
209             =head1 DESCRIPTION
210              
211             This module provides bare bones C<try>/C<catch>/C<finally> statements that are designed to
212             minimize common mistakes with eval blocks, and NOTHING else.
213              
214             This is unlike L<TryCatch> which provides a nice syntax and avoids adding
215             another call stack layer, and supports calling C<return> from the C<try> block to
216             return from the parent subroutine. These extra features come at a cost of a few
217             dependencies, namely L<Devel::Declare> and L<Scope::Upper> which are
218             occasionally problematic, and the additional catch filtering uses L<Moose>
219             type constraints which may not be desirable either.
220              
221             The main focus of this module is to provide simple and reliable error handling
222             for those having a hard time installing L<TryCatch>, but who still want to
223             write correct C<eval> blocks without 5 lines of boilerplate each time.
224              
225             It's designed to work as correctly as possible in light of the various
226             pathological edge cases (see L</BACKGROUND>) and to be compatible with any style
227             of error values (simple strings, references, objects, overloaded objects, etc).
228              
229             If the C<try> block dies, it returns the value of the last statement executed in
230             the C<catch> block, if there is one. Otherwise, it returns C<undef> in scalar
231             context or the empty list in list context. The following examples all
232             assign C<"bar"> to C<$x>:
233              
234             my $x = try { die "foo" } catch { "bar" };
235             my $x = try { die "foo" } || { "bar" };
236             my $x = (try { die "foo" }) // { "bar" };
237              
238             my $x = eval { die "foo" } || "bar";
239              
240             You can add C<finally> blocks, yielding the following:
241              
242             my $x;
243             try { die 'foo' } finally { $x = 'bar' };
244             try { die 'foo' } catch { warn "Got a die: $_" } finally { $x = 'bar' };
245              
246             C<finally> blocks are always executed making them suitable for cleanup code
247             which cannot be handled using local. You can add as many C<finally> blocks to a
248             given C<try> block as you like.
249              
250             Note that adding a C<finally> block without a preceding C<catch> block
251             suppresses any errors. This behaviour is consistent with using a standalone
252             C<eval>, but it is not consistent with C<try>/C<finally> patterns found in
253             other programming languages, such as Java, Python, Javascript or C#. If you
254             learnt the C<try>/C<finally> pattern from one of these languages, watch out for
255             this.
256              
257             =head1 EXPORTS
258              
259             All functions are exported by default using L<Exporter>.
260              
261             If you need to rename the C<try>, C<catch> or C<finally> keyword consider using
262             L<Sub::Import> to get L<Sub::Exporter>'s flexibility.
263              
264             =over 4
265              
266             =item try (&;@)
267              
268             Takes one mandatory C<try> subroutine, an optional C<catch> subroutine and C<finally>
269             subroutine.
270              
271             The mandatory subroutine is evaluated in the context of an C<eval> block.
272              
273             If no error occurred the value from the first block is returned, preserving
274             list/scalar context.
275              
276             If there was an error and the second subroutine was given it will be invoked
277             with the error in C<$_> (localized) and as that block's first and only
278             argument.
279              
280             C<$@> does B<not> contain the error. Inside the C<catch> block it has the same
281             value it had before the C<try> block was executed.
282              
283             Note that the error may be false, but if that happens the C<catch> block will
284             still be invoked.
285              
286             Once all execution is finished then the C<finally> block, if given, will execute.
287              
288             =item catch (&;@)
289              
290             Intended to be used in the second argument position of C<try>.
291              
292             Returns a reference to the subroutine it was given but blessed as
293             C<Try::Tiny::Catch> which allows try to decode correctly what to do
294             with this code reference.
295              
296             catch { ... }
297              
298             Inside the C<catch> block the caught error is stored in C<$_>, while previous
299             value of C<$@> is still available for use. This value may or may not be
300             meaningful depending on what happened before the C<try>, but it might be a good
301             idea to preserve it in an error stack.
302              
303             For code that captures C<$@> when throwing new errors (i.e.
304             L<Class::Throwable>), you'll need to do:
305              
306             local $@ = $_;
307              
308             =item finally (&;@)
309              
310             try { ... }
311             catch { ... }
312             finally { ... };
313              
314             Or
315              
316             try { ... }
317             finally { ... };
318              
319             Or even
320              
321             try { ... }
322             finally { ... }
323             catch { ... };
324              
325             Intended to be the second or third element of C<try>. C<finally> blocks are always
326             executed in the event of a successful C<try> or if C<catch> is run. This allows
327             you to locate cleanup code which cannot be done via C<local()> e.g. closing a file
328             handle.
329              
330             When invoked, the C<finally> block is passed the error that was caught. If no
331             error was caught, it is passed nothing. (Note that the C<finally> block does not
332             localize C<$_> with the error, since unlike in a C<catch> block, there is no way
333             to know if C<$_ == undef> implies that there were no errors.) In other words,
334             the following code does just what you would expect:
335              
336             try {
337             die_sometimes();
338             } catch {
339             # ...code run in case of error
340             } finally {
341             if (@_) {
342             print "The try block died with: @_\n";
343             } else {
344             print "The try block ran without error.\n";
345             }
346             };
347              
348             B<You must always do your own error handling in the C<finally> block>. C<Try::Tiny> will
349             not do anything about handling possible errors coming from code located in these
350             blocks.
351              
352             Furthermore B<exceptions in C<finally> blocks are not trappable and are unable
353             to influence the execution of your program>. This is due to limitation of
354             C<DESTROY>-based scope guards, which C<finally> is implemented on top of. This
355             may change in a future version of Try::Tiny.
356              
357             In the same way C<catch()> blesses the code reference this subroutine does the same
358             except it bless them as C<Try::Tiny::Finally>.
359              
360             =back
361              
362             =head1 BACKGROUND
363              
364             There are a number of issues with C<eval>.
365              
366             =head2 Clobbering $@
367              
368             When you run an C<eval> block and it succeeds, C<$@> will be cleared, potentially
369             clobbering an error that is currently being caught.
370              
371             This causes action at a distance, clearing previous errors your caller may have
372             not yet handled.
373              
374             C<$@> must be properly localized before invoking C<eval> in order to avoid this
375             issue.
376              
377             More specifically, C<$@> is clobbered at the beginning of the C<eval>, which
378             also makes it impossible to capture the previous error before you die (for
379             instance when making exception objects with error stacks).
380              
381             For this reason C<try> will actually set C<$@> to its previous value (the one
382             available before entering the C<try> block) in the beginning of the C<eval>
383             block.
384              
385             =head2 Localizing $@ silently masks errors
386              
387             Inside an C<eval> block, C<die> behaves sort of like:
388              
389             sub die {
390             $@ = $_[0];
391             return_undef_from_eval();
392             }
393              
394             This means that if you were polite and localized C<$@> you can't die in that
395             scope, or your error will be discarded (printing "Something's wrong" instead).
396              
397             The workaround is very ugly:
398              
399             my $error = do {
400             local $@;
401             eval { ... };
402             $@;
403             };
404              
405             ...
406             die $error;
407              
408             =head2 $@ might not be a true value
409              
410             This code is wrong:
411              
412             if ( $@ ) {
413             ...
414             }
415              
416             because due to the previous caveats it may have been unset.
417              
418             C<$@> could also be an overloaded error object that evaluates to false, but
419             that's asking for trouble anyway.
420              
421             The classic failure mode is:
422              
423             sub Object::DESTROY {
424             eval { ... }
425             }
426              
427             eval {
428             my $obj = Object->new;
429              
430             die "foo";
431             };
432              
433             if ( $@ ) {
434              
435             }
436              
437             In this case since C<Object::DESTROY> is not localizing C<$@> but still uses
438             C<eval>, it will set C<$@> to C<"">.
439              
440             The destructor is called when the stack is unwound, after C<die> sets C<$@> to
441             C<"foo at Foo.pm line 42\n">, so by the time C<if ( $@ )> is evaluated it has
442             been cleared by C<eval> in the destructor.
443              
444             The workaround for this is even uglier than the previous ones. Even though we
445             can't save the value of C<$@> from code that doesn't localize, we can at least
446             be sure the C<eval> was aborted due to an error:
447              
448             my $failed = not eval {
449             ...
450              
451             return 1;
452             };
453              
454             This is because an C<eval> that caught a C<die> will always return a false
455             value.
456              
457             =head1 SHINY SYNTAX
458              
459             Using Perl 5.10 you can use L<perlsyn/"Switch statements">.
460              
461             The C<catch> block is invoked in a topicalizer context (like a C<given> block),
462             but note that you can't return a useful value from C<catch> using the C<when>
463             blocks without an explicit C<return>.
464              
465             This is somewhat similar to Perl 6's C<CATCH> blocks. You can use it to
466             concisely match errors:
467              
468             try {
469             require Foo;
470             } catch {
471             when (/^Can't locate .*?\.pm in \@INC/) { } # ignore
472             default { die $_ }
473             };
474              
475             =head1 CAVEATS
476              
477             =over 4
478              
479             =item *
480              
481             C<@_> is not available within the C<try> block, so you need to copy your
482             arglist. In case you want to work with argument values directly via C<@_>
483             aliasing (i.e. allow C<$_[1] = "foo">), you need to pass C<@_> by reference:
484              
485             sub foo {
486             my ( $self, @args ) = @_;
487             try { $self->bar(@args) }
488             }
489              
490             or
491              
492             sub bar_in_place {
493             my $self = shift;
494             my $args = \@_;
495             try { $_ = $self->bar($_) for @$args }
496             }
497              
498             =item *
499              
500             C<return> returns from the C<try> block, not from the parent sub (note that
501             this is also how C<eval> works, but not how L<TryCatch> works):
502              
503             sub parent_sub {
504             try {
505             die;
506             }
507             catch {
508             return;
509             };
510              
511             say "this text WILL be displayed, even though an exception is thrown";
512             }
513              
514             Instead, you should capture the return value:
515              
516             sub parent_sub {
517             my $success = try {
518             die;
519             1;
520             };
521             return unless $success;
522              
523             say "This text WILL NEVER appear!";
524             }
525             # OR
526             sub parent_sub_with_catch {
527             my $success = try {
528             die;
529             1;
530             }
531             catch {
532             # do something with $_
533             return undef; #see note
534             };
535             return unless $success;
536              
537             say "This text WILL NEVER appear!";
538             }
539              
540             Note that if you have a C<catch> block, it must return C<undef> for this to work,
541             since if a C<catch> block exists, its return value is returned in place of C<undef>
542             when an exception is thrown.
543              
544             =item *
545              
546             C<try> introduces another caller stack frame. L<Sub::Uplevel> is not used. L<Carp>
547             will not report this when using full stack traces, though, because
548             C<%Carp::Internal> is used. This lack of magic is considered a feature.
549              
550             =item *
551              
552             The value of C<$_> in the C<catch> block is not guaranteed to be the value of
553             the exception thrown (C<$@>) in the C<try> block. There is no safe way to
554             ensure this, since C<eval> may be used unhygenically in destructors. The only
555             guarantee is that the C<catch> will be called if an exception is thrown.
556              
557             =item *
558              
559             The return value of the C<catch> block is not ignored, so if testing the result
560             of the expression for truth on success, be sure to return a false value from
561             the C<catch> block:
562              
563             my $obj = try {
564             MightFail->new;
565             } catch {
566             ...
567              
568             return; # avoid returning a true value;
569             };
570              
571             return unless $obj;
572              
573             =item *
574              
575             C<$SIG{__DIE__}> is still in effect.
576              
577             Though it can be argued that C<$SIG{__DIE__}> should be disabled inside of
578             C<eval> blocks, since it isn't people have grown to rely on it. Therefore in
579             the interests of compatibility, C<try> does not disable C<$SIG{__DIE__}> for
580             the scope of the error throwing code.
581              
582             =item *
583              
584             Lexical C<$_> may override the one set by C<catch>.
585              
586             For example Perl 5.10's C<given> form uses a lexical C<$_>, creating some
587             confusing behavior:
588              
589             given ($foo) {
590             when (...) {
591             try {
592             ...
593             } catch {
594             warn $_; # will print $foo, not the error
595             warn $_[0]; # instead, get the error like this
596             }
597             }
598             }
599              
600             Note that this behavior was changed once again in L<Perl5 version 18
601             |https://metacpan.org/module/perldelta#given-now-aliases-the-global-_>.
602             However, since the entirety of lexical C<$_> is now L<considired experimental
603             |https://metacpan.org/module/perldelta#Lexical-_-is-now-experimental>, it
604             is unclear whether the new version 18 behavior is final.
605              
606             =back
607              
608             =head1 SEE ALSO
609              
610             =over 4
611              
612             =item L<TryCatch>
613              
614             Much more feature complete, more convenient semantics, but at the cost of
615             implementation complexity.
616              
617             =item L<autodie>
618              
619             Automatic error throwing for builtin functions and more. Also designed to
620             work well with C<given>/C<when>.
621              
622             =item L<Throwable>
623              
624             A lightweight role for rolling your own exception classes.
625              
626             =item L<Error>
627              
628             Exception object implementation with a C<try> statement. Does not localize
629             C<$@>.
630              
631             =item L<Exception::Class::TryCatch>
632              
633             Provides a C<catch> statement, but properly calling C<eval> is your
634             responsibility.
635              
636             The C<try> keyword pushes C<$@> onto an error stack, avoiding some of the
637             issues with C<$@>, but you still need to localize to prevent clobbering.
638              
639             =back
640              
641             =head1 LIGHTNING TALK
642              
643             I gave a lightning talk about this module, you can see the slides (Firefox
644             only):
645              
646             L<http://web.archive.org/web/20100628040134/http://nothingmuch.woobling.org/talks/takahashi.xul>
647              
648             Or read the source:
649              
650             L<http://web.archive.org/web/20100305133605/http://nothingmuch.woobling.org/talks/yapc_asia_2009/try_tiny.yml>
651              
652             =head1 VERSION CONTROL
653              
654             L<http://github.com/doy/try-tiny/>
655              
656             =head1 AUTHORS
657              
658             =over 4
659              
660             =item *
661              
662             Yuval Kogman <nothingmuch@woobling.org>
663              
664             =item *
665              
666             Jesse Luehrs <doy@tozt.net>
667              
668             =back
669              
670             =head1 COPYRIGHT AND LICENSE
671              
672             This software is Copyright (c) 2014 by Yuval Kogman.
673              
674             This is free software, licensed under:
675              
676             The MIT (X11) License
677              
678             =cut