Nix/src/nix/copy.cc

82 lines
2.3 KiB
C++
Raw Normal View History

#include "command.hh"
#include "shared.hh"
#include "store-api.hh"
#include "sync.hh"
2016-04-22 18:19:48 +02:00
#include "thread-pool.hh"
#include <atomic>
using namespace nix;
struct CmdCopy : StorePathsCommand
{
std::string srcUri, dstUri;
2017-08-14 15:24:04 +02:00
CheckSigsFlag checkSigs = CheckSigs;
2017-09-08 15:32:07 +02:00
SubstituteFlag substitute = NoSubstitute;
CmdCopy()
{
mkFlag(0, "from", "store-uri", "URI of the source Nix store", &srcUri);
mkFlag(0, "to", "store-uri", "URI of the destination Nix store", &dstUri);
2017-08-14 15:24:04 +02:00
mkFlag()
.longName("no-check-sigs")
.description("do not require that paths are signed by trusted keys")
.set(&checkSigs, NoCheckSigs);
2017-09-08 15:32:07 +02:00
mkFlag()
.longName("substitute")
.shortName('s')
.description("whether to try substitutes on the destination store (only supported by SSH)")
.set(&substitute, Substitute);
}
std::string name() override
{
return "copy";
}
std::string description() override
{
return "copy paths between Nix stores";
}
Examples examples() override
{
return {
Example{
2017-09-08 11:33:46 +02:00
"To copy Firefox from the local store to a binary cache in file:///tmp/cache:",
"nix copy --to file:///tmp/cache -r $(type -p firefox)"
},
2017-09-08 11:33:46 +02:00
Example{
"To copy the entire current NixOS system closure to another machine via SSH:",
"nix copy --to ssh://server -r /run/current-system"
},
Example{
"To copy a closure from another machine via SSH:",
"nix copy --from ssh://server -r /nix/store/a6cnl93nk1wxnq84brbbwr6hxw9gp2w9-blender-2.79-rc2"
},
};
}
ref<Store> createStore() override
{
return srcUri.empty() ? StoreCommand::createStore() : openStore(srcUri);
}
void run(ref<Store> srcStore, Paths storePaths) override
{
if (srcUri.empty() && dstUri.empty())
throw UsageError("you must pass '--from' and/or '--to'");
ref<Store> dstStore = dstUri.empty() ? openStore() : openStore(dstUri);
2017-08-14 15:24:04 +02:00
copyPaths(srcStore, dstStore, PathSet(storePaths.begin(), storePaths.end()),
2017-09-08 15:32:07 +02:00
NoRepair, checkSigs, substitute);
}
};
static RegisterCommand r1(make_ref<CmdCopy>());