mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-28 16:46:16 +02:00
202c5e2afc
Do this if we want to do `--hash-algo` everywhere, and not `--algo` for hash commands. The new `nix hash convert` is updated. Deprecated new CLI commands are left as-is (`nix hash path` needs to be redone and is also left as-is).
116 lines
3.1 KiB
C++
116 lines
3.1 KiB
C++
#include "command.hh"
|
|
#include "common-args.hh"
|
|
#include "store-api.hh"
|
|
#include "archive.hh"
|
|
#include "posix-source-accessor.hh"
|
|
|
|
using namespace nix;
|
|
|
|
static FileIngestionMethod parseIngestionMethod(std::string_view input)
|
|
{
|
|
if (input == "flat") {
|
|
return FileIngestionMethod::Flat;
|
|
} else if (input == "nar") {
|
|
return FileIngestionMethod::Recursive;
|
|
} else {
|
|
throw UsageError("Unknown hash mode '%s', expect `flat` or `nar`");
|
|
}
|
|
}
|
|
|
|
struct CmdAddToStore : MixDryRun, StoreCommand
|
|
{
|
|
Path path;
|
|
std::optional<std::string> namePart;
|
|
ContentAddressMethod caMethod = FileIngestionMethod::Recursive;
|
|
HashAlgorithm hashAlgo = HashAlgorithm::SHA256;
|
|
|
|
CmdAddToStore()
|
|
{
|
|
// FIXME: completion
|
|
expectArg("path", &path);
|
|
|
|
addFlag({
|
|
.longName = "name",
|
|
.shortName = 'n',
|
|
.description = "Override the name component of the store path. It defaults to the base name of *path*.",
|
|
.labels = {"name"},
|
|
.handler = {&namePart},
|
|
});
|
|
|
|
addFlag({
|
|
.longName = "mode",
|
|
.description = R"(
|
|
How to compute the hash of the input.
|
|
One of:
|
|
|
|
- `nar` (the default): Serialises the input as an archive (following the [_Nix Archive Format_](https://edolstra.github.io/pubs/phd-thesis.pdf#page=101)) and passes that to the hash function.
|
|
|
|
- `flat`: Assumes that the input is a single file and directly passes it to the hash function;
|
|
)",
|
|
.labels = {"hash-mode"},
|
|
.handler = {[this](std::string s) {
|
|
this->caMethod = parseIngestionMethod(s);
|
|
}},
|
|
});
|
|
|
|
addFlag(Flag::mkHashAlgoFlag(&hashAlgo));
|
|
}
|
|
|
|
void run(ref<Store> store) override
|
|
{
|
|
if (!namePart) namePart = baseNameOf(path);
|
|
|
|
PosixSourceAccessor accessor;
|
|
|
|
auto path2 = CanonPath::fromCwd(path);
|
|
|
|
auto storePath = dryRun
|
|
? store->computeStorePath(
|
|
*namePart, accessor, path2, caMethod, hashAlgo, {}).first
|
|
: store->addToStoreSlow(
|
|
*namePart, accessor, path2, caMethod, hashAlgo, {}).path;
|
|
|
|
logger->cout("%s", store->printStorePath(storePath));
|
|
}
|
|
};
|
|
|
|
struct CmdAdd : CmdAddToStore
|
|
{
|
|
|
|
std::string description() override
|
|
{
|
|
return "Add a file or directory to the Nix store";
|
|
}
|
|
|
|
std::string doc() override
|
|
{
|
|
return
|
|
#include "add.md"
|
|
;
|
|
}
|
|
};
|
|
|
|
struct CmdAddFile : CmdAddToStore
|
|
{
|
|
CmdAddFile()
|
|
{
|
|
caMethod = FileIngestionMethod::Flat;
|
|
}
|
|
|
|
std::string description() override
|
|
{
|
|
return "Deprecated. Use [`nix store add --mode flat`](@docroot@/command-ref/new-cli/nix3-store-add.md) instead.";
|
|
}
|
|
};
|
|
|
|
struct CmdAddPath : CmdAddToStore
|
|
{
|
|
std::string description() override
|
|
{
|
|
return "Deprecated alias to [`nix store add`](@docroot@/command-ref/new-cli/nix3-store-add.md).";
|
|
}
|
|
};
|
|
|
|
static auto rCmdAddFile = registerCommand2<CmdAddFile>({"store", "add-file"});
|
|
static auto rCmdAddPath = registerCommand2<CmdAddPath>({"store", "add-path"});
|
|
static auto rCmdAdd = registerCommand2<CmdAdd>({"store", "add"});
|