/[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 460 by dpavlin, Wed Nov 19 17:57:48 2008 UTC revision 671 by dpavlin, Tue Dec 2 01:31: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::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 { [  
                 { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },  
                 { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->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 47  has 'content_type' => ( Line 45  has 'content_type' => (
45          is => 'rw',          is => 'rw',
46          isa => 'Str',          isa => 'Str',
47          default => 'text/html',          default => 'text/html',
48            documentation => 'Content-type header',
49  );  );
50    
51  =head2 inline_smaller_than  has 'dump_max_bytes' => (
52            is => 'rw',
53  Inline JavaScript and CSS smaller than this size into page reducing          isa => 'Int',
54  round-trips to server.          default => 4096,
55            documentation => 'maximum dump size sent to browser before truncation',
56  =cut  );
57    
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  sub dom2html {  has 'html_dump_width' => (
66  #       warn "## dom2html ",dump( @_ );          documentation => 'crop longer lines in dumps',
67          return Continuity::Widget::DomNode->create( @_ )->to_string;          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    my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
74    my $escape_re  = join '|' => keys %escape;
75    
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 75  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 110  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 125  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 138  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 > 1024;  
                         } 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 169  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
232                            = $self->error( $@ )
233                            . $self->dropdown( self => $self )
234                            if $@;
235            }
236          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
237                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
238                  return $body                  return $body
# Line 178  sub page { Line 241  sub page {
241                  $body = '<!-- no body -->';                  $body = '<!-- no body -->';
242          }          }
243    
244            $status_line .= $self->warnings_html;
245    
246            my      ($exit,$description) = ('exit','stop server');
247                    ($exit,$description) = ('restart','restart server')
248                    if $ENV{FREY_RESTART}; # tune labels on exit link
249    
250            my $right =
251                    qq|
252                            <span class="right">
253                            <a title="reload $url"  href="/reload$url">reload</a>
254                            <a title="$description" href="/exit$url" target="exit">$exit</a>
255                            </span>
256                    |;
257    
258            my $svk = Frey::SVK->new;
259            my $info = $svk->info;
260            my $revision = $svk->info->{Revision} || '';
261            $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};
262    
263            $self->add_icon unless $icon_html;
264    
265          my $html = join("\n",          my $html = join("\n",
266                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
267                  $self->_head_html,                  $self->_head_html,
268                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',
269                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
270                    ( $icon_html || '<!-- no icon -->' ),
271                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
272                  qq|                  qq|
273                  </head><body>                  </head><body>
274                  $body                  $body
275                  <div class="frey-status-line">                  <div class="frey-status-line">
276                          <a href="/">Frey</a> $Frey::VERSION                          <a href="/">Frey</a> $Frey::VERSION $revision
                         <a href="?reload=$reload_counter"><code>$url</code></a>  
277                          $status_line                          $status_line
278                            $right
279                  </div>                  </div>
280              </body></html>              </body></html>
281                  |,                  |,
# Line 201  sub page { Line 286  sub page {
286          return $html;          return $html;
287  }  }
288    
289    =head2 editor
290    
291    Create HTML editor link with optional line and title
292    
293      my $html = $self->editor( $class, $line, $title );
294    
295    =cut
296    
297    sub editor {
298            my ( $self, $class, $line, $title ) = @_;
299            confess "need class" unless $class;
300            if ( ! defined $title ) {
301                    $title  = "edit $class";
302                    $title .= " line $line" if $line;
303            }
304            $line  ||= 1;
305            qq|<a target="editor" href="/editor+$class+$line"| .
306            ( $title ? qq| title="$title"| : '' ) .
307            qq|>$class</a>|;
308    }
309    
310    =head2 editor_links
311    
312    Create HTML links to editor for perl error message
313    
314      my $html = $self->editor_links( $error )
315    
316    =cut
317    
318    sub editor_links {
319            my ( $self, $error ) = @_;
320    
321    #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
322    
323            # perl's backtrace
324            $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
325                    {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;
326    
327            # our backtrace
328            $error =~ s{(via (?:package) "?)([\w:]+)("?)}
329                    {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;
330    
331            # method error messages
332    #       $error =~ s{(method ")(\w+)"}
333    #               {$1<a target="/Frey::Shell::Grep?pattern=$2">$2</a>"}gsm; # FIXME replace with link to Frey::Introspect data
334    
335            # anything that looks like Class::Name=
336            $error =~ s{(\w+(?:::\w+)+)=}
337                    {<a target="$1" href="/$1">$1</a>=}gsm;
338    
339            return $error;
340    }
341    
342    =head2 error
343    
344    This method will return error to browser and backtrace unless
345    error message ends with LF C<\n> just like L<warn>
346    
347    =cut
348    
349  sub error {  sub error {
350          my $self = shift;          my $self = shift;
351          my $error = join(" ", @_);          my $error = join(" ", @_);
352    
353          my @backtrace;          my $fatal = '';
354          foreach ( 0 .. 5 ) {  
355                  my @caller = caller($_) or last;          if ( $error !~ m{\n$} ) {
356                  my @description = ( qw/                  if ( my @backtrace = $self->backtrace ) {
357                          package filename line                          $error .= "\n\t" . join( "\n\t", @backtrace );
358                          subroutine hasargs                          $fatal = qq| class="fatal"|;
359                          wantarray evaltext is_require                  }
                         hints bitmask hinthash  
                 /);  
                 push @backtrace, join(' ',  
                         map {  
                                 $description[$_] . ': ' . dump $caller[$_]  
                         } ( 0 .. $#caller )  
                 );  
         }  
         if ( @backtrace ) {  
                 warn "# append backtrace: ", dump( @backtrace );  
                 $error .= "\n\t" . join( "\n\t", @backtrace );  
360          }          }
361    
362          warn "ERROR: $error\n";          warn "ERROR: $error\n";
363          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}{at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;          return
364          $error =~ s{(via package ")([\w:]+)(")}{$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;                  qq|<pre class="frey-error$fatal">|
365          return qq|<pre class="frey-error">$error</pre>|;                  . $self->editor_links( $error ) .
366                    qq|</pre>|
367                    ;
368    }
369    
370    =head1 Status line
371    
372    =head2 add_status
373    
374      $self->add_status( { name => { some => 'data' } } );
375    
376      $self->add_status( "append to last status popup" );
377    
378    =cut
379    
380    sub add_status {
381            my ( $self, $data ) = @_;
382            push @status, { 'X' => [ $self->backtrace ] };
383            if ( ref($data) ) {
384                    push @status, $data;
385            } else {
386                    if ( defined $status[ $#status ] ) {
387                            $status[ $#status ]->{ '+' } = $data;
388                    } else {
389                            push @status, { '+' => $data };
390                    }
391            }
392    }
393    
394    =head2 clean_status
395    
396    Called at beginning of each request
397    
398      $self->clean_status;
399    
400    =cut
401    
402    sub clean_status {
403            my ($self) = shift;
404            @head = ( 'static/frey.css' );
405            @status = (
406                    { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },
407                    { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
408                    { 'INC' => Frey::INC->new->as_markup },
409            );
410            $icon_html = '';
411    }
412    
413    =head2 status_parts
414    
415    Dump all status line parts
416    
417      $self->status_parts
418    
419    =cut
420    
421    sub status_parts {
422            warn "## status parts ", dump( map { keys %$_ } @status );
423    }
424    
425    =for debug
426    
427    sub DEMOLISH {
428            my ( $self ) = @_;
429            warn "## $self DEMOLISH status ", $#status + 1, " elements ", dump( map { keys %$_ } @status ) if @status;
430    }
431    
432    =cut
433    
434    =head2 add_icon
435    
436      Frey::Foo->add_icon;            # /static/icons/Frey/Foo.png
437      Frey::Foo->add_icon('warning'); # /static/icons/Frey/Foo/warning.png
438    
439    =cut
440    
441    sub icon_path {
442            my ($self,$class,$variant) = @_;
443            my $icon = $class;
444            $icon =~ s{::}{/}g;
445            $icon .= "/$variant" if $variant;
446            my $path = 'static/icons/' . $icon . '.png';
447            if ( -e $path ) {
448                    warn "# $class from $self icon_path $path" if $self->debug;
449                    return $path;
450            } else {
451                    $self->TODO( "add $path icon for $class" );
452                    return undef;
453            }
454    }
455    
456    sub add_icon {
457            my ($self,$variant) = @_;
458    
459            my $class = ref($self);
460            $class = $self->class if $self->can('class');
461            my $icon_path = $self->icon_path( $class, $variant ) || return;
462    
463            $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;
464            warn "# using icon $icon_path";
465    
466    =for later
467    
468            # FIXME http://en.wikipedia.org/wiki/Favicon suggest just rel="icon" but that doesn't seem to work!
469            my $ico_path = $icon_path;
470            $ico_path =~ s{png$}{ico};
471            if ( ! -e $ico_path ) {
472                    system "convert $icon_path $ico_path";
473                    warn "# convert $icon_path $ico_path : $@";
474            }
475            $icon_html .= qq|<link rel="shortcut icon" type="image/x-icon" href="/$ico_path">| if -e $ico_path;
476    
477    =cut
478    
479    }
480    
481    my $warn_colors = {
482            '#'  => '#444',
483            '##' => '#888',
484    };
485    
486    my $multiline_markers = {
487            '(' => ')',
488            '{' => '}',
489            '[' => ']',
490            '"' => '"',
491    };
492    
493    =for later
494    
495    my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
496    warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
497    
498    =cut
499    
500    sub log_path {
501            $Frey::Bootstrap::log_path || die "no log_path?";
502    }
503    
504    our $last_log_pos  = 0;
505    our $last_log_line = 0;
506    
507    our $pwd = `pwd`;
508    chomp $pwd;
509    
510    sub warnings_html {
511            my ($self,$level) = shift;
512            $level ||= $self->debug,
513            my $path = $self->log_path;
514    
515            my $max = 30;
516            my $pos = 0;
517            my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
518            my $line = $last_log_line;
519            my $multiline_end;
520    
521            # XXX do we really want to do this every time?
522            my $css = qq|/* short css classes for levels */\n|;
523            my $level_to_class;
524            foreach ( keys %$warn_colors ) {
525                    my $l = length($_);
526                    my $class = 'l' . $l;
527                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
528                    $level_to_class->{ $_ } = $class;
529            }
530            $self->add_css( $css );
531    
532            open(my $log, '<', $path)    || die "can't open $path: $!";
533            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
534            while(<$log>) {
535                    chomp;
536                    $line++;
537    
538                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
539    
540                    my $style = '';
541    
542    =for filter
543    
544                    if ( $multiline_end ) {
545                            if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {
546    #                               warn "## $line end of $multiline_end in '$_'\n";
547                                    undef $multiline_end;
548                            } else {
549    #                               warn "## $line skipped\n";
550                            }
551                    } elsif ( m{^(#*)\s+} ) {
552                            my $l = $1 ? length($1) : 0;
553                            if ( $l > $level ) {
554                                    undef $multiline_end;
555                                    $multiline_end = $multiline_markers->{$1} if m{($multiline_re)$};
556    #                               warn "## $line start $1 .. $multiline_end level $l > $level for '$_'\n" if $multiline_end;
557                                    next;
558                            }
559    
560    =cut
561                    if ( m{^(#*)} ) {
562    
563                            my $level = $1;
564                            my $msg = $_;
565    
566                            # Mojo seems to expand warn messages to full path which is annoying
567                            $msg =~ s{/[^/]+/\.\./}{/}gs;
568                            $msg =~ s{$pwd/*}{}gs;
569    
570                            my $spacer = ' ';
571                            my $real_msg = expand( $msg );
572                            if ( length($real_msg) > $self->html_dump_width ) {
573                                    
574                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
575                                    $msg = unexpand( $real_msg );
576                                    $spacer = '&hellip;'
577                            }
578    
579                            $msg = $self->html_escape( $msg );
580    
581                            if ( my $class = $level_to_class->{ $level } ) {
582                                    $msg = qq|<span class="$class">$msg</span>|;
583                            }
584    
585                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
586                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
587                                    . ( $spacer ? $spacer : '' )
588                                    . "\n"; # XXX <pre> needs this
589    
590                            $warnings[ $pos++ % $max ] = $msg;
591                    }
592            }
593            $last_log_pos = tell($log);
594            $last_log_line = $line;
595            warn "log has $line lines tell position $last_log_pos";
596            close($log) || die "can't close $path: $!";
597    
598            my $size = -s $path;
599    
600            my $warnings = join("",
601                    map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
602            );
603    
604            my $s = length($warnings);
605    
606            return
607                    # need to wrap editor link into span so we can have links in warnings
608                      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>|
609                    . $self->editor_links( $warnings )
610                    . qq|</code></span>|
611                    ;
612    }
613    
614    
615    =head2 backtrace
616    
617    Show backtrace with links to editor
618    
619      my @backtrace = $self->backtrace;
620    
621    =cut
622    
623    sub backtrace {
624            my ($self) = @_;
625    
626            my @backtrace;
627            foreach ( 0 .. 5 ) {
628                    my (
629                            $package,$path,$line
630                            # subroutine hasargs
631                            # wantarray evaltext is_require
632                            # hints bitmask hinthash
633                    ) = caller($_) or last;
634    
635                    push @backtrace,
636                            qq|via $package at $path line $line|;
637            }
638            #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
639            return @backtrace;
640  }  }
641    
642  1;  1;

Legend:
Removed from v.460  
changed lines
  Added in v.671

  ViewVC Help
Powered by ViewVC 1.1.26