forked from lix-project/lix
nix search: Ignore top-level eval errors
$NIX_PATH may contain elements that don't evaluate to an attrset (like "nixos-config"), so ignore those.
This commit is contained in:
parent
fc3568e263
commit
57a30e101b
|
@ -16,6 +16,8 @@ Value * SourceExprCommand::getSourceExpr(EvalState & state)
|
|||
{
|
||||
if (vSourceExpr) return vSourceExpr;
|
||||
|
||||
auto sToplevel = state.symbols.create("_toplevel");
|
||||
|
||||
vSourceExpr = state.allocValue();
|
||||
|
||||
if (file != "") {
|
||||
|
@ -29,7 +31,9 @@ Value * SourceExprCommand::getSourceExpr(EvalState & state)
|
|||
|
||||
auto searchPath = state.getSearchPath();
|
||||
|
||||
state.mkAttrs(*vSourceExpr, searchPath.size());
|
||||
state.mkAttrs(*vSourceExpr, searchPath.size() + 1);
|
||||
|
||||
mkBool(*state.allocAttr(*vSourceExpr, sToplevel), true);
|
||||
|
||||
std::unordered_set<std::string> seen;
|
||||
|
||||
|
|
|
@ -54,6 +54,8 @@ struct CmdSearch : SourceExprCommand, MixJSON
|
|||
|
||||
auto jsonOut = json ? std::make_unique<JSONObject>(std::cout, true) : nullptr;
|
||||
|
||||
auto sToplevel = state->symbols.create("_toplevel");
|
||||
|
||||
doExpr = [&](Value * v, std::string attrPath, bool toplevel) {
|
||||
debug("at attribute ‘%s’", attrPath);
|
||||
|
||||
|
@ -123,7 +125,7 @@ struct CmdSearch : SourceExprCommand, MixJSON
|
|||
if (j == attrs->end() || !state->forceBool(*j->value, *j->pos)) return;
|
||||
}
|
||||
|
||||
Bindings::iterator j = v->attrs->find(state->symbols.create("_toplevel"));
|
||||
Bindings::iterator j = v->attrs->find(sToplevel);
|
||||
bool toplevel2 = j != v->attrs->end() && state->forceBool(*j->value, *j->pos);
|
||||
|
||||
for (auto & i : *v->attrs) {
|
||||
|
@ -134,6 +136,11 @@ struct CmdSearch : SourceExprCommand, MixJSON
|
|||
}
|
||||
|
||||
} catch (AssertionError & e) {
|
||||
} catch (Error & e) {
|
||||
if (!toplevel) {
|
||||
e.addPrefix(fmt("While evaluating the attribute ‘%s’:\n", attrPath));
|
||||
throw;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue