From 7891d30e70838a7032b839a05c02bf2c6e293f0e Mon Sep 17 00:00:00 2001 From: Zhang Qiang Date: Tue, 28 Aug 2012 15:40:05 +0800 Subject: reused cached repo data file to speed up building checksum and size is checked before trying to resuse it. --- createrepomddeps | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/createrepomddeps b/createrepomddeps index b3d8593..cc9b2b0 100755 --- a/createrepomddeps +++ b/createrepomddeps @@ -34,9 +34,13 @@ my $repomdparser = { repomd => { data => { _start => \&repomd_handle_data_start, + _end => \&repomd_handle_data_end, location => { _start => \&repomd_handle_location, }, + size => { + _text => \&repomd_handle_size, + }, }, }, }; @@ -72,6 +76,7 @@ my $primaryparser = { # [ [tag, \%], ... ] my @cursor = (); +my %datafile; sub repomd_handle_data_start { my $p = shift; @@ -83,6 +88,14 @@ sub repomd_handle_data_start } } +sub repomd_handle_data_end +{ + my $p = shift; + my $el = shift; + push @primaryfiles, {%datafile}; +} + + sub repomd_handle_location { my $p = shift; @@ -90,9 +103,16 @@ sub repomd_handle_location my $attr = map_attrs(@_); if(exists $attr->{'href'}) { - push @primaryfiles, { location => $attr->{'href'} }; + $datafile{location} = $attr->{'href'}; } } +sub repomd_handle_size +{ + my $p = shift; + my $el = shift; + $datafile{size} = $el; +} + sub generic_handle_start { @@ -421,7 +441,13 @@ for my $url (@ARGV) { @cursor = ([undef, $primaryparser]); my $u = $dir . $f->{'location'}; - if ($url =~ /^http[s]?:\/\/([^\/]*)\/?/) { + my $size = 0; + my $cached = 0; + if ( -e $u ) { + $size = (stat($u))[7]; + $cached = 1 if ($f->{'size'} == $size); + } + if ($url =~ /^http[s]?:\/\/([^\/]*)\/?/ and !$cached) { if (system($INC[0].'/download', $dir . "repodata/", $baseurl . "repodata/" . basename($u))) { die("download failed\n"); } -- cgit v1.2.3