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
|
# Copyright (C) 2008-2010, Sebastian Riedel.
package Mojo::Exception;
use strict;
use warnings;
use base 'Mojo::Base';
use overload '""' => sub { shift->to_string }, fallback => 1;
use IO::File;
__PACKAGE__->attr([qw/line lines_before lines_after/] => sub { [] });
__PACKAGE__->attr(message => 'Exception!');
__PACKAGE__->attr(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();
# Message
$self->message(shift);
# Trace name and line
my $message = $self->message;
my @trace;
while ($message =~ /at\s+(.+)\s+line\s+(\d+)/g) {
push @trace, {file => $1, line => $2};
}
# Frames
foreach my $frame (reverse @trace) {
# Frame
my $file = $frame->{file};
my $line = $frame->{line};
# Readable
if (-r $file) {
# Slurp
my $handle = IO::File->new("< $file");
my @lines = <$handle>;
# Line
$self->_parse_context(\@lines, $line);
# Done
last;
}
}
# Parse specific file
my $lines = shift;
return $self unless $lines;
# Cleanup plain messages
unless (ref $message) {
$message =~ s/\(eval\s+\d+\)/template/;
$self->message($message);
}
# Parse message
my $line;
$line = $1 if $self->message =~ /at\s+template\s+line\s+(\d+)/;
# Context
my @lines = split /\n/, $lines;
$self->_parse_context(\@lines, $line) if $line;
return $self;
}
# You killed zombie Flanders!
# He was a zombie?
sub to_string {
my $self = shift;
# Verbose
return $self->message unless $self->verbose;
my $string = '';
# Message
$string .= $self->message if $self->message;
# Before
for my $line (@{$self->lines_before}) {
$string .= $line->[0] . ': ' . $line->[1] . "\n";
}
# Line
$string .= ($self->line->[0] . ': ' . $self->line->[1] . "\n")
if $self->line->[0];
# After
for my $line (@{$self->lines_after}) {
$string .= $line->[0] . ': ' . $line->[1] . "\n";
}
return $string;
}
sub _parse_context {
my ($self, $lines, $line) = @_;
# Wrong file
return unless defined $lines->[$line - 1];
# Context
my $code = $lines->[$line - 1];
chomp $code;
$self->line([$line, $code]);
# Cleanup
$self->lines_before([]);
$self->lines_after([]);
# -2
my $previous_line = $line - 3;
$code = $previous_line >= 0 ? $lines->[$previous_line] : undef;
if (defined $code) {
chomp $code;
push @{$self->lines_before}, [$line - 2, $code];
}
# -1
$previous_line = $line - 2;
$code = $previous_line >= 0 ? $lines->[$previous_line] : undef;
if (defined $code) {
chomp $code;
push @{$self->lines_before}, [$line - 1, $code];
}
# +1
my $next_line = $line;
$code = $next_line >= 0 ? $lines->[$next_line] : undef;
if (defined $code) {
chomp $code;
push @{$self->lines_after}, [$line + 1, $code];
}
# +2
$next_line = $line + 1;
$code = $next_line >= 0 ? $lines->[$next_line] : undef;
if (defined $code) {
chomp $code;
push @{$self->lines_after}, [$line + 2, $code];
}
return $self;
}
1;
__END__
=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<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<verbose>
my $verbose = $e->verbose;
$e = $e->verbose(1);
Activate verbose rendering.
=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!', $file);
Construct a new L<Mojo::Exception> object.
=head2 C<to_string>
my $string = $e->to_string;
my $string = "$e";
Render exception with context.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
|