mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
bbe97dff8b
Most functions now take a StorePath argument rather than a Path (which is just an alias for std::string). The StorePath constructor ensures that the path is syntactically correct (i.e. it looks like <store-dir>/<base32-hash>-<name>). Similarly, functions like buildPaths() now take a StorePathWithOutputs, rather than abusing Path by adding a '!<outputs>' suffix. Note that the StorePath type is implemented in Rust. This involves some hackery to allow Rust values to be used directly in C++, via a helper type whose destructor calls the Rust type's drop() function. The main issue is the dynamic nature of C++ move semantics: after we have moved a Rust value, we should not call the drop function on the original value. So when we move a value, we set the original value to bitwise zero, and the destructor only calls drop() if the value is not bitwise zero. This should be sufficient for most types. Also lots of minor cleanups to the C++ API to make it more modern (e.g. using std::optional and std::string_view in some places).
68 lines
2.3 KiB
C++
Executable file
68 lines
2.3 KiB
C++
Executable file
#include "shared.hh"
|
|
#include "store-api.hh"
|
|
#include "legacy.hh"
|
|
|
|
using namespace nix;
|
|
|
|
static int _main(int argc, char ** argv)
|
|
{
|
|
{
|
|
auto gzip = false;
|
|
auto toMode = true;
|
|
auto includeOutputs = false;
|
|
auto dryRun = false;
|
|
auto useSubstitutes = NoSubstitute;
|
|
std::string sshHost;
|
|
PathSet storePaths;
|
|
|
|
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")
|
|
printMsg(lvlError, format("Warning: '%1%' is not implemented, falling back to gzip") % *arg);
|
|
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")
|
|
printMsg(lvlError, "Warning: '--show-progress' is not implemented");
|
|
else if (*arg == "--dry-run")
|
|
dryRun = true;
|
|
else if (*arg == "--use-substitutes" || *arg == "-s")
|
|
useSubstitutes = Substitute;
|
|
else if (sshHost.empty())
|
|
sshHost = *arg;
|
|
else
|
|
storePaths.insert(*arg);
|
|
return true;
|
|
});
|
|
|
|
initPlugins();
|
|
|
|
if (sshHost.empty())
|
|
throw UsageError("no host name specified");
|
|
|
|
auto remoteUri = "ssh://" + sshHost + (gzip ? "?compress=true" : "");
|
|
auto to = toMode ? openStore(remoteUri) : openStore();
|
|
auto from = toMode ? openStore() : openStore(remoteUri);
|
|
|
|
StorePathSet storePaths2;
|
|
for (auto & path : storePaths)
|
|
storePaths2.insert(from->followLinksToStorePath(path));
|
|
|
|
StorePathSet closure;
|
|
from->computeFSClosure(storePaths2, closure, false, includeOutputs);
|
|
|
|
copyPaths(from, to, closure, NoRepair, NoCheckSigs, useSubstitutes);
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
static RegisterLegacyCommand s1("nix-copy-closure", _main);
|