mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
fac0c2d54a
The idea is it's always more flexible to consumer a `Source` than a plain string, and it might even reduce memory consumption. I also looked at `addToStoreFromDump` with its `// FIXME: remove?`, but the worked needed for that is far more up for interpretation, so I punted for now.
62 lines
1.5 KiB
C++
62 lines
1.5 KiB
C++
#include "command.hh"
|
|
#include "common-args.hh"
|
|
#include "store-api.hh"
|
|
#include "archive.hh"
|
|
|
|
using namespace nix;
|
|
|
|
struct CmdAddToStore : MixDryRun, StoreCommand
|
|
{
|
|
Path path;
|
|
std::optional<std::string> namePart;
|
|
|
|
CmdAddToStore()
|
|
{
|
|
expectArg("path", &path);
|
|
|
|
addFlag({
|
|
.longName = "name",
|
|
.shortName = 'n',
|
|
.description = "name component of the store path",
|
|
.labels = {"name"},
|
|
.handler = {&namePart},
|
|
});
|
|
}
|
|
|
|
std::string description() override
|
|
{
|
|
return "add a path to the Nix store";
|
|
}
|
|
|
|
Examples examples() override
|
|
{
|
|
return {
|
|
};
|
|
}
|
|
|
|
Category category() override { return catUtility; }
|
|
|
|
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(FileIngestionMethod::Recursive, narHash, *namePart));
|
|
info.narHash = narHash;
|
|
info.narSize = sink.s->size();
|
|
info.ca = makeFixedOutputCA(FileIngestionMethod::Recursive, info.narHash);
|
|
|
|
if (!dryRun) {
|
|
auto source = StringSource { *sink.s };
|
|
store->addToStore(info, source);
|
|
}
|
|
|
|
logger->stdout("%s", store->printStorePath(info.path));
|
|
}
|
|
};
|
|
|
|
static auto r1 = registerCommand<CmdAddToStore>("add-to-store");
|