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