2003-12-05 11:25:38 +00:00
|
|
|
use strict;
|
|
|
|
|
2004-12-28 21:11:28 +00:00
|
|
|
|
2004-12-29 18:58:15 +00:00
|
|
|
sub addPatch {
|
|
|
|
my $patches = shift;
|
|
|
|
my $storePath = shift;
|
|
|
|
my $patch = shift;
|
|
|
|
|
|
|
|
$$patches{$storePath} = []
|
|
|
|
unless defined $$patches{$storePath};
|
|
|
|
|
|
|
|
my $patchList = $$patches{$storePath};
|
|
|
|
|
|
|
|
my $found = 0;
|
|
|
|
foreach my $patch2 (@{$patchList}) {
|
|
|
|
if ($patch2->{url} eq $patch->{url}) {
|
|
|
|
if ($patch2->{hash} eq $patch->{hash}) {
|
|
|
|
$found = 1 if ($patch2->{basePath} eq $patch->{basePath});
|
|
|
|
} else {
|
|
|
|
die "conflicting hashes for URL $patch->{url}, " .
|
|
|
|
"namely $patch2->{hash} and $patch->{hash}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-29 22:17:26 +00:00
|
|
|
push @{$patchList}, $patch if !$found;
|
|
|
|
|
|
|
|
return !$found;
|
2004-12-29 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
sub readManifest {
|
2003-12-05 11:25:38 +00:00
|
|
|
my $manifest = shift;
|
2004-12-13 13:47:38 +00:00
|
|
|
my $narFiles = shift;
|
|
|
|
my $patches = shift;
|
2003-12-05 11:25:38 +00:00
|
|
|
my $successors = shift;
|
|
|
|
|
|
|
|
open MANIFEST, "<$manifest";
|
|
|
|
|
|
|
|
my $inside = 0;
|
2004-12-13 13:47:38 +00:00
|
|
|
my $type;
|
2003-12-05 11:25:38 +00:00
|
|
|
|
2004-06-21 09:51:23 +00:00
|
|
|
my $storePath;
|
2004-12-13 13:47:38 +00:00
|
|
|
my $url;
|
2003-12-05 11:25:38 +00:00
|
|
|
my $hash;
|
2004-12-13 13:47:38 +00:00
|
|
|
my $size;
|
2003-12-05 11:25:38 +00:00
|
|
|
my @preds;
|
2004-12-13 13:47:38 +00:00
|
|
|
my $basePath;
|
|
|
|
my $baseHash;
|
|
|
|
my $patchType;
|
2004-12-20 16:38:50 +00:00
|
|
|
my $narHash;
|
2003-12-05 11:25:38 +00:00
|
|
|
|
|
|
|
while (<MANIFEST>) {
|
|
|
|
chomp;
|
|
|
|
s/\#.*$//g;
|
|
|
|
next if (/^$/);
|
|
|
|
|
|
|
|
if (!$inside) {
|
2004-12-28 21:11:28 +00:00
|
|
|
|
|
|
|
if (/^\s*(\w*)\s*\{$/) {
|
|
|
|
$type = $1;
|
|
|
|
$type = "narfile" if $type eq "";
|
2003-12-05 11:25:38 +00:00
|
|
|
$inside = 1;
|
2004-06-21 09:51:23 +00:00
|
|
|
undef $storePath;
|
2004-12-13 13:47:38 +00:00
|
|
|
undef $url;
|
2003-12-05 11:25:38 +00:00
|
|
|
undef $hash;
|
2004-12-28 21:11:28 +00:00
|
|
|
undef $size;
|
2003-12-05 11:25:38 +00:00
|
|
|
@preds = ();
|
2004-12-20 16:38:50 +00:00
|
|
|
undef $narHash;
|
2004-12-13 13:47:38 +00:00
|
|
|
undef $basePath;
|
|
|
|
undef $baseHash;
|
|
|
|
undef $patchType;
|
2004-12-28 21:11:28 +00:00
|
|
|
}
|
|
|
|
|
2003-12-05 11:25:38 +00:00
|
|
|
} else {
|
2004-12-13 13:47:38 +00:00
|
|
|
|
2003-12-05 11:25:38 +00:00
|
|
|
if (/^\}$/) {
|
|
|
|
$inside = 0;
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
if ($type eq "narfile") {
|
|
|
|
|
|
|
|
$$narFiles{$storePath} = []
|
|
|
|
unless defined $$narFiles{$storePath};
|
|
|
|
|
|
|
|
my $narFileList = $$narFiles{$storePath};
|
|
|
|
|
|
|
|
my $found = 0;
|
|
|
|
foreach my $narFile (@{$narFileList}) {
|
|
|
|
if ($narFile->{url} eq $url) {
|
|
|
|
if ($narFile->{hash} eq $hash) {
|
|
|
|
$found = 1;
|
|
|
|
} else {
|
|
|
|
die "conflicting hashes for URL $url, " .
|
|
|
|
"namely $narFile->{hash} and $hash";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!$found) {
|
|
|
|
push @{$narFileList},
|
2004-12-20 16:38:50 +00:00
|
|
|
{ url => $url, hash => $hash, size => $size
|
|
|
|
, narHash => $narHash
|
|
|
|
};
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $p (@preds) {
|
|
|
|
$$successors{$p} = $storePath;
|
|
|
|
}
|
2003-12-05 11:25:38 +00:00
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
elsif ($type eq "patch") {
|
2004-12-29 18:58:15 +00:00
|
|
|
addPatch $patches, $storePath,
|
|
|
|
{ url => $url, hash => $hash, size => $size
|
|
|
|
, basePath => $basePath, baseHash => $baseHash
|
|
|
|
, narHash => $narHash, patchType => $patchType
|
|
|
|
};
|
2003-12-05 11:25:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
elsif (/^\s*StorePath:\s*(\/\S+)\s*$/) { $storePath = $1; }
|
|
|
|
elsif (/^\s*Hash:\s*(\S+)\s*$/) { $hash = $1; }
|
|
|
|
elsif (/^\s*URL:\s*(\S+)\s*$/) { $url = $1; }
|
|
|
|
elsif (/^\s*Size:\s*(\d+)\s*$/) { $size = $1; }
|
|
|
|
elsif (/^\s*SuccOf:\s*(\/\S+)\s*$/) { push @preds, $1; }
|
|
|
|
elsif (/^\s*BasePath:\s*(\/\S+)\s*$/) { $basePath = $1; }
|
|
|
|
elsif (/^\s*BaseHash:\s*(\S+)\s*$/) { $baseHash = $1; }
|
|
|
|
elsif (/^\s*Type:\s*(\S+)\s*$/) { $patchType = $1; }
|
2004-12-20 16:38:50 +00:00
|
|
|
elsif (/^\s*NarHash:\s*(\S+)\s*$/) { $narHash = $1; }
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
# Compatibility;
|
|
|
|
elsif (/^\s*NarURL:\s*(\S+)\s*$/) { $url = $1; }
|
|
|
|
elsif (/^\s*MD5:\s*(\S+)\s*$/) { $hash = $1; }
|
2004-12-20 16:38:50 +00:00
|
|
|
|
2003-12-05 11:25:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close MANIFEST;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-28 21:11:28 +00:00
|
|
|
sub writeManifest
|
|
|
|
{
|
|
|
|
my $manifest = shift;
|
|
|
|
my $narFiles = shift;
|
|
|
|
my $patches = shift;
|
|
|
|
my $successors = shift;
|
|
|
|
|
2004-12-29 19:04:21 +00:00
|
|
|
open MANIFEST, ">$manifest.tmp"; # !!! check exclusive
|
2004-12-28 21:11:28 +00:00
|
|
|
|
|
|
|
foreach my $storePath (keys %{$narFiles}) {
|
|
|
|
my $narFileList = $$narFiles{$storePath};
|
|
|
|
foreach my $narFile (@{$narFileList}) {
|
|
|
|
print MANIFEST "{\n";
|
|
|
|
print MANIFEST " StorePath: $storePath\n";
|
|
|
|
print MANIFEST " NarURL: $narFile->{url}\n";
|
|
|
|
print MANIFEST " MD5: $narFile->{hash}\n";
|
|
|
|
print MANIFEST " NarHash: $narFile->{narHash}\n";
|
|
|
|
print MANIFEST " Size: $narFile->{size}\n";
|
|
|
|
foreach my $p (keys %{$successors}) { # !!! quadratic
|
|
|
|
if ($$successors{$p} eq $storePath) {
|
|
|
|
print MANIFEST " SuccOf: $p\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print MANIFEST "}\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $storePath (keys %{$patches}) {
|
|
|
|
my $patchList = $$patches{$storePath};
|
|
|
|
foreach my $patch (@{$patchList}) {
|
|
|
|
print MANIFEST "patch {\n";
|
|
|
|
print MANIFEST " StorePath: $storePath\n";
|
|
|
|
print MANIFEST " NarURL: $patch->{url}\n";
|
|
|
|
print MANIFEST " MD5: $patch->{hash}\n";
|
|
|
|
print MANIFEST " NarHash: $patch->{narHash}\n";
|
|
|
|
print MANIFEST " Size: $patch->{size}\n";
|
|
|
|
print MANIFEST " BasePath: $patch->{basePath}\n";
|
|
|
|
print MANIFEST " BaseHash: $patch->{baseHash}\n";
|
|
|
|
print MANIFEST " Type: $patch->{patchType}\n";
|
|
|
|
print MANIFEST "}\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
close MANIFEST;
|
2004-12-29 19:04:21 +00:00
|
|
|
|
|
|
|
rename("$manifest.tmp", $manifest)
|
|
|
|
or die "cannot rename $manifest.tmp: $!";
|
2004-12-28 21:11:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-05 11:25:38 +00:00
|
|
|
return 1;
|