2016-08-10 17:44:39 +03:00
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
2021-01-26 13:22:24 +02:00
|
|
|
#include "legacy.hh"
|
2016-08-10 17:44:39 +03:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2020-10-06 14:36:55 +03:00
|
|
|
static int main_nix_copy_closure(int argc, char ** argv)
|
2016-08-10 17:44:39 +03:00
|
|
|
{
|
2018-10-26 12:35:46 +03:00
|
|
|
{
|
2016-08-10 17:44:39 +03:00
|
|
|
auto gzip = false;
|
|
|
|
auto toMode = true;
|
|
|
|
auto includeOutputs = false;
|
|
|
|
auto dryRun = false;
|
2017-06-28 19:11:01 +03:00
|
|
|
auto useSubstitutes = NoSubstitute;
|
2017-02-07 21:55:47 +02:00
|
|
|
std::string sshHost;
|
|
|
|
PathSet storePaths;
|
|
|
|
|
2016-08-10 17:44:39 +03:00
|
|
|
parseCmdLine(argc, argv, [&](Strings::iterator & arg, const Strings::iterator & end) {
|
|
|
|
if (*arg == "--help")
|
|
|
|
showManPage("nix-copy-closure");
|
|
|
|
else if (*arg == "--version")
|
|
|
|
printVersion("nix-copy-closure");
|
|
|
|
else if (*arg == "--gzip" || *arg == "--bzip2" || *arg == "--xz") {
|
|
|
|
if (*arg != "--gzip")
|
2017-07-30 14:27:57 +03:00
|
|
|
printMsg(lvlError, format("Warning: '%1%' is not implemented, falling back to gzip") % *arg);
|
2016-08-10 17:44:39 +03:00
|
|
|
gzip = true;
|
|
|
|
} else if (*arg == "--from")
|
|
|
|
toMode = false;
|
|
|
|
else if (*arg == "--to")
|
|
|
|
toMode = true;
|
|
|
|
else if (*arg == "--include-outputs")
|
|
|
|
includeOutputs = true;
|
|
|
|
else if (*arg == "--show-progress")
|
2017-07-30 14:27:57 +03:00
|
|
|
printMsg(lvlError, "Warning: '--show-progress' is not implemented");
|
2016-08-10 17:44:39 +03:00
|
|
|
else if (*arg == "--dry-run")
|
|
|
|
dryRun = true;
|
|
|
|
else if (*arg == "--use-substitutes" || *arg == "-s")
|
2017-06-28 19:11:01 +03:00
|
|
|
useSubstitutes = Substitute;
|
2016-08-10 17:44:39 +03:00
|
|
|
else if (sshHost.empty())
|
|
|
|
sshHost = *arg;
|
|
|
|
else
|
|
|
|
storePaths.insert(*arg);
|
|
|
|
return true;
|
|
|
|
});
|
2017-02-07 21:55:47 +02:00
|
|
|
|
2016-08-10 17:44:39 +03:00
|
|
|
if (sshHost.empty())
|
|
|
|
throw UsageError("no host name specified");
|
|
|
|
|
2017-03-16 15:19:32 +02:00
|
|
|
auto remoteUri = "ssh://" + sshHost + (gzip ? "?compress=true" : "");
|
2016-08-10 17:44:39 +03:00
|
|
|
auto to = toMode ? openStore(remoteUri) : openStore();
|
|
|
|
auto from = toMode ? openStore() : openStore(remoteUri);
|
2017-02-07 21:55:47 +02:00
|
|
|
|
2020-12-14 20:43:53 +02:00
|
|
|
RealisedPath::Set storePaths2;
|
2017-03-16 11:45:45 +02:00
|
|
|
for (auto & path : storePaths)
|
|
|
|
storePaths2.insert(from->followLinksToStorePath(path));
|
|
|
|
|
2021-07-19 13:01:06 +03:00
|
|
|
copyClosure(*from, *to, storePaths2, NoRepair, NoCheckSigs, useSubstitutes);
|
2018-10-26 12:35:46 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-08-10 17:44:39 +03:00
|
|
|
}
|
2018-10-26 12:35:46 +03:00
|
|
|
|
2020-10-06 14:36:55 +03:00
|
|
|
static RegisterLegacyCommand r_nix_copy_closure("nix-copy-closure", main_nix_copy_closure);
|