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