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