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