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