/[Frey]/branches/zimbardo/lib/Frey/Web.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /branches/zimbardo/lib/Frey/Web.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 600 by dpavlin, Fri Nov 28 19:19:03 2008 UTC revision 674 by dpavlin, Tue Dec 2 01:49:49 2008 UTC
# Line 7  use Frey::Types; Line 7  use Frey::Types;
7    
8  #use Continuity::Widget::DomNode;  #use Continuity::Widget::DomNode;
9  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
10  use Carp qw/confess cluck/;  use Carp qw/confess cluck carp/;
11  use File::Slurp;  use File::Slurp;
12    
13  use Frey::Bookmarklet;  use Frey::Bookmarklet;
# Line 16  use Frey::INC; Line 16  use Frey::INC;
16    
17  use Frey::SVK;  use Frey::SVK;
18    
19    use Text::Tabs; # expand, unexpand
20    
21  our @head;  our @head;
22  sub head { @head }  sub head { @head }
23    
24  has 'request_url' => (  has 'request_url' => (
25          is => 'rw',          is => 'rw',
26          isa => 'Uri', coerce => 1,          isa => 'Uri', coerce => 1,
27          default => '/',          required => 1,
28            default => sub {
29                    carp "undefined request_url";
30                    '/';
31            },
32  );  );
33    
34  has 'title' => (  has 'title' => (
# Line 61  has 'html_dump_width' => ( Line 67  has 'html_dump_width' => (
67          is => 'rw',          is => 'rw',
68          isa => 'Int',          isa => 'Int',
69  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them
70          default => 128,          default => 250,
71  );  );
72    
73  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 218  sub page { Line 224  sub page {
224          my $body = $a->{body};          my $body = $a->{body};
225          if ( ! $body ) {          if ( ! $body ) {
226                  my $run = $a->{run} || 'as_markup';                  my $run = $a->{run} || 'as_markup';
227                  warn "# no body, invoke $self->$run";                  warn "# no body, invoke $self->$run on ", ref($self);
228                  $body = $self->$run;                  eval {
229                            $body = $self->$run;
230                    };
231                    $body = $self->error( $@, '' ) if $@;
232          }          }
233          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
234                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
# Line 239  sub page { Line 248  sub page {
248                  qq|                  qq|
249                          <span class="right">                          <span class="right">
250                          <a title="reload $url"  href="/reload$url">reload</a>                          <a title="reload $url"  href="/reload$url">reload</a>
251                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
252                          </span>                          </span>
253                  |;                  |;
254    
# Line 308  sub editor_links { Line 317  sub editor_links {
317    
318  #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back  #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
319    
320            # perl's backtrace
321          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
322                  {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;                  {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;
323    
324          $error =~ s{(via (?:package) "?)([\w:]+)("?)}          $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
325                  {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;                  {$1<a target="$2" href="/$2">$2</a>$3}gsm;
326    
327            # method error messages
328    #       $error =~ s{(method ")(\w+)"}
329    #               {$1<a target="/Frey::Shell::Grep?pattern=$2">$2</a>"}gsm; # FIXME replace with link to Frey::Introspect data
330    
331            # anything that looks like "Class::Name"
332            $error =~ s{"(\w+(?:::\w+)+)"}
333                    {"<a target="$1" href="/$1">$1</a>"}gsm;
334    
335          return $error;          return $error;
336  }  }
337    
338    =head2 error
339    
340    This method will return error to browser and backtrace unless
341    error message ends with LF C<\n> just like L<warn>
342    
343    =cut
344    
345  sub error {  sub error {
346          my $self = shift;          my $self = shift;
347          my $error = join(" ", @_);          my $error = join(" ", @_);
348    
349          my @backtrace = $self->backtrace;          my $fatal = '';
350          $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace;  
351            if ( $error !~ m{\n$} ) {
352                    if ( my @backtrace = $self->backtrace ) {
353                            $error .= "\n\t" . join( "\n\t", @backtrace );
354                            $fatal = qq| class="fatal"|;
355                    }
356            }
357    
358          warn "ERROR: $error\n";          warn "ERROR: $error\n";
359          return          return
360                  qq|<pre class="frey-error">|                  qq|<pre class="frey-error$fatal">|
361                  . $self->editor_links( $error ) .                  . $self->editor_links( $error ) .
362                  qq|</pre>|                  qq|</pre>|
363                  ;                  ;
# Line 370  sub clean_status { Line 401  sub clean_status {
401          @status = (          @status = (
402                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },
403                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
404                  { 'INC' => Frey::INC->new->as_markup },                  { 'INC' => Frey::INC->new->as_markup },
405          );          );
406          $icon_html = '';          $icon_html = '';
407  }  }
# Line 455  my $multiline_markers = { Line 486  my $multiline_markers = {
486          '"' => '"',          '"' => '"',
487  };  };
488    
489    =for later
490    
491  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
492  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
493    
494    =cut
495    
496  sub log_path {  sub log_path {
497          $Frey::Bootstrap::log_path || warn "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
498  }  }
499    
500    our $last_log_pos  = 0;
501    our $last_log_line = 0;
502    
503    our $pwd = `pwd`;
504    chomp $pwd;
505    
506  sub warnings_html {  sub warnings_html {
507          my ($self,$level) = shift;          my ($self,$level) = shift;
508          $level ||= $self->debug,          $level ||= $self->debug,
509          my $path = $self->log_path;          my $path = $self->log_path;
510    
511          my $max = 50;          my $max = 30;
512          my $pos = 0;          my $pos = 0;
513          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
514          my $line = 0;          my $line = $last_log_line;
515          my $multiline_end;          my $multiline_end;
516    
517          open(my $log, '<', $path) || die "can't open $path: $!";          # XXX do we really want to do this every time?
518            my $css = qq|/* short css classes for levels */\n|;
519            my $level_to_class;
520            foreach ( keys %$warn_colors ) {
521                    my $l = length($_);
522                    my $class = 'l' . $l;
523                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
524                    $level_to_class->{ $_ } = $class;
525            }
526            $self->add_css( $css );
527    
528            open(my $log, '<', $path)    || die "can't open $path: $!";
529            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
530          while(<$log>) {          while(<$log>) {
531                  chomp;                  chomp;
532                  $line++;                  $line++;
533    
534                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
535    
536                  my $style = '';                  my $style = '';
537    
538  =for filter  =for filter
# Line 499  sub warnings_html { Line 554  sub warnings_html {
554                          }                          }
555    
556  =cut  =cut
557                  if ( m{^(#*)\s+} ) { # FIXME                  if ( m{^(#*)} ) {
558    
559                          $style = $warn_colors->{$1}                          my $level = $1;
560                                  ? ' style="color:' . $warn_colors->{$1} . '"'                          my $msg = $_;
561                                  : '';  
562                            # Mojo seems to expand warn messages to full path which is annoying
563                            $msg =~ s{/[^/]+/\.\./}{/}gs;
564                            $msg =~ s{$pwd/*}{}gs;
565    
                         my $msg = $self->html_escape( $_ );  
566                          my $spacer = ' ';                          my $spacer = ' ';
567                          if ( length($msg) > $self->html_dump_width ) {                          my $real_msg = expand( $msg );
568                                  $msg = substr( $msg, 0, $self->html_dump_width );                          if ( length($real_msg) > $self->html_dump_width ) {
569                                    
570                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
571                                    $msg = unexpand( $real_msg );
572                                  $spacer = '&hellip;'                                  $spacer = '&hellip;'
573                          }                          }
574                          $warnings[ $pos++ % $max ]  
575                                  = $msg                          $msg = $self->html_escape( $msg );
576  #                               = ( $style ? qq|<span$style>$msg</span>| : $msg )  
577                                  . $spacer                          if ( my $class = $level_to_class->{ $level } ) {
578                                  . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">+$line</a><br/>|;                                  $msg = qq|<span class="$class">$msg</span>|;
579                          # FIXME <tt> should be <code> but CSS hates me                          }
580    
581                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
582                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
583                                    . ( $spacer ? $spacer : '' )
584                                    . "\n"; # XXX <pre> needs this
585    
586                            $warnings[ $pos++ % $max ] = $msg;
587                  }                  }
588          }          }
589            $last_log_pos = tell($log);
590            $last_log_line = $line;
591            warn "log has $line lines tell position $last_log_pos";
592          close($log) || die "can't close $path: $!";          close($log) || die "can't close $path: $!";
593    
594          my $size = -s $path;          my $size = -s $path;
595    
596          my $warnings = join('',          my $warnings = join("",
597                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. $max                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
598          );          );
599    
600          my $s = length($warnings);          my $s = length($warnings);
601    
602          return          return
603                  # need to wrap into span so we can have links in warnings                  # need to wrap editor link into span so we can have links in warnings
604                    qq|<span class="frey-popup"><a target="editor" href="/editor+$path+$line" title="$path \| $size -> $s bytes \| $line -> $pos lines \| level $level">warn</a><code>|                    qq|<span class="frey-popup"><a target="editor" href="/editor+$path+$line" title="$path \| $size -> $s bytes \| $line -> $pos lines \| level $level">warn</a><code>|
605                  . $warnings                  . $self->editor_links( $warnings )
606  #               . $self->editor_links( $warnings )                  . qq|</code></span>|
                 . qq|</code></span></a>|  
607                  ;                  ;
608  }  }
609    
# Line 560  sub backtrace { Line 629  sub backtrace {
629                  ) = caller($_) or last;                  ) = caller($_) or last;
630    
631                  push @backtrace,                  push @backtrace,
632                          qq|via $package at $path line $line|;                          qq|via "$package" at $path line $line|;
633          }          }
634          #warn "# backtrace: ", dump( @backtrace ) if @backtrace;          #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
635          return @backtrace;          return @backtrace;

Legend:
Removed from v.600  
changed lines
  Added in v.674

  ViewVC Help
Powered by ViewVC 1.1.26