2011-10-10 23:11:08 +02:00
|
|
|
#! @perl@ -w @perlFlags@
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2003-08-15 12:13:41 +02:00
|
|
|
use strict;
|
2006-10-04 20:58:11 +02:00
|
|
|
use File::Temp qw(tempdir);
|
2011-10-10 23:11:08 +02:00
|
|
|
use Nix::Config;
|
|
|
|
use Nix::Manifest;
|
2003-08-15 11:39:33 +02:00
|
|
|
|
2006-10-04 20:58:11 +02:00
|
|
|
my $tmpDir = tempdir("nix-pull.XXXXXX", CLEANUP => 1, TMPDIR => 1)
|
|
|
|
or die "cannot create a temporary directory";
|
2003-10-16 18:29:57 +02:00
|
|
|
|
2011-10-10 23:11:08 +02:00
|
|
|
my $manifestDir = $Nix::Config::manifestDir;
|
2006-09-25 13:11:16 +02:00
|
|
|
|
2003-07-10 17:24:50 +02:00
|
|
|
|
2005-02-08 14:00:39 +01:00
|
|
|
# Prevent access problems in shared-stored installations.
|
|
|
|
umask 0022;
|
|
|
|
|
|
|
|
|
2009-11-13 11:08:31 +01:00
|
|
|
# Create the manifests directory if it doesn't exist.
|
|
|
|
if (! -e $manifestDir) {
|
|
|
|
mkdir $manifestDir, 0755 or die "cannot create directory `$manifestDir'";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-20 13:47:00 +02:00
|
|
|
# Make sure that the manifests directory is scanned for GC roots.
|
2012-01-03 01:47:27 +01:00
|
|
|
my $gcRootsDir = "$Nix::Config::stateDir/gcroots";
|
2011-07-20 13:47:00 +02:00
|
|
|
my $manifestDirLink = "$gcRootsDir/manifests";
|
|
|
|
if (! -l $manifestDirLink) {
|
|
|
|
symlink($manifestDir, $manifestDirLink) or die "cannot create symlink `$manifestDirLink'";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-31 11:24:54 +02:00
|
|
|
# Process the URLs specified on the command line.
|
2006-09-25 13:11:16 +02:00
|
|
|
|
2007-08-10 03:42:00 +02:00
|
|
|
sub downloadFile {
|
|
|
|
my $url = shift;
|
|
|
|
$ENV{"PRINT_PATH"} = 1;
|
|
|
|
$ENV{"QUIET"} = 1;
|
2011-10-10 23:11:08 +02:00
|
|
|
my ($dummy, $path) = `$Nix::Config::binDir/nix-prefetch-url '$url'`;
|
2007-08-15 11:24:06 +02:00
|
|
|
die "cannot fetch `$url'" if $? != 0;
|
2007-08-14 15:15:59 +02:00
|
|
|
die "nix-prefetch-url did not return a path" unless defined $path;
|
2007-08-15 11:24:06 +02:00
|
|
|
chomp $path;
|
2007-08-10 03:42:00 +02:00
|
|
|
return $path;
|
|
|
|
}
|
|
|
|
|
2004-12-13 14:47:38 +01:00
|
|
|
sub processURL {
|
2003-11-24 12:11:40 +01:00
|
|
|
my $url = shift;
|
2004-12-13 14:47:38 +01:00
|
|
|
|
|
|
|
$url =~ s/\/$//;
|
2004-12-20 17:38:50 +01:00
|
|
|
|
2007-08-10 03:42:00 +02:00
|
|
|
my $manifest;
|
|
|
|
|
|
|
|
# First see if a bzipped manifest is available.
|
2012-04-04 15:41:35 +02:00
|
|
|
if (system("$Nix::Config::curl --fail --silent --location --head '$url'.bz2 > /dev/null") == 0) {
|
2009-12-09 20:36:54 +01:00
|
|
|
print "fetching list of Nix archives at `$url.bz2'...\n";
|
2011-11-16 17:25:38 +01:00
|
|
|
$manifest = downloadFile "$url.bz2";
|
2007-08-10 03:42:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Otherwise, just get the uncompressed manifest.
|
|
|
|
else {
|
2011-10-19 23:34:13 +02:00
|
|
|
print "fetching list of Nix archives at `$url'...\n";
|
2007-08-10 03:42:00 +02:00
|
|
|
$manifest = downloadFile $url;
|
|
|
|
}
|
2009-02-27 10:53:58 +01:00
|
|
|
|
2004-12-20 17:38:50 +01:00
|
|
|
my $baseName = "unnamed";
|
|
|
|
if ($url =~ /\/([^\/]+)\/[^\/]+$/) { # get the forelast component
|
|
|
|
$baseName = $1;
|
|
|
|
}
|
|
|
|
|
2011-10-10 23:11:08 +02:00
|
|
|
my $hash = `$Nix::Config::binDir/nix-hash --flat '$manifest'`
|
2004-12-20 17:38:50 +01:00
|
|
|
or die "cannot hash `$manifest'";
|
|
|
|
chomp $hash;
|
2009-12-09 20:36:54 +01:00
|
|
|
|
|
|
|
my $urlFile = "$manifestDir/$baseName-$hash.url";
|
|
|
|
open URL, ">$urlFile" or die "cannot create `$urlFile'";
|
2012-04-16 19:52:31 +02:00
|
|
|
print URL ($ENV{'NIX_ORIG_URL'} || $url);
|
2009-12-09 20:36:54 +01:00
|
|
|
close URL;
|
2004-12-20 17:38:50 +01:00
|
|
|
|
2009-02-27 15:06:38 +01:00
|
|
|
my $finalPath = "$manifestDir/$baseName-$hash.nixmanifest";
|
2009-12-09 20:36:54 +01:00
|
|
|
|
|
|
|
unlink $finalPath if -e $finalPath;
|
|
|
|
|
|
|
|
symlink("$manifest", "$finalPath")
|
2007-08-10 01:52:53 +02:00
|
|
|
or die "cannot link `$finalPath to `$manifest'";
|
2009-12-09 20:36:54 +01:00
|
|
|
|
|
|
|
# Delete all old manifests downloaded from this URL.
|
|
|
|
for my $urlFile2 (glob "$manifestDir/*.url") {
|
|
|
|
next if $urlFile eq $urlFile2;
|
|
|
|
open URL, "<$urlFile2" or die;
|
|
|
|
my $url2 = <URL>;
|
|
|
|
chomp $url2;
|
|
|
|
close URL;
|
|
|
|
next unless $url eq $url2;
|
|
|
|
my $base = $urlFile2; $base =~ s/.url$//;
|
|
|
|
unlink "${base}.url";
|
|
|
|
unlink "${base}.nixmanifest";
|
|
|
|
}
|
2003-11-24 12:11:40 +01:00
|
|
|
}
|
2004-12-13 14:47:38 +01:00
|
|
|
|
2004-12-16 15:31:49 +01:00
|
|
|
while (@ARGV) {
|
|
|
|
my $url = shift @ARGV;
|
2006-09-25 13:11:16 +02:00
|
|
|
if ($url eq "--skip-wrong-store") {
|
2011-11-16 17:41:48 +01:00
|
|
|
# No-op, no longer supported.
|
2006-09-25 13:11:16 +02:00
|
|
|
} else {
|
|
|
|
processURL $url;
|
|
|
|
}
|
2003-07-10 17:11:48 +02:00
|
|
|
}
|
2003-07-10 17:24:50 +02:00
|
|
|
|
2003-12-05 12:25:38 +01:00
|
|
|
|
2011-11-16 17:41:48 +01:00
|
|
|
# Update the cache.
|
|
|
|
updateManifestDB();
|