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