2005-01-19 22:55:02 +01:00
|
|
|
#! @perl@ -w -I@libexecdir@/nix
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2003-10-16 15:13:39 +02:00
|
|
|
use strict;
|
2005-01-25 18:08:52 +01:00
|
|
|
use IPC::Open2;
|
2003-10-16 15:13:39 +02:00
|
|
|
use POSIX qw(tmpnam);
|
2004-12-28 22:11:28 +01:00
|
|
|
use readmanifest;
|
2003-10-16 15:13:39 +02:00
|
|
|
|
|
|
|
my $tmpdir;
|
|
|
|
do { $tmpdir = tmpnam(); }
|
|
|
|
until mkdir $tmpdir, 0777;
|
|
|
|
|
2003-11-22 21:39:51 +01:00
|
|
|
my $nixfile = "$tmpdir/create-nars.nix";
|
2003-10-16 15:13:39 +02:00
|
|
|
my $manifest = "$tmpdir/MANIFEST";
|
|
|
|
|
2003-12-01 17:34:35 +01:00
|
|
|
END { unlink $manifest; unlink $nixfile; rmdir $tmpdir; }
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2004-04-21 16:54:05 +02:00
|
|
|
my $curl = "@curl@ --fail --silent";
|
|
|
|
my $extraCurlFlags = ${ENV{'CURL_FLAGS'}};
|
|
|
|
$curl = "$curl $extraCurlFlags" if defined $extraCurlFlags;
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
my $binDir = $ENV{"NIX_BIN_DIR"};
|
|
|
|
$binDir = "@bindir@" unless defined $binDir;
|
|
|
|
|
|
|
|
my $dataDir = $ENV{"NIX_DATA_DIR"};
|
|
|
|
$dataDir = "@datadir@" unless defined $dataDir;
|
|
|
|
|
2004-01-14 12:13:08 +01:00
|
|
|
|
|
|
|
# Parse the command line.
|
2005-01-25 18:08:52 +01:00
|
|
|
my $localCopy;
|
|
|
|
my $localArchivesDir;
|
|
|
|
my $localManifestFile;
|
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
my $archivesPutURL;
|
|
|
|
my $archivesGetURL;
|
|
|
|
my $manifestPutURL;
|
2005-01-25 18:08:52 +01:00
|
|
|
|
|
|
|
if ($ARGV[0] eq "--copy") {
|
|
|
|
die "syntax: nix-push --copy ARCHIVES_DIR MANIFEST_FILE PATHS...\n" if scalar @ARGV < 3;
|
|
|
|
$localCopy = 1;
|
|
|
|
shift @ARGV;
|
|
|
|
$localArchivesDir = shift @ARGV;
|
|
|
|
$localManifestFile = shift @ARGV;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
die "syntax: nix-push ARCHIVES_PUT_URL ARCHIVES_GET_URL " .
|
|
|
|
"MANIFEST_PUT_URL PATHS...\n" if scalar @ARGV < 3;
|
|
|
|
$localCopy = 0;
|
2005-02-24 15:06:18 +01:00
|
|
|
$archivesPutURL = shift @ARGV;
|
|
|
|
$archivesGetURL = shift @ARGV;
|
|
|
|
$manifestPutURL = shift @ARGV;
|
2005-01-25 18:08:52 +01:00
|
|
|
}
|
2004-01-14 12:13:08 +01:00
|
|
|
|
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
# From the given store paths, determine the set of requisite store
|
|
|
|
# paths, i.e, the paths required to realise them.
|
2004-12-28 22:11:28 +01:00
|
|
|
my %storePaths;
|
2004-01-14 12:13:08 +01:00
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
foreach my $path (@ARGV) {
|
|
|
|
die unless $path =~ /^\//;
|
2003-07-10 15:41:28 +02:00
|
|
|
|
|
|
|
# Get all paths referenced by the normalisation of the given
|
2003-10-07 14:27:49 +02:00
|
|
|
# Nix expression.
|
2005-01-25 18:08:52 +01:00
|
|
|
my $pid = open2(\*READ, \*WRITE,
|
|
|
|
"$binDir/nix-store --query --requisites --force-realise " .
|
|
|
|
"--include-outputs '$path'") or die;
|
|
|
|
close WRITE;
|
|
|
|
|
|
|
|
while (<READ>) {
|
2003-07-10 21:27:46 +02:00
|
|
|
chomp;
|
2003-07-21 23:34:56 +02:00
|
|
|
die "bad: $_" unless /^\//;
|
2004-12-28 22:11:28 +01:00
|
|
|
$storePaths{$_} = "";
|
2003-07-10 15:41:28 +02:00
|
|
|
}
|
2005-01-25 18:08:52 +01:00
|
|
|
close READ;
|
|
|
|
|
|
|
|
waitpid $pid, 0;
|
|
|
|
$? == 0 or die "nix-store failed";
|
2003-12-01 17:34:35 +01:00
|
|
|
}
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2004-12-28 22:11:28 +01:00
|
|
|
my @storePaths = keys %storePaths;
|
2004-01-14 12:13:08 +01:00
|
|
|
|
|
|
|
|
2003-12-01 17:34:35 +01:00
|
|
|
# For each path, create a Nix expression that turns the path into
|
|
|
|
# a Nix archive.
|
|
|
|
open NIX, ">$nixfile";
|
|
|
|
print NIX "[";
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2004-12-28 22:11:28 +01:00
|
|
|
foreach my $storePath (@storePaths) {
|
|
|
|
die unless ($storePath =~ /\/[0-9a-z]{32}.*$/);
|
2003-12-01 17:34:35 +01:00
|
|
|
|
|
|
|
# Construct a Nix expression that creates a Nix archive.
|
|
|
|
my $nixexpr =
|
2005-01-25 18:08:52 +01:00
|
|
|
"((import $dataDir/nix/corepkgs/nar/nar.nix) " .
|
2004-12-28 22:11:28 +01:00
|
|
|
"{path = \"$storePath\"; system = \"@system@\";}) ";
|
2003-12-01 17:34:35 +01:00
|
|
|
|
|
|
|
print NIX $nixexpr;
|
2003-08-05 14:30:06 +02:00
|
|
|
}
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2003-11-22 21:39:51 +01:00
|
|
|
print NIX "]";
|
|
|
|
close NIX;
|
2003-08-05 14:30:06 +02:00
|
|
|
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2004-01-14 12:13:08 +01:00
|
|
|
# Instantiate store expressions from the Nix expression.
|
2005-02-24 15:06:18 +01:00
|
|
|
my @storeExprs;
|
2004-01-14 12:13:08 +01:00
|
|
|
print STDERR "instantiating store expressions...\n";
|
2005-01-25 18:08:52 +01:00
|
|
|
open STOREEXPRS, "$binDir/nix-instantiate $nixfile |" or die "cannot run nix-instantiate";
|
2004-01-14 12:13:08 +01:00
|
|
|
while (<STOREEXPRS>) {
|
2003-08-05 14:30:06 +02:00
|
|
|
chomp;
|
2003-10-16 15:13:39 +02:00
|
|
|
die unless /^\//;
|
2005-02-24 15:06:18 +01:00
|
|
|
push @storeExprs, $_;
|
2003-08-05 14:30:06 +02:00
|
|
|
}
|
2004-01-14 12:13:08 +01:00
|
|
|
close STOREEXPRS;
|
2003-07-10 15:41:28 +02:00
|
|
|
|
|
|
|
|
2004-01-14 12:13:08 +01:00
|
|
|
# Realise the store expressions.
|
2003-08-05 14:30:06 +02:00
|
|
|
print STDERR "creating archives...\n";
|
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
my @narPaths;
|
2004-01-14 12:13:08 +01:00
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
my @tmp = @storeExprs;
|
2004-01-14 12:13:08 +01:00
|
|
|
while (scalar @tmp > 0) {
|
|
|
|
my $n = scalar @tmp;
|
|
|
|
if ($n > 256) { $n = 256 };
|
|
|
|
my @tmp2 = @tmp[0..$n - 1];
|
|
|
|
@tmp = @tmp[$n..scalar @tmp - 1];
|
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
open NARPATHS, "$binDir/nix-store --realise @tmp2 |" or die "cannot run nix-store";
|
2004-01-14 12:13:08 +01:00
|
|
|
while (<NARPATHS>) {
|
|
|
|
chomp;
|
|
|
|
die unless (/^\//);
|
2005-02-24 15:06:18 +01:00
|
|
|
push @narPaths, "$_";
|
2004-01-14 12:13:08 +01:00
|
|
|
}
|
|
|
|
close NARPATHS;
|
2003-07-10 15:41:28 +02:00
|
|
|
}
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2004-01-14 12:13:08 +01:00
|
|
|
|
2003-10-16 15:13:39 +02:00
|
|
|
# Create the manifest.
|
|
|
|
print STDERR "creating manifest...\n";
|
|
|
|
|
2004-12-28 22:11:28 +01:00
|
|
|
my %narFiles;
|
|
|
|
my %patches;
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
my @narArchives;
|
2004-12-28 22:11:28 +01:00
|
|
|
for (my $n = 0; $n < scalar @storePaths; $n++) {
|
|
|
|
my $storePath = $storePaths[$n];
|
2005-02-24 15:06:18 +01:00
|
|
|
my $narDir = $narPaths[$n];
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2004-12-28 22:11:28 +01:00
|
|
|
$storePath =~ /\/([^\/]*)$/;
|
2003-10-16 15:13:39 +02:00
|
|
|
my $basename = $1;
|
|
|
|
defined $basename or die;
|
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
open SHA1, "$narDir/narbz2-hash" or die "cannot open narbz2-hash";
|
2005-02-17 11:06:12 +01:00
|
|
|
my $narbz2Hash = <SHA1>;
|
2004-12-13 17:56:18 +01:00
|
|
|
chomp $narbz2Hash;
|
|
|
|
$narbz2Hash =~ /^[0-9a-z]{32}$/ or die "invalid hash";
|
2005-02-17 11:06:12 +01:00
|
|
|
close SHA1;
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
open SHA1, "$narDir/nar-hash" or die "cannot open nar-hash";
|
2005-02-17 11:06:12 +01:00
|
|
|
my $narHash = <SHA1>;
|
2004-12-13 17:56:18 +01:00
|
|
|
chomp $narHash;
|
|
|
|
$narHash =~ /^[0-9a-z]{32}$/ or die "invalid hash";
|
2005-02-17 11:06:12 +01:00
|
|
|
close SHA1;
|
2004-12-13 17:56:18 +01:00
|
|
|
|
2005-03-14 16:09:53 +01:00
|
|
|
my $narName = "$narbz2Hash.nar.bz2";
|
|
|
|
|
|
|
|
my $narFile = "$narDir/$narName";
|
|
|
|
(-f $narFile) or die "narfile for $storePath not found";
|
|
|
|
push @narArchives, $narFile;
|
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
my $narbz2Size = (stat $narFile)[7];
|
2004-12-13 17:56:18 +01:00
|
|
|
|
2005-02-09 13:57:13 +01:00
|
|
|
my $references = `$binDir/nix-store --query --references '$storePath'`;
|
|
|
|
die "cannot query references for `$storePath'" if $? != 0;
|
|
|
|
$references = join(" ", split(" ", $references));
|
|
|
|
|
|
|
|
my $deriver = `$binDir/nix-store --query --deriver '$storePath'`;
|
|
|
|
die "cannot query deriver for `$storePath'" if $? != 0;
|
|
|
|
chomp $deriver;
|
|
|
|
$deriver = "" if $deriver eq "unknown-deriver";
|
2005-01-25 18:08:52 +01:00
|
|
|
|
|
|
|
my $url;
|
|
|
|
if ($localCopy) {
|
2005-03-14 16:09:53 +01:00
|
|
|
$url = "file://$localArchivesDir/$narName";
|
2005-01-25 18:08:52 +01:00
|
|
|
} else {
|
2005-03-14 16:09:53 +01:00
|
|
|
$url = "$archivesGetURL/$narName";
|
2005-01-25 18:08:52 +01:00
|
|
|
}
|
2004-12-28 22:11:28 +01:00
|
|
|
$narFiles{$storePath} = [
|
2005-01-25 18:08:52 +01:00
|
|
|
{ url => $url
|
2005-03-14 16:09:53 +01:00
|
|
|
, hash => "sha1:$narbz2Hash"
|
2004-12-28 22:11:28 +01:00
|
|
|
, size => $narbz2Size
|
2005-03-14 16:09:53 +01:00
|
|
|
, narHash => "sha1:$narHash"
|
2005-01-25 18:08:52 +01:00
|
|
|
, references => $references
|
2005-02-09 13:57:13 +01:00
|
|
|
, deriver => $deriver
|
2004-12-28 22:11:28 +01:00
|
|
|
}
|
|
|
|
];
|
2003-10-16 15:13:39 +02:00
|
|
|
}
|
|
|
|
|
2005-02-09 13:57:13 +01:00
|
|
|
writeManifest $manifest, \%narFiles, \%patches;
|
2003-10-16 15:13:39 +02:00
|
|
|
|
2003-07-10 15:41:28 +02:00
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
sub copyFile {
|
|
|
|
my $src = shift;
|
|
|
|
my $dst = shift;
|
|
|
|
system("cp '$src' '$dst.tmp'") == 0 or die "cannot copy file";
|
|
|
|
rename("$dst.tmp", "$dst") or die "cannot rename file";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-14 12:13:08 +01:00
|
|
|
# Upload the archives.
|
|
|
|
print STDERR "uploading archives...\n";
|
|
|
|
|
2005-02-24 15:06:18 +01:00
|
|
|
sub archiveExists {
|
|
|
|
my $name = shift;
|
|
|
|
print STDERR " HEAD on $archivesGetURL/$name\n";
|
|
|
|
return system("$curl --head $archivesGetURL/$name > /dev/null") == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $narArchive (@narArchives) {
|
|
|
|
|
|
|
|
$narArchive =~ /\/([^\/]*)$/;
|
2004-01-14 12:13:08 +01:00
|
|
|
my $basename = $1;
|
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
if ($localCopy) {
|
|
|
|
if (! -f "$localArchivesDir/$basename") {
|
2005-02-24 15:06:18 +01:00
|
|
|
print STDERR " $narArchive\n";
|
|
|
|
copyFile $narArchive, "$localArchivesDir/$basename";
|
2005-01-25 18:08:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2005-02-24 15:06:18 +01:00
|
|
|
if (!archiveExists("$basename")) {
|
|
|
|
print STDERR " $narArchive\n";
|
2005-01-25 18:08:52 +01:00
|
|
|
system("$curl --show-error --upload-file " .
|
2005-02-24 15:06:18 +01:00
|
|
|
"'$narArchive' '$archivesPutURL/$basename' > /dev/null") == 0 or
|
|
|
|
die "curl failed on $narArchive: $?";
|
2005-01-25 18:08:52 +01:00
|
|
|
}
|
2004-01-14 12:13:08 +01:00
|
|
|
}
|
2003-07-10 22:34:29 +02:00
|
|
|
}
|
2004-01-14 12:13:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Upload the manifest.
|
|
|
|
print STDERR "uploading manifest...\n";
|
2005-01-25 18:08:52 +01:00
|
|
|
if ($localCopy) {
|
|
|
|
copyFile $manifest, $localManifestFile;
|
|
|
|
} else {
|
|
|
|
system("$curl --show-error --upload-file " .
|
2005-02-24 15:06:18 +01:00
|
|
|
"'$manifest' '$manifestPutURL' > /dev/null") == 0 or
|
2005-01-25 18:08:52 +01:00
|
|
|
die "curl failed on $manifest: $?";
|
|
|
|
}
|