| Server IP : 85.214.239.14 / Your IP : 216.73.216.189 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/task/3/root/proc/2/cwd/usr/share/perl5/ |
Upload File : |
package Throwable;
# ABSTRACT: a role for classes that can be thrown
$Throwable::VERSION = '1.001';
use Moo::Role;
use Sub::Quote ();
use Scalar::Util ();
use Carp ();
#pod =head1 SYNOPSIS
#pod
#pod package Redirect;
#pod # NOTE: Moo can also be used here instead of Moose
#pod use Moose;
#pod with 'Throwable';
#pod
#pod has url => (is => 'ro');
#pod
#pod ...then later...
#pod
#pod Redirect->throw({ url => $url });
#pod
#pod =head1 DESCRIPTION
#pod
#pod Throwable is a role for classes that are meant to be thrown as exceptions to
#pod standard program flow. It is very simple and does only two things: saves any
#pod previous value for C<$@> and calls C<die $self>.
#pod
#pod Throwable is implemented with L<Moo>, so you can stick to Moo or use L<Moose>,
#pod as you prefer.
#pod
#pod =attr previous_exception
#pod
#pod This attribute is created automatically, and stores the value of C<$@> when the
#pod Throwable object is created. This is done on a I<best effort basis>. C<$@> is
#pod subject to lots of spooky action-at-a-distance. For now, there are clearly
#pod ways that the previous exception could be lost.
#pod
#pod =cut
our %_HORRIBLE_HACK;
has 'previous_exception' => (
is => 'ro',
default => Sub::Quote::quote_sub(q<
if (defined $Throwable::_HORRIBLE_HACK{ERROR}) {
$Throwable::_HORRIBLE_HACK{ERROR}
} elsif (defined $@ and (ref $@ or length $@)) {
$@;
} else {
undef;
}
>),
);
#pod =method throw
#pod
#pod Something::Throwable->throw({ attr => $value });
#pod
#pod This method will call new, passing all arguments along to new, and will then
#pod use the created object as the only argument to C<die>.
#pod
#pod If called on an object that does Throwable, the object will be rethrown.
#pod
#pod =cut
sub throw {
my ($inv) = shift;
if (Scalar::Util::blessed($inv)) {
Carp::confess "throw called on Throwable object with arguments" if @_;
die $inv;
}
local $_HORRIBLE_HACK{ERROR} = $@;
my $throwable = $inv->new(@_);
die $throwable;
}
#pod =method new_with_previous
#pod
#pod die Something::Throwable->new_with_previous({ attr => $value });
#pod
#pod Constructs an exception object and return it, while trying to make sure that
#pod any values in $@ are safely stored in C<previous_exception> without being
#pod stomped by evals in the construction process.
#pod
#pod This is more reliable than calling C<new> directly, but doesn't include the
#pod forced C<die> in C<throw>.
#pod
#pod =cut
sub new_with_previous { local $_HORRIBLE_HACK{ERROR} = $@; shift->new(@_) }
no Moo::Role;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Throwable - a role for classes that can be thrown
=head1 VERSION
version 1.001
=head1 SYNOPSIS
package Redirect;
# NOTE: Moo can also be used here instead of Moose
use Moose;
with 'Throwable';
has url => (is => 'ro');
...then later...
Redirect->throw({ url => $url });
=head1 DESCRIPTION
Throwable is a role for classes that are meant to be thrown as exceptions to
standard program flow. It is very simple and does only two things: saves any
previous value for C<$@> and calls C<die $self>.
Throwable is implemented with L<Moo>, so you can stick to Moo or use L<Moose>,
as you prefer.
=head1 PERL VERSION
This library should run on perls released even a long time ago. It should work
on any version of perl released in the last five years.
Although it may work on older versions of perl, no guarantee is made that the
minimum required version will not be increased. The version may be increased
for any reason, and there is no promise that patches will be accepted to lower
the minimum required perl.
=head1 ATTRIBUTES
=head2 previous_exception
This attribute is created automatically, and stores the value of C<$@> when the
Throwable object is created. This is done on a I<best effort basis>. C<$@> is
subject to lots of spooky action-at-a-distance. For now, there are clearly
ways that the previous exception could be lost.
=head1 METHODS
=head2 throw
Something::Throwable->throw({ attr => $value });
This method will call new, passing all arguments along to new, and will then
use the created object as the only argument to C<die>.
If called on an object that does Throwable, the object will be rethrown.
=head2 new_with_previous
die Something::Throwable->new_with_previous({ attr => $value });
Constructs an exception object and return it, while trying to make sure that
any values in $@ are safely stored in C<previous_exception> without being
stomped by evals in the construction process.
This is more reliable than calling C<new> directly, but doesn't include the
forced C<die> in C<throw>.
=head1 AUTHORS
=over 4
=item *
Ricardo SIGNES <cpan@semiotic.systems>
=item *
Florian Ragwitz <rafl@debian.org>
=back
=head1 CONTRIBUTORS
=for stopwords Arthur Axel 'fREW' Schmidt Brian Manning Christian Walde Dagfinn Ilmari Mannsåker Dave Rolsky David E. Wheeler Graham Knop Jeffrey Ryan Thalhammer Justin Hunter Matt S Trout Olaf Alders Ricardo Signes Toby Inkster
=over 4
=item *
Arthur Axel 'fREW' Schmidt <frioux@gmail.com>
=item *
Brian Manning <brian@xaoc.org>
=item *
Brian Manning <xaoc@cpan.org>
=item *
Christian Walde <walde.christian@googlemail.com>
=item *
Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
=item *
Dave Rolsky <autarch@urth.org>
=item *
David E. Wheeler <david@justatheory.com>
=item *
Graham Knop <haarg@haarg.org>
=item *
Jeffrey Ryan Thalhammer <jeff@imaginative-software.com>
=item *
Justin Hunter <justin.d.hunter@gmail.com>
=item *
Matt S Trout <mst@shadowcat.co.uk>
=item *
Olaf Alders <olaf@wundersolutions.com>
=item *
Ricardo Signes <rjbs@semiotic.systems>
=item *
Toby Inkster <mail@tobyinkster.co.uk>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2022 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut