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"
|
2020-12-02 20:25:32 +00:00
|
|
|
#include "eval-inline.hh"
|
2017-04-25 09:23:47 +00:00
|
|
|
#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;
|
2020-12-02 20:25:32 +00:00
|
|
|
std::optional<Path> writeTo;
|
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},
|
|
|
|
});
|
2020-12-02 20:25:32 +00:00
|
|
|
|
|
|
|
addFlag({
|
|
|
|
.longName = "write-to",
|
|
|
|
.description = "write a string or attrset of strings to 'path'",
|
|
|
|
.labels = {"path"},
|
|
|
|
.handler = {&writeTo},
|
|
|
|
});
|
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-12-02 20:25:32 +00:00
|
|
|
auto [v, pos] = installable->toValue(*state);
|
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;
|
|
|
|
}
|
|
|
|
|
2020-12-02 20:25:32 +00:00
|
|
|
if (writeTo) {
|
|
|
|
stopProgressBar();
|
|
|
|
|
|
|
|
if (pathExists(*writeTo))
|
|
|
|
throw Error("path '%s' already exists", *writeTo);
|
|
|
|
|
|
|
|
std::function<void(Value & v, const Pos & pos, const Path & path)> recurse;
|
|
|
|
|
|
|
|
recurse = [&](Value & v, const Pos & pos, const Path & path)
|
|
|
|
{
|
|
|
|
state->forceValue(v);
|
|
|
|
if (v.type == tString)
|
|
|
|
// FIXME: disallow strings with contexts?
|
|
|
|
writeFile(path, v.string.s);
|
|
|
|
else if (v.type == tAttrs) {
|
|
|
|
if (mkdir(path.c_str(), 0777) == -1)
|
|
|
|
throw SysError("creating directory '%s'", path);
|
|
|
|
for (auto & attr : *v.attrs)
|
|
|
|
try {
|
|
|
|
if (attr.name == "." || attr.name == "..")
|
|
|
|
throw Error("invalid file name '%s'", attr.name);
|
|
|
|
recurse(*attr.value, *attr.pos, path + "/" + std::string(attr.name));
|
|
|
|
} catch (Error & e) {
|
|
|
|
e.addTrace(*attr.pos, hintfmt("while evaluating the attribute '%s'", attr.name));
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw TypeError("value at '%s' is not a string or an attribute set", pos);
|
|
|
|
};
|
|
|
|
|
|
|
|
recurse(*v, pos, *writeTo);
|
|
|
|
}
|
|
|
|
|
|
|
|
else 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);
|
2020-12-02 20:25:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (json) {
|
2018-01-17 11:03:06 +00:00
|
|
|
JSONPlaceholder jsonOut(std::cout);
|
|
|
|
printValueAsJSON(*state, true, *v, jsonOut, context);
|
2020-12-02 20:25:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2018-01-17 11:03:06 +00:00
|
|
|
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");
|