2003-12-05 12:25:38 +01:00
|
|
|
use strict;
|
|
|
|
|
2004-12-13 14:47:38 +01:00
|
|
|
sub readManifest {
|
2003-12-05 12:25:38 +01:00
|
|
|
my $manifest = shift;
|
2004-12-13 14:47:38 +01:00
|
|
|
my $narFiles = shift;
|
|
|
|
my $patches = shift;
|
2003-12-05 12:25:38 +01:00
|
|
|
my $successors = shift;
|
|
|
|
|
|
|
|
open MANIFEST, "<$manifest";
|
|
|
|
|
|
|
|
my $inside = 0;
|
2004-12-13 14:47:38 +01:00
|
|
|
my $type;
|
2003-12-05 12:25:38 +01:00
|
|
|
|
2004-06-21 11:51:23 +02:00
|
|
|
my $storePath;
|
2004-12-13 14:47:38 +01:00
|
|
|
my $url;
|
2003-12-05 12:25:38 +01:00
|
|
|
my $hash;
|
2004-12-13 14:47:38 +01:00
|
|
|
my $size;
|
2003-12-05 12:25:38 +01:00
|
|
|
my @preds;
|
2004-12-13 14:47:38 +01:00
|
|
|
my $basePath;
|
|
|
|
my $baseHash;
|
|
|
|
my $patchType;
|
2004-12-20 17:38:50 +01:00
|
|
|
my $narHash;
|
2003-12-05 12:25:38 +01:00
|
|
|
|
|
|
|
while (<MANIFEST>) {
|
|
|
|
chomp;
|
|
|
|
s/\#.*$//g;
|
|
|
|
next if (/^$/);
|
|
|
|
|
|
|
|
if (!$inside) {
|
2004-12-13 14:47:38 +01:00
|
|
|
if (/^\{$/) {
|
|
|
|
$type = "narfile";
|
2003-12-05 12:25:38 +01:00
|
|
|
$inside = 1;
|
2004-06-21 11:51:23 +02:00
|
|
|
undef $storePath;
|
2004-12-13 14:47:38 +01:00
|
|
|
undef $url;
|
2003-12-05 12:25:38 +01:00
|
|
|
undef $hash;
|
2004-12-13 14:47:38 +01:00
|
|
|
$size = 999999999;
|
2003-12-05 12:25:38 +01:00
|
|
|
@preds = ();
|
2004-12-20 17:38:50 +01:00
|
|
|
undef $narHash;
|
2003-12-05 12:25:38 +01:00
|
|
|
}
|
2004-12-13 14:47:38 +01:00
|
|
|
elsif (/^patch \{$/) {
|
|
|
|
$type = "patch";
|
|
|
|
$inside = 1;
|
|
|
|
undef $url;
|
|
|
|
undef $hash;
|
|
|
|
undef $size;
|
|
|
|
undef $basePath;
|
|
|
|
undef $baseHash;
|
|
|
|
undef $patchType;
|
2004-12-20 17:38:50 +01:00
|
|
|
undef $narHash;
|
2004-12-13 14:47:38 +01:00
|
|
|
}
|
2003-12-05 12:25:38 +01:00
|
|
|
else { die "bad line: $_"; }
|
|
|
|
} else {
|
2004-12-13 14:47:38 +01:00
|
|
|
|
2003-12-05 12:25:38 +01:00
|
|
|
if (/^\}$/) {
|
|
|
|
$inside = 0;
|
|
|
|
|
2004-12-13 14:47:38 +01: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 17:38:50 +01:00
|
|
|
{ url => $url, hash => $hash, size => $size
|
|
|
|
, narHash => $narHash
|
|
|
|
};
|
2004-12-13 14:47:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $p (@preds) {
|
|
|
|
$$successors{$p} = $storePath;
|
|
|
|
}
|
2003-12-05 12:25:38 +01:00
|
|
|
|
2004-12-13 14:47:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
elsif ($type eq "patch") {
|
|
|
|
|
|
|
|
$$patches{$storePath} = []
|
|
|
|
unless defined $$patches{$storePath};
|
|
|
|
|
|
|
|
my $patchList = $$patches{$storePath};
|
|
|
|
|
|
|
|
my $found = 0;
|
|
|
|
foreach my $patch (@{$patchList}) {
|
|
|
|
if ($patch->{url} eq $url) {
|
|
|
|
if ($patch->{hash} eq $hash) {
|
|
|
|
$found = 1 if ($patch->{basePath} eq $basePath);
|
|
|
|
} else {
|
|
|
|
die "conflicting hashes for URL $url, " .
|
|
|
|
"namely $patch->{hash} and $hash";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!$found) {
|
|
|
|
push @{$patchList},
|
|
|
|
{ url => $url, hash => $hash, size => $size
|
|
|
|
, basePath => $basePath, baseHash => $baseHash
|
2004-12-20 17:38:50 +01:00
|
|
|
, narHash => $narHash
|
2004-12-13 14:47:38 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2003-12-05 12:25:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2004-12-13 14:47:38 +01: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 17:38:50 +01:00
|
|
|
elsif (/^\s*NarHash:\s*(\S+)\s*$/) { $narHash = $1; }
|
2004-12-13 14:47:38 +01:00
|
|
|
|
|
|
|
# Compatibility;
|
|
|
|
elsif (/^\s*NarURL:\s*(\S+)\s*$/) { $url = $1; }
|
|
|
|
elsif (/^\s*MD5:\s*(\S+)\s*$/) { $hash = $1; }
|
2004-12-20 17:38:50 +01:00
|
|
|
|
2003-12-05 12:25:38 +01:00
|
|
|
else { die "bad line: $_"; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close MANIFEST;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return 1;
|