2017-04-25 09:23:47 +00:00
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
#include "eval.hh"
|
|
|
|
#include "json.hh"
|
|
|
|
#include "value-to-json.hh"
|
2018-01-17 11:04:44 +00:00
|
|
|
#include "progress-bar.hh"
|
2017-04-25 09:23:47 +00:00
|
|
|
|
|
|
|
using namespace nix;
|
|
|
|
|
2018-01-17 11:03:06 +00:00
|
|
|
struct CmdEval : MixJSON, InstallableCommand
|
2017-04-25 09:23:47 +00:00
|
|
|
{
|
2017-05-03 12:08:18 +00:00
|
|
|
bool raw = false;
|
2020-06-17 16:11:53 +00:00
|
|
|
std::optional<std::string> apply;
|
2017-05-03 12:08:18 +00:00
|
|
|
|
|
|
|
CmdEval()
|
|
|
|
{
|
|
|
|
mkFlag(0, "raw", "print strings unquoted", &raw);
|
2020-06-17 16:11:53 +00:00
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "apply",
|
|
|
|
.description = "apply a function to each argument",
|
|
|
|
.labels = {"expr"},
|
|
|
|
.handler = {&apply},
|
|
|
|
});
|
2017-05-03 12:08:18 +00:00
|
|
|
}
|
|
|
|
|
2017-04-25 09:23:47 +00:00
|
|
|
std::string description() override
|
|
|
|
{
|
|
|
|
return "evaluate a Nix expression";
|
|
|
|
}
|
|
|
|
|
2017-09-07 18:37:46 +00:00
|
|
|
Examples examples() override
|
|
|
|
{
|
|
|
|
return {
|
2020-06-17 16:11:53 +00:00
|
|
|
{
|
2017-09-07 18:37:46 +00:00
|
|
|
"To evaluate a Nix expression given on the command line:",
|
2019-11-26 23:05:30 +00:00
|
|
|
"nix eval --expr '1 + 2'"
|
2017-09-07 18:37:46 +00:00
|
|
|
},
|
2020-06-17 16:11:53 +00:00
|
|
|
{
|
2017-09-07 18:37:46 +00:00
|
|
|
"To evaluate a Nix expression from a file or URI:",
|
2020-06-17 16:11:53 +00:00
|
|
|
"nix eval -f ./my-nixpkgs hello.name"
|
2017-09-07 18:37:46 +00:00
|
|
|
},
|
2020-06-17 16:11:53 +00:00
|
|
|
{
|
2017-09-07 18:37:46 +00:00
|
|
|
"To get the current version of Nixpkgs:",
|
2020-06-17 16:11:53 +00:00
|
|
|
"nix eval --raw nixpkgs#lib.version"
|
2017-09-07 18:37:46 +00:00
|
|
|
},
|
2020-06-17 16:11:53 +00:00
|
|
|
{
|
2017-11-20 17:27:29 +00:00
|
|
|
"To print the store path of the Hello package:",
|
2020-06-17 16:11:53 +00:00
|
|
|
"nix eval --raw nixpkgs#hello"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"To get a list of checks in the 'nix' flake:",
|
|
|
|
"nix eval nix#checks.x86_64-linux --apply builtins.attrNames"
|
2017-11-20 17:27:29 +00:00
|
|
|
},
|
2017-09-07 18:37:46 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-05-05 13:18:23 +00:00
|
|
|
Category category() override { return catSecondary; }
|
|
|
|
|
2017-04-25 09:23:47 +00:00
|
|
|
void run(ref<Store> store) override
|
|
|
|
{
|
2017-05-03 12:08:18 +00:00
|
|
|
if (raw && json)
|
|
|
|
throw UsageError("--raw and --json are mutually exclusive");
|
|
|
|
|
2017-04-25 09:23:47 +00:00
|
|
|
auto state = getEvalState();
|
|
|
|
|
2020-02-07 13:22:01 +00:00
|
|
|
auto v = installable->toValue(*state).first;
|
2018-01-17 11:03:06 +00:00
|
|
|
PathSet context;
|
2018-01-17 11:04:44 +00:00
|
|
|
|
2020-06-17 16:11:53 +00:00
|
|
|
if (apply) {
|
|
|
|
auto vApply = state->allocValue();
|
|
|
|
state->eval(state->parseExprFromString(*apply, absPath(".")), *vApply);
|
|
|
|
auto vRes = state->allocValue();
|
|
|
|
state->callFunction(*vApply, *v, *vRes, noPos);
|
|
|
|
v = vRes;
|
|
|
|
}
|
|
|
|
|
2018-01-17 11:03:06 +00:00
|
|
|
if (raw) {
|
2020-04-16 11:46:37 +00:00
|
|
|
stopProgressBar();
|
2018-01-17 11:03:06 +00:00
|
|
|
std::cout << state->coerceToString(noPos, *v, context);
|
|
|
|
} else if (json) {
|
|
|
|
JSONPlaceholder jsonOut(std::cout);
|
|
|
|
printValueAsJSON(*state, true, *v, jsonOut, context);
|
|
|
|
} else {
|
|
|
|
state->forceValueDeep(*v);
|
2020-09-25 15:30:04 +00:00
|
|
|
logger->cout("%s", *v);
|
2017-04-25 09:23:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-10-06 11:36:55 +00:00
|
|
|
static auto rCmdEval = registerCommand<CmdEval>("eval");
|