nix-super/src/nix/add-to-store.cc

85 lines
2 KiB
C++
Raw Normal View History

2017-09-14 14:22:32 +03: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 14:43:32 +02:00
std::optional<std::string> namePart;
FileIngestionMethod ingestionMethod = FileIngestionMethod::Recursive;
2017-09-14 14:22:32 +03:00
CmdAddToStore()
{
expectArg("path", &path);
2020-05-04 23:40:19 +03:00
addFlag({
.longName = "name",
.shortName = 'n',
.description = "name component of the store path",
.labels = {"name"},
.handler = {&namePart},
});
addFlag({
.longName = "flat",
.shortName = 0,
.description = "use flat file ingestion",
.handler = {&ingestionMethod, FileIngestionMethod::Flat},
});
2017-09-14 14:22:32 +03:00
}
std::string description() override
{
return "add a path to the Nix store";
}
Examples examples() override
{
return {
};
}
2020-05-05 16:18:23 +03:00
Category category() override { return catUtility; }
2017-09-14 14:22:32 +03:00
void run(ref<Store> store) override
{
if (!namePart) namePart = baseNameOf(path);
StringSink sink;
dumpPath(path, sink);
auto narHash = hashString(htSHA256, *sink.s);
ValidPathInfo info(store->makeFixedOutputPath(ingestionMethod, narHash, *namePart));
info.narHash = narHash;
2017-09-14 14:22:32 +03:00
info.narSize = sink.s->size();
Hash hash;
switch (ingestionMethod) {
case FileIngestionMethod::Recursive: {
hash = info.narHash;
break;
}
case FileIngestionMethod::Flat: {
HashSink hsink(htSHA256);
readFile(path, hsink);
hash = hsink.finish().first;
break;
}
}
info.ca = makeFixedOutputCA(ingestionMethod, hash);
2017-09-14 14:22:32 +03:00
if (!dryRun) {
auto source = StringSource { *sink.s };
store->addToStore(info, source);
}
2017-09-14 14:22:32 +03:00
logger->stdout("%s", store->printStorePath(info.path));
2017-09-14 14:22:32 +03:00
}
};
static auto r1 = registerCommand<CmdAddToStore>("add-to-store");