/[Frey]/trunk/lib/Frey/SVN.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 /trunk/lib/Frey/SVN.pm

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

revision 1072 by dpavlin, Tue Apr 28 17:04:24 2009 UTC revision 1078 by dpavlin, Thu Jun 4 19:23:32 2009 UTC
# Line 110  sub iterator { Line 110  sub iterator {
110          }          }
111          close($fh);          close($fh);
112    
113            warn "got ", length($log), " bytes of XML changes\n";
114    
115          my $xml = XMLin($log, ForceArray => [ 'logentry', 'path' ]);          my $xml = XMLin($log, ForceArray => [ 'logentry', 'path' ]);
116    
117          foreach my $e (@{$xml->{'logentry'}}) {          foreach my $e (@{$xml->{'logentry'}}) {
# Line 124  sub iterator { Line 126  sub iterator {
126                          $cache =~ s{^\w+:/+}{};                          $cache =~ s{^\w+:/+}{};
127                          $cache = "var/svn/$cache";                          $cache = "var/svn/$cache";
128                          mkpath $cache unless -e $cache;                          mkpath $cache unless -e $cache;
129                          my $diff_paths = $self->load( "$cache/$rev.yaml" );  
130                          if ( ! $diff_paths ) {                          my $diff_path = "$cache/$rev.diff";
131                            $e->{diff} = $self->load( $diff_path ) if $self->include_diff && -e $diff_path;
132    
133                            my $diff_yaml = "$cache/$rev.yaml";
134    
135                            if ( -e $diff_yaml ) {
136                                    $e->{diff_paths} = $self->load( $diff_yaml );
137                            } else {
138                                  my $cmd = "svn diff -c $rev $svn_path";                                  my $cmd = "svn diff -c $rev $svn_path";
139                                  my ( $diff_fh, $diff_out );                                  my ( $diff_fh, $diff_out );
140                                  my $diff_file = "$cache/$rev.diff";                                  my $diff_file = "$cache/$rev.diff";
141    
142                                  open($diff_fh, '-|', $cmd)       || die "can't open pipe from $cmd: $!";                                  open($diff_fh, '-|', $cmd)       || die "can't open pipe from $cmd: $!";
143                                  open($diff_out,'>' , $diff_file) || die "can't write $diff_file: $!";                                  open($diff_out,'>' , $diff_file) || die "can't write $diff_file: $!";
144                                  warn "# creating $diff_file from $cmd\n";                                  #warn "# creating $diff_file from $cmd\n";
145    
146                                  my $diff_path;                                  my $diff_path;
147                                    my $changes;
148                                    my $diff = '';
149    
150                                  while( <$diff_fh> ) {                                  while( <$diff_fh> ) {
151                                            $diff .= $_;
152                                          print $diff_out $_;                                          print $diff_out $_;
153    
154                                          if ( m{^\+\+\+ (\S+)} ) {                                          if ( m{^\+\+\+ (\S+)} ) {
155                                                  $diff_path = "/$1"; # subversion paths start with /                                                  $diff_path = "/$1"; # subversion paths start with /
156                                          } elsif ( m{^\+} && $diff_path ) {                                          } elsif ( m{^\+} && $diff_path ) {
157                                                  $diff_paths->{$diff_path}->{added}++;                                                  $changes->{$diff_path}->{added}++;
158                                          } elsif ( m{^-} && $diff_path ) {                                          } elsif ( m{^-} && $diff_path ) {
159                                                  $diff_paths->{$diff_path}->{removed}++;                                                  $changes->{$diff_path}->{removed}++;
160                                          }                                          }
161                                  }                                  }
162    
163                                  $self->store( "$cache/$rev.yaml", $diff_paths );                                  $e->{diff} = $diff if $self->include_diff;
164    
165                                    $self->store( "$cache/$rev.yaml", $changes );
166                                    $e->{diff_paths} = $changes;
167                          }                          }
168                          $e->{diff}       = $self->load( "$cache/$rev.diff" ) if $self->include_diff;          
                         $e->{diff_paths} = $self->load( "$cache/$rev.yaml" );  
169                  }                  }
170    
171                  $coderef->($e);                  $coderef->($e);
# Line 216  sub as_markup { Line 230  sub as_markup {
230    
231          my $max_path_len = 0;          my $max_path_len = 0;
232          my $path_count;          my $path_count;
233            my $stats;
234    
235          $self->iterator( sub {          $self->iterator( sub {
236                  my $e = shift;                  my $e = shift;
# Line 248  sub as_markup { Line 263  sub as_markup {
263    
264                          $max_path_len = length $path if length $path > $max_path_len;                          $max_path_len = length $path if length $path > $max_path_len;
265                          $path_count->{$path}++;                          $path_count->{$path}++;
266    
267                            if ( my $added = $e->{diff_paths}->{$path}->{added} ) {
268                                    $stats->{total_added} += $added;
269                            }
270    
271                            if ( my $removed = $e->{diff_paths}->{$path}->{removed} ) {
272                                    $stats->{total_removed} += $removed;
273                            }
274                  }                  }
275    
276                  my $diff = $self->html_diff( $e->{diff} ) if $e->{diff};                  my $diff = $self->html_diff( $e->{diff} ) if $e->{diff};
# Line 299  sub as_markup { Line 322  sub as_markup {
322    
323          });          });
324    
325            $max_path_len +=
326                  length( $stats->{total_added} )
327                    + length( $stats->{total_removed} )
328                    ;
329    
330            $max_path_len += int( $max_path_len / 10 ); # we are using ex, so we add 10%
331    
332          $self->add_css(qq|          $self->add_css(qq|
333                  .files {                  .files {
334                          width: ${max_path_len}ex;                          width: ${max_path_len}ex;
# Line 307  sub as_markup { Line 337  sub as_markup {
337    
338          $html =~ s[title="(\S+) ##"]['title="' . $path_count->{$1} . '"']gse;          $html =~ s[title="(\S+) ##"]['title="' . $path_count->{$1} . '"']gse;
339    
340            $html .= $self->dump( 'stats', $stats );
341    
342          return $html;          return $html;
343  }  }
344    
# Line 328  sub codeswarm_as_markup { Line 360  sub codeswarm_as_markup {
360                          my ($action,$path) = ($p->{'action'},$p->{'content'});                          my ($action,$path) = ($p->{'action'},$p->{'content'});
361                          my $weight = '';                          my $weight = '';
362                          if ( my $s = $e->{diff_paths}->{$path} ) {                          if ( my $s = $e->{diff_paths}->{$path} ) {
363                                    $weight  = $s->{removed} || 0;
364                                  warn $self->dump( $s );                                  $weight += $s->{added} * 2 if $s->{added};
                                 $weight  = $s->{removed}   if defined $s->{removed};  
                                 $weight += $s->{added} * 2 if defined $s->{added};  
365                                  $weight  = qq| weight="$weight" |;                                  $weight  = qq| weight="$weight" |;
366                          }                          }
367                          $file_events .= qq|\t<event filename="$path" date="$date" author="$author"$weight/>\n|;                          $file_events .= qq|\t<event filename="$path" date="$date" author="$author"$weight/>\n|;

Legend:
Removed from v.1072  
changed lines
  Added in v.1078

  ViewVC Help
Powered by ViewVC 1.1.26