lix/src/nix/copy.cc

89 lines
2.2 KiB
C++
Raw Normal View History

#include "command.hh"
#include "shared.hh"
#include "store-api.hh"
#include "sync.hh"
2016-04-22 16:19:48 +00:00
#include "thread-pool.hh"
#include <atomic>
using namespace nix;
struct CmdCopy : StorePathsCommand
{
std::string srcUri, dstUri;
2017-08-14 13:24:04 +00:00
CheckSigsFlag checkSigs = CheckSigs;
2017-09-08 13:32:07 +00:00
SubstituteFlag substitute = NoSubstitute;
CmdCopy()
2017-09-27 16:28:54 +00:00
: StorePathsCommand(true)
{
2020-05-04 20:40:19 +00:00
addFlag({
.longName = "from",
.description = "URL of the source Nix store.",
2020-05-04 20:40:19 +00:00
.labels = {"store-uri"},
.handler = {&srcUri},
});
addFlag({
.longName = "to",
.description = "URL of the destination Nix store.",
2020-05-04 20:40:19 +00:00
.labels = {"store-uri"},
.handler = {&dstUri},
});
addFlag({
.longName = "no-check-sigs",
.description = "Do not require that paths are signed by trusted keys.",
2020-05-04 20:40:19 +00:00
.handler = {&checkSigs, NoCheckSigs},
});
addFlag({
.longName = "substitute-on-destination",
.shortName = 's',
.description = "Whether to try substitutes on the destination store (only supported by SSH stores).",
2020-05-04 20:40:19 +00:00
.handler = {&substitute, Substitute},
});
2020-07-15 18:05:42 +00:00
realiseMode = Realise::Outputs;
}
std::string description() override
{
return "copy paths between Nix stores";
}
2020-12-08 16:49:58 +00:00
std::string doc() override
{
2020-12-08 16:49:58 +00:00
return
#include "copy.md"
;
}
2020-05-05 13:18:23 +00:00
Category category() override { return catSecondary; }
ref<Store> createStore() override
{
return srcUri.empty() ? StoreCommand::createStore() : openStore(srcUri);
}
void run(ref<Store> store) override
{
if (srcUri.empty() && dstUri.empty())
throw UsageError("you must pass '--from' and/or '--to'");
StorePathsCommand::run(store);
}
void run(ref<Store> srcStore, StorePaths storePaths) override
{
ref<Store> dstStore = dstUri.empty() ? openStore() : openStore(dstUri);
copyPaths(srcStore, dstStore, StorePathSet(storePaths.begin(), storePaths.end()),
2017-09-08 13:32:07 +00:00
NoRepair, checkSigs, substitute);
}
};
static auto rCmdCopy = registerCommand<CmdCopy>("copy");