2017-04-13 18:59:38 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
2020-08-20 09:02:16 +00:00
|
|
|
|
|
|
|
#include <nlohmann/json.hpp>
|
2017-04-13 18:59:38 +00:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2023-11-27 18:41:30 +00:00
|
|
|
struct CmdConfig : virtual NixMultiCommand
|
|
|
|
{
|
|
|
|
CmdConfig() : MultiCommand(RegisterCommand::getCommandsFor({"config"}))
|
|
|
|
{ }
|
|
|
|
|
|
|
|
std::string description() override
|
|
|
|
{
|
2024-05-14 00:05:08 +00:00
|
|
|
return "manipulate the Lix configuration";
|
2023-11-27 18:41:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Category category() override { return catUtility; }
|
|
|
|
|
|
|
|
void run() override
|
|
|
|
{
|
|
|
|
if (!command)
|
|
|
|
throw UsageError("'nix config' requires a sub-command.");
|
|
|
|
command->second->run();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CmdConfigShow : Command, MixJSON
|
2017-04-13 18:59:38 +00:00
|
|
|
{
|
2023-01-12 21:42:17 +00:00
|
|
|
std::optional<std::string> name;
|
|
|
|
|
2023-11-27 18:41:30 +00:00
|
|
|
CmdConfigShow() {
|
2023-01-12 21:42:17 +00:00
|
|
|
expectArgs({
|
|
|
|
.label = {"name"},
|
|
|
|
.optional = true,
|
|
|
|
.handler = {&name},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-04-13 18:59:38 +00:00
|
|
|
std::string description() override
|
|
|
|
{
|
2024-05-14 00:05:08 +00:00
|
|
|
return "show the Lix configuration or the value of a specific setting";
|
2017-04-13 18:59:38 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
Category category() override { return catUtility; }
|
|
|
|
|
2017-04-13 18:59:38 +00:00
|
|
|
void run() override
|
|
|
|
{
|
2023-01-12 21:42:17 +00:00
|
|
|
if (name) {
|
|
|
|
if (json) {
|
|
|
|
throw UsageError("'--json' is not supported when specifying a setting name");
|
|
|
|
}
|
|
|
|
|
|
|
|
std::map<std::string, Config::SettingInfo> settings;
|
|
|
|
globalConfig.getSettings(settings);
|
|
|
|
auto setting = settings.find(*name);
|
|
|
|
|
|
|
|
if (setting == settings.end()) {
|
|
|
|
throw Error("could not find setting '%1%'", *name);
|
|
|
|
} else {
|
|
|
|
const auto & value = setting->second.value;
|
|
|
|
logger->cout("%s", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-13 18:59:38 +00:00
|
|
|
if (json) {
|
|
|
|
// FIXME: use appropriate JSON types (bool, ints, etc).
|
2020-09-25 15:30:04 +00:00
|
|
|
logger->cout("%s", globalConfig.toJSON().dump());
|
2017-04-13 18:59:38 +00:00
|
|
|
} else {
|
2021-07-15 16:17:18 +00:00
|
|
|
logger->cout("%s", globalConfig.toKeyValue());
|
2017-04-13 18:59:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-11-27 18:41:30 +00:00
|
|
|
static auto rCmdConfig = registerCommand<CmdConfig>("config");
|
|
|
|
static auto rShowConfig = registerCommand2<CmdConfigShow>({"config", "show"});
|