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);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2019-12-05 18:11:09 +00:00
|
|
|
auto narHash = hashString(htSHA256, *sink.s);
|
|
|
|
|
|
|
|
ValidPathInfo info(store->makeFixedOutputPath(true, narHash, *namePart));
|
|
|
|
info.narHash = narHash;
|
2017-09-14 11:22:32 +00:00
|
|
|
info.narSize = sink.s->size();
|
|
|
|
info.ca = makeFixedOutputCA(true, info.narHash);
|
|
|
|
|
|
|
|
if (!dryRun)
|
|
|
|
store->addToStore(info, sink.s);
|
|
|
|
|
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");
|