2004-03-15 15:23:53 +00:00
|
|
|
#! @perl@ -w -I@libexecdir@/nix
|
2003-07-10 13:41:28 +00:00
|
|
|
|
2003-08-15 10:13:41 +00:00
|
|
|
use strict;
|
2006-10-04 18:58:11 +00:00
|
|
|
use File::Temp qw(tempdir);
|
2003-12-05 11:25:38 +00:00
|
|
|
use readmanifest;
|
2003-08-15 09:39:33 +00:00
|
|
|
|
2006-10-04 18:58:11 +00:00
|
|
|
my $tmpDir = tempdir("nix-pull.XXXXXX", CLEANUP => 1, TMPDIR => 1)
|
|
|
|
or die "cannot create a temporary directory";
|
2003-10-16 16:29:57 +00:00
|
|
|
|
2008-11-20 15:44:59 +00:00
|
|
|
my $binDir = $ENV{"NIX_BIN_DIR"} || "@bindir@";
|
2009-02-27 14:06:38 +00:00
|
|
|
my $libexecDir = ($ENV{"NIX_LIBEXEC_DIR"} or "@libexecdir@");
|
|
|
|
my $storeDir = ($ENV{"NIX_STORE_DIR"} or "@storedir@");
|
|
|
|
my $stateDir = ($ENV{"NIX_STATE_DIR"} or "@localstatedir@/nix");
|
|
|
|
my $manifestDir = ($ENV{"NIX_MANIFESTS_DIR"} or "$stateDir/manifests");
|
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) {
|
|
|
|
mkdir $manifestDir, 0755 or die "cannot create directory `$manifestDir'";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-31 09:24:54 +00:00
|
|
|
# Process the URLs specified on the command line.
|
2004-12-16 15:31:50 +00:00
|
|
|
my %narFiles;
|
2007-01-23 16:50:19 +00:00
|
|
|
my %localPaths;
|
2004-12-16 15:31:50 +00:00
|
|
|
my %patches;
|
2004-12-13 13:47:38 +00:00
|
|
|
|
2006-09-25 11:11:16 +00:00
|
|
|
my $skipWrongStore = 0;
|
|
|
|
|
2007-08-10 01:42:00 +00:00
|
|
|
sub downloadFile {
|
|
|
|
my $url = shift;
|
|
|
|
$ENV{"PRINT_PATH"} = 1;
|
|
|
|
$ENV{"QUIET"} = 1;
|
2007-08-14 13:15:59 +00:00
|
|
|
my ($dummy, $path) = `$binDir/nix-prefetch-url '$url'`;
|
2007-08-15 09:24:06 +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;
|
|
|
|
|
|
|
|
# First see if a bzipped manifest is available.
|
|
|
|
if (system("@curl@ --fail --silent --head '$url'.bz2 > /dev/null") == 0) {
|
2009-12-09 19:36:54 +00:00
|
|
|
print "fetching list of Nix archives at `$url.bz2'...\n";
|
2007-08-10 01:42:00 +00:00
|
|
|
my $bzipped = downloadFile "$url.bz2";
|
|
|
|
|
|
|
|
$manifest = "$tmpDir/MANIFEST";
|
|
|
|
|
|
|
|
system("@bunzip2@ < $bzipped > $manifest") == 0
|
|
|
|
or die "cannot decompress manifest";
|
|
|
|
|
|
|
|
$manifest = (`$binDir/nix-store --add $manifest`
|
|
|
|
or die "cannot copy $manifest to the store");
|
|
|
|
chomp $manifest;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Otherwise, just get the uncompressed manifest.
|
|
|
|
else {
|
|
|
|
print "obtaining list of Nix archives at `$url'...\n";
|
|
|
|
$manifest = downloadFile $url;
|
|
|
|
}
|
2009-02-27 09:53:58 +00:00
|
|
|
|
|
|
|
my $version = readManifest($manifest, \%narFiles, \%localPaths, \%patches);
|
2007-08-09 23:52:53 +00:00
|
|
|
|
2009-02-27 09:53:58 +00:00
|
|
|
die "`$url' is not a manifest or it is too old (i.e., for Nix <= 0.7)\n" if $version < 3;
|
|
|
|
die "manifest `$url' is too new\n" if $version >= 5;
|
2004-12-20 16:38:50 +00:00
|
|
|
|
2006-09-25 11:11:16 +00:00
|
|
|
if ($skipWrongStore) {
|
|
|
|
foreach my $path (keys %narFiles) {
|
|
|
|
if (substr($path, 0, length($storeDir) + 1) ne "$storeDir/") {
|
|
|
|
print STDERR "warning: manifest `$url' assumes a Nix store at a different location than $storeDir, skipping...\n";
|
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-20 16:38:50 +00:00
|
|
|
my $baseName = "unnamed";
|
|
|
|
if ($url =~ /\/([^\/]+)\/[^\/]+$/) { # get the forelast component
|
|
|
|
$baseName = $1;
|
|
|
|
}
|
|
|
|
|
2005-01-25 17:08:52 +00:00
|
|
|
my $hash = `$binDir/nix-hash --flat '$manifest'`
|
2004-12-20 16:38:50 +00:00
|
|
|
or die "cannot hash `$manifest'";
|
|
|
|
chomp $hash;
|
2009-12-09 19:36:54 +00:00
|
|
|
|
|
|
|
my $urlFile = "$manifestDir/$baseName-$hash.url";
|
|
|
|
open URL, ">$urlFile" or die "cannot create `$urlFile'";
|
|
|
|
print URL "$url";
|
|
|
|
close URL;
|
2004-12-20 16:38:50 +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;
|
|
|
|
|
|
|
|
symlink("$manifest", "$finalPath")
|
2007-08-09 23:52:53 +00:00
|
|
|
or die "cannot link `$finalPath to `$manifest'";
|
2009-12-09 19:36:54 +00: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 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;
|
2006-09-25 11:11:16 +00:00
|
|
|
if ($url eq "--skip-wrong-store") {
|
|
|
|
$skipWrongStore = 1;
|
|
|
|
} 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
|
|
|
|
2007-01-23 16:50:19 +00:00
|
|
|
my $size = scalar (keys %narFiles) + scalar (keys %localPaths);
|
2004-06-21 09:51:23 +00:00
|
|
|
print "$size store paths in manifest\n";
|