2016-04-22 12:16:48 +00:00
|
|
|
#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"
|
2016-04-22 12:16:48 +00:00
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2021-05-17 06:45:08 +00:00
|
|
|
struct CmdCopy : BuiltPathsCommand
|
2016-04-22 12:16:48 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
2021-05-17 06:45:08 +00:00
|
|
|
using BuiltPathsCommand::run;
|
2020-12-14 16:24:30 +00:00
|
|
|
|
2016-04-22 12:16:48 +00:00
|
|
|
CmdCopy()
|
2021-05-17 06:45:08 +00:00
|
|
|
: BuiltPathsCommand(true)
|
2016-04-22 12:16:48 +00:00
|
|
|
{
|
2020-05-04 20:40:19 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "from",
|
2021-01-13 13:18:04 +00:00
|
|
|
.description = "URL of the source Nix store.",
|
2020-05-04 20:40:19 +00:00
|
|
|
.labels = {"store-uri"},
|
|
|
|
.handler = {&srcUri},
|
|
|
|
});
|
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "to",
|
2021-01-13 13:18:04 +00:00
|
|
|
.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",
|
2021-01-13 13:18:04 +00:00
|
|
|
.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',
|
2021-01-13 13:18:04 +00:00
|
|
|
.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-04-29 13:51:45 +00:00
|
|
|
|
2020-07-15 18:05:42 +00:00
|
|
|
realiseMode = Realise::Outputs;
|
2016-04-22 12:16:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "copy paths between Nix stores";
|
|
|
|
}
|
|
|
|
|
2020-12-08 16:49:58 +00:00
|
|
|
std::string doc() override
|
2016-04-22 12:16:48 +00:00
|
|
|
{
|
2020-12-08 16:49:58 +00:00
|
|
|
return
|
|
|
|
#include "copy.md"
|
|
|
|
;
|
2016-04-22 12:16:48 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
Category category() override { return catSecondary; }
|
|
|
|
|
2017-03-16 13:25:54 +00:00
|
|
|
ref<Store> createStore() override
|
|
|
|
{
|
|
|
|
return srcUri.empty() ? StoreCommand::createStore() : openStore(srcUri);
|
|
|
|
}
|
|
|
|
|
2020-04-29 13:50:59 +00:00
|
|
|
void run(ref<Store> store) override
|
2016-04-22 12:16:48 +00:00
|
|
|
{
|
|
|
|
if (srcUri.empty() && dstUri.empty())
|
2017-07-30 11:27:57 +00:00
|
|
|
throw UsageError("you must pass '--from' and/or '--to'");
|
2016-04-22 12:16:48 +00:00
|
|
|
|
2021-05-17 06:45:08 +00:00
|
|
|
BuiltPathsCommand::run(store);
|
2020-04-29 13:50:59 +00:00
|
|
|
}
|
|
|
|
|
2021-09-27 08:53:09 +00:00
|
|
|
void run(ref<Store> srcStore, BuiltPaths && paths) override
|
2020-04-29 13:50:59 +00:00
|
|
|
{
|
2017-03-16 13:25:54 +00:00
|
|
|
ref<Store> dstStore = dstUri.empty() ? openStore() : openStore(dstUri);
|
2016-04-22 12:16:48 +00:00
|
|
|
|
2021-05-17 06:45:08 +00:00
|
|
|
RealisedPath::Set stuffToCopy;
|
|
|
|
|
|
|
|
for (auto & builtPath : paths) {
|
|
|
|
auto theseRealisations = builtPath.toRealisedPaths(*srcStore);
|
|
|
|
stuffToCopy.insert(theseRealisations.begin(), theseRealisations.end());
|
|
|
|
}
|
|
|
|
|
2020-12-14 18:43:53 +00:00
|
|
|
copyPaths(
|
2021-07-19 10:01:06 +00:00
|
|
|
*srcStore, *dstStore, stuffToCopy, NoRepair, checkSigs, substitute);
|
2016-04-22 12:16:48 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-10-06 11:36:55 +00:00
|
|
|
static auto rCmdCopy = registerCommand<CmdCopy>("copy");
|