/[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 577 by dpavlin, Fri Nov 28 00:30:03 2008 UTC revision 677 by dpavlin, Tue Dec 2 02:01:23 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  our @head = ( 'static/frey.css' );  use Text::Tabs; # expand, unexpand
20    
21    our @head;
22    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 60  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 79  sub html_dump { Line 86  sub html_dump {
86          $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;          $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;
87          $dump = $self->html_escape( $dump );          $dump = $self->html_escape( $dump );
88          $dump =~ s{\Q...\E}{&hellip;}gs;          $dump =~ s{\Q...\E}{&hellip;}gs;
89    #       $dump =~ $self->editor_links( $dump ); # FIXME include this
90          return "<code>$dump</code>";          return "<code>$dump</code>";
91  }  }
92    
93  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
94  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
95    
96  our $re_html = qr{<(?:!--.+?--|(\w+).+?/\1)>}s; # relaxed html check for one semi-valid tag  our $re_html = qr{<(?:!--.+?--|(\w+).+?/\1|[^>]+/)>}s; # relaxed html check for one semi-valid tag
97    
98  sub popup_dropdown {  sub popup_dropdown {
99          my ( $self, $type, $name, $content, $full ) = @_;          my ( $self, $type, $name, $content, $full ) = @_;
# Line 94  sub popup_dropdown { Line 102  sub popup_dropdown {
102    
103          $content = qq|<span>$content</span>| unless $content =~ m{^\s*<(span|a|code).+?/\1>\s*};          $content = qq|<span>$content</span>| unless $content =~ m{^\s*<(span|a|code).+?/\1>\s*};
104    
105          warn "## $type [$name] = ", length( $content ), " bytes" if $self->debug;          $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");
106    
107            warn "## $type [$name] = ", length( $content ), " bytes"; # if $self->debug; # FIXME
108    
109          if ( $name =~ m{::} && $name !~ $re_html ) {          if ( $name =~ m{::} && $name !~ $re_html ) {
110                  return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;                  return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;
111            } elsif ( $name =~ s{^\s*(<a)\s+}{$1 class="frey-$type"} ) {
112                    return qq|$name $content\n|;
113          } else {          } else {
114                  return qq|<span class="frey-$type">$name $content</span>\n|;                  return qq|<span class="frey-$type">$name $content</span>\n|;
115          }          }
# Line 115  sub _head_html { Line 127  sub _head_html {
127                  $path =~ s!^/!!;                  $path =~ s!^/!!;
128                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
129                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
130                                  qq|<!-- $path --><script type="text/javascript">\n| . read_file($path) . qq|\n</script>| :                                  qq|<script type="text/javascript">\n/* inline $path */\n\n| . read_file($path) . qq|\n</script>| :
131                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
132                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
133                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
134                                  qq|<!-- $path --><style type="text/css">\n| . read_file( $path ) . qq|\n</style>| :                                  qq|<style type="text/css">\n/* inline $path */\n\n| . read_file( $path ) . qq|\n</style>| :
135                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
136                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
137                          $out .= $path;                          $out .= $path;
# Line 166  sub add_css { Line 178  sub add_css {
178          my ( $package, $path, $line ) = caller;          my ( $package, $path, $line ) = caller;
179          $self->add_head( qq|          $self->add_head( qq|
180          <style type="text/css">          <style type="text/css">
181          /* via package $package at $path line $line */          /* via $package at $path line $line */
182          $css          $css
183          </style>          </style>
184          | );          | );
# Line 200  sub page { Line 212  sub page {
212    
213          my $status_line = '';          my $status_line = '';
214    
         unshift @status, { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup };  
 #       unshift @status, { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup };  
         unshift @status, { 'INC' => Frey::INC->new->as_markup };  
   
215          foreach my $part ( @status ) {          foreach my $part ( @status ) {
216                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
217                          $status_line .= $self->popup( $name, $part->{$name} );                          $status_line .= $self->popup( $name, $part->{$name} );
# Line 214  sub page { Line 222  sub page {
222          $url =~ s{\?reload=\d+}{};          $url =~ s{\?reload=\d+}{};
223    
224          my $body = $a->{body};          my $body = $a->{body};
225          $body ||= $self->as_markup if $self->can('as_markup');          if ( ! $body ) {
226                    my $run = $a->{run} || 'as_markup';
227                    warn "# no body, invoke $self->$run on ", ref($self);
228                    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;
235                  return $body                  return $body
# Line 233  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 300  Create HTML links to editor for perl err Line 315  Create HTML links to editor for perl err
315  sub editor_links {  sub editor_links {
316          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
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
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" title="vi $1 +$2">$1</a> line $2}gsm;
323    
324            $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
325                    {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm
326            || # or anything that looks like "Class::Name"
327            $error =~ s{"(\w+(?:::\w+)+)"}
328                    {"<a target="$1" href="/$1" title="introspect $1">$1</a>"}gsm;
329    
330            # method error messages
331            # FIXME replace with link to Frey::Introspect data
332            $error =~ s{(method ")(\w+)(" via)}
333                    {$1<a target="$2" href="/Frey::Shell::Grep/as_markup?pattern=$2" title="grep $2">$2</a>$3}gsm;
334    
         $error =~ s{(via package ")([\w:]+)(")}  
                 {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;  
335    
336          return $error;          return $error;
337  }  }
338    
339    =head2 error
340    
341    This method will return error to browser and backtrace unless
342    error message ends with LF C<\n> just like L<warn>
343    
344    =cut
345    
346  sub error {  sub error {
347          my $self = shift;          my $self = shift;
348          my $error = join(" ", @_);          my $error = join(" ", @_);
349    
350          my @backtrace = $self->backtrace;          my $fatal = '';
351          $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace;  
352            if ( $error !~ m{\n$} ) {
353                    if ( my @backtrace = $self->backtrace ) {
354                            $error .= "\n\t" . join( "\n\t", @backtrace );
355                            $fatal = qq| class="fatal"|;
356                    }
357            }
358    
359          warn "ERROR: $error\n";          warn "ERROR: $error\n";
360          return          return
361                  qq|<pre class="frey-error">|                  qq|<pre class="frey-error$fatal">|
362                  . $self->editor_links( $error ) .                  . $self->editor_links( $error ) .
363                  qq|</pre>|                  qq|</pre>|
364                  ;                  ;
# Line 328  sub error { Line 368  sub error {
368    
369  =head2 add_status  =head2 add_status
370    
371    $self->add_status( name => { some => 'data' } );    $self->add_status( { name => { some => 'data' } } );
372    
373    $self->add_status( "append to last status popup" );    $self->add_status( "append to last status popup" );
374    
# Line 336  sub error { Line 376  sub error {
376    
377  sub add_status {  sub add_status {
378          my ( $self, $data ) = @_;          my ( $self, $data ) = @_;
379            push @status, { 'X' => [ $self->backtrace ] };
380          if ( ref($data) ) {          if ( ref($data) ) {
381                  push @status, $data;                  push @status, $data;
382          } else {          } else {
383                  $status[ $#status ]->{added} = $data;                  if ( defined $status[ $#status ] ) {
384                            $status[ $#status ]->{ '+' } = $data;
385                    } else {
386                            push @status, { '+' => $data };
387                    }
388          }          }
389  }  }
390    
# Line 353  Called at beginning of each request Line 398  Called at beginning of each request
398    
399  sub clean_status {  sub clean_status {
400          my ($self) = shift;          my ($self) = shift;
401          @head = ();          @head = ( 'static/frey.css' );
402          @status = ();          @status = (
403                    { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },
404                    { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
405                    { 'INC' => Frey::INC->new->as_markup },
406            );
407          $icon_html = '';          $icon_html = '';
408  }  }
409    
# Line 438  my $multiline_markers = { Line 487  my $multiline_markers = {
487          '"' => '"',          '"' => '"',
488  };  };
489    
490    =for later
491    
492  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
493  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
494    
495    =cut
496    
497  sub log_path {  sub log_path {
498          $Frey::Bootstrap::log_path || warn "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
499  }  }
500    
501    our $last_log_pos  = 0;
502    our $last_log_line = 0;
503    
504    our $pwd = `pwd`;
505    chomp $pwd;
506    
507  sub warnings_html {  sub warnings_html {
508          my ($self,$level) = shift;          my ($self,$level) = shift;
509          $level ||= $self->debug,          $level ||= $self->debug,
510          my $path = $self->log_path;          my $path = $self->log_path;
511    
512          my $warnings;          my $max = 30;
513          my $line = 0;          my $pos = 0;
514            my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
515            my $line = $last_log_line;
516          my $multiline_end;          my $multiline_end;
517    
518          open(my $log, '<', $path) || die "can't open $path: $!";          # XXX do we really want to do this every time?
519            my $css = qq|/* short css classes for levels */\n|;
520            my $level_to_class;
521            foreach ( keys %$warn_colors ) {
522                    my $l = length($_);
523                    my $class = 'l' . $l;
524                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
525                    $level_to_class->{ $_ } = $class;
526            }
527            $self->add_css( $css );
528    
529            open(my $log, '<', $path)    || die "can't open $path: $!";
530            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
531          while(<$log>) {          while(<$log>) {
532                  chomp;                  chomp;
533                  $line++;                  $line++;
534    
535                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
536    
537                  my $style = '';                  my $style = '';
538    
539    =for filter
540    
541                  if ( $multiline_end ) {                  if ( $multiline_end ) {
542                          if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {                          if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {
543  #                               warn "## $line end of $multiline_end in '$_'\n";  #                               warn "## $line end of $multiline_end in '$_'\n";
# Line 477  sub warnings_html { Line 554  sub warnings_html {
554                                  next;                                  next;
555                          }                          }
556    
557                          $style = $warn_colors->{$1}  =cut
558                                  ? ' style="color:' . $warn_colors->{$1} . '"'                  if ( m{^(#*)} ) {
559                                  : '';  
560                            my $level = $1;
561                            my $msg = $_;
562    
563                            # Mojo seems to expand warn messages to full path which is annoying
564                            $msg =~ s{/[^/]+/\.\./}{/}gs;
565                            $msg =~ s{$pwd/*}{}gs;
566    
                         my $msg = $self->html_escape( $_ );  
567                          my $spacer = ' ';                          my $spacer = ' ';
568                          if ( length($msg) > $self->html_dump_width ) {                          my $real_msg = expand( $msg );
569                                  $msg = substr( $msg, 0, $self->html_dump_width );                          if ( length($real_msg) > $self->html_dump_width ) {
570                                    
571                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
572                                    $msg = unexpand( $real_msg );
573                                  $spacer = '&hellip;'                                  $spacer = '&hellip;'
574                          }                          }
575                          $msg =~ s{^\s}{&nbsp;}g;  
576                          $warnings .= qq|<tt$style>$msg</tt>$spacer<small><a target="editor" href="/editor+$path+$line">+$line</a></small><br/>|;                          $msg = $self->html_escape( $msg );
577                          # FIXME <tt> should be <code> but CSS hates me  
578                            if ( my $class = $level_to_class->{ $level } ) {
579                                    $msg = qq|<span class="$class">$msg</span>|;
580                            }
581    
582                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
583                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
584                                    . ( $spacer ? $spacer : '' )
585                                    . "\n"; # XXX <pre> needs this
586    
587                            $warnings[ $pos++ % $max ] = $msg;
588                  }                  }
589          }          }
590            $last_log_pos = tell($log);
591            $last_log_line = $line;
592            warn "log has $line lines tell position $last_log_pos";
593          close($log) || die "can't close $path: $!";          close($log) || die "can't close $path: $!";
594    
595            my $size = -s $path;
596    
597            my $warnings = join("",
598                    map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
599            );
600    
601            my $s = length($warnings);
602    
603          return          return
604                    qq|<span class="frey-popup"><a target="editor" href="/editor+$path+$line" title="open $path level $level">warn</a><span>|                  # need to wrap editor link into span so we can have links in warnings
605                      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>|
606                  . $self->editor_links( $warnings )                  . $self->editor_links( $warnings )
607                  . qq|</span></span>|                  . qq|</code></span>|
608                  ;                  ;
609  }  }
610    
# Line 523  sub backtrace { Line 630  sub backtrace {
630                  ) = caller($_) or last;                  ) = caller($_) or last;
631    
632                  push @backtrace,                  push @backtrace,
633                          qq|via package $package at $path line $line|;                          qq|via "$package" at $path line $line|;
634          }          }
635          warn "# backtrace: ", dump( @backtrace ) if @backtrace;          #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
636          return @backtrace;          return @backtrace;
637  }  }
638    

Legend:
Removed from v.577  
changed lines
  Added in v.677

  ViewVC Help
Powered by ViewVC 1.1.26