2006-07-26 18:05:15 +03:00
|
|
|
#include "attr-path.hh"
|
2012-03-05 23:04:40 +02:00
|
|
|
#include "eval-inline.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
2006-07-26 18:05:15 +03:00
|
|
|
|
|
|
|
|
2020-06-18 14:44:40 +03:00
|
|
|
static Strings parseAttrPath(std::string_view s)
|
2013-11-18 12:21:12 +02:00
|
|
|
{
|
|
|
|
Strings res;
|
|
|
|
string cur;
|
2020-06-18 14:44:40 +03:00
|
|
|
auto i = s.begin();
|
2013-11-18 12:21:12 +02:00
|
|
|
while (i != s.end()) {
|
|
|
|
if (*i == '.') {
|
|
|
|
res.push_back(cur);
|
|
|
|
cur.clear();
|
|
|
|
} else if (*i == '"') {
|
|
|
|
++i;
|
|
|
|
while (1) {
|
|
|
|
if (i == s.end())
|
2021-06-30 00:28:43 +03:00
|
|
|
throw ParseError("missing closing quote in selection path '%1%'", s);
|
2013-11-18 12:21:12 +02:00
|
|
|
if (*i == '"') break;
|
|
|
|
cur.push_back(*i++);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
cur.push_back(*i);
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
if (!cur.empty()) res.push_back(cur);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-18 14:44:40 +03:00
|
|
|
std::vector<Symbol> parseAttrPath(EvalState & state, std::string_view s)
|
|
|
|
{
|
|
|
|
std::vector<Symbol> res;
|
|
|
|
for (auto & a : parseAttrPath(s))
|
|
|
|
res.push_back(state.symbols.create(a));
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-07 15:08:24 +02:00
|
|
|
std::pair<Value *, Pos> findAlongAttrPath(EvalState & state, const string & attrPath,
|
2013-09-03 16:17:51 +03:00
|
|
|
Bindings & autoArgs, Value & vIn)
|
2006-07-26 18:05:15 +03:00
|
|
|
{
|
2013-11-18 12:21:12 +02:00
|
|
|
Strings tokens = parseAttrPath(attrPath);
|
2006-07-26 18:05:15 +03:00
|
|
|
|
2013-09-03 16:17:51 +03:00
|
|
|
Value * v = &vIn;
|
2020-02-07 15:08:24 +02:00
|
|
|
Pos pos = noPos;
|
2013-09-02 17:29:15 +03:00
|
|
|
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & attr : tokens) {
|
2006-07-26 18:05:15 +03:00
|
|
|
|
2015-07-17 20:24:28 +03:00
|
|
|
/* Is i an index (integer) or a normal attribute name? */
|
2021-01-08 13:22:21 +02:00
|
|
|
auto attrIndex = string2Int<unsigned int>(attr);
|
2006-07-26 18:05:15 +03:00
|
|
|
|
|
|
|
/* Evaluate the expression. */
|
2013-09-03 16:17:51 +03:00
|
|
|
Value * vNew = state.allocValue();
|
|
|
|
state.autoCallFunction(autoArgs, *v, *vNew);
|
|
|
|
v = vNew;
|
2021-11-27 19:40:24 +02:00
|
|
|
state.forceValue(*v, v->determinePos(vIn.determinePos(noPos)));
|
2006-07-26 18:05:15 +03:00
|
|
|
|
2013-10-24 17:41:04 +03:00
|
|
|
/* It should evaluate to either a set or an expression,
|
|
|
|
according to what is specified in the attrPath. */
|
2006-07-26 18:05:15 +03:00
|
|
|
|
2021-01-08 13:22:21 +02:00
|
|
|
if (!attrIndex) {
|
2006-07-26 18:05:15 +03:00
|
|
|
|
2020-12-17 15:45:45 +02:00
|
|
|
if (v->type() != nAttrs)
|
2006-07-26 18:05:15 +03:00
|
|
|
throw TypeError(
|
2020-04-22 02:07:07 +03:00
|
|
|
"the expression selected by the selection path '%1%' should be a set but is %2%",
|
|
|
|
attrPath,
|
2020-06-15 15:12:39 +03:00
|
|
|
showType(*v));
|
2013-11-18 12:21:12 +02:00
|
|
|
if (attr.empty())
|
2020-04-22 02:07:07 +03:00
|
|
|
throw Error("empty attribute name in selection path '%1%'", attrPath);
|
2006-07-26 18:05:15 +03:00
|
|
|
|
2013-09-03 16:17:51 +03:00
|
|
|
Bindings::iterator a = v->attrs->find(state.symbols.create(attr));
|
|
|
|
if (a == v->attrs->end())
|
2019-04-08 15:20:58 +03:00
|
|
|
throw AttrPathNotFound("attribute '%1%' in selection path '%2%' not found", attr, attrPath);
|
2013-09-03 16:17:51 +03:00
|
|
|
v = &*a->value;
|
2020-02-07 15:08:24 +02:00
|
|
|
pos = *a->pos;
|
2006-07-26 18:05:15 +03:00
|
|
|
}
|
|
|
|
|
2021-01-08 13:22:21 +02:00
|
|
|
else {
|
2006-07-26 18:05:15 +03:00
|
|
|
|
2015-07-23 23:05:09 +03:00
|
|
|
if (!v->isList())
|
2006-07-26 18:05:15 +03:00
|
|
|
throw TypeError(
|
2020-04-22 02:07:07 +03:00
|
|
|
"the expression selected by the selection path '%1%' should be a list but is %2%",
|
|
|
|
attrPath,
|
2020-06-15 15:12:39 +03:00
|
|
|
showType(*v));
|
2021-01-08 13:22:21 +02:00
|
|
|
if (*attrIndex >= v->listSize())
|
|
|
|
throw AttrPathNotFound("list index %1% in selection path '%2%' is out of range", *attrIndex, attrPath);
|
2010-04-07 18:47:06 +03:00
|
|
|
|
2021-01-08 13:22:21 +02:00
|
|
|
v = v->listElems()[*attrIndex];
|
2020-02-07 15:08:24 +02:00
|
|
|
pos = noPos;
|
2006-07-26 18:05:15 +03:00
|
|
|
}
|
2013-09-02 17:29:15 +03:00
|
|
|
|
2006-07-26 18:05:15 +03:00
|
|
|
}
|
2013-09-03 16:17:51 +03:00
|
|
|
|
2020-02-07 15:08:24 +02:00
|
|
|
return {v, pos};
|
2006-07-26 18:05:15 +03:00
|
|
|
}
|
2006-09-05 00:06:23 +03:00
|
|
|
|
2013-09-02 17:29:15 +03:00
|
|
|
|
2021-07-19 19:07:17 +03:00
|
|
|
Pos findPackageFilename(EvalState & state, Value & v, std::string what)
|
2019-10-23 18:21:10 +03:00
|
|
|
{
|
|
|
|
Value * v2;
|
|
|
|
try {
|
|
|
|
auto dummyArgs = state.allocBindings(0);
|
2020-02-07 15:08:24 +02:00
|
|
|
v2 = findAlongAttrPath(state, "meta.position", *dummyArgs, v).first;
|
2019-10-23 18:21:10 +03:00
|
|
|
} catch (Error &) {
|
2020-02-07 15:22:01 +02:00
|
|
|
throw NoPositionInfo("package '%s' has no source location information", what);
|
2019-10-23 18:21:10 +03:00
|
|
|
}
|
|
|
|
|
2019-10-28 22:40:02 +02:00
|
|
|
// FIXME: is it possible to extract the Pos object instead of doing this
|
|
|
|
// toString + parsing?
|
2019-10-23 18:21:10 +03:00
|
|
|
auto pos = state.forceString(*v2);
|
|
|
|
|
|
|
|
auto colon = pos.rfind(':');
|
|
|
|
if (colon == std::string::npos)
|
2021-06-30 00:28:43 +03:00
|
|
|
throw ParseError("cannot parse meta.position attribute '%s'", pos);
|
2019-10-23 18:21:10 +03:00
|
|
|
|
|
|
|
std::string filename(pos, 0, colon);
|
2019-10-28 22:22:38 +02:00
|
|
|
unsigned int lineno;
|
2019-10-23 18:21:10 +03:00
|
|
|
try {
|
|
|
|
lineno = std::stoi(std::string(pos, colon + 1));
|
|
|
|
} catch (std::invalid_argument & e) {
|
2021-06-30 00:28:43 +03:00
|
|
|
throw ParseError("cannot parse line number '%s'", pos);
|
2019-10-23 18:21:10 +03:00
|
|
|
}
|
|
|
|
|
2019-10-28 22:22:38 +02:00
|
|
|
Symbol file = state.symbols.create(filename);
|
|
|
|
|
2020-05-21 07:18:26 +03:00
|
|
|
return { foFile, file, lineno, 0 };
|
2019-10-23 18:21:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|