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

58 lines
1.3 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;
2017-09-14 14:22:32 +03:00
CmdAddToStore()
{
expectArg("path", &path);
mkFlag()
.longName("name")
.shortName('n')
.description("name component of the store path")
.labels({"name"})
.dest(&namePart);
}
std::string description() override
{
return "add a path to the Nix store";
}
Examples examples() override
{
return {
};
}
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(true, narHash, *namePart));
info.narHash = narHash;
2017-09-14 14:22:32 +03:00
info.narSize = sink.s->size();
info.ca = makeFixedOutputCA(true, info.narHash);
if (!dryRun)
store->addToStore(info, sink.s);
logger->stdout("%s", store->printStorePath(info.path));
2017-09-14 14:22:32 +03:00
}
};
static auto r1 = registerCommand<CmdAddToStore>("add-to-store");