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;
|
2020-12-04 01:58:09 +02:00
|
|
|
FileIngestionMethod ingestionMethod;
|
2017-09-14 14:22:32 +03:00
|
|
|
|
|
|
|
CmdAddToStore()
|
|
|
|
{
|
2020-12-04 01:58:09 +02:00
|
|
|
// FIXME: completion
|
2017-09-14 14:22:32 +03:00
|
|
|
expectArg("path", &path);
|
|
|
|
|
2020-05-04 23:40:19 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "name",
|
|
|
|
.shortName = 'n',
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Override the name component of the store path. It defaults to the base name of *path*.",
|
2020-05-04 23:40:19 +03:00
|
|
|
.labels = {"name"},
|
|
|
|
.handler = {&namePart},
|
|
|
|
});
|
2017-09-14 14:22:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
|
|
|
if (!namePart) namePart = baseNameOf(path);
|
|
|
|
|
|
|
|
StringSink sink;
|
|
|
|
dumpPath(path, sink);
|
|
|
|
|
2022-01-17 23:20:05 +02:00
|
|
|
auto narHash = hashString(htSHA256, sink.s);
|
2019-12-05 20:11:09 +02:00
|
|
|
|
2020-07-30 20:38:24 +03:00
|
|
|
Hash hash = narHash;
|
|
|
|
if (ingestionMethod == FileIngestionMethod::Flat) {
|
2020-06-12 20:26:08 +03:00
|
|
|
HashSink hsink(htSHA256);
|
|
|
|
readFile(path, hsink);
|
|
|
|
hash = hsink.finish().first;
|
|
|
|
}
|
2020-06-12 23:25:29 +03:00
|
|
|
|
2020-08-06 21:31:48 +03:00
|
|
|
ValidPathInfo info {
|
|
|
|
store->makeFixedOutputPath(ingestionMethod, hash, *namePart),
|
|
|
|
narHash,
|
|
|
|
};
|
2022-01-17 23:20:05 +02:00
|
|
|
info.narSize = sink.s.size();
|
2020-06-19 18:18:19 +03:00
|
|
|
info.ca = std::optional { FixedOutputHash {
|
2020-06-22 20:08:11 +03:00
|
|
|
.method = ingestionMethod,
|
|
|
|
.hash = hash,
|
2020-06-04 23:33:28 +03:00
|
|
|
} };
|
2017-09-14 14:22:32 +03:00
|
|
|
|
2020-05-29 23:19:48 +03:00
|
|
|
if (!dryRun) {
|
2022-01-17 23:20:05 +02:00
|
|
|
auto source = StringSource(sink.s);
|
2020-05-29 23:19:48 +03:00
|
|
|
store->addToStore(info, source);
|
|
|
|
}
|
2017-09-14 14:22:32 +03:00
|
|
|
|
2020-09-25 18:30:04 +03:00
|
|
|
logger->cout("%s", store->printStorePath(info.path));
|
2017-09-14 14:22:32 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-12-04 01:58:09 +02:00
|
|
|
struct CmdAddFile : CmdAddToStore
|
|
|
|
{
|
|
|
|
CmdAddFile()
|
|
|
|
{
|
|
|
|
ingestionMethod = FileIngestionMethod::Flat;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "add a regular file to the Nix store";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string doc() override
|
|
|
|
{
|
|
|
|
return
|
|
|
|
#include "add-file.md"
|
|
|
|
;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CmdAddPath : CmdAddToStore
|
|
|
|
{
|
|
|
|
CmdAddPath()
|
|
|
|
{
|
|
|
|
ingestionMethod = FileIngestionMethod::Recursive;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "add a path to the Nix store";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string doc() override
|
|
|
|
{
|
|
|
|
return
|
|
|
|
#include "add-path.md"
|
|
|
|
;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static auto rCmdAddFile = registerCommand2<CmdAddFile>({"store", "add-file"});
|
|
|
|
static auto rCmdAddPath = registerCommand2<CmdAddPath>({"store", "add-path"});
|