2016-02-09 22:28:29 +02:00
|
|
|
#include <algorithm>
|
|
|
|
|
Overhaul completions, redo #6693 (#8131)
As I complained in
https://github.com/NixOS/nix/pull/6784#issuecomment-1421777030 (a
comment on the wrong PR, sorry again!), #6693 introduced a second
completions mechanism to fix a bug. Having two completion mechanisms
isn't so nice.
As @thufschmitt also pointed out, it was a bummer to go from `FlakeRef`
to `std::string` when collecting flake refs. Now it is `FlakeRefs`
again.
The underlying issue that sought to work around was that completion of
arguments not at the end can still benefit from the information from
latter arguments.
To fix this better, we rip out that change and simply defer all
completion processing until after all the (regular, already-complete)
arguments have been passed.
In addition, I noticed the original completion logic used some global
variables. I do not like global variables, because even if they save
lines of code, they also obfuscate the architecture of the code.
I got rid of them moved them to a new `RootArgs` class, which now has
`parseCmdline` instead of `Args`. The idea is that we have many argument
parsers from subcommands and what-not, but only one root args that owns
the other per actual parsing invocation. The state that was global is
now part of the root args instead.
This did, admittedly, add a bunch of new code. And I do feel bad about
that. So I went and added a lot of API docs to try to at least make the
current state of things clear to the next person.
--
This is needed for RFC 134 (tracking issue #7868). It was very hard to
modularize `Installable` parsing when there were two completion
arguments. I wouldn't go as far as to say it is *easy* now, but at least
it is less hard (and the completions test finally passed).
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
2023-10-23 16:03:11 +03:00
|
|
|
#include "args/root.hh"
|
2023-10-25 07:43:36 +03:00
|
|
|
#include "current-process.hh"
|
|
|
|
#include "namespaces.hh"
|
2016-02-09 22:28:29 +02:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "eval.hh"
|
2023-07-31 16:19:19 +03:00
|
|
|
#include "eval-settings.hh"
|
2016-02-09 22:28:29 +02:00
|
|
|
#include "globals.hh"
|
|
|
|
#include "legacy.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
2020-04-07 00:57:28 +03:00
|
|
|
#include "filetransfer.hh"
|
2017-08-29 17:18:00 +03:00
|
|
|
#include "finally.hh"
|
2020-06-05 18:01:02 +03:00
|
|
|
#include "loggers.hh"
|
2021-09-13 15:41:28 +03:00
|
|
|
#include "markdown.hh"
|
2023-10-18 18:34:58 +03:00
|
|
|
#include "memory-input-accessor.hh"
|
2016-02-09 22:28:29 +02:00
|
|
|
|
2019-06-17 10:57:22 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <ifaddrs.h>
|
|
|
|
#include <netdb.h>
|
2019-11-01 16:09:42 +02:00
|
|
|
#include <netinet/in.h>
|
2019-06-17 10:57:22 +03:00
|
|
|
|
2020-08-17 18:44:52 +03:00
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
2017-08-29 14:21:07 +03:00
|
|
|
extern std::string chrootHelperName;
|
|
|
|
|
|
|
|
void chrootHelper(int argc, char * * argv);
|
|
|
|
|
2016-02-09 22:28:29 +02:00
|
|
|
namespace nix {
|
|
|
|
|
2019-06-17 10:57:22 +03:00
|
|
|
/* Check if we have a non-loopback/link-local network interface. */
|
|
|
|
static bool haveInternet()
|
|
|
|
{
|
|
|
|
struct ifaddrs * addrs;
|
|
|
|
|
|
|
|
if (getifaddrs(&addrs))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
Finally free([&]() { freeifaddrs(addrs); });
|
|
|
|
|
|
|
|
for (auto i = addrs; i; i = i->ifa_next) {
|
|
|
|
if (!i->ifa_addr) continue;
|
|
|
|
if (i->ifa_addr->sa_family == AF_INET) {
|
|
|
|
if (ntohl(((sockaddr_in *) i->ifa_addr)->sin_addr.s_addr) != INADDR_LOOPBACK) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if (i->ifa_addr->sa_family == AF_INET6) {
|
2019-06-28 16:38:23 +03:00
|
|
|
if (!IN6_IS_ADDR_LOOPBACK(&((sockaddr_in6 *) i->ifa_addr)->sin6_addr) &&
|
|
|
|
!IN6_IS_ADDR_LINKLOCAL(&((sockaddr_in6 *) i->ifa_addr)->sin6_addr))
|
2019-06-17 10:57:22 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-31 17:14:47 +02:00
|
|
|
std::string programPath;
|
|
|
|
|
Overhaul completions, redo #6693 (#8131)
As I complained in
https://github.com/NixOS/nix/pull/6784#issuecomment-1421777030 (a
comment on the wrong PR, sorry again!), #6693 introduced a second
completions mechanism to fix a bug. Having two completion mechanisms
isn't so nice.
As @thufschmitt also pointed out, it was a bummer to go from `FlakeRef`
to `std::string` when collecting flake refs. Now it is `FlakeRefs`
again.
The underlying issue that sought to work around was that completion of
arguments not at the end can still benefit from the information from
latter arguments.
To fix this better, we rip out that change and simply defer all
completion processing until after all the (regular, already-complete)
arguments have been passed.
In addition, I noticed the original completion logic used some global
variables. I do not like global variables, because even if they save
lines of code, they also obfuscate the architecture of the code.
I got rid of them moved them to a new `RootArgs` class, which now has
`parseCmdline` instead of `Args`. The idea is that we have many argument
parsers from subcommands and what-not, but only one root args that owns
the other per actual parsing invocation. The state that was global is
now part of the root args instead.
This did, admittedly, add a bunch of new code. And I do feel bad about
that. So I went and added a lot of API docs to try to at least make the
current state of things clear to the next person.
--
This is needed for RFC 134 (tracking issue #7868). It was very hard to
modularize `Installable` parsing when there were two completion
arguments. I wouldn't go as far as to say it is *easy* now, but at least
it is less hard (and the completions test finally passed).
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
2023-10-23 16:03:11 +03:00
|
|
|
struct NixArgs : virtual MultiCommand, virtual MixCommonArgs, virtual RootArgs
|
2016-02-09 22:28:29 +02:00
|
|
|
{
|
2019-06-17 10:57:22 +03:00
|
|
|
bool useNet = true;
|
2020-01-28 18:34:48 +02:00
|
|
|
bool refresh = false;
|
2023-01-17 02:13:31 +02:00
|
|
|
bool helpRequested = false;
|
2021-02-17 18:11:14 +02:00
|
|
|
bool showVersion = false;
|
2019-05-15 18:33:56 +03:00
|
|
|
|
2020-12-03 18:55:27 +02:00
|
|
|
NixArgs() : MultiCommand(RegisterCommand::getCommandsFor({})), MixCommonArgs("nix")
|
2016-02-09 22:28:29 +02:00
|
|
|
{
|
2020-05-05 16:18:23 +03:00
|
|
|
categories.clear();
|
2023-03-21 15:43:58 +02:00
|
|
|
categories[catHelp] = "Help commands";
|
2020-05-05 16:18:23 +03:00
|
|
|
categories[Command::catDefault] = "Main commands";
|
|
|
|
categories[catSecondary] = "Infrequently used commands";
|
|
|
|
categories[catUtility] = "Utility/scripting commands";
|
|
|
|
categories[catNixInstallation] = "Commands for upgrading or troubleshooting your Nix installation";
|
|
|
|
|
2020-05-04 23:40:19 +03:00
|
|
|
addFlag({
|
|
|
|
.longName = "help",
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Show usage information.",
|
2022-10-12 16:09:00 +03:00
|
|
|
.category = miscCategory,
|
2023-01-17 02:13:31 +02:00
|
|
|
.handler = {[this]() { this->helpRequested = true; }},
|
2020-05-04 23:40:19 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "print-build-logs",
|
|
|
|
.shortName = 'L',
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Print full build logs on standard error.",
|
2021-01-25 20:03:13 +02:00
|
|
|
.category = loggingCategory,
|
2022-08-24 23:36:40 +03:00
|
|
|
.handler = {[&]() { logger->setPrintBuildLogs(true); }},
|
2023-01-17 02:48:39 +02:00
|
|
|
.experimentalFeature = Xp::NixCommand,
|
2020-05-04 23:40:19 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "version",
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Show version information.",
|
2022-10-12 16:09:00 +03:00
|
|
|
.category = miscCategory,
|
2021-02-17 18:11:14 +02:00
|
|
|
.handler = {[&]() { showVersion = true; }},
|
2020-05-04 23:40:19 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
addFlag({
|
2021-02-01 15:11:42 +02:00
|
|
|
.longName = "offline",
|
2021-02-07 21:44:56 +02:00
|
|
|
.aliases = {"no-net"}, // FIXME: remove
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Disable substituters and consider all previously downloaded files up-to-date.",
|
2022-10-12 16:09:00 +03:00
|
|
|
.category = miscCategory,
|
2020-05-04 23:40:19 +03:00
|
|
|
.handler = {[&]() { useNet = false; }},
|
2023-01-17 02:48:39 +02:00
|
|
|
.experimentalFeature = Xp::NixCommand,
|
2020-05-04 23:40:19 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "refresh",
|
2021-01-13 15:18:04 +02:00
|
|
|
.description = "Consider all previously downloaded files out-of-date.",
|
2022-10-12 16:09:00 +03:00
|
|
|
.category = miscCategory,
|
2020-05-04 23:40:19 +03:00
|
|
|
.handler = {[&]() { refresh = true; }},
|
2023-01-17 02:48:39 +02:00
|
|
|
.experimentalFeature = Xp::NixCommand,
|
2020-05-04 23:40:19 +03:00
|
|
|
});
|
2020-12-03 23:45:44 +02:00
|
|
|
}
|
2020-06-04 12:14:19 +03:00
|
|
|
|
2020-12-03 23:45:44 +02:00
|
|
|
std::map<std::string, std::vector<std::string>> aliases = {
|
2020-07-24 21:38:56 +03:00
|
|
|
{"add-to-store", {"store", "add-path"}},
|
|
|
|
{"cat-nar", {"nar", "cat"}},
|
|
|
|
{"cat-store", {"store", "cat"}},
|
|
|
|
{"copy-sigs", {"store", "copy-sigs"}},
|
2020-12-03 23:45:44 +02:00
|
|
|
{"dev-shell", {"develop"}},
|
2020-07-24 21:38:56 +03:00
|
|
|
{"diff-closures", {"store", "diff-closures"}},
|
|
|
|
{"dump-path", {"store", "dump-path"}},
|
2020-12-03 23:45:44 +02:00
|
|
|
{"hash-file", {"hash", "file"}},
|
|
|
|
{"hash-path", {"hash", "path"}},
|
2020-07-24 21:38:56 +03:00
|
|
|
{"ls-nar", {"nar", "ls"}},
|
|
|
|
{"ls-store", {"store", "ls"}},
|
2022-03-22 22:54:49 +02:00
|
|
|
{"make-content-addressable", {"store", "make-content-addressed"}},
|
2020-07-24 21:38:56 +03:00
|
|
|
{"optimise-store", {"store", "optimise"}},
|
|
|
|
{"ping-store", {"store", "ping"}},
|
2021-01-14 00:31:18 +02:00
|
|
|
{"sign-paths", {"store", "sign"}},
|
2023-04-02 20:59:19 +03:00
|
|
|
{"show-derivation", {"derivation", "show"}},
|
2020-12-03 23:45:44 +02:00
|
|
|
{"to-base16", {"hash", "to-base16"}},
|
|
|
|
{"to-base32", {"hash", "to-base32"}},
|
|
|
|
{"to-base64", {"hash", "to-base64"}},
|
2020-07-24 21:38:56 +03:00
|
|
|
{"verify", {"store", "verify"}},
|
2020-12-03 23:45:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
bool aliasUsed = false;
|
|
|
|
|
|
|
|
Strings::iterator rewriteArgs(Strings & args, Strings::iterator pos) override
|
|
|
|
{
|
|
|
|
if (aliasUsed || command || pos == args.end()) return pos;
|
|
|
|
auto arg = *pos;
|
|
|
|
auto i = aliases.find(arg);
|
|
|
|
if (i == aliases.end()) return pos;
|
|
|
|
warn("'%s' is a deprecated alias for '%s'",
|
|
|
|
arg, concatStringsSep(" ", i->second));
|
|
|
|
pos = args.erase(pos);
|
|
|
|
for (auto j = i->second.rbegin(); j != i->second.rend(); ++j)
|
|
|
|
pos = args.insert(pos, *j);
|
|
|
|
aliasUsed = true;
|
|
|
|
return pos;
|
2016-02-09 22:28:29 +02:00
|
|
|
}
|
2017-06-07 17:49:54 +03:00
|
|
|
|
2020-08-18 16:15:35 +03:00
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "a tool for reproducible and declarative configuration management";
|
|
|
|
}
|
2020-12-23 19:33:42 +02:00
|
|
|
|
|
|
|
std::string doc() override
|
|
|
|
{
|
|
|
|
return
|
|
|
|
#include "nix.md"
|
|
|
|
;
|
|
|
|
}
|
2021-01-28 17:04:47 +02:00
|
|
|
|
|
|
|
// Plugins may add new subcommands.
|
|
|
|
void pluginsInited() override
|
|
|
|
{
|
|
|
|
commands = RegisterCommand::getCommandsFor({});
|
|
|
|
}
|
2023-03-21 13:58:14 +02:00
|
|
|
|
|
|
|
std::string dumpCli()
|
|
|
|
{
|
|
|
|
auto res = nlohmann::json::object();
|
|
|
|
|
|
|
|
res["args"] = toJSON();
|
|
|
|
|
|
|
|
auto stores = nlohmann::json::object();
|
|
|
|
for (auto & implem : *Implementations::registered) {
|
|
|
|
auto storeConfig = implem.getConfig();
|
|
|
|
auto storeName = storeConfig->name();
|
2023-04-17 18:58:47 +03:00
|
|
|
auto & j = stores[storeName];
|
|
|
|
j["doc"] = storeConfig->doc();
|
|
|
|
j["settings"] = storeConfig->toJSON();
|
|
|
|
j["experimentalFeature"] = storeConfig->experimentalFeature();
|
2023-03-21 13:58:14 +02:00
|
|
|
}
|
|
|
|
res["stores"] = std::move(stores);
|
2023-10-30 16:30:59 +02:00
|
|
|
res["fetchers"] = fetchers::dumpRegisterInputSchemeInfo();
|
2023-03-21 13:58:14 +02:00
|
|
|
|
|
|
|
return res.dump();
|
|
|
|
}
|
2016-02-09 22:28:29 +02:00
|
|
|
};
|
|
|
|
|
2021-09-13 15:41:28 +03:00
|
|
|
/* Render the help for the specified subcommand to stdout using
|
|
|
|
lowdown. */
|
2023-03-21 13:58:14 +02:00
|
|
|
static void showHelp(std::vector<std::string> subcommand, NixArgs & toplevel)
|
2020-12-02 13:26:09 +02:00
|
|
|
{
|
2021-09-13 15:41:28 +03:00
|
|
|
auto mdName = subcommand.empty() ? "nix" : fmt("nix3-%s", concatStringsSep("-", subcommand));
|
|
|
|
|
|
|
|
evalSettings.restrictEval = false;
|
|
|
|
evalSettings.pureEval = false;
|
|
|
|
EvalState state({}, openStore("dummy://"));
|
|
|
|
|
|
|
|
auto vGenerateManpage = state.allocValue();
|
|
|
|
state.eval(state.parseExprFromString(
|
|
|
|
#include "generate-manpage.nix.gen.hh"
|
2023-10-18 16:32:31 +03:00
|
|
|
, state.rootPath(CanonPath::root)), *vGenerateManpage);
|
2021-09-13 15:41:28 +03:00
|
|
|
|
2023-10-18 18:34:58 +03:00
|
|
|
state.corepkgsFS->addFile(
|
|
|
|
CanonPath("utils.nix"),
|
|
|
|
#include "utils.nix.gen.hh"
|
|
|
|
);
|
|
|
|
|
|
|
|
state.corepkgsFS->addFile(
|
|
|
|
CanonPath("/generate-settings.nix"),
|
|
|
|
#include "generate-settings.nix.gen.hh"
|
|
|
|
);
|
|
|
|
|
|
|
|
state.corepkgsFS->addFile(
|
|
|
|
CanonPath("/generate-store-info.nix"),
|
|
|
|
#include "generate-store-info.nix.gen.hh"
|
|
|
|
);
|
2023-10-05 00:07:13 +03:00
|
|
|
|
2023-03-21 13:58:14 +02:00
|
|
|
auto vDump = state.allocValue();
|
|
|
|
vDump->mkString(toplevel.dumpCli());
|
2021-09-13 15:41:28 +03:00
|
|
|
|
|
|
|
auto vRes = state.allocValue();
|
2023-10-05 02:20:26 +03:00
|
|
|
state.callFunction(*vGenerateManpage, state.getBuiltin("false"), *vRes, noPos);
|
|
|
|
state.callFunction(*vRes, *vDump, *vRes, noPos);
|
2021-09-13 15:41:28 +03:00
|
|
|
|
|
|
|
auto attr = vRes->attrs->get(state.symbols.create(mdName + ".md"));
|
|
|
|
if (!attr)
|
|
|
|
throw UsageError("Nix has no subcommand '%s'", concatStringsSep("", subcommand));
|
|
|
|
|
2023-01-19 14:23:04 +02:00
|
|
|
auto markdown = state.forceString(*attr->value, noPos, "while evaluating the lowdown help text");
|
2021-09-13 15:41:28 +03:00
|
|
|
|
|
|
|
RunPager pager;
|
|
|
|
std::cout << renderMarkdownToTerminal(markdown) << "\n";
|
2020-12-02 13:26:09 +02:00
|
|
|
}
|
|
|
|
|
2023-03-21 15:37:09 +02:00
|
|
|
static NixArgs & getNixArgs(Command & cmd)
|
|
|
|
{
|
Overhaul completions, redo #6693 (#8131)
As I complained in
https://github.com/NixOS/nix/pull/6784#issuecomment-1421777030 (a
comment on the wrong PR, sorry again!), #6693 introduced a second
completions mechanism to fix a bug. Having two completion mechanisms
isn't so nice.
As @thufschmitt also pointed out, it was a bummer to go from `FlakeRef`
to `std::string` when collecting flake refs. Now it is `FlakeRefs`
again.
The underlying issue that sought to work around was that completion of
arguments not at the end can still benefit from the information from
latter arguments.
To fix this better, we rip out that change and simply defer all
completion processing until after all the (regular, already-complete)
arguments have been passed.
In addition, I noticed the original completion logic used some global
variables. I do not like global variables, because even if they save
lines of code, they also obfuscate the architecture of the code.
I got rid of them moved them to a new `RootArgs` class, which now has
`parseCmdline` instead of `Args`. The idea is that we have many argument
parsers from subcommands and what-not, but only one root args that owns
the other per actual parsing invocation. The state that was global is
now part of the root args instead.
This did, admittedly, add a bunch of new code. And I do feel bad about
that. So I went and added a lot of API docs to try to at least make the
current state of things clear to the next person.
--
This is needed for RFC 134 (tracking issue #7868). It was very hard to
modularize `Installable` parsing when there were two completion
arguments. I wouldn't go as far as to say it is *easy* now, but at least
it is less hard (and the completions test finally passed).
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
2023-10-23 16:03:11 +03:00
|
|
|
return dynamic_cast<NixArgs &>(cmd.getRoot());
|
2023-03-21 15:37:09 +02:00
|
|
|
}
|
|
|
|
|
2020-12-02 13:26:09 +02:00
|
|
|
struct CmdHelp : Command
|
|
|
|
{
|
|
|
|
std::vector<std::string> subcommand;
|
|
|
|
|
|
|
|
CmdHelp()
|
|
|
|
{
|
|
|
|
expectArgs({
|
|
|
|
.label = "subcommand",
|
|
|
|
.handler = {&subcommand},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
2020-12-10 19:40:16 +02:00
|
|
|
return "show help about `nix` or a particular subcommand";
|
2020-12-02 13:26:09 +02:00
|
|
|
}
|
|
|
|
|
2020-12-10 19:40:16 +02:00
|
|
|
std::string doc() override
|
2020-12-02 13:26:09 +02:00
|
|
|
{
|
2020-12-10 19:40:16 +02:00
|
|
|
return
|
|
|
|
#include "help.md"
|
|
|
|
;
|
2020-12-02 13:26:09 +02:00
|
|
|
}
|
|
|
|
|
2023-03-21 15:43:58 +02:00
|
|
|
Category category() override { return catHelp; }
|
|
|
|
|
2020-12-02 13:26:09 +02:00
|
|
|
void run() override
|
|
|
|
{
|
2021-09-13 15:41:28 +03:00
|
|
|
assert(parent);
|
|
|
|
MultiCommand * toplevel = parent;
|
|
|
|
while (toplevel->parent) toplevel = toplevel->parent;
|
2023-03-21 15:37:09 +02:00
|
|
|
showHelp(subcommand, getNixArgs(*this));
|
2020-12-02 13:26:09 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static auto rCmdHelp = registerCommand<CmdHelp>("help");
|
|
|
|
|
2023-03-21 15:37:09 +02:00
|
|
|
struct CmdHelpStores : Command
|
|
|
|
{
|
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "show help about store types and their settings";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string doc() override
|
|
|
|
{
|
|
|
|
return
|
|
|
|
#include "help-stores.md"
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2023-03-21 15:43:58 +02:00
|
|
|
Category category() override { return catHelp; }
|
|
|
|
|
2023-03-21 15:37:09 +02:00
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
showHelp({"help-stores"}, getNixArgs(*this));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static auto rCmdHelpStores = registerCommand<CmdHelpStores>("help-stores");
|
|
|
|
|
2016-02-09 22:28:29 +02:00
|
|
|
void mainWrapped(int argc, char * * argv)
|
|
|
|
{
|
2021-01-14 01:05:04 +02:00
|
|
|
savedArgv = argv;
|
|
|
|
|
2017-08-29 14:21:07 +03:00
|
|
|
/* The chroot helper needs to be run before any threads have been
|
|
|
|
started. */
|
|
|
|
if (argc > 0 && argv[0] == chrootHelperName) {
|
|
|
|
chrootHelper(argc, argv);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-02-09 22:28:29 +02:00
|
|
|
initNix();
|
|
|
|
initGC();
|
|
|
|
|
2021-11-08 23:00:45 +02:00
|
|
|
#if __linux__
|
|
|
|
if (getuid() == 0) {
|
2021-11-16 15:23:05 +02:00
|
|
|
try {
|
|
|
|
saveMountNamespace();
|
|
|
|
if (unshare(CLONE_NEWNS) == -1)
|
|
|
|
throw SysError("setting up a private mount namespace");
|
|
|
|
} catch (Error & e) { }
|
2021-11-08 23:00:45 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-05-11 13:55:31 +03:00
|
|
|
Finally f([] { logger->stop(); });
|
|
|
|
|
2018-01-31 17:14:47 +02:00
|
|
|
programPath = argv[0];
|
2019-12-05 20:11:09 +02:00
|
|
|
auto programName = std::string(baseNameOf(programPath));
|
2016-02-09 22:28:29 +02:00
|
|
|
|
2022-10-25 22:17:32 +03:00
|
|
|
if (argc > 1 && std::string_view(argv[1]) == "__build-remote") {
|
2022-06-22 23:43:53 +03:00
|
|
|
programName = "build-remote";
|
|
|
|
argv++; argc--;
|
|
|
|
}
|
|
|
|
|
2016-02-09 22:28:29 +02:00
|
|
|
{
|
|
|
|
auto legacy = (*RegisterLegacyCommand::commands)[programName];
|
|
|
|
if (legacy) return legacy(argc, argv);
|
|
|
|
}
|
|
|
|
|
2019-02-12 21:35:03 +02:00
|
|
|
evalSettings.pureEval = true;
|
2018-10-26 12:35:46 +03:00
|
|
|
|
2020-06-05 18:01:02 +03:00
|
|
|
setLogFormat("bar");
|
2022-01-14 19:07:47 +02:00
|
|
|
settings.verboseBuild = false;
|
|
|
|
if (isatty(STDERR_FILENO)) {
|
|
|
|
verbosity = lvlNotice;
|
|
|
|
} else {
|
|
|
|
verbosity = lvlInfo;
|
|
|
|
}
|
2020-06-05 18:01:02 +03:00
|
|
|
|
2016-02-09 22:28:29 +02:00
|
|
|
NixArgs args;
|
|
|
|
|
2023-03-21 13:58:14 +02:00
|
|
|
if (argc == 2 && std::string(argv[1]) == "__dump-cli") {
|
|
|
|
logger->cout(args.dumpCli());
|
2020-08-17 18:44:52 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-05-13 20:52:45 +03:00
|
|
|
if (argc == 2 && std::string(argv[1]) == "__dump-language") {
|
2023-03-17 16:33:48 +02:00
|
|
|
experimentalFeatureSettings.experimentalFeatures = {
|
|
|
|
Xp::Flakes,
|
|
|
|
Xp::FetchClosure,
|
Create `outputOf` primop.
In the Nix language, given a drv path, we should be able to construct
another string referencing to one of its output. We can do this today
with `(import drvPath).output`, but this only works for derivations we
already have.
With dynamic derivations, however, that doesn't work well because the
`drvPath` isn't yet built: importing it like would need to trigger IFD,
when the whole point of this feature is to do "dynamic build graph"
without IFD!
Instead, what we want to do is create a placeholder value with the right
string context to refer to the output of the as-yet unbuilt derivation.
A new primop in the language, analogous to `builtins.placeholder` can be
used to create one. This will achieve all the right properties. The
placeholder machinery also will match out the `outPath` attribute for CA
derivations works.
In 60b7121d2c6d4322b7c2e8e7acfec7b701b2d3a1 we added that type of
placeholder, and the derived path and string holder changes necessary to
support it. Then in the previous commit we cleaned up the code
(inspiration finally hit me!) to deduplicate the code and expose exactly
what we need. Now, we can wire up the primop trivally!
Part of RFC 92: dynamic derivations (tracking issue #6316)
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
2021-03-10 06:22:56 +02:00
|
|
|
Xp::DynamicDerivations,
|
2023-03-17 16:33:48 +02:00
|
|
|
};
|
2020-09-16 17:56:28 +03:00
|
|
|
evalSettings.pureEval = false;
|
2020-08-24 19:54:16 +03:00
|
|
|
EvalState state({}, openStore("dummy://"));
|
2020-08-24 15:49:30 +03:00
|
|
|
auto res = nlohmann::json::object();
|
2023-05-13 20:52:45 +03:00
|
|
|
res["builtins"] = ({
|
|
|
|
auto builtinsJson = nlohmann::json::object();
|
|
|
|
auto builtins = state.baseEnv.values[0]->attrs;
|
|
|
|
for (auto & builtin : *builtins) {
|
|
|
|
auto b = nlohmann::json::object();
|
|
|
|
if (!builtin.value->isPrimOp()) continue;
|
|
|
|
auto primOp = builtin.value->primOp;
|
|
|
|
if (!primOp->doc) continue;
|
|
|
|
b["arity"] = primOp->arity;
|
|
|
|
b["args"] = primOp->args;
|
|
|
|
b["doc"] = trim(stripIndentation(primOp->doc));
|
|
|
|
b["experimental-feature"] = primOp->experimentalFeature;
|
|
|
|
builtinsJson[state.symbols[builtin.name]] = std::move(b);
|
|
|
|
}
|
|
|
|
std::move(builtinsJson);
|
|
|
|
});
|
|
|
|
res["constants"] = ({
|
|
|
|
auto constantsJson = nlohmann::json::object();
|
|
|
|
for (auto & [name, info] : state.constantInfos) {
|
|
|
|
auto c = nlohmann::json::object();
|
|
|
|
if (!info.doc) continue;
|
|
|
|
c["doc"] = trim(stripIndentation(info.doc));
|
|
|
|
c["type"] = showType(info.type, false);
|
|
|
|
c["impure-only"] = info.impureOnly;
|
|
|
|
constantsJson[name] = std::move(c);
|
|
|
|
}
|
|
|
|
std::move(constantsJson);
|
|
|
|
});
|
2023-03-02 16:02:24 +02:00
|
|
|
logger->cout("%s", res);
|
2020-08-24 15:49:30 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-04-05 05:57:11 +03:00
|
|
|
if (argc == 2 && std::string(argv[1]) == "__dump-xp-features") {
|
|
|
|
logger->cout(documentExperimentalFeatures().dump());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-10 21:32:21 +03:00
|
|
|
Finally printCompletions([&]()
|
|
|
|
{
|
Overhaul completions, redo #6693 (#8131)
As I complained in
https://github.com/NixOS/nix/pull/6784#issuecomment-1421777030 (a
comment on the wrong PR, sorry again!), #6693 introduced a second
completions mechanism to fix a bug. Having two completion mechanisms
isn't so nice.
As @thufschmitt also pointed out, it was a bummer to go from `FlakeRef`
to `std::string` when collecting flake refs. Now it is `FlakeRefs`
again.
The underlying issue that sought to work around was that completion of
arguments not at the end can still benefit from the information from
latter arguments.
To fix this better, we rip out that change and simply defer all
completion processing until after all the (regular, already-complete)
arguments have been passed.
In addition, I noticed the original completion logic used some global
variables. I do not like global variables, because even if they save
lines of code, they also obfuscate the architecture of the code.
I got rid of them moved them to a new `RootArgs` class, which now has
`parseCmdline` instead of `Args`. The idea is that we have many argument
parsers from subcommands and what-not, but only one root args that owns
the other per actual parsing invocation. The state that was global is
now part of the root args instead.
This did, admittedly, add a bunch of new code. And I do feel bad about
that. So I went and added a lot of API docs to try to at least make the
current state of things clear to the next person.
--
This is needed for RFC 134 (tracking issue #7868). It was very hard to
modularize `Installable` parsing when there were two completion
arguments. I wouldn't go as far as to say it is *easy* now, but at least
it is less hard (and the completions test finally passed).
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
2023-10-23 16:03:11 +03:00
|
|
|
if (args.completions) {
|
|
|
|
switch (args.completions->type) {
|
|
|
|
case Completions::Type::Normal:
|
2023-03-02 16:02:24 +02:00
|
|
|
logger->cout("normal"); break;
|
Overhaul completions, redo #6693 (#8131)
As I complained in
https://github.com/NixOS/nix/pull/6784#issuecomment-1421777030 (a
comment on the wrong PR, sorry again!), #6693 introduced a second
completions mechanism to fix a bug. Having two completion mechanisms
isn't so nice.
As @thufschmitt also pointed out, it was a bummer to go from `FlakeRef`
to `std::string` when collecting flake refs. Now it is `FlakeRefs`
again.
The underlying issue that sought to work around was that completion of
arguments not at the end can still benefit from the information from
latter arguments.
To fix this better, we rip out that change and simply defer all
completion processing until after all the (regular, already-complete)
arguments have been passed.
In addition, I noticed the original completion logic used some global
variables. I do not like global variables, because even if they save
lines of code, they also obfuscate the architecture of the code.
I got rid of them moved them to a new `RootArgs` class, which now has
`parseCmdline` instead of `Args`. The idea is that we have many argument
parsers from subcommands and what-not, but only one root args that owns
the other per actual parsing invocation. The state that was global is
now part of the root args instead.
This did, admittedly, add a bunch of new code. And I do feel bad about
that. So I went and added a lot of API docs to try to at least make the
current state of things clear to the next person.
--
This is needed for RFC 134 (tracking issue #7868). It was very hard to
modularize `Installable` parsing when there were two completion
arguments. I wouldn't go as far as to say it is *easy* now, but at least
it is less hard (and the completions test finally passed).
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
2023-10-23 16:03:11 +03:00
|
|
|
case Completions::Type::Filenames:
|
2023-03-02 16:02:24 +02:00
|
|
|
logger->cout("filenames"); break;
|
Overhaul completions, redo #6693 (#8131)
As I complained in
https://github.com/NixOS/nix/pull/6784#issuecomment-1421777030 (a
comment on the wrong PR, sorry again!), #6693 introduced a second
completions mechanism to fix a bug. Having two completion mechanisms
isn't so nice.
As @thufschmitt also pointed out, it was a bummer to go from `FlakeRef`
to `std::string` when collecting flake refs. Now it is `FlakeRefs`
again.
The underlying issue that sought to work around was that completion of
arguments not at the end can still benefit from the information from
latter arguments.
To fix this better, we rip out that change and simply defer all
completion processing until after all the (regular, already-complete)
arguments have been passed.
In addition, I noticed the original completion logic used some global
variables. I do not like global variables, because even if they save
lines of code, they also obfuscate the architecture of the code.
I got rid of them moved them to a new `RootArgs` class, which now has
`parseCmdline` instead of `Args`. The idea is that we have many argument
parsers from subcommands and what-not, but only one root args that owns
the other per actual parsing invocation. The state that was global is
now part of the root args instead.
This did, admittedly, add a bunch of new code. And I do feel bad about
that. So I went and added a lot of API docs to try to at least make the
current state of things clear to the next person.
--
This is needed for RFC 134 (tracking issue #7868). It was very hard to
modularize `Installable` parsing when there were two completion
arguments. I wouldn't go as far as to say it is *easy* now, but at least
it is less hard (and the completions test finally passed).
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
2023-10-23 16:03:11 +03:00
|
|
|
case Completions::Type::Attrs:
|
2023-03-02 16:02:24 +02:00
|
|
|
logger->cout("attrs"); break;
|
2021-12-22 13:37:59 +02:00
|
|
|
}
|
Overhaul completions, redo #6693 (#8131)
As I complained in
https://github.com/NixOS/nix/pull/6784#issuecomment-1421777030 (a
comment on the wrong PR, sorry again!), #6693 introduced a second
completions mechanism to fix a bug. Having two completion mechanisms
isn't so nice.
As @thufschmitt also pointed out, it was a bummer to go from `FlakeRef`
to `std::string` when collecting flake refs. Now it is `FlakeRefs`
again.
The underlying issue that sought to work around was that completion of
arguments not at the end can still benefit from the information from
latter arguments.
To fix this better, we rip out that change and simply defer all
completion processing until after all the (regular, already-complete)
arguments have been passed.
In addition, I noticed the original completion logic used some global
variables. I do not like global variables, because even if they save
lines of code, they also obfuscate the architecture of the code.
I got rid of them moved them to a new `RootArgs` class, which now has
`parseCmdline` instead of `Args`. The idea is that we have many argument
parsers from subcommands and what-not, but only one root args that owns
the other per actual parsing invocation. The state that was global is
now part of the root args instead.
This did, admittedly, add a bunch of new code. And I do feel bad about
that. So I went and added a lot of API docs to try to at least make the
current state of things clear to the next person.
--
This is needed for RFC 134 (tracking issue #7868). It was very hard to
modularize `Installable` parsing when there were two completion
arguments. I wouldn't go as far as to say it is *easy* now, but at least
it is less hard (and the completions test finally passed).
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
2023-10-23 16:03:11 +03:00
|
|
|
for (auto & s : args.completions->completions)
|
2023-03-02 16:02:24 +02:00
|
|
|
logger->cout(s.completion + "\t" + trim(s.description));
|
2020-05-10 21:32:21 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
try {
|
2021-08-28 23:26:53 +03:00
|
|
|
args.parseCmdline(programName, argvToStrings(argc, argv));
|
2023-01-17 02:13:31 +02:00
|
|
|
} catch (UsageError &) {
|
Overhaul completions, redo #6693 (#8131)
As I complained in
https://github.com/NixOS/nix/pull/6784#issuecomment-1421777030 (a
comment on the wrong PR, sorry again!), #6693 introduced a second
completions mechanism to fix a bug. Having two completion mechanisms
isn't so nice.
As @thufschmitt also pointed out, it was a bummer to go from `FlakeRef`
to `std::string` when collecting flake refs. Now it is `FlakeRefs`
again.
The underlying issue that sought to work around was that completion of
arguments not at the end can still benefit from the information from
latter arguments.
To fix this better, we rip out that change and simply defer all
completion processing until after all the (regular, already-complete)
arguments have been passed.
In addition, I noticed the original completion logic used some global
variables. I do not like global variables, because even if they save
lines of code, they also obfuscate the architecture of the code.
I got rid of them moved them to a new `RootArgs` class, which now has
`parseCmdline` instead of `Args`. The idea is that we have many argument
parsers from subcommands and what-not, but only one root args that owns
the other per actual parsing invocation. The state that was global is
now part of the root args instead.
This did, admittedly, add a bunch of new code. And I do feel bad about
that. So I went and added a lot of API docs to try to at least make the
current state of things clear to the next person.
--
This is needed for RFC 134 (tracking issue #7868). It was very hard to
modularize `Installable` parsing when there were two completion
arguments. I wouldn't go as far as to say it is *easy* now, but at least
it is less hard (and the completions test finally passed).
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
2023-10-23 16:03:11 +03:00
|
|
|
if (!args.helpRequested && !args.completions) throw;
|
2023-01-17 02:13:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (args.helpRequested) {
|
2021-01-25 15:38:15 +02:00
|
|
|
std::vector<std::string> subcommand;
|
|
|
|
MultiCommand * command = &args;
|
|
|
|
while (command) {
|
|
|
|
if (command && command->command) {
|
|
|
|
subcommand.push_back(command->command->first);
|
|
|
|
command = dynamic_cast<MultiCommand *>(&*command->command->second);
|
|
|
|
} else
|
|
|
|
break;
|
|
|
|
}
|
2021-09-13 15:41:28 +03:00
|
|
|
showHelp(subcommand, args);
|
2021-01-25 15:38:15 +02:00
|
|
|
return;
|
2020-05-10 21:32:21 +03:00
|
|
|
}
|
|
|
|
|
Overhaul completions, redo #6693 (#8131)
As I complained in
https://github.com/NixOS/nix/pull/6784#issuecomment-1421777030 (a
comment on the wrong PR, sorry again!), #6693 introduced a second
completions mechanism to fix a bug. Having two completion mechanisms
isn't so nice.
As @thufschmitt also pointed out, it was a bummer to go from `FlakeRef`
to `std::string` when collecting flake refs. Now it is `FlakeRefs`
again.
The underlying issue that sought to work around was that completion of
arguments not at the end can still benefit from the information from
latter arguments.
To fix this better, we rip out that change and simply defer all
completion processing until after all the (regular, already-complete)
arguments have been passed.
In addition, I noticed the original completion logic used some global
variables. I do not like global variables, because even if they save
lines of code, they also obfuscate the architecture of the code.
I got rid of them moved them to a new `RootArgs` class, which now has
`parseCmdline` instead of `Args`. The idea is that we have many argument
parsers from subcommands and what-not, but only one root args that owns
the other per actual parsing invocation. The state that was global is
now part of the root args instead.
This did, admittedly, add a bunch of new code. And I do feel bad about
that. So I went and added a lot of API docs to try to at least make the
current state of things clear to the next person.
--
This is needed for RFC 134 (tracking issue #7868). It was very hard to
modularize `Installable` parsing when there were two completion
arguments. I wouldn't go as far as to say it is *easy* now, but at least
it is less hard (and the completions test finally passed).
Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io>
2023-10-23 16:03:11 +03:00
|
|
|
if (args.completions) return;
|
2019-10-16 18:45:09 +03:00
|
|
|
|
2021-02-17 18:11:14 +02:00
|
|
|
if (args.showVersion) {
|
|
|
|
printVersion(programName);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-25 15:38:15 +02:00
|
|
|
if (!args.command)
|
|
|
|
throw UsageError("no subcommand specified");
|
2016-02-09 22:28:29 +02:00
|
|
|
|
2023-01-17 06:01:18 +02:00
|
|
|
experimentalFeatureSettings.require(
|
|
|
|
args.command->second->experimentalFeature());
|
2020-05-07 17:46:25 +03:00
|
|
|
|
2019-06-17 10:57:22 +03:00
|
|
|
if (args.useNet && !haveInternet()) {
|
|
|
|
warn("you don't have Internet access; disabling some network-dependent features");
|
|
|
|
args.useNet = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!args.useNet) {
|
|
|
|
// FIXME: should check for command line overrides only.
|
2021-03-26 17:14:38 +02:00
|
|
|
if (!settings.useSubstitutes.overridden)
|
2019-06-17 10:57:22 +03:00
|
|
|
settings.useSubstitutes = false;
|
2021-03-26 17:14:38 +02:00
|
|
|
if (!settings.tarballTtl.overridden)
|
2019-06-17 10:57:22 +03:00
|
|
|
settings.tarballTtl = std::numeric_limits<unsigned int>::max();
|
2021-03-26 17:14:38 +02:00
|
|
|
if (!fileTransferSettings.tries.overridden)
|
2020-04-07 00:43:43 +03:00
|
|
|
fileTransferSettings.tries = 0;
|
2021-03-26 17:14:38 +02:00
|
|
|
if (!fileTransferSettings.connectTimeout.overridden)
|
2020-04-07 00:43:43 +03:00
|
|
|
fileTransferSettings.connectTimeout = 1;
|
2019-06-17 10:57:22 +03:00
|
|
|
}
|
|
|
|
|
2021-01-18 15:38:31 +02:00
|
|
|
if (args.refresh) {
|
2020-01-28 18:34:48 +02:00
|
|
|
settings.tarballTtl = 0;
|
2021-01-18 15:38:31 +02:00
|
|
|
settings.ttlNegativeNarInfoCache = 0;
|
|
|
|
settings.ttlPositiveNarInfoCache = 0;
|
|
|
|
}
|
2020-01-28 18:34:48 +02:00
|
|
|
|
2022-01-31 19:03:24 +02:00
|
|
|
if (args.command->second->forceImpureByDefault() && !evalSettings.pureEval.overridden) {
|
|
|
|
evalSettings.pureEval = false;
|
|
|
|
}
|
2020-05-05 16:18:23 +03:00
|
|
|
args.command->second->run();
|
2016-02-09 22:28:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char * * argv)
|
|
|
|
{
|
2021-02-18 20:22:37 +02:00
|
|
|
// Increase the default stack size for the evaluator and for
|
|
|
|
// libstdc++'s std::regex.
|
2021-04-07 14:40:13 +03:00
|
|
|
nix::setStackSize(64 * 1024 * 1024);
|
2021-02-18 20:22:37 +02:00
|
|
|
|
2016-02-09 22:28:29 +02:00
|
|
|
return nix::handleExceptions(argv[0], [&]() {
|
|
|
|
nix::mainWrapped(argc, argv);
|
|
|
|
});
|
|
|
|
}
|