/[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 588 by dpavlin, Fri Nov 28 15:07:03 2008 UTC revision 793 by dpavlin, Wed Dec 10 17:51:29 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;
14  use Frey::ClassBrowser;  use Frey::Class::Browser;
15  use Frey::INC;  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 80  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  #       $dump =~ $self->html_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 98  sub popup_dropdown { Line 104  sub popup_dropdown {
104    
105          $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");          $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");
106    
107          warn "## $type [$name] = ", length( $content ), " bytes" if $self->debug;          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|;
# Line 121  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 178  sub add_css { Line 184  sub add_css {
184          | );          | );
185  }  }
186    
187    sub add_js {
188            my ($self,$css) = @_;
189            my ( $package, $path, $line ) = caller;
190            $self->add_head( qq|
191            <script type="text/javascript">
192            /* via $package at $path line $line */
193            $css
194            </script>
195            | );
196    }
197    
198  our $reload_counter = 0;  our $reload_counter = 0;
199    
200    
# Line 216  sub page { Line 233  sub page {
233          $url =~ s{\?reload=\d+}{};          $url =~ s{\?reload=\d+}{};
234    
235          my $body = $a->{body};          my $body = $a->{body};
236          $body ||= $self->as_markup if $self->can('as_markup');          if ( ! $body ) {
237                    my $run = $a->{run} || 'as_markup';
238                    warn "# no body, invoke $self->$run on ", ref($self);
239                    eval {
240                            $body = $self->$run;
241                    };
242                    $body = $self->error( $@, '' ) if $@;
243            }
244          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
245                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
246                  return $body                  return $body
# Line 235  sub page { Line 259  sub page {
259                  qq|                  qq|
260                          <span class="right">                          <span class="right">
261                          <a title="reload $url"  href="/reload$url">reload</a>                          <a title="reload $url"  href="/reload$url">reload</a>
262                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
263                          </span>                          </span>
264                  |;                  |;
265    
# Line 291  sub editor { Line 315  sub editor {
315          qq|>$class</a>|;          qq|>$class</a>|;
316  }  }
317    
318  =head2 editor_links  =head2 html_links
319    
320  Create HTML links to editor for perl error message  Create HTML links to editor for perl error message
321    
322    my $html = $self->editor_links( $error )    my $html = $self->html_links( $error )
323    
324  =cut  =cut
325    
326  sub editor_links {  sub html_links {
327          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
328    
329            $error = $self->strip_full_path( $error );
330    
331    #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
332    
333            # perl's backtrace
334          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
335                  {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;
336    
337            $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
338                    {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm
339            || # or anything that looks like "Class::Name"
340            $error =~ s{"(\w+(?:::\w+)+)"}
341                    {"<a target="$1" href="/$1" title="introspect $1">$1</a>"}gsm;
342    
343            # method error messages
344            # FIXME replace with link to Frey::Introspect data
345            $error =~ s{(method ")(\w+)(" via)}
346                    {$1<a target="$2" href="/Frey::Shell::Grep/as_markup?pattern=$2" title="grep $2">$2</a>$3}gsm;
347    
348            # link paths to editor
349            $error =~ s{((?:lib|t)/[\S]+)\s+(\d+\s+bytes)}
350                    {<a target="editor" href="/editor+$1+1" title="vi $1 [$2]">$1</a>}gsm;
351    
352          $error =~ s{(via (?:package) "?)([\w:]+)("?)}          $error =~ s{(class ")([\w:]+)(")}
353                  {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;                  {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm;
354    
355          return $error;          return $error;
356  }  }
357    
358    =head2 error
359    
360    This method will return error to browser and backtrace unless
361    error message ends with LF C<\n> just like L<warn>
362    
363    =cut
364    
365  sub error {  sub error {
366          my $self = shift;          my $self = shift;
367          my $error = join(" ", @_);          my $error = join(" ", @_);
368    
369          my @backtrace = $self->backtrace;          my $fatal = '';
370          $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace;  
371            if ( $error !~ m{\n$} ) {
372                    if ( my @backtrace = $self->backtrace ) {
373                            $error .= "\n\t" . join( "\n\t", @backtrace );
374                            $fatal = qq| frey-fatal|;
375                    }
376            }
377    
378          warn "ERROR: $error\n";          warn "ERROR: $error\n";
379          return          return
380                  qq|<pre class="frey-error">|                  qq|<pre class="frey-error$fatal">|
381                  . $self->editor_links( $error ) .                  . $self->html_links( $error ) .
382                  qq|</pre>|                  qq|</pre>|
383                  ;                  ;
384  }  }
# Line 362  sub clean_status { Line 419  sub clean_status {
419          my ($self) = shift;          my ($self) = shift;
420          @head = ( 'static/frey.css' );          @head = ( 'static/frey.css' );
421          @status = (          @status = (
422                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::Class::Browser->new( usage_on_top => 0 )->as_markup },
423                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
424                  { 'INC' => Frey::INC->new->as_markup },                  { 'INC' => Frey::INC->new->as_markup },
425          );          );
426          $icon_html = '';          $icon_html = '';
427  }  }
# Line 400  sub DEMOLISH { Line 457  sub DEMOLISH {
457  sub icon_path {  sub icon_path {
458          my ($self,$class,$variant) = @_;          my ($self,$class,$variant) = @_;
459          my $icon = $class;          my $icon = $class;
460            $icon ||= $self->title;
461          $icon =~ s{::}{/}g;          $icon =~ s{::}{/}g;
462          $icon .= "/$variant" if $variant;          $icon .= "/$variant" if $variant;
463          my $path = 'static/icons/' . $icon . '.png';          my $path = 'static/icons/' . $icon . '.png';
# Line 449  my $multiline_markers = { Line 507  my $multiline_markers = {
507          '"' => '"',          '"' => '"',
508  };  };
509    
510    =for later
511    
512  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
513  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
514    
515    =cut
516    
517  sub log_path {  sub log_path {
518          $Frey::Bootstrap::log_path || warn "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
519  }  }
520    
521    our $pwd = `pwd`;
522    chomp $pwd;
523    
524    sub strip_full_path {
525            my ($self, $msg) = @_;
526            # Mojo seems to expand warn messages to full path which is annoying
527            $msg =~ s{/[^/]+/\.\./}{/}gs;
528            $msg =~ s{$pwd/*}{}gs;
529            return $msg;
530    }
531    
532    our $last_log_pos  = 0;
533    our $last_log_line = 0;
534    
535  sub warnings_html {  sub warnings_html {
536          my ($self,$level) = shift;          my ($self,$level) = shift;
537          $level ||= $self->debug,          $level ||= $self->debug,
538          my $path = $self->log_path;          my $path = $self->log_path;
539    
540          my $max = 50;          my $max = 30;
541          my $pos = 0;          my $pos = 0;
542          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
543          my $line = 0;          my $line = $last_log_line;
544          my $multiline_end;          my $multiline_end;
545    
546          open(my $log, '<', $path) || die "can't open $path: $!";          # XXX do we really want to do this every time?
547            my $css = qq|/* short css classes for levels */\n|;
548            my $level_to_class;
549            foreach ( keys %$warn_colors ) {
550                    my $l = length($_);
551                    my $class = 'l' . $l;
552                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
553                    $level_to_class->{ $_ } = $class;
554            }
555            $self->add_css( $css );
556    
557            open(my $log, '<', $path)    || die "can't open $path: $!";
558            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
559          while(<$log>) {          while(<$log>) {
560                  chomp;                  chomp;
561                  $line++;                  $line++;
562    
563                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
564    
565                  my $style = '';                  my $style = '';
566    
567  =for filter  =for filter
# Line 493  sub warnings_html { Line 583  sub warnings_html {
583                          }                          }
584    
585  =cut  =cut
586                  if ( m{^(#*)\s+} ) { # FIXME                  if ( m{^(#*)} ) {
587    
588                          $style = $warn_colors->{$1}                          my $level = $1;
589                                  ? ' style="color:' . $warn_colors->{$1} . '"'                          my $msg = $self->strip_full_path( $_ );
                                 : '';  
590    
                         my $msg = $self->html_escape( $_ );  
591                          my $spacer = ' ';                          my $spacer = ' ';
592                          if ( length($msg) > $self->html_dump_width ) {                          my $real_msg = expand( $msg );
593                                  $msg = substr( $msg, 0, $self->html_dump_width );                          if ( length($real_msg) > $self->html_dump_width ) {
594                                    
595                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
596                                    $msg = unexpand( $real_msg );
597                                  $spacer = '&hellip;'                                  $spacer = '&hellip;'
598                          }                          }
599                          $warnings[ $pos++ % $max ]  
600                                  = $msg                          $msg = $self->html_escape( $msg );
601  #                               = ( $style ? qq|<span$style>$msg</span>| : $msg )  
602                                  . $spacer                          if ( my $class = $level_to_class->{ $level } ) {
603                                  . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">+$line</a><br/>|;                                  $msg = qq|<span class="$class">$msg</span>|;
604                          # FIXME <tt> should be <code> but CSS hates me                          }
605    
606                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
607                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
608                                    . ( $spacer ? $spacer : '' )
609                                    . "\n"; # XXX <pre> needs this
610    
611                            $warnings[ $pos++ % $max ] = $msg;
612                  }                  }
613          }          }
614            $last_log_pos = tell($log);
615            $last_log_line = $line;
616            warn "log has $line lines tell position $last_log_pos";
617          close($log) || die "can't close $path: $!";          close($log) || die "can't close $path: $!";
618    
619          my $size = -s $path;          my $size = -s $path;
620    
621          my $warnings = join('',          my $warnings = join("",
622                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. $max                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
623          );          );
624    
625          my $s = length($warnings);          my $s = length($warnings);
626    
627          return          return
628                  # 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
629                    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>|
630                  . $warnings                  . $self->html_links( $warnings )
631  #               . $self->editor_links( $warnings )                  . qq|</code></span>|
                 . qq|</code></span></a>|  
632                  ;                  ;
633  }  }
634    
# Line 554  sub backtrace { Line 654  sub backtrace {
654                  ) = caller($_) or last;                  ) = caller($_) or last;
655    
656                  push @backtrace,                  push @backtrace,
657                          qq|via $package at $path line $line|;                          qq|via "$package" at $path line $line|;
658          }          }
659          warn "# backtrace: ", dump( @backtrace ) if @backtrace;          #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
660          return @backtrace;          return @backtrace;
661  }  }
662    
663    =head2 checkbox
664    
665    Generate checkbox html markup from some attribute
666    
667      my $html = $self->checkbox('attribute_name', $value);
668    
669    =cut
670    
671    sub checkbox {
672            my ($self,$name,$value) = @_;
673            my $checked = '';
674            my $all_checkboxes = eval { $self->$name };
675            warn "ERROR tried to get checkbox value for '$name' which is unknown: $@" if $@;
676            $all_checkboxes = [ $all_checkboxes ] unless ref($all_checkboxes) eq 'ARRAY'; # sigh, too chatty
677            $checked = ' checked' if grep { defined $_ && $_ eq $value } @$all_checkboxes;
678            warn "# checkbox $name $value $checked\t", $self->dump( $self->$name );
679            qq|<input name="$name" value="$value" type="checkbox"$checked>|;
680    }
681    
682    =head2 strip
683    
684    Strip whitespace around content
685    
686      my $stripped = strip('  no more whitespace around this   ');
687    
688    =cut
689    
690    sub strip {
691            my $t = shift;
692            $t =~ s{^\s+}{}gs;
693            $t =~ s{>\s+<}{><}gs;
694            $t =~ s{\s+$}{}gs;
695            return $t;
696    }
697    
698  1;  1;

Legend:
Removed from v.588  
changed lines
  Added in v.793

  ViewVC Help
Powered by ViewVC 1.1.26