2011-10-11 11:45:36 +00:00
|
|
|
|
#! @perl@ -w @perlFlags@
|
2010-02-03 15:34:52 +00:00
|
|
|
|
|
2011-10-11 11:45:36 +00:00
|
|
|
|
use Nix::SSH;
|
|
|
|
|
use Nix::Config;
|
2011-10-11 15:41:13 +00:00
|
|
|
|
use Nix::Store;
|
2011-11-23 15:13:37 +00:00
|
|
|
|
use Nix::CopyClosure;
|
2013-04-11 17:52:21 +00:00
|
|
|
|
use List::Util qw(sum);
|
2007-02-21 23:14:53 +00:00
|
|
|
|
|
|
|
|
|
|
2007-02-22 15:48:20 +00:00
|
|
|
|
if (scalar @ARGV < 1) {
|
|
|
|
|
print STDERR <<EOF
|
2011-11-23 15:29:58 +00:00
|
|
|
|
Usage: nix-copy-closure [--from | --to] HOSTNAME [--sign] [--gzip] [--bzip2] [--xz] PATHS...
|
2007-02-22 15:48:20 +00:00
|
|
|
|
EOF
|
|
|
|
|
;
|
|
|
|
|
exit 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-02-21 23:14:53 +00:00
|
|
|
|
# Get the target host.
|
2007-03-26 20:49:22 +00:00
|
|
|
|
my $sshHost;
|
2007-02-22 15:48:20 +00:00
|
|
|
|
my $sign = 0;
|
2010-02-04 01:39:23 +00:00
|
|
|
|
my $compressor = "";
|
|
|
|
|
my $decompressor = "";
|
2012-03-29 16:20:31 +00:00
|
|
|
|
my $progressViewer = "";
|
2007-03-26 20:49:22 +00:00
|
|
|
|
my $toMode = 1;
|
2011-10-18 21:21:22 +00:00
|
|
|
|
my $includeOutputs = 0;
|
|
|
|
|
my $dryRun = 0;
|
2012-11-23 15:20:16 +00:00
|
|
|
|
my $useSubstitutes = 0;
|
2011-10-18 21:21:22 +00:00
|
|
|
|
|
2007-02-21 23:14:53 +00:00
|
|
|
|
|
|
|
|
|
# !!! Copied from nix-pack-closure, should put this in a module.
|
|
|
|
|
my @storePaths = ();
|
|
|
|
|
|
|
|
|
|
while (@ARGV) {
|
2007-03-26 20:49:22 +00:00
|
|
|
|
my $arg = shift @ARGV;
|
2012-10-03 20:37:06 +00:00
|
|
|
|
|
|
|
|
|
if ($arg eq "--help") {
|
|
|
|
|
exec "man nix-copy-closure" or die;
|
|
|
|
|
}
|
|
|
|
|
elsif ($arg eq "--sign") {
|
2007-02-22 15:48:20 +00:00
|
|
|
|
$sign = 1;
|
|
|
|
|
}
|
2007-03-26 21:05:17 +00:00
|
|
|
|
elsif ($arg eq "--gzip") {
|
2011-11-23 15:13:37 +00:00
|
|
|
|
$compressor = "gzip";
|
|
|
|
|
$decompressor = "gunzip";
|
2007-02-22 16:42:01 +00:00
|
|
|
|
}
|
2011-11-23 15:29:58 +00:00
|
|
|
|
elsif ($arg eq "--bzip2") {
|
|
|
|
|
$compressor = "bzip2";
|
|
|
|
|
$decompressor = "bunzip2";
|
|
|
|
|
}
|
|
|
|
|
elsif ($arg eq "--xz") {
|
|
|
|
|
$compressor = "xz";
|
|
|
|
|
$decompressor = "xz -d";
|
|
|
|
|
}
|
2007-03-26 21:05:17 +00:00
|
|
|
|
elsif ($arg eq "--from") {
|
|
|
|
|
$toMode = 0;
|
|
|
|
|
}
|
|
|
|
|
elsif ($arg eq "--to") {
|
|
|
|
|
$toMode = 1;
|
|
|
|
|
}
|
2011-10-18 21:21:22 +00:00
|
|
|
|
elsif ($arg eq "--include-outputs") {
|
|
|
|
|
$includeOutputs = 1;
|
|
|
|
|
}
|
2012-03-29 16:20:31 +00:00
|
|
|
|
elsif ($arg eq "--show-progress") {
|
2013-04-11 17:54:38 +00:00
|
|
|
|
$progressViewer = "@pv@";
|
2012-03-29 16:20:31 +00:00
|
|
|
|
}
|
2011-10-18 21:21:22 +00:00
|
|
|
|
elsif ($arg eq "--dry-run") {
|
|
|
|
|
$dryRun = 1;
|
|
|
|
|
}
|
2012-11-23 15:20:16 +00:00
|
|
|
|
elsif ($arg eq "--use-substitutes" || $arg eq "-s") {
|
|
|
|
|
$useSubstitutes = 1;
|
|
|
|
|
}
|
2007-03-26 21:05:17 +00:00
|
|
|
|
elsif (!defined $sshHost) {
|
2007-03-26 20:49:22 +00:00
|
|
|
|
$sshHost = $arg;
|
|
|
|
|
}
|
2007-03-26 21:05:17 +00:00
|
|
|
|
else {
|
|
|
|
|
push @storePaths, $arg;
|
|
|
|
|
}
|
2007-03-26 20:49:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-03 09:12:11 +00:00
|
|
|
|
die "$0: you did not specify a host name\n" unless defined $sshHost;
|
|
|
|
|
|
2007-03-26 20:49:22 +00:00
|
|
|
|
|
2010-02-03 20:35:37 +00:00
|
|
|
|
openSSHConnection $sshHost or die "$0: unable to start SSH\n";
|
2010-02-03 15:34:52 +00:00
|
|
|
|
|
|
|
|
|
|
2007-03-26 20:49:22 +00:00
|
|
|
|
if ($toMode) { # Copy TO the remote machine.
|
2012-11-23 15:20:16 +00:00
|
|
|
|
Nix::CopyClosure::copyTo(
|
|
|
|
|
$sshHost, [ @sshOpts ], [ @storePaths ], $compressor, $decompressor,
|
|
|
|
|
$includeOutputs, $dryRun, $sign, $progressViewer, $useSubstitutes);
|
2007-03-26 21:05:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else { # Copy FROM the remote machine.
|
|
|
|
|
|
|
|
|
|
# Query the closure of the given store paths on the remote
|
|
|
|
|
# machine. Paths are assumed to be store paths; there is no
|
|
|
|
|
# resolution (following of symlinks).
|
2011-10-18 21:21:22 +00:00
|
|
|
|
my $extraOpts = $includeOutputs ? "--include-outputs" : "";
|
2007-03-26 21:05:17 +00:00
|
|
|
|
my $pid = open(READ,
|
2011-10-18 21:21:22 +00:00
|
|
|
|
"set -f; ssh @sshOpts $sshHost nix-store --query --requisites $extraOpts @storePaths|") or die;
|
2012-10-03 20:37:06 +00:00
|
|
|
|
|
2007-03-26 21:05:17 +00:00
|
|
|
|
while (<READ>) {
|
|
|
|
|
chomp;
|
|
|
|
|
die "bad: $_" unless /^\//;
|
2011-10-11 15:41:13 +00:00
|
|
|
|
push @missing, $_ unless isValidPath($_);
|
2007-03-26 21:05:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
close READ or die "nix-store on remote machine `$sshHost' failed: $?";
|
|
|
|
|
|
2013-04-11 17:52:21 +00:00
|
|
|
|
my $missingSize = 0;
|
|
|
|
|
if ($progressViewer ne "") {
|
|
|
|
|
$missingSize = sum (split ' ', `set -f; ssh @sshOpts $sshHost nix-store -q --size @missing`) or die;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-15 14:04:35 +00:00
|
|
|
|
# Export the store paths on the remote machine and import them locally.
|
2007-03-26 21:05:17 +00:00
|
|
|
|
if (scalar @missing > 0) {
|
2011-11-23 15:13:37 +00:00
|
|
|
|
print STDERR "copying ", scalar @missing, " missing paths from ‘$sshHost’...\n";
|
2011-10-18 21:21:22 +00:00
|
|
|
|
unless ($dryRun) {
|
2012-11-23 15:20:16 +00:00
|
|
|
|
if ($useSubstitutes) {
|
|
|
|
|
system "$Nix::Config::binDir/nix-store -r --ignore-unknown @missing";
|
|
|
|
|
}
|
|
|
|
|
$compressor = "| $compressor" if $compressor ne "";
|
|
|
|
|
$decompressor = "$decompressor |" if $decompressor ne "";
|
2013-04-11 17:52:21 +00:00
|
|
|
|
$progressViewer = "$progressViewer -s $missingSize |" if $progressViewer ne "";
|
2011-10-18 21:21:22 +00:00
|
|
|
|
my $extraOpts = $sign ? "--sign" : "";
|
2013-05-01 18:44:37 +00:00
|
|
|
|
system("set -f; ssh $sshHost @sshOpts 'nix-store --export $extraOpts @missing $compressor' | $decompressor $progressViewer $Nix::Config::binDir/nix-store --import > /dev/null") == 0
|
2011-10-18 21:21:22 +00:00
|
|
|
|
or die "copying store paths from remote machine `$sshHost' failed: $?";
|
|
|
|
|
}
|
2007-03-26 20:49:22 +00:00
|
|
|
|
}
|
2007-02-21 23:14:53 +00:00
|
|
|
|
|
|
|
|
|
}
|