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