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