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;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2016-04-22 12:16:48 +00:00
|
|
|
CmdCopy()
|
2017-09-27 16:28:54 +00:00
|
|
|
: StorePathsCommand(true)
|
2016-04-22 12:16:48 +00:00
|
|
|
{
|
2020-05-04 20:40:19 +00:00
|
|
|
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},
|
|
|
|
});
|
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";
|
|
|
|
}
|
|
|
|
|
|
|
|
Examples examples() override
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
Example{
|
2017-09-08 09:33:46 +00:00
|
|
|
"To copy Firefox from the local store to a binary cache in file:///tmp/cache:",
|
2018-02-21 01:12:47 +00:00
|
|
|
"nix copy --to file:///tmp/cache $(type -p firefox)"
|
2016-04-22 12:16:48 +00:00
|
|
|
},
|
2017-09-08 09:33:46 +00:00
|
|
|
Example{
|
|
|
|
"To copy the entire current NixOS system closure to another machine via SSH:",
|
2018-02-21 01:12:47 +00:00
|
|
|
"nix copy --to ssh://server /run/current-system"
|
2017-09-08 09:33:46 +00:00
|
|
|
},
|
|
|
|
Example{
|
|
|
|
"To copy a closure from another machine via SSH:",
|
2018-02-21 01:12:47 +00:00
|
|
|
"nix copy --from ssh://server /nix/store/a6cnl93nk1wxnq84brbbwr6hxw9gp2w9-blender-2.79-rc2"
|
2017-09-08 09:33:46 +00:00
|
|
|
},
|
2018-03-29 10:52:08 +00:00
|
|
|
#ifdef ENABLE_S3
|
|
|
|
Example{
|
2018-09-27 19:01:19 +00:00
|
|
|
"To copy Hello to an S3 binary cache:",
|
2020-07-15 18:28:16 +00:00
|
|
|
"nix copy --to s3://my-bucket?region=eu-west-1 nixpkgs#hello"
|
2018-03-29 10:52:08 +00:00
|
|
|
},
|
2018-07-31 20:45:49 +00:00
|
|
|
Example{
|
2018-09-27 19:01:19 +00:00
|
|
|
"To copy Hello to an S3-compatible binary cache:",
|
2020-07-15 18:28:16 +00:00
|
|
|
"nix copy --to s3://my-bucket?region=eu-west-1&endpoint=example.com nixpkgs#hello"
|
2018-07-31 20:45:49 +00:00
|
|
|
},
|
2018-03-29 10:52:08 +00:00
|
|
|
#endif
|
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
|
|
|
|
2020-04-29 13:50:59 +00:00
|
|
|
StorePathsCommand::run(store);
|
|
|
|
}
|
|
|
|
|
|
|
|
void run(ref<Store> srcStore, StorePaths storePaths) override
|
|
|
|
{
|
2017-03-16 13:25:54 +00:00
|
|
|
ref<Store> dstStore = dstUri.empty() ? openStore() : openStore(dstUri);
|
2016-04-22 12:16:48 +00:00
|
|
|
|
2020-06-16 20:20:18 +00:00
|
|
|
copyPaths(srcStore, dstStore, StorePathSet(storePaths.begin(), storePaths.end()),
|
2017-09-08 13:32:07 +00:00
|
|
|
NoRepair, checkSigs, substitute);
|
2016-04-22 12:16:48 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-18 14:01:35 +00:00
|
|
|
static auto r1 = registerCommand<CmdCopy>("copy");
|