/usr/share/perl5/Mojo/Exception.pm is in libmojolicious-perl 2.98+dfsg-2.
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 | package Mojo::Exception;
use Mojo::Base -base;
use overload
'bool' => sub {1},
'""' => sub { shift->to_string },
fallback => 1;
use Scalar::Util 'blessed';
has [qw(frames line lines_before lines_after)] => sub { [] };
has [qw(message raw_message)] => 'Exception!';
has verbose => sub { $ENV{MOJO_EXCEPTION_VERBOSE} || 0 };
# "Attempted murder? Now honestly, what is that?
# Do they give a Nobel Prize for attempted chemistry?"
sub new {
my $self = shift->SUPER::new;
return @_ ? $self->_detect(@_) : $self;
}
sub throw { die shift->new->trace(2)->_detect(@_) }
sub to_string {
my $self = shift;
# Message
return $self->message unless $self->verbose;
my $string = $self->message ? $self->message : '';
# Before
$string .= $_->[0] . ': ' . $_->[1] . "\n" for @{$self->lines_before};
# Line
$string .= ($self->line->[0] . ': ' . $self->line->[1] . "\n")
if $self->line->[0];
# After
$string .= $_->[0] . ': ' . $_->[1] . "\n" for @{$self->lines_after};
return $string;
}
sub trace {
my ($self, $start) = @_;
$start //= 1;
my @frames;
while (my @trace = caller($start++)) { push @frames, \@trace }
$self->frames(\@frames);
return $self;
}
# "You killed zombie Flanders!
# He was a zombie?"
sub _context {
my ($self, $line, $lines) = @_;
# Wrong file
return unless defined $lines->[0]->[$line - 1];
# Line
$self->line([$line]);
for my $l (@$lines) {
chomp(my $code = $l->[$line - 1]);
push @{$self->line}, $code;
}
# Before
for my $i (2 .. 6) {
last if ((my $previous = $line - $i) < 0);
if (defined($lines->[0]->[$previous])) {
unshift @{$self->lines_before}, [$previous + 1];
for my $l (@$lines) {
chomp(my $code = $l->[$previous]);
push @{$self->lines_before->[0]}, $code;
}
}
}
# After
for my $i (0 .. 4) {
next if ((my $next = $line + $i) < 0);
if (defined($lines->[0]->[$next])) {
push @{$self->lines_after}, [$next + 1];
for my $l (@$lines) {
next unless defined(my $code = $l->[$next]);
chomp $code;
push @{$self->lines_after->[-1]}, $code;
}
}
}
}
sub _detect {
my $self = shift;
# Message
my $message = shift;
return $message if blessed $message && $message->isa('Mojo::Exception');
$self->message($message)->raw_message($message);
# Extract file and line from message
my @trace;
while ($message =~ /at\s+(.+?)\s+line\s+(\d+)/g) { push @trace, [$1, $2] }
# Extract file and line from stacktrace
if (my $first = $self->frames->[0]) {
unshift @trace, [$first->[1], $first->[2]] if $first->[1];
}
# Search for context
for my $frame (reverse @trace) {
next unless -r $frame->[0];
open my $handle, '<:utf8', $frame->[0];
$self->_context($frame->[1], [[<$handle>]]);
return $self;
}
# More context
return $self unless my $files = shift;
my @lines = map { [split /\n/] } @$files;
# Fix file in message
return $self unless my $name = shift;
unless (ref $message) {
my $filter = sub {
my $num = shift;
my $new = "$name line $num";
my $line = $lines[0]->[$num];
return defined $line ? qq{$new, near "$line".} : "$new.";
};
$message =~ s/\(eval\s+\d+\) line (\d+).*/$filter->($1)/ge;
$self->message($message);
}
# Search for better context
my $line;
if ($self->message =~ /at\s+\Q$name\E\s+line\s+(\d+)/) { $line = $1 }
else {
for my $frame (@{$self->frames}) {
$line = $frame->[1] =~ /^\(eval\ \d+\)$/ ? $frame->[2] : next;
last;
}
}
$self->_context($line, \@lines) if $line;
return $self;
}
1;
=head1 NAME
Mojo::Exception - Exceptions with context
=head1 SYNOPSIS
use Mojo::Exception;
my $e = Mojo::Exception->new;
=head1 DESCRIPTION
L<Mojo::Exception> is a container for exceptions with context information.
=head1 ATTRIBUTES
L<Mojo::Exception> implements the following attributes.
=head2 C<frames>
my $frames = $e->frames;
$e = $e->frames($frames);
Stacktrace.
=head2 C<line>
my $line = $e->line;
$e = $e->line([3, 'foo']);
The line where the exception occured.
=head2 C<lines_after>
my $lines = $e->lines_after;
$e = $e->lines_after([[1, 'bar'], [2, 'baz']]);
Lines after the line where the exception occured.
=head2 C<lines_before>
my $lines = $e->lines_before;
$e = $e->lines_before([[4, 'bar'], [5, 'baz']]);
Lines before the line where the exception occured.
=head2 C<message>
my $message = $e->message;
$e = $e->message('Oops!');
Exception message.
=head2 C<raw_message>
my $message = $e->raw_message;
$e = $e->raw_message('Oops!');
Raw unprocessed exception message.
=head2 C<verbose>
my $verbose = $e->verbose;
$e = $e->verbose(1);
Activate verbose rendering, defaults to the value of
C<MOJO_EXCEPTION_VERBOSE> or C<0>.
=head1 METHODS
L<Mojo::Exception> inherits all methods from L<Mojo::Base> and implements the
following new ones.
=head2 C<new>
my $e = Mojo::Exception->new('Oops!');
my $e = Mojo::Exception->new('Oops!', $files, $name);
Construct a new L<Mojo::Exception> object.
=head2 C<throw>
Mojo::Exception->throw('Oops!');
Mojo::Exception->throw('Oops!', $files, $name);
Throw exception with stacktrace.
=head2 C<to_string>
my $string = $e->to_string;
my $string = "$e";
Render exception with context.
=head2 C<trace>
$e = $e->trace;
$e = $e->trace(2);
Store stacktrace.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
=cut
|