nix-super/src/nix/copy.cc

63 lines
1.6 KiB
C++
Raw Normal View History

#include "command.hh"
#include "shared.hh"
#include "store-api.hh"
using namespace nix;
2022-01-17 14:58:26 +02:00
struct CmdCopy : CopyCommand
{
2017-08-14 16:24:04 +03:00
CheckSigsFlag checkSigs = CheckSigs;
2017-09-08 16:32:07 +03:00
SubstituteFlag substitute = NoSubstitute;
using BuiltPathsCommand::run;
CmdCopy()
: BuiltPathsCommand(true)
{
2020-05-04 23:40:19 +03:00
addFlag({
.longName = "no-check-sigs",
.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',
.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-07-15 21:05:42 +03:00
realiseMode = Realise::Outputs;
}
std::string description() override
{
return "copy paths between Nix stores";
}
2020-12-08 18:49:58 +02:00
std::string doc() override
{
2020-12-08 18:49:58 +02:00
return
#include "copy.md"
;
}
2020-05-05 16:18:23 +03:00
Category category() override { return catSecondary; }
2022-01-17 14:58:26 +02:00
void run(ref<Store> srcStore, ref<Store> dstStore, BuiltPaths && paths) override
{
RealisedPath::Set stuffToCopy;
for (auto & builtPath : paths) {
auto theseRealisations = builtPath.toRealisedPaths(*srcStore);
stuffToCopy.insert(theseRealisations.begin(), theseRealisations.end());
}
copyPaths(
2021-07-19 13:01:06 +03:00
*srcStore, *dstStore, stuffToCopy, NoRepair, checkSigs, substitute);
}
};
static auto rCmdCopy = registerCommand<CmdCopy>("copy");