#include "command.hh" #include "shared.hh" #include "store-api.hh" #include "sync.hh" #include "thread-pool.hh" #include using namespace nix; struct CmdCopy : StorePathsCommand { std::string srcUri, dstUri; CheckSigsFlag checkSigs = CheckSigs; SubstituteFlag substitute = NoSubstitute; CmdCopy() : StorePathsCommand(true) { addFlag({ .longName = "from", .description = "URI of the source Nix store", .labels = {"store-uri"}, .handler = {&srcUri}, }); addFlag({ .longName = "to", .description = "URI of the destination Nix store", .labels = {"store-uri"}, .handler = {&dstUri}, }); addFlag({ .longName = "no-check-sigs", .description = "do not require that paths are signed by trusted keys", .handler = {&checkSigs, NoCheckSigs}, }); addFlag({ .longName = "substitute-on-destination", .shortName = 's', .description = "whether to try substitutes on the destination store (only supported by SSH)", .handler = {&substitute, Substitute}, }); realiseMode = Realise::Outputs; } std::string description() override { return "copy paths between Nix stores"; } std::string doc() override { return #include "copy.md" ; } Category category() override { return catSecondary; } ref createStore() override { return srcUri.empty() ? StoreCommand::createStore() : openStore(srcUri); } void run(ref store) override { if (srcUri.empty() && dstUri.empty()) throw UsageError("you must pass '--from' and/or '--to'"); StorePathsCommand::run(store); } void run(ref srcStore, StorePaths storePaths) override { ref dstStore = dstUri.empty() ? openStore() : openStore(dstUri); copyPaths(srcStore, dstStore, StorePathSet(storePaths.begin(), storePaths.end()), NoRepair, checkSigs, substitute); } }; static auto rCmdCopy = registerCommand("copy");