2011-10-11 14:45:36 +03:00
|
|
|
|
#! @perl@ -w @perlFlags@
|
2010-02-03 17:34:52 +02:00
|
|
|
|
|
2015-11-10 17:12:26 +02:00
|
|
|
|
use utf8;
|
2014-10-14 11:56:33 +03:00
|
|
|
|
use strict;
|
2011-10-11 14:45:36 +03:00
|
|
|
|
use Nix::SSH;
|
|
|
|
|
use Nix::Config;
|
2011-10-11 18:41:13 +03:00
|
|
|
|
use Nix::Store;
|
2011-11-23 17:13:37 +02:00
|
|
|
|
use Nix::CopyClosure;
|
2013-04-11 20:52:21 +03:00
|
|
|
|
use List::Util qw(sum);
|
2007-02-22 01:14:53 +02:00
|
|
|
|
|
2014-08-29 18:48:25 +03:00
|
|
|
|
binmode STDERR, ":encoding(utf8)";
|
2007-02-22 01:14:53 +02:00
|
|
|
|
|
2007-02-22 17:48:20 +02:00
|
|
|
|
if (scalar @ARGV < 1) {
|
|
|
|
|
print STDERR <<EOF
|
2011-11-23 17:29:58 +02:00
|
|
|
|
Usage: nix-copy-closure [--from | --to] HOSTNAME [--sign] [--gzip] [--bzip2] [--xz] PATHS...
|
2007-02-22 17:48:20 +02:00
|
|
|
|
EOF
|
|
|
|
|
;
|
|
|
|
|
exit 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-02-22 01:14:53 +02:00
|
|
|
|
# Get the target host.
|
2007-03-26 23:49:22 +03:00
|
|
|
|
my $sshHost;
|
2007-02-22 17:48:20 +02:00
|
|
|
|
my $sign = 0;
|
2007-03-26 23:49:22 +03:00
|
|
|
|
my $toMode = 1;
|
2011-10-19 00:21:22 +03:00
|
|
|
|
my $includeOutputs = 0;
|
|
|
|
|
my $dryRun = 0;
|
2012-11-23 17:20:16 +02:00
|
|
|
|
my $useSubstitutes = 0;
|
2015-07-20 02:52:07 +03:00
|
|
|
|
my $verbosity = 1;
|
2011-10-19 00:21:22 +03:00
|
|
|
|
|
2007-02-22 01:14:53 +02:00
|
|
|
|
|
|
|
|
|
# !!! Copied from nix-pack-closure, should put this in a module.
|
|
|
|
|
my @storePaths = ();
|
|
|
|
|
|
|
|
|
|
while (@ARGV) {
|
2007-03-26 23:49:22 +03:00
|
|
|
|
my $arg = shift @ARGV;
|
2012-10-03 23:37:06 +03:00
|
|
|
|
|
|
|
|
|
if ($arg eq "--help") {
|
|
|
|
|
exec "man nix-copy-closure" or die;
|
|
|
|
|
}
|
|
|
|
|
elsif ($arg eq "--sign") {
|
2007-02-22 17:48:20 +02:00
|
|
|
|
$sign = 1;
|
|
|
|
|
}
|
2014-07-24 18:11:54 +03:00
|
|
|
|
elsif ($arg eq "--gzip" || $arg eq "--bzip2" || $arg eq "--xz") {
|
2014-08-20 18:00:17 +03:00
|
|
|
|
warn "$0: ‘$arg’ is not implemented\n" if $arg ne "--gzip";
|
2014-07-24 17:32:55 +03:00
|
|
|
|
push @globalSshOpts, "-C";
|
2007-02-22 18:42:01 +02:00
|
|
|
|
}
|
2007-03-27 00:05:17 +03:00
|
|
|
|
elsif ($arg eq "--from") {
|
|
|
|
|
$toMode = 0;
|
|
|
|
|
}
|
|
|
|
|
elsif ($arg eq "--to") {
|
|
|
|
|
$toMode = 1;
|
|
|
|
|
}
|
2011-10-19 00:21:22 +03:00
|
|
|
|
elsif ($arg eq "--include-outputs") {
|
|
|
|
|
$includeOutputs = 1;
|
|
|
|
|
}
|
2012-03-29 19:20:31 +03:00
|
|
|
|
elsif ($arg eq "--show-progress") {
|
2014-08-20 18:00:17 +03:00
|
|
|
|
warn "$0: ‘$arg’ is not implemented\n";
|
2012-03-29 19:20:31 +03:00
|
|
|
|
}
|
2011-10-19 00:21:22 +03:00
|
|
|
|
elsif ($arg eq "--dry-run") {
|
|
|
|
|
$dryRun = 1;
|
|
|
|
|
}
|
2012-11-23 17:20:16 +02:00
|
|
|
|
elsif ($arg eq "--use-substitutes" || $arg eq "-s") {
|
|
|
|
|
$useSubstitutes = 1;
|
|
|
|
|
}
|
2015-07-20 02:52:07 +03:00
|
|
|
|
elsif ($arg eq "-v") {
|
|
|
|
|
$verbosity++;
|
|
|
|
|
setVerbosity($verbosity);
|
|
|
|
|
}
|
2007-03-27 00:05:17 +03:00
|
|
|
|
elsif (!defined $sshHost) {
|
2007-03-26 23:49:22 +03:00
|
|
|
|
$sshHost = $arg;
|
|
|
|
|
}
|
2007-03-27 00:05:17 +03:00
|
|
|
|
else {
|
|
|
|
|
push @storePaths, $arg;
|
|
|
|
|
}
|
2007-03-26 23:49:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-03 12:12:11 +03:00
|
|
|
|
die "$0: you did not specify a host name\n" unless defined $sshHost;
|
|
|
|
|
|
2007-03-26 23:49:22 +03:00
|
|
|
|
|
|
|
|
|
if ($toMode) { # Copy TO the remote machine.
|
2012-11-23 17:20:16 +02:00
|
|
|
|
Nix::CopyClosure::copyTo(
|
2014-10-14 12:01:18 +03:00
|
|
|
|
$sshHost, [ @storePaths ],
|
2014-07-24 18:11:54 +03:00
|
|
|
|
$includeOutputs, $dryRun, $sign, $useSubstitutes);
|
2007-03-27 00:05:17 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else { # Copy FROM the remote machine.
|
|
|
|
|
|
2014-10-15 22:05:13 +03:00
|
|
|
|
my ($from, $to) = connectToRemoteNix($sshHost, []);
|
2014-07-10 21:43:04 +03:00
|
|
|
|
|
2007-03-27 00:05:17 +03:00
|
|
|
|
# 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).
|
2014-07-24 17:00:29 +03:00
|
|
|
|
syswrite($to, pack("L<x4L<x4", 7, $includeOutputs ? 1 : 0)) or die;
|
|
|
|
|
writeStrings(\@storePaths, $to);
|
|
|
|
|
my @missing = grep { !isValidPath($_) } readStrings($from);
|
2013-04-11 20:52:21 +03:00
|
|
|
|
|
2011-12-15 16:04:35 +02:00
|
|
|
|
# Export the store paths on the remote machine and import them locally.
|
2007-03-27 00:05:17 +03:00
|
|
|
|
if (scalar @missing > 0) {
|
2011-11-23 17:13:37 +02:00
|
|
|
|
print STDERR "copying ", scalar @missing, " missing paths from ‘$sshHost’...\n";
|
2014-07-24 17:00:29 +03:00
|
|
|
|
writeInt(5, $to); # == cmdExportPaths
|
|
|
|
|
writeInt($sign ? 1 : 0, $to);
|
|
|
|
|
writeStrings(\@missing, $to);
|
|
|
|
|
importPaths(fileno($from));
|
2007-03-26 23:49:22 +03:00
|
|
|
|
}
|
2007-02-22 01:14:53 +02:00
|
|
|
|
|
|
|
|
|
}
|