/[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 1066 by dpavlin, Mon Apr 27 18:45:14 2009 UTC revision 1070 by dpavlin, Mon Apr 27 21:06:40 2009 UTC
# Line 14  with 'Frey::HTML::Diff'; Line 14  with 'Frey::HTML::Diff';
14  use XML::Simple;  use XML::Simple;
15  use DateTimeX::Easy;  use DateTimeX::Easy;
16  use Text::Diff::Parser;  use Text::Diff::Parser;
17    use File::Path qw/mkpath/;
18    
19  has repository => (  has repository => (
20          is => 'rw',          is => 'rw',
# Line 36  has limit => ( Line 37  has limit => (
37  has include_diff => (  has include_diff => (
38          is => 'ro',          is => 'ro',
39          isa => 'Bool',          isa => 'Bool',
40            default => 0,
41    );
42    
43    has file_stats => (
44            is => 'ro',
45            isa => 'Bool',
46          default => 1,          default => 1,
47  );  );
48    
# Line 108  sub iterator { Line 115  sub iterator {
115          foreach my $e (@{$xml->{'logentry'}}) {          foreach my $e (@{$xml->{'logentry'}}) {
116                  warn "# e = ",$self->dump( $e ) if $self->debug;                  warn "# e = ",$self->dump( $e ) if $self->debug;
117    
118                  if ( $self->include_diff ) {                  if ( $self->include_diff || $self->file_stats ) {
119                          my $rev = $e->{'revision'};                          my $rev = $e->{'revision'};
120                          my $file = $svn_path;  
121                          $file =~ s{^\w+:/+}{};                          $e->{diff_paths}->{rev} = $rev; # XXX debug
122                          my $file = "var/svn/$path.diff";  
123                          my $diff = $self->load( $file );                          my $cache = $svn_path;
124                          if ( ! $diff ) {                          $cache =~ s{^\w+:/+}{};
125                                  $diff = `svn diff -c $rev $svn_path`;                          $cache = "var/svn/$cache";
126                                  $self->store( $file, $diff );                          mkpath $cache unless -e $cache;
127                            my $diff_paths = $self->load( "$cache/$rev.yaml" );
128                            if ( ! $diff_paths ) {
129                                    my $cmd = "svn diff -c $rev $svn_path";
130                                    my ( $diff_fh, $diff_out );
131                                    my $diff_file = "$cache/$rev.diff";
132    
133                                    open($diff_fh, '-|', $cmd)       || die "can't open pipe from $cmd: $!";
134                                    open($diff_out,'>' , $diff_file) || die "can't write $diff_file: $!";
135                                    warn "# creating $diff_file from $cmd\n";
136    
137                                    my $diff_path;
138    
139                                    while( <$diff_fh> ) {
140                                            print $diff_out $_;
141    
142                                            if ( m{^\+\+\+ (\S+)} ) {
143                                                    $diff_path = "/$1"; # subversion paths start with /
144                                            } elsif ( m{^\+} && $diff_path ) {
145                                                    $diff_paths->{$diff_path}->{added}++;
146                                            } elsif ( m{^-} && $diff_path ) {
147                                                    $diff_paths->{$diff_path}->{removed}++;
148                                            }
149                                    }
150    
151                                    $self->store( "$cache/$rev.yaml", $diff_paths );
152                          }                          }
153                          $e->{diff} .= $diff;                          $e->{diff}       = $self->load( "$cache/$rev.diff" ) if $self->include_diff;
154                            $e->{diff_paths} = $self->load( "$cache/$rev.yaml" );
155                  }                  }
156    
157                  $coderef->($e);                  $coderef->($e);
# Line 219  sub as_markup { Line 252  sub as_markup {
252    
253                  my $diff = $self->html_diff( $e->{diff} ) if $e->{diff};                  my $diff = $self->html_diff( $e->{diff} ) if $e->{diff};
254    
255                    $html .= $self->dump( $e->{diff_paths} );
256    
257                  $html .= qq|                  $html .= qq|
258                          <div class="commit">                          <div class="commit">
259                                  <span class="date">$date</span>                                  <span class="date">$date</span>
# Line 269  sub codeswarm_as_markup { Line 304  sub codeswarm_as_markup {
304    
305                  foreach my $p (@{$e->{'paths'}->{'path'}}) {                  foreach my $p (@{$e->{'paths'}->{'path'}}) {
306                          my ($action,$path) = ($p->{'action'},$p->{'content'});                          my ($action,$path) = ($p->{'action'},$p->{'content'});
307                          $file_events .= qq|\t<event filename="$path" date="$date" author="$author" />\n|;                          my $weight = '';
308                            if ( my $s = $e->{diff_paths}->{$path} ) {
309    
310                                    warn $self->dump( $s );
311                                    $weight  = $s->{removed}   if defined $s->{removed};
312                                    $weight += $s->{added} * 2 if defined $s->{added};
313                                    $weight  = qq| weight="$weight" |;
314                            }
315                            $file_events .= qq|\t<event filename="$path" date="$date" author="$author"$weight/>\n|;
316                  }                  }
317    
318          });          });

Legend:
Removed from v.1066  
changed lines
  Added in v.1070

  ViewVC Help
Powered by ViewVC 1.1.26