This file is indexed.

/usr/share/perl5/Exception/Class/TryCatch.pm is in libexception-class-trycatch-perl 1.13-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
use strict;
use warnings;

package Exception::Class::TryCatch;
# ABSTRACT: Syntactic try/catch sugar for use with Exception::Class
our $VERSION = '1.13'; # VERSION

our @ISA       = qw (Exporter);
our @EXPORT    = qw ( catch try );
our @EXPORT_OK = qw ( caught );

use Exception::Class;
use Exporter ();

my @error_stack;

#--------------------------------------------------------------------------#
# catch()
#--------------------------------------------------------------------------#

sub catch(;$$) { ## no critic
    my $e;
    my $err = @error_stack ? pop @error_stack : $@;
    if ( UNIVERSAL::isa( $err, 'Exception::Class::Base' ) ) {
        $e = $err;
    }
    elsif ( $err eq '' ) {
        $e = undef;
    }
    else {
        # use error message or hope something stringifies
        $e = Exception::Class::Base->new("$err");
    }
    unless ( ref( $_[0] ) eq 'ARRAY' ) {
        $_[0] = $e;
        shift;
    }
    if ($e) {
        if ( defined( $_[0] ) and ref( $_[0] ) eq 'ARRAY' ) {
            $e->rethrow() unless grep { $e->isa($_) } @{ $_[0] };
        }
    }
    return wantarray ? ( $e ? ($e) : () ) : $e;
}

*caught = \&catch;

#--------------------------------------------------------------------------#
# try()
#--------------------------------------------------------------------------#

sub try($) { ## no critic
    my $v = shift;
    push @error_stack, $@;
    return ref($v) eq 'ARRAY' ? @$v : $v if wantarray;
    return $v;
}

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Exception::Class::TryCatch - Syntactic try/catch sugar for use with Exception::Class

=head1 VERSION

version 1.13

=head1 SYNOPSIS

     use Exception::Class::TryCatch;
 
     # simple usage of catch()
 
     eval { Exception::Class::Base->throw('error') };
     catch my $err and warn $err->error;
 
     # catching only certain types or else rethrowing
 
     eval { Exception::Class::Base::SubClass->throw('error') };
     catch( my $err, ['Exception::Class::Base', 'Other::Exception'] )
         and warn $err->error; 
 
     # catching and handling different types of errors
 
     eval { Exception::Class::Base->throw('error') };
     if ( catch my $err ) {
         $err->isa('this') and do { handle_this($err) };
         $err->isa('that') and do { handle_that($err) };
     }
 
     # use "try eval" to push exceptions onto a stack to catch later
 
     try eval { 
         Exception::Class::Base->throw('error') 
     };
     do {
         # cleanup that might use "try/catch" again
     };
     catch my $err; # catches a matching "try"

=head1 DESCRIPTION

Exception::Class::TryCatch provides syntactic sugar for use with
L<Exception::Class> using the familiar keywords C<<< try >>> and C<<< catch >>>.  Its
primary objective is to allow users to avoid dealing directly with C<<< $@ >>> by
ensuring that any exceptions caught in an C<<< eval >>> are captured as
L<Exception::Class> objects, whether they were thrown objects to begin with or
whether the error resulted from C<<< die >>>.  This means that users may immediately
use C<<< isa >>> and various L<Exception::Class> methods to process the exception. 

In addition, this module provides for a method to push errors onto a hidden
error stack immediately after an C<<< eval >>> so that cleanup code or other error
handling may also call C<<< eval >>> without the original error in C<<< $@ >>> being lost.

Inspiration for this module is due in part to Dave Rolsky's
article "Exception Handling in Perl With Exception::Class" in
I<The Perl Journal> (Rolsky 2004).

The C<<< try/catch >>> syntax used in this module does not use code reference
prototypes the way the L<Error.pm|Error> module does, but simply provides some
helpful functionality when used in combination with C<<< eval >>>.  As a result, it
avoids the complexity and dangers involving nested closures and memory leaks
inherent in L<Error.pm|Error> (Perrin 2003).  

Rolsky (2004) notes that these memory leaks may not occur in recent versions of
Perl, but the approach used in Exception::Class::TryCatch should be safe for all
versions of Perl as it leaves all code execution to the C<<< eval >>> in the current
scope, avoiding closures altogether.

=head1 USAGE

=head2 C<<< catch >>>

     # zero argument form
     my $err = catch;
 
     # one argument forms
     catch my $err;
     my $err = catch( [ 'Exception::Type', 'Exception::Other::Type' ] );
 
     # two argument form
     catch my $err, [ 'Exception::Type', 'Exception::Other::Type' ];

Returns an C<<< Exception::Class::Base >>> object (or an object which is a subclass of
it) if an exception has been caught by C<<< eval >>>.  If no exception was thrown, it
returns C<<< undef >>> in scalar context and an empty list in list context.   The
exception is either popped from a hidden error stack (see C<<< try >>>) or, if the
stack is empty, taken from the current value of C<<< $@ >>>.

If the exception is not an C<<< Exception::Class::Base >>> object (or subclass
object), an C<<< Exception::Class::Base >>> object will be created using the string
contents of the exception.  This means that calls to C<<< die >>> will be wrapped and
may be treated as exception objects.  Other objects caught will be stringified
and wrapped likewise.  Such wrapping will likely result in confusing stack
traces and the like, so any methods other than C<<< error >>> used on 
C<<< Exception::Class::Base >>> objects caught should be used with caution.

