2004-12-20 16:38:50 +00:00
|
|
|
#! @perl@ -w -I@libexecdir@/nix
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use readmanifest;
|
|
|
|
|
2004-12-20 16:38:50 +00:00
|
|
|
my $manifestDir = "@localstatedir@/nix/manifests";
|
2004-12-30 16:34:54 +00:00
|
|
|
my $logFile = "@localstatedir@/log/nix/downloads";
|
|
|
|
|
|
|
|
open LOGFILE, ">>$logFile" or die "cannot open log file $logFile";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Check the arguments.
|
|
|
|
die unless scalar @ARGV == 1;
|
|
|
|
my $targetPath = $ARGV[0];
|
|
|
|
|
2005-01-25 17:08:52 +00:00
|
|
|
my $date = `date` or die;
|
2004-12-30 17:19:47 +00:00
|
|
|
chomp $date;
|
|
|
|
print LOGFILE "$$ get $targetPath $date\n";
|
2004-12-30 16:34:54 +00:00
|
|
|
|
2005-01-12 10:37:18 +00:00
|
|
|
print "\n*** Trying to download/patch `$targetPath'\n";
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
# Load all manifests.
|
|
|
|
my %narFiles;
|
|
|
|
my %patches;
|
|
|
|
my %successors;
|
|
|
|
|
|
|
|
for my $manifest (glob "$manifestDir/*.nixmanifest") {
|
2005-01-12 10:37:18 +00:00
|
|
|
# print STDERR "reading $manifest\n";
|
2005-02-25 16:12:52 +00:00
|
|
|
if (readManifest($manifest, \%narFiles, \%patches, \%successors) < 3) {
|
|
|
|
print STDERR "you have an old-style manifest `$manifest'; please delete it\n";
|
|
|
|
exit 1;
|
|
|
|
}
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Build a graph of all store paths that might contribute to the
|
|
|
|
# construction of $targetPath, and the special node "start". The
|
|
|
|
# edges are either patch operations, or downloads of full NAR files.
|
|
|
|
# The latter edges only occur between "start" and a store path.
|
|
|
|
|
|
|
|
my %graph;
|
|
|
|
|
|
|
|
$graph{"start"} = {d => 0, pred => undef, edges => []};
|
|
|
|
|
|
|
|
my @queue = ();
|
|
|
|
my $queueFront = 0;
|
|
|
|
my %done;
|
|
|
|
|
|
|
|
sub addToQueue {
|
|
|
|
my $v = shift;
|
|
|
|
return if defined $done{$v};
|
|
|
|
$done{$v} = 1;
|
|
|
|
push @queue, $v;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub addNode {
|
|
|
|
my $u = shift;
|
|
|
|
$graph{$u} = {d => 999999999999, pred => undef, edges => []}
|
|
|
|
unless defined $graph{$u};
|
|
|
|
}
|
|
|
|
|
|
|
|
sub addEdge {
|
|
|
|
my $u = shift;
|
|
|
|
my $v = shift;
|
|
|
|
my $w = shift;
|
|
|
|
my $type = shift;
|
|
|
|
my $info = shift;
|
|
|
|
addNode $u;
|
|
|
|
push @{$graph{$u}->{edges}},
|
|
|
|
{weight => $w, start => $u, end => $v, type => $type, info => $info};
|
|
|
|
my $n = scalar @{$graph{$u}->{edges}};
|
|
|
|
}
|
|
|
|
|
|
|
|
addToQueue $targetPath;
|
|
|
|
|
2004-12-30 17:09:57 +00:00
|
|
|
sub isValidPath {
|
|
|
|
my $p = shift;
|
2005-01-14 13:50:00 +00:00
|
|
|
system "@bindir@/nix-store --isvalid '$p' 2> /dev/null";
|
2004-12-30 17:09:57 +00:00
|
|
|
return $? == 0;
|
|
|
|
}
|
|
|
|
|
2005-03-14 17:05:42 +00:00
|
|
|
sub parseHash {
|
|
|
|
my $hash = shift;
|
|
|
|
if ($hash =~ /^(.+):(.+)$/) {
|
|
|
|
return ($1, $2);
|
|
|
|
} else {
|
|
|
|
return ("md5", $hash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
while ($queueFront < scalar @queue) {
|
|
|
|
my $u = $queue[$queueFront++];
|
2005-01-12 10:37:18 +00:00
|
|
|
# print "$u\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
addNode $u;
|
|
|
|
|
|
|
|
# If the path already exists, it has distance 0 from the "start"
|
|
|
|
# node.
|
2004-12-30 17:09:57 +00:00
|
|
|
if (isValidPath($u)) {
|
2004-12-13 13:47:38 +00:00
|
|
|
addEdge "start", $u, 0, "present", undef;
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
# Add patch edges.
|
|
|
|
my $patchList = $patches{$u};
|
|
|
|
foreach my $patch (@{$patchList}) {
|
2004-12-30 17:09:57 +00:00
|
|
|
if (isValidPath($patch->{basePath})) {
|
|
|
|
# !!! this should be cached
|
2005-03-14 17:05:42 +00:00
|
|
|
my ($baseHashAlgo, $baseHash) = parseHash $patch->{baseHash};
|
2005-03-14 18:55:29 +00:00
|
|
|
my $format = "--base32";
|
|
|
|
$format = "" if $baseHashAlgo eq "md5";
|
|
|
|
my $hash = `@bindir@/nix-hash --type '$baseHashAlgo' $format "$patch->{basePath}"`;
|
2004-12-30 17:09:57 +00:00
|
|
|
chomp $hash;
|
2005-01-12 10:37:18 +00:00
|
|
|
# print " MY HASH is $hash\n";
|
2005-03-14 17:05:42 +00:00
|
|
|
if ($hash ne $baseHash) {
|
2005-01-12 10:37:18 +00:00
|
|
|
print LOGFILE "$$ rejecting $patch->{basePath}\n";
|
2004-12-30 17:09:57 +00:00
|
|
|
next;
|
|
|
|
}
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
2005-01-12 10:37:18 +00:00
|
|
|
# print " PATCH from $patch->{basePath}\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
addToQueue $patch->{basePath};
|
|
|
|
addEdge $patch->{basePath}, $u, $patch->{size}, "patch", $patch;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Add NAR file edges to the start node.
|
|
|
|
my $narFileList = $narFiles{$u};
|
|
|
|
foreach my $narFile (@{$narFileList}) {
|
2005-01-12 10:37:18 +00:00
|
|
|
# print " NAR from $narFile->{url}\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
addEdge "start", $u, $narFile->{size}, "narfile", $narFile;
|
2004-12-30 17:19:47 +00:00
|
|
|
if ($u eq $targetPath) {
|
|
|
|
print LOGFILE "$$ full-download-would-be $narFile->{size}\n";
|
|
|
|
}
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Run Dijkstra's shortest path algorithm to determine the shortest
|
|
|
|
# sequence of download and/or patch actions that will produce
|
|
|
|
# $targetPath.
|
|
|
|
|
|
|
|
sub byDistance { # sort by distance, reversed
|
|
|
|
return -($graph{$a}->{d} <=> $graph{$b}->{d});
|
|
|
|
}
|
|
|
|
|
|
|
|
my @todo = keys %graph;
|
|
|
|
|
|
|
|
while (scalar @todo > 0) {
|
|
|
|
|
|
|
|
# Remove the closest element from the todo list.
|
|
|
|
@todo = sort byDistance @todo;
|
|
|
|
my $u = pop @todo;
|
|
|
|
|
|
|
|
my $u_ = $graph{$u};
|
|
|
|
|
2005-01-12 10:37:18 +00:00
|
|
|
# print "IN $u $u_->{d}\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
foreach my $edge (@{$u_->{edges}}) {
|
|
|
|
my $v_ = $graph{$edge->{end}};
|
|
|
|
if ($v_->{d} > $u_->{d} + $edge->{weight}) {
|
|
|
|
$v_->{d} = $u_->{d} + $edge->{weight};
|
|
|
|
# Store the edge; to edge->start is actually the
|
|
|
|
# predecessor.
|
|
|
|
$v_->{pred} = $edge;
|
2005-01-12 10:37:18 +00:00
|
|
|
# print " RELAX $edge->{end} $v_->{d}\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Retrieve the shortest path from "start" to $targetPath.
|
|
|
|
my @path = ();
|
|
|
|
my $cur = $targetPath;
|
|
|
|
die "don't know how to produce $targetPath\n"
|
|
|
|
unless defined $graph{$targetPath}->{pred};
|
|
|
|
while ($cur ne "start") {
|
|
|
|
push @path, $graph{$cur}->{pred};
|
|
|
|
$cur = $graph{$cur}->{pred}->{start};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Traverse the shortest path, perform the actions described by the
|
|
|
|
# edges.
|
|
|
|
my $curStep = 1;
|
|
|
|
my $maxStep = scalar @path;
|
|
|
|
|
|
|
|
sub downloadFile {
|
|
|
|
my $url = shift;
|
2005-03-14 17:05:42 +00:00
|
|
|
my ($hashAlgo, $hash) = parseHash(shift);
|
2004-12-13 13:47:38 +00:00
|
|
|
$ENV{"PRINT_PATH"} = 1;
|
|
|
|
$ENV{"QUIET"} = 1;
|
2005-02-24 17:36:42 +00:00
|
|
|
$ENV{"NIX_HASH_ALGO"} = $hashAlgo;
|
2005-01-14 13:50:00 +00:00
|
|
|
my ($hash2, $path) = `@bindir@/nix-prefetch-url '$url' '$hash'`;
|
2005-03-25 14:30:01 +00:00
|
|
|
die "download of `$url' failed" unless $? == 0;
|
2004-12-13 13:47:38 +00:00
|
|
|
chomp $hash2;
|
|
|
|
chomp $path;
|
2005-01-25 17:08:52 +00:00
|
|
|
die "hash mismatch, expected $hash, got $hash2" if $hash ne $hash2;
|
2004-12-13 13:47:38 +00:00
|
|
|
return $path;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (scalar @path > 0) {
|
|
|
|
my $edge = pop @path;
|
|
|
|
my $u = $edge->{start};
|
|
|
|
my $v = $edge->{end};
|
|
|
|
|
|
|
|
print "\n*** Step $curStep/$maxStep: ";
|
|
|
|
$curStep++;
|
|
|
|
|
|
|
|
if ($edge->{type} eq "present") {
|
|
|
|
print "using already present path `$v'\n";
|
2004-12-30 16:34:54 +00:00
|
|
|
print LOGFILE "$$ present $v\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
elsif ($edge->{type} eq "patch") {
|
|
|
|
my $patch = $edge->{info};
|
|
|
|
print "applying patch `$patch->{url}' to `$u' to create `$v'\n";
|
|
|
|
|
2004-12-30 16:34:54 +00:00
|
|
|
print LOGFILE "$$ patch $patch->{url} $patch->{size} $patch->{baseHash} $u $v\n";
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
# Download the patch.
|
|
|
|
print " downloading patch...\n";
|
2005-03-14 17:05:42 +00:00
|
|
|
my $patchPath = downloadFile "$patch->{url}", "$patch->{hash}";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
# Turn the base path into a NAR archive, to which we can
|
|
|
|
# actually apply the patch.
|
|
|
|
print " packing base path...\n";
|
2005-01-14 13:50:00 +00:00
|
|
|
system "@bindir@/nix-store --dump $patch->{basePath} > /tmp/nar";
|
2004-12-13 13:47:38 +00:00
|
|
|
die "cannot dump `$patch->{basePath}'" if ($? != 0);
|
|
|
|
|
|
|
|
# Apply the patch.
|
|
|
|
print " applying patch...\n";
|
2004-12-29 22:17:26 +00:00
|
|
|
system "@libexecdir@/bspatch /tmp/nar /tmp/nar2 $patchPath";
|
2004-12-13 13:47:38 +00:00
|
|
|
die "cannot apply patch `$patchPath' to /tmp/nar" if ($? != 0);
|
|
|
|
|
|
|
|
# Unpack the resulting NAR archive into the target path.
|
|
|
|
print " unpacking patched archive...\n";
|
2005-01-14 13:50:00 +00:00
|
|
|
system "@bindir@/nix-store --restore $v < /tmp/nar2";
|
2004-12-30 17:09:57 +00:00
|
|
|
die "cannot unpack /tmp/nar2 into `$v'" if ($? != 0);
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
elsif ($edge->{type} eq "narfile") {
|
|
|
|
my $narFile = $edge->{info};
|
|
|
|
print "downloading `$narFile->{url}' into `$v'\n";
|
|
|
|
|
2004-12-30 16:34:54 +00:00
|
|
|
print LOGFILE "$$ narfile $narFile->{url} $narFile->{size} $v\n";
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
# Download the archive.
|
|
|
|
print " downloading archive...\n";
|
2005-03-14 17:05:42 +00:00
|
|
|
my $narFilePath = downloadFile "$narFile->{url}", "$narFile->{hash}";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
# Unpack the archive into the target path.
|
|
|
|
print " unpacking archive...\n";
|
2005-01-25 17:08:52 +00:00
|
|
|
system "@bunzip2@ < '$narFilePath' | @bindir@/nix-store --restore '$v'";
|
2004-12-30 17:09:57 +00:00
|
|
|
die "cannot unpack `$narFilePath' into `$v'" if ($? != 0);
|
2004-12-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
}
|
2004-12-30 16:34:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
print LOGFILE "$$ success\n";
|
|
|
|
close LOGFILE;
|