package Nix::CopyClosure; use utf8; use strict; use Nix::Config; use Nix::Store; use Nix::SSH; use List::Util qw(sum); use IPC::Open2; sub copyToOpen { my ($from, $to, $sshHost, $storePaths, $includeOutputs, $dryRun, $sign, $useSubstitutes) = @_; $useSubstitutes = 0 if $dryRun || !defined $useSubstitutes; # Get the closure of this path. my @closure = reverse(topoSortPaths(computeFSClosure(0, $includeOutputs, map { followLinksToStorePath $_ } @{$storePaths}))); # Send the "query valid paths" command with the "lock" option # enabled. This prevents a race where the remote host # garbage-collect paths that are already there. Optionally, ask # the remote host to substitute missing paths. syswrite($to, pack("L 0) { my @ps = splice(@closure, 0, 1500); open(READ, "set -f; ssh $sshHost @globalSshOpts nix-store --check-validity --print-invalid @ps|"); while () { chomp; push @missing, $_; my ($deriver, $narHash, $time, $narSize, $refs) = queryPathInfo($_, 1); $missingSize += $narSize; } close READ or die; } # Export the store paths and import them on the remote machine. if (scalar @missing > 0) { print STDERR "copying ", scalar @missing, " missing paths to ‘$sshHost’...\n"; unless ($dryRun) { open SSH, "| ssh $sshHost @globalSshOpts 'nix-store --import' > /dev/null" or die; exportPaths(fileno(SSH), $sign, @missing); close SSH or die "copying store paths to remote machine ‘$sshHost’ failed: $?"; } } } 1;