C<<< catch >>> is prototyped to take up to two optional scalar arguments.  The single
argument form has two variations.  

=over

=item *

If the argument is a reference to an array,
any exception caught that is not of the same type (or a subtype) of one
of the classes listed in the array will be rethrown.  

=item *

If the argument is not a reference to an array, C<<< catch >>> 
will set the argument to the same value that is returned. 
This allows for the C<<< catch my $err >>> idiom without parentheses.

=back

In the two-argument form, the first argument is set to the same value as is
returned.  The second argument must be an array reference and is handled 
the same as as for the single argument version with an array reference, as
given above.

=head2 C<<< caught >>> (DEPRECATED)

C<<< caught >>> is a synonym for C<<< catch >>> for syntactic convenience.

NOTE: Exception::Class version 1.21 added a "caught" method of its own.  It
provides somewhat similar functionality to this subroutine, but with very
different semantics.  As this class is intended to work closely with
Exception::Class, the existence of a subroutine and a method with the same name
is liable to cause confusion and this method is deprecated and may be removed
in future releases of Exception::Class::TryCatch.

This method is no longer exported by default.

=head2 C<<< try >>>

     # void context
     try eval {
       # dangerous code
     };
     do {
       # cleanup code can use try/catch
     };
     catch my $err;
 
     # scalar context
     $rv = try eval { return $scalar };
 
     # list context
     @rv = try [ eval { return @array } ];

Pushes the current error (C<<< $@ >>>) onto a hidden error stack for later use by
C<<< catch >>>.  C<<< try >>> uses a prototype that expects a single scalar so that it can
be used with eval without parentheses.  As C<<< eval { BLOCK } >>> is an argument
to try, it will be evaluated just prior to C<<< try >>>, ensuring that C<<< try >>>
captures the correct error status.  C<<< try >>> does not itself handle any errors --
it merely records the results of C<<< eval >>>. C<<< try { BLOCK } >>> will be interpreted
as passing a hash reference and will (probably) not compile. (And if it does,
it will result in very unexpected behavior.)

Since C<<< try >>> requires a single argument, C<<< eval >>> will normally be called
in scalar context.  To use C<<< eval >>> in list context with C<<< try >>>, put the 
call to C<<< eval >>> in an anonymous array:  

   @rv = try [ eval {return @array} ];

When C<<< try >>> is called in list context, if the argument to C<<< try >>> is an array
reference, C<<< try >>> will dereference the array and return the resulting list.

In scalar context, C<<< try >>> passes through the scalar value returned
by C<<< eval >>> without modifications -- even if that is an array reference.

   $rv = try eval { return $scalar };
   $rv = try eval { return [ qw( anonymous array ) ] };

Of course, if the eval throws an exception, C<<< eval >>> and thus C<<< try >>> will return
undef.

C<<< try >>> must always be properly bracketed with a matching C<<< catch >>> or unexpected
behavior may result when C<<< catch >>> pops the error off of the stack.  C<<< try >>> 
executes right after its C<<< eval >>>, so inconsistent usage of C<<< try >>> like the
following will work as expected:

     try eval {
         eval { die "inner" };
         catch my $inner_err
         die "outer" if $inner_err;
     };
     catch my $outer_err;
     # handle $outer_err;

However, the following code is a problem:

     # BAD EXAMPLE
     try eval {
         try eval { die "inner" };
         die $@ if $@;
     };
     catch my $outer_err;
     # handle $outer_err;

This code will appear to run correctly, but C<<< catch >>> gets the exception
from the inner C<<< try >>>, not the outer one, and there will still be an exception
on the error stack which will be caught by the next C<<< catch >>> in the program, 
causing unexpected (and likely hard to track) behavior.

In short, if you use C<<< try >>>, you must have a matching C<<< catch >>>.  The problem
code above should be rewritten as:

     try eval {
         try eval { die "inner" };
         catch my $inner_err;
         $inner_err->rethrow if $inner_err;
     };
     catch my $outer_err;
     # handle $outer_err;

=head1 REFERENCES

=over

=item 1.

perrin. (2003), "Re: Re2: Learning how to use the Error module by example",
(perlmonks.org), Available: http:E<sol>E<sol>www.perlmonks.orgE<sol>index.pl?node_id=278900
(Accessed September 8, 2004).

=item 2.

Rolsky, D. (2004), "Exception Handling in Perl with Exception::Class",
I<The Perl Journal>, vol. 8, no. 7, pp. 9-13

=back

=head1 SEE ALSO

=over

=item *

L<Exception::Class>

=item *

L<Error> -- but see (Perrin 2003) before using

=back

=for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan

=head1 SUPPORT

=head2 Bugs / Feature Requests

Please report any bugs or feature requests through the issue tracker
at L<https://github.com/dagolden/Exception-Class-TryCatch/issues>.
You will be notified automatically of any progress on your issue.

=head2 Source Code

This is open source software.  The code repository is available for
public review and contribution under the terms of the license.

L<https://github.com/dagolden/Exception-Class-TryCatch>

  git clone https://github.com/dagolden/Exception-Class-TryCatch.git

=head1 AUTHOR

David Golden <dagolden@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2014 by David Golden.

This is free software, licensed under:

  The Apache License, Version 2.0, January 2004

=cut