--- trunk/lib/Frey/Web.pm 2008/11/30 14:02:35 634 +++ trunk/lib/Frey/Web.pm 2008/12/02 02:01:23 677 @@ -7,7 +7,7 @@ #use Continuity::Widget::DomNode; use Data::Dump qw/dump/; -use Carp qw/confess cluck/; +use Carp qw/confess cluck carp/; use File::Slurp; use Frey::Bookmarklet; @@ -26,7 +26,7 @@ isa => 'Uri', coerce => 1, required => 1, default => sub { - cluck "undefined request_url"; + carp "undefined request_url"; '/'; }, ); @@ -225,7 +225,10 @@ if ( ! $body ) { my $run = $a->{run} || 'as_markup'; warn "# no body, invoke $self->$run on ", ref($self); - $body = $self->$run; + eval { + $body = $self->$run; + }; + $body = $self->error( $@, '' ) if $@; } if ( $self->content_type !~ m{html} ) { warn "# return only $self body ", $self->content_type; @@ -245,7 +248,7 @@ qq| reload - $exit + $exit |; @@ -314,25 +317,48 @@ # $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][$1$2$3]gs; # FIXME insert bless hiding back + # perl's backtrace $error =~ s{at\s+(\S+)\s+line\s+(\d+)} - {at $1 line $2}gsm; + {at $1 line $2}gsm; + + $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)} + {$1$2$3}gsm + || # or anything that looks like "Class::Name" + $error =~ s{"(\w+(?:::\w+)+)"} + {"$1"}gsm; + + # method error messages + # FIXME replace with link to Frey::Introspect data + $error =~ s{(method ")(\w+)(" via)} + {$1$2$3}gsm; - $error =~ s{(via (?:package) "?)([\w:]+)("?)} - {$1$2$3}gsm; return $error; } +=head2 error + +This method will return error to browser and backtrace unless +error message ends with LF C<\n> just like L + +=cut + sub error { my $self = shift; my $error = join(" ", @_); - my @backtrace = $self->backtrace; - $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace; + my $fatal = ''; + + if ( $error !~ m{\n$} ) { + if ( my @backtrace = $self->backtrace ) { + $error .= "\n\t" . join( "\n\t", @backtrace ); + $fatal = qq| class="fatal"|; + } + } warn "ERROR: $error\n"; return - qq|
|
+		qq|
|
 		. $self->editor_links( $error ) .
 		qq|
| ; @@ -373,11 +399,10 @@ sub clean_status { my ($self) = shift; @head = ( 'static/frey.css' ); - my $params = { request_url => $self->request_url }; @status = ( - { 'ClassBrowser' => Frey::ClassBrowser->new( %$params, usage_on_top => 0 )->as_markup }, - { 'Bookmarklets' => Frey::Bookmarklet->new( %$params )->as_markup }, - { 'INC' => Frey::INC->new( %$params )->as_markup }, + { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup }, + { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup }, + { 'INC' => Frey::INC->new->as_markup }, ); $icon_html = ''; } @@ -462,13 +487,23 @@ '"' => '"', }; +=for later + my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']'; warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re"; +=cut + sub log_path { $Frey::Bootstrap::log_path || die "no log_path?"; } +our $last_log_pos = 0; +our $last_log_line = 0; + +our $pwd = `pwd`; +chomp $pwd; + sub warnings_html { my ($self,$level) = shift; $level ||= $self->debug, @@ -477,7 +512,7 @@ my $max = 30; my $pos = 0; my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines - my $line = 0; + my $line = $last_log_line; my $multiline_end; # XXX do we really want to do this every time? @@ -491,7 +526,8 @@ } $self->add_css( $css ); - open(my $log, '<', $path) || die "can't open $path: $!"; + open(my $log, '<', $path) || die "can't open $path: $!"; + seek($log, $last_log_pos, 0) || warn "can't seek: $!"; while(<$log>) { chomp; $line++; @@ -524,6 +560,10 @@ my $level = $1; my $msg = $_; + # Mojo seems to expand warn messages to full path which is annoying + $msg =~ s{/[^/]+/\.\./}{/}gs; + $msg =~ s{$pwd/*}{}gs; + my $spacer = ' '; my $real_msg = expand( $msg ); if ( length($real_msg) > $self->html_dump_width ) { @@ -547,7 +587,9 @@ $warnings[ $pos++ % $max ] = $msg; } } - warn "log has $line lines tell position ",tell($log); + $last_log_pos = tell($log); + $last_log_line = $line; + warn "log has $line lines tell position $last_log_pos"; close($log) || die "can't close $path: $!"; my $size = -s $path; @@ -562,7 +604,7 @@ # need to wrap editor link into span so we can have links in warnings qq|warn| . $self->editor_links( $warnings ) - . qq|| + . qq|| ; } @@ -588,7 +630,7 @@ ) = caller($_) or last; push @backtrace, - qq|via $package at $path line $line|; + qq|via "$package" at $path line $line|; } #warn "# backtrace: ", dump( @backtrace ) if @backtrace; return @backtrace;