2017-09-14 11:22:32 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
#include "archive.hh"
|
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
struct CmdAddToStore : MixDryRun, StoreCommand
|
|
|
|
{
|
|
|
|
Path path;
|
2019-02-12 12:43:32 +00:00
|
|
|
std::optional<std::string> namePart;
|
2017-09-14 11:22:32 +00:00
|
|
|
|
|
|
|
CmdAddToStore()
|
|
|
|
{
|
|
|
|
expectArg("path", &path);
|
|
|
|
|
2020-05-04 20:40:19 +00:00
|
|
|
addFlag({
|
|
|
|
.longName = "name",
|
|
|
|
.shortName = 'n',
|
|
|
|
.description = "name component of the store path",
|
|
|
|
.labels = {"name"},
|
|
|
|
.handler = {&namePart},
|
|
|
|
});
|
2017-09-14 11:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "add a path to the Nix store";
|
|
|
|
}
|
|
|
|
|
|
|
|
Examples examples() override
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
Category category() override { return catUtility; }
|
|
|
|
|
2017-09-14 11:22:32 +00:00
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
|
|
|
if (!namePart) namePart = baseNameOf(path);
|
|
|
|
|
|
|
|
StringSink sink;
|
|
|
|
dumpPath(path, sink);
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
auto narHash = hashString(htSHA256, *sink.s);
|
|
|
|
|
2020-03-29 05:04:55 +00:00
|
|
|
ValidPathInfo info(store->makeFixedOutputPath(FileIngestionMethod::Recursive, narHash, *namePart));
|
2019-12-05 18:11:09 +00:00
|
|
|
info.narHash = narHash;
|
2017-09-14 11:22:32 +00:00
|
|
|
info.narSize = sink.s->size();
|
2020-06-19 15:18:19 +00:00
|
|
|
info.ca = std::optional { FixedOutputHash {
|
2020-06-19 17:42:56 +00:00
|
|
|
.method = FileIngestionMethod::Recursive,
|
|
|
|
.hash = info.narHash,
|
2020-06-04 20:33:28 +00:00
|
|
|
} };
|
2017-09-14 11:22:32 +00:00
|
|
|
|
2020-05-29 20:19:48 +00:00
|
|
|
if (!dryRun) {
|
|
|
|
auto source = StringSource { *sink.s };
|
|
|
|
store->addToStore(info, source);
|
|
|
|
}
|
2017-09-14 11:22:32 +00:00
|
|
|
|
2020-04-16 11:46:37 +00:00
|
|
|
logger->stdout("%s", store->printStorePath(info.path));
|
2017-09-14 11:22:32 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-06-18 14:01:35 +00:00
|
|
|
static auto r1 = registerCommand<CmdAddToStore>("add-to-store");
|