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