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