diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-07-06T12·28+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-07-06T12·28+0000 |
commit | 2b9e29b1c8b6b8e4884a46a3ba71ee795f1f97cd (patch) | |
tree | 9b4dd1efce2222e6fdf29ceaaca1f477b77e532b /src/libexpr/eval.cc | |
parent | 5580f3817c37135dcc633d84d1360a17a8878a58 (diff) |
* Change the right-hand side of the ‘.’ operator from an attribute to
an attribute path. This is a refactoring to support default values.
Diffstat (limited to 'src/libexpr/eval.cc')
-rw-r--r-- | src/libexpr/eval.cc | 38 |
1 files changed, 26 insertions, 12 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index c307f2a4204e..4d3a369aa1ec 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -636,21 +636,35 @@ unsigned long nrLookupSize = 0; void ExprSelect::eval(EvalState & state, Env & env, Value & v) { - nrLookups++; - Value v2; - state.evalAttrs(env, e, v2); - nrLookupSize += v2.attrs->size(); - Bindings::iterator i = v2.attrs->find(name); - if (i == v2.attrs->end()) - throwEvalError("attribute `%1%' missing", name); - try { - state.forceValue(*i->value); + Value vTmp; + Pos * pos = 0; + Value * vAttrs = &vTmp; + + state.eval(env, e, vTmp); + + try { + + foreach (AttrPath::const_iterator, i, attrPath) { + nrLookups++; + state.forceAttrs(*vAttrs); + nrLookupSize += vAttrs->attrs->size(); + Bindings::iterator j; + if ((j = vAttrs->attrs->find(*i)) == vAttrs->attrs->end()) + throwEvalError("attribute `%1%' missing", showAttrPath(attrPath)); + vAttrs = j->value; + pos = j->pos; + } + + state.forceValue(*vAttrs); + } catch (Error & e) { - addErrorPrefix(e, "while evaluating the attribute `%1%' at %2%:\n", - name, *i->pos); + if (pos) + addErrorPrefix(e, "while evaluating the attribute `%1%' at %2%:\n", + showAttrPath(attrPath), *pos); throw; } - v = *i->value; + + v = *vAttrs; } |