/[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 482 by dpavlin, Thu Nov 20 15:23:13 2008 UTC revision 653 by dpavlin, Sun Nov 30 23:49:32 2008 UTC
# Line 1  Line 1 
1  package Frey::Web;  package Frey::Web;
2  use Moose::Role;  use Moose::Role;
3    
4  with 'Frey::Backtrace';  with 'Frey::Session';
5    
6  use Frey::Types;  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/;  use Carp qw/confess cluck carp/;
11  use File::Slurp;  use File::Slurp;
12    
13  use Frey::Bookmarklet;  use Frey::Bookmarklet;
14  use Frey::ClassBrowser;  use Frey::ClassBrowser;
15    use Frey::INC;
16    
17  has 'head' => (  use Frey::SVK;
         is => 'rw',  
         isa => 'ArrayRef[Str]',  
         default => sub { [ 'static/frey.css' ] },  
 );  
18    
19  has 'status' => (  use Text::Tabs; # expand, unexpand
20          is => 'rw',  
21          isa => 'ArrayRef[HashRef[Str]]',  our @head;
22          lazy => 1,  sub head { @head }
         default => sub { [  
                 { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },  
                 { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },  
         ] },  
 );  
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 56  has 'dump_max_bytes' => ( Line 52  has 'dump_max_bytes' => (
52          is => 'rw',          is => 'rw',
53          isa => 'Int',          isa => 'Int',
54          default => 4096,          default => 4096,
55          documentation => 'Maximum dump size sent to browser before truncation',          documentation => 'maximum dump size sent to browser before truncation',
56  );  );
57    
 =head2 inline_smaller_than  
   
 Inline JavaScript and CSS smaller than this size into page reducing  
 round-trips to server.  
   
 =cut  
   
58  has 'inline_smaller_than' => (  has 'inline_smaller_than' => (
59          is => 'rw',          is => 'rw',
60          isa => 'Int',          isa => 'Int',
61          default => 10240,          default => 10240,
62            documentation => 'inline JavaScript and CSS to reduce round-trips',
63    );
64    
65    has 'html_dump_width' => (
66            documentation => 'crop longer lines in dumps',
67            is => 'rw',
68            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
70            default => 250,
71  );  );
72    
73  sub dom2html {  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
74  #       warn "## dom2html ",dump( @_ );  my $escape_re  = join '|' => keys %escape;
75          return Continuity::Widget::DomNode->create( @_ )->to_string;  
76    sub html_escape {
77            my ( $self, $html ) = @_;
78            $html =~ s/($escape_re)/$escape{$1}/g;
79            return $html;
80    }
81    
82    sub html_dump {
83            my ( $self, $dump ) = @_;
84            $dump = dump( $dump ) if ref($dump);
85            my $width = $self->html_dump_width;
86            $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;
87            $dump = $self->html_escape( $dump );
88            $dump =~ s{\Q...\E}{&hellip;}gs;
89    #       $dump =~ $self->editor_links( $dump ); # FIXME include this
90            return "<code>$dump</code>";
91    }
92    
93    sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
94    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
97    
98    sub popup_dropdown {
99            my ( $self, $type, $name, $content, $full ) = @_;
100    
101            $content = $self->html_dump($content) if ref $content;
102    
103            $content = qq|<span>$content</span>| unless $content =~ m{^\s*<(span|a|code).+?/\1>\s*};
104    
105            $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 ) {
110                    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 {
114                    return qq|<span class="frey-$type">$name $content</span>\n|;
115            }
116  }  }
117    
118  sub _inline_path {  sub _inline_path {
# Line 85  sub _inline_path { Line 123  sub _inline_path {
123  sub _head_html {  sub _head_html {
124          my $self = shift;          my $self = shift;
125          my $out = '';          my $out = '';
126          foreach my $path ( @{ $self->head } ) {          foreach my $path ( @head ) {
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 120  sub add_head { Line 158  sub add_head {
158          return if ! defined $path || $path eq '';          return if ! defined $path || $path eq '';
159          $path =~ s!^/!!;          $path =~ s!^/!!;
160    
161          if ( $path =~ m{<.*>}s ) {          if ( $path =~ $re_html ) {
162                  push @{ $self->head }, $path;                  push @head, $path;
163          } elsif ( -e $path ) {          } elsif ( -e $path ) {
164                  if ( $path =~ m/\.(?:js|css)$/ ) {                  if ( $path =~ m/\.(?:js|css)$/ ) {
165                          push @{ $self->head }, $path;                          push @head, $path;
166                  } else {                  } else {
167                          confess "can't add_head( $path ) it's not js or css";                          confess "can't add_head( $path ) it's not js or css";
168                  }                  }
# Line 135  sub add_head { Line 173  sub add_head {
173    
174  }  }
175    
176    sub add_css {
177            my ($self,$css) = @_;
178            my ( $package, $path, $line ) = caller;
179            $self->add_head( qq|
180            <style type="text/css">
181            /* via $package at $path line $line */
182            $css
183            </style>
184            | );
185    }
186    
187  our $reload_counter = 0;  our $reload_counter = 0;
188    
189    
# Line 148  our $reload_counter = 0; Line 197  our $reload_counter = 0;
197    
198  =cut  =cut
199    
200    our @status;
201    sub status { @status };
202    
203    our $icon_html;
204    
205  sub page {  sub page {
206          my $self = shift;          my $self = shift;
207          my $a = {@_};          my $a = {@_};
208    
209            warn "## page ",dump($a);
210    
211          $reload_counter++;          $reload_counter++;
212    
213          my $status_line = '';          my $status_line = '';
214          foreach my $part ( @{ $self->status } ) {  
215                  if ( ref($part) ne 'HASH' ) {          foreach my $part ( @status ) {
                         warn "part not hash ",dump( $part ) ;  
                         #$self->status( $part );  
                         next;  
                 }  
216                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
217                          my $content = $part->{$name};                          $status_line .= $self->popup( $name, $part->{$name} );
                         if ( ref($content) ) {  
                                 $content = '<code>' . dump($content) . '</code>';  
                                 my $l = length($content);  
                                 $content = qq|<span>$l bytes</span>| if $l > $self->dump_max_bytes;  
                         } else {  
                                 $content = qq|<span>$content</span>|;  
                         }  
                         warn "### part [$name] = ", length( $content ), " bytes" if $self->debug;  
                         $status_line .= qq|<span class="frey-popup">$name $content</span>\n|;  
218                  }                  }
219          }          }
220    
# Line 179  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                    $body = $self->$run;
229            }
230          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
231                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
232                  return $body                  return $body
# Line 188  sub page { Line 235  sub page {
235                  $body = '<!-- no body -->';                  $body = '<!-- no body -->';
236          }          }
237    
238          my $warn_colors = {          $status_line .= $self->warnings_html;
                 '#'  => '#444',  
                 '##' => '#888',  
         };  
   
         $status_line  
                 .= qq|<span class="frey-popup">warn<span>|  
                 . $self->editor_links(  
                         join("", map {  
                                 warn "# $_";  
                                 my $style = '';  
                                 $style = $warn_colors->{$1}  
                                         ? ' style="color:' . $warn_colors->{$1} . '"'  
                                         : ''  
                                         if m{^(#+)};  
                                 qq|<tt$style>$_</tt><br/>|; # XXX <tt> should be <code> but CSS hates me  
                         } $self->warnings )  
                 )  
                 . qq|</span></span>|  
                 if $self->warnings;  
239    
240          my      ($exit,$description) = ('exit','stop server');          my      ($exit,$description) = ('exit','stop server');
241                  ($exit,$description) = ('restart','restart server')                  ($exit,$description) = ('restart','restart server')
# Line 216  sub page { Line 244  sub page {
244          my $right =          my $right =
245                  qq|                  qq|
246                          <span class="right">                          <span class="right">
247                          <a title="reload"  href="/reload$url"><code>$url</code></a>                          <a title="reload $url"  href="/reload$url">reload</a>
248                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
249                          </span>                          </span>
250                  |;                  |;
251    
252            my $svk = Frey::SVK->new;
253            my $info = $svk->info;
254            my $revision = $svk->info->{Revision} || '';
255            $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};
256    
257            $self->add_icon unless $icon_html;
258    
259          my $html = join("\n",          my $html = join("\n",
260                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
261                  $self->_head_html,                  $self->_head_html,
262                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',
263                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
264                    ( $icon_html || '<!-- no icon -->' ),
265                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
266                  qq|                  qq|
267                  </head><body>                  </head><body>
268                  $body                  $body
269                  <div class="frey-status-line">                  <div class="frey-status-line">
270                          <a href="/">Frey</a> $Frey::VERSION                          <a href="/">Frey</a> $Frey::VERSION $revision
271                          $status_line                          $status_line
272                          $right                          $right
273                  </div>                  </div>
# Line 255  Create HTML editor link with optional li Line 291  Create HTML editor link with optional li
291  sub editor {  sub editor {
292          my ( $self, $class, $line, $title ) = @_;          my ( $self, $class, $line, $title ) = @_;
293          confess "need class" unless $class;          confess "need class" unless $class;
294          $line ||= 1;          if ( ! defined $title ) {
295                    $title  = "edit $class";
296                    $title .= " line $line" if $line;
297            }
298            $line  ||= 1;
299          qq|<a target="editor" href="/editor+$class+$line"| .          qq|<a target="editor" href="/editor+$class+$line"| .
300          ( $title ? qq| title="$title"| : '' ) .          ( $title ? qq| title="$title"| : '' ) .
301          qq|>$class</a>|;          qq|>$class</a>|;
# Line 272  Create HTML links to editor for perl err Line 312  Create HTML links to editor for perl err
312  sub editor_links {  sub editor_links {
313          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
314    
315    #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
316    
317          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
318                  {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;
319    
320          $error =~ s{(via package ")([\w:]+)(")}          $error =~ s{(via (?:package) "?)([\w:]+)("?)}
321                  {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;                  {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;
322    
323          return $error;          return $error;
# Line 296  sub error { Line 338  sub error {
338                  ;                  ;
339  }  }
340    
341    =head1 Status line
342    
343    =head2 add_status
344    
345      $self->add_status( { name => { some => 'data' } } );
346    
347      $self->add_status( "append to last status popup" );
348    
349    =cut
350    
351    sub add_status {
352            my ( $self, $data ) = @_;
353            push @status, { 'X' => [ $self->backtrace ] };
354            if ( ref($data) ) {
355                    push @status, $data;
356            } else {
357                    if ( defined $status[ $#status ] ) {
358                            $status[ $#status ]->{ '+' } = $data;
359                    } else {
360                            push @status, { '+' => $data };
361                    }
362            }
363    }
364    
365    =head2 clean_status
366    
367    Called at beginning of each request
368    
369      $self->clean_status;
370    
371    =cut
372    
373    sub clean_status {
374            my ($self) = shift;
375            @head = ( 'static/frey.css' );
376            @status = (
377                    { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },
378                    { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
379                    { 'INC' => Frey::INC->new->as_markup },
380            );
381            $icon_html = '';
382    }
383    
384    =head2 status_parts
385    
386    Dump all status line parts
387    
388      $self->status_parts
389    
390    =cut
391    
392    sub status_parts {
393            warn "## status parts ", dump( map { keys %$_ } @status );
394    }
395    
396    =for debug
397    
398    sub DEMOLISH {
399            my ( $self ) = @_;
400            warn "## $self DEMOLISH status ", $#status + 1, " elements ", dump( map { keys %$_ } @status ) if @status;
401    }
402    
403    =cut
404    
405    =head2 add_icon
406    
407      Frey::Foo->add_icon;            # /static/icons/Frey/Foo.png
408      Frey::Foo->add_icon('warning'); # /static/icons/Frey/Foo/warning.png
409    
410    =cut
411    
412    sub icon_path {
413            my ($self,$class,$variant) = @_;
414            my $icon = $class;
415            $icon =~ s{::}{/}g;
416            $icon .= "/$variant" if $variant;
417            my $path = 'static/icons/' . $icon . '.png';
418            if ( -e $path ) {
419                    warn "# $class from $self icon_path $path" if $self->debug;
420                    return $path;
421            } else {
422                    $self->TODO( "add $path icon for $class" );
423                    return undef;
424            }
425    }
426    
427    sub add_icon {
428            my ($self,$variant) = @_;
429    
430            my $class = ref($self);
431            $class = $self->class if $self->can('class');
432            my $icon_path = $self->icon_path( $class, $variant ) || return;
433    
434            $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;
435            warn "# using icon $icon_path";
436    
437    =for later
438    
439            # FIXME http://en.wikipedia.org/wiki/Favicon suggest just rel="icon" but that doesn't seem to work!
440            my $ico_path = $icon_path;
441            $ico_path =~ s{png$}{ico};
442            if ( ! -e $ico_path ) {
443                    system "convert $icon_path $ico_path";
444                    warn "# convert $icon_path $ico_path : $@";
445            }
446            $icon_html .= qq|<link rel="shortcut icon" type="image/x-icon" href="/$ico_path">| if -e $ico_path;
447    
448    =cut
449    
450    }
451    
452    my $warn_colors = {
453            '#'  => '#444',
454            '##' => '#888',
455    };
456    
457    my $multiline_markers = {
458            '(' => ')',
459            '{' => '}',
460            '[' => ']',
461            '"' => '"',
462    };
463    
464    my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
465    warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
466    
467    sub log_path {
468            $Frey::Bootstrap::log_path || die "no log_path?";
469    }
470    
471    our $last_log_pos  = 0;
472    our $last_log_line = 0;
473    
474    our $pwd = `pwd`;
475    chomp $pwd;
476    
477    sub warnings_html {
478            my ($self,$level) = shift;
479            $level ||= $self->debug,
480            my $path = $self->log_path;
481    
482            my $max = 30;
483            my $pos = 0;
484            my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
485            my $line = $last_log_line;
486            my $multiline_end;
487    
488            # XXX do we really want to do this every time?
489            my $css = qq|/* short css classes for levels */\n|;
490            my $level_to_class;
491            foreach ( keys %$warn_colors ) {
492                    my $l = length($_);
493                    my $class = 'l' . $l;
494                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
495                    $level_to_class->{ $_ } = $class;
496            }
497            $self->add_css( $css );
498    
499            open(my $log, '<', $path)    || die "can't open $path: $!";
500            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
501            while(<$log>) {
502                    chomp;
503                    $line++;
504    
505                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
506    
507                    my $style = '';
508    
509    =for filter
510    
511                    if ( $multiline_end ) {
512                            if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {
513    #                               warn "## $line end of $multiline_end in '$_'\n";
514                                    undef $multiline_end;
515                            } else {
516    #                               warn "## $line skipped\n";
517                            }
518                    } elsif ( m{^(#*)\s+} ) {
519                            my $l = $1 ? length($1) : 0;
520                            if ( $l > $level ) {
521                                    undef $multiline_end;
522                                    $multiline_end = $multiline_markers->{$1} if m{($multiline_re)$};
523    #                               warn "## $line start $1 .. $multiline_end level $l > $level for '$_'\n" if $multiline_end;
524                                    next;
525                            }
526    
527    =cut
528                    if ( m{^(#*)} ) {
529    
530                            my $level = $1;
531                            my $msg = $_;
532    
533                            # Mojo seems to expand warn messages to full path which is annoying
534                            $msg =~ s{/[^/]+/\.\./}{/}gs;
535                            $msg =~ s{$pwd/*}{}gs;
536    
537                            my $spacer = ' ';
538                            my $real_msg = expand( $msg );
539                            if ( length($real_msg) > $self->html_dump_width ) {
540                                    
541                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
542                                    $msg = unexpand( $real_msg );
543                                    $spacer = '&hellip;'
544                            }
545    
546                            $msg = $self->html_escape( $msg );
547    
548                            if ( my $class = $level_to_class->{ $level } ) {
549                                    $msg = qq|<span class="$class">$msg</span>|;
550                            }
551    
552                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
553                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
554                                    . ( $spacer ? $spacer : '' )
555                                    . "\n"; # XXX <pre> needs this
556    
557                            $warnings[ $pos++ % $max ] = $msg;
558                    }
559            }
560            $last_log_pos = tell($log);
561            $last_log_line = $line;
562            warn "log has $line lines tell position $last_log_pos";
563            close($log) || die "can't close $path: $!";
564    
565            my $size = -s $path;
566    
567            my $warnings = join("",
568                    map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
569            );
570    
571            my $s = length($warnings);
572    
573            return
574                    # need to wrap editor link into span so we can have links in warnings
575                      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>|
576                    . $self->editor_links( $warnings )
577                    . qq|</code></span>|
578                    ;
579    }
580    
581    
582    =head2 backtrace
583    
584    Show backtrace with links to editor
585    
586      my @backtrace = $self->backtrace;
587    
588    =cut
589    
590    sub backtrace {
591            my ($self) = @_;
592    
593            my @backtrace;
594            foreach ( 0 .. 5 ) {
595                    my (
596                            $package,$path,$line
597                            # subroutine hasargs
598                            # wantarray evaltext is_require
599                            # hints bitmask hinthash
600                    ) = caller($_) or last;
601    
602                    push @backtrace,
603                            qq|via $package at $path line $line|;
604            }
605            #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
606            return @backtrace;
607    }
608    
609  1;  1;

Legend:
Removed from v.482  
changed lines
  Added in v.653

  ViewVC Help
Powered by ViewVC 1.1.26