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