2006-02-08 13:21:16 +00:00
|
|
|
#include "get-drvs.hh"
|
|
|
|
#include "nixexpr-ast.hh"
|
|
|
|
|
|
|
|
|
2006-03-10 16:20:42 +00:00
|
|
|
string DrvInfo::queryDrvPath(EvalState & state) const
|
|
|
|
{
|
|
|
|
if (drvPath == "") {
|
|
|
|
Expr a = attrs.get("drvPath");
|
|
|
|
(string &) drvPath = a ? evalPath(state, a) : "";
|
|
|
|
}
|
|
|
|
return drvPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string DrvInfo::queryOutPath(EvalState & state) const
|
|
|
|
{
|
|
|
|
if (outPath == "") {
|
|
|
|
Expr a = attrs.get("outPath");
|
|
|
|
if (!a) throw Error("output path missing");
|
|
|
|
(string &) outPath = evalPath(state, a);
|
|
|
|
}
|
|
|
|
return outPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MetaInfo DrvInfo::queryMetaInfo(EvalState & state) const
|
|
|
|
{
|
|
|
|
MetaInfo meta;
|
|
|
|
|
|
|
|
Expr a = attrs.get("meta");
|
|
|
|
if (!a) return meta; /* fine, empty meta information */
|
|
|
|
|
|
|
|
ATermMap attrs2;
|
|
|
|
queryAllAttrs(evalExpr(state, a), attrs2);
|
|
|
|
|
|
|
|
for (ATermIterator i(attrs2.keys()); i; ++i) {
|
|
|
|
ATerm s = coerceToString(evalExpr(state, attrs2.get(*i)));
|
|
|
|
if (s)
|
|
|
|
meta[aterm2String(*i)] = aterm2String(s);
|
|
|
|
/* For future compatibility, ignore attribute values that are
|
|
|
|
not strings. */
|
|
|
|
}
|
|
|
|
|
|
|
|
return meta;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-01 09:56:56 +00:00
|
|
|
/* Cache for already evaluated derivations. Usually putting ATerms in
|
|
|
|
a STL container is unsafe (they're not scanning for GC roots), but
|
|
|
|
here it doesn't matter; everything in this set is reachable from
|
|
|
|
the stack as well. */
|
2006-02-08 16:15:07 +00:00
|
|
|
typedef set<Expr> Exprs;
|
|
|
|
|
|
|
|
|
2006-03-08 16:03:58 +00:00
|
|
|
/* Evaluate expression `e'. If it evaluates to an attribute set of
|
|
|
|
type `derivation', then put information about it in `drvs' (unless
|
|
|
|
it's already in `doneExprs'). The result boolean indicates whether
|
|
|
|
it makes sense for the caller to recursively search for derivations
|
|
|
|
in `e'. */
|
2006-02-08 16:15:07 +00:00
|
|
|
static bool getDerivation(EvalState & state, Expr e,
|
|
|
|
DrvInfos & drvs, Exprs & doneExprs)
|
2006-02-08 13:21:16 +00:00
|
|
|
{
|
2006-03-08 16:03:58 +00:00
|
|
|
try {
|
|
|
|
|
|
|
|
ATermList es;
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
if (!matchAttrs(e, es)) return true;
|
|
|
|
|
|
|
|
ATermMap attrs;
|
|
|
|
queryAllAttrs(e, attrs, false);
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2006-03-08 16:03:58 +00:00
|
|
|
Expr a = attrs.get("type");
|
|
|
|
if (!a || evalString(state, a) != "derivation") return true;
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2006-03-08 16:03:58 +00:00
|
|
|
/* Remove spurious duplicates (e.g., an attribute set like
|
|
|
|
`rec { x = derivation {...}; y = x;}'. */
|
|
|
|
if (doneExprs.find(e) != doneExprs.end()) return false;
|
|
|
|
doneExprs.insert(e);
|
2006-02-08 16:15:07 +00:00
|
|
|
|
2006-03-08 16:03:58 +00:00
|
|
|
DrvInfo drv;
|
2006-02-08 16:15:07 +00:00
|
|
|
|
2006-03-08 16:03:58 +00:00
|
|
|
a = attrs.get("name");
|
|
|
|
if (!a) throw badTerm("derivation name missing", e);
|
|
|
|
drv.name = evalString(state, a);
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2006-03-08 16:03:58 +00:00
|
|
|
a = attrs.get("system");
|
|
|
|
if (!a)
|
|
|
|
drv.system = "unknown";
|
|
|
|
else
|
|
|
|
drv.system = evalString(state, a);
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2006-03-08 16:03:58 +00:00
|
|
|
drv.attrs = attrs;
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2006-03-08 16:03:58 +00:00
|
|
|
drvs.push_back(drv);
|
|
|
|
return false;
|
|
|
|
|
|
|
|
} catch (AssertionError & e) {
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-08 13:21:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-08 16:15:07 +00:00
|
|
|
bool getDerivation(EvalState & state, Expr e, DrvInfo & drv)
|
|
|
|
{
|
|
|
|
Exprs doneExprs;
|
|
|
|
DrvInfos drvs;
|
2006-03-08 16:03:58 +00:00
|
|
|
getDerivation(state, e, drvs, doneExprs);
|
|
|
|
if (drvs.size() != 1) return false;
|
|
|
|
drv = drvs.front();
|
|
|
|
return true;
|
2006-02-08 16:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void getDerivations(EvalState & state, Expr e,
|
2006-02-10 17:25:59 +00:00
|
|
|
DrvInfos & drvs, Exprs & doneExprs, const string & attrPath)
|
2006-02-08 13:21:16 +00:00
|
|
|
{
|
2006-02-10 17:25:59 +00:00
|
|
|
/* Automatically call functions that have defaults for all
|
|
|
|
arguments. */
|
|
|
|
ATermList formals;
|
|
|
|
ATerm body, pos;
|
|
|
|
if (matchFunction(e, formals, body, pos)) {
|
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
|
|
|
Expr name, def;
|
|
|
|
if (matchNoDefFormal(*i, name))
|
|
|
|
throw Error(format("expression evaluates to a function with no-default arguments (`%1%')")
|
|
|
|
% aterm2String(name));
|
|
|
|
else if (!matchDefFormal(*i, name, def))
|
|
|
|
abort(); /* can't happen */
|
|
|
|
}
|
|
|
|
getDerivations(state,
|
|
|
|
makeCall(e, makeAttrs(ATermMap())),
|
|
|
|
drvs, doneExprs, attrPath);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Parse the start of attrPath. */
|
|
|
|
enum { apNone, apAttr, apIndex } apType;
|
|
|
|
string attrPathRest;
|
|
|
|
string attr;
|
|
|
|
int attrIndex;
|
|
|
|
Error attrError =
|
|
|
|
Error(format("attribute selection path `%1%' does not match expression") % attrPath);
|
|
|
|
|
|
|
|
if (attrPath.empty())
|
|
|
|
apType = apNone;
|
|
|
|
else {
|
|
|
|
string::size_type dot = attrPath.find(".");
|
|
|
|
if (dot == string::npos) {
|
|
|
|
attrPathRest = "";
|
|
|
|
attr = attrPath;
|
|
|
|
} else {
|
|
|
|
attrPathRest = string(attrPath, dot + 1);
|
|
|
|
attr = string(attrPath, 0, dot);
|
|
|
|
}
|
|
|
|
apType = apAttr;
|
|
|
|
if (string2Int(attr, attrIndex)) apType = apIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Process the expression. */
|
2006-02-08 13:21:16 +00:00
|
|
|
ATermList es;
|
|
|
|
DrvInfo drv;
|
|
|
|
|
2006-03-08 16:03:58 +00:00
|
|
|
if (!getDerivation(state, e, drvs, doneExprs)) {
|
2006-02-10 17:25:59 +00:00
|
|
|
if (apType != apNone) throw attrError;
|
2006-02-08 15:22:30 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2006-03-08 16:03:58 +00:00
|
|
|
e = evalExpr(state, e);
|
|
|
|
|
2006-02-08 15:22:30 +00:00
|
|
|
if (matchAttrs(e, es)) {
|
2006-02-10 17:25:59 +00:00
|
|
|
if (apType != apNone && apType != apAttr) throw attrError;
|
2006-02-08 13:21:16 +00:00
|
|
|
ATermMap drvMap;
|
|
|
|
queryAllAttrs(e, drvMap);
|
2006-02-10 17:25:59 +00:00
|
|
|
if (apType == apNone) {
|
|
|
|
for (ATermIterator i(drvMap.keys()); i; ++i) {
|
2006-03-08 16:03:58 +00:00
|
|
|
startNest(nest, lvlDebug,
|
|
|
|
format("evaluating attribute `%1%'") % aterm2String(*i));
|
2006-03-23 16:43:07 +00:00
|
|
|
if (getDerivation(state, drvMap.get(*i), drvs, doneExprs)) {
|
|
|
|
/* If the value of this attribute is itself an
|
2006-05-02 13:39:55 +00:00
|
|
|
attribute set, should we recurse into it?
|
2006-03-23 16:43:07 +00:00
|
|
|
=> Only if it has a `recurseForDerivations = true'
|
|
|
|
attribute. */
|
|
|
|
ATermList es;
|
|
|
|
Expr e = evalExpr(state, drvMap.get(*i));
|
|
|
|
if (matchAttrs(e, es)) {
|
|
|
|
ATermMap attrs;
|
|
|
|
queryAllAttrs(e, attrs, false);
|
|
|
|
if (attrs.get("recurseForDerivations") &&
|
|
|
|
evalBool(state, attrs.get("recurseForDerivations")))
|
|
|
|
getDerivations(state, e, drvs, doneExprs, attrPathRest);
|
|
|
|
}
|
|
|
|
}
|
2006-02-10 17:25:59 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Expr e2 = drvMap.get(attr);
|
|
|
|
if (!e2) throw Error(format("attribute `%1%' in selection path not found") % attr);
|
2006-03-08 16:03:58 +00:00
|
|
|
startNest(nest, lvlDebug,
|
|
|
|
format("evaluating attribute `%1%'") % attr);
|
2006-02-10 17:25:59 +00:00
|
|
|
getDerivation(state, e2, drvs, doneExprs);
|
|
|
|
if (!attrPath.empty())
|
|
|
|
getDerivations(state, e2, drvs, doneExprs, attrPathRest);
|
2006-02-08 13:21:16 +00:00
|
|
|
}
|
2006-02-08 15:22:30 +00:00
|
|
|
return;
|
2006-02-08 13:21:16 +00:00
|
|
|
}
|
|
|
|
|
2006-02-08 15:22:30 +00:00
|
|
|
if (matchList(e, es)) {
|
2006-02-10 17:25:59 +00:00
|
|
|
if (apType != apNone && apType != apIndex) throw attrError;
|
|
|
|
if (apType == apNone) {
|
|
|
|
for (ATermIterator i(es); i; ++i) {
|
2006-03-08 16:03:58 +00:00
|
|
|
startNest(nest, lvlDebug,
|
|
|
|
format("evaluating list element"));
|
2006-03-09 15:10:01 +00:00
|
|
|
if (getDerivation(state, *i, drvs, doneExprs))
|
2006-02-10 17:25:59 +00:00
|
|
|
getDerivations(state, *i, drvs, doneExprs, attrPathRest);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Expr e2 = ATelementAt(es, attrIndex);
|
|
|
|
if (!e2) throw Error(format("list index %1% in selection path not found") % attrIndex);
|
2006-03-08 16:03:58 +00:00
|
|
|
startNest(nest, lvlDebug,
|
|
|
|
format("evaluating list element"));
|
2006-03-09 15:10:01 +00:00
|
|
|
if (getDerivation(state, e2, drvs, doneExprs))
|
2006-02-10 17:25:59 +00:00
|
|
|
getDerivations(state, e2, drvs, doneExprs, attrPathRest);
|
2006-02-08 15:22:30 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2006-02-08 15:22:30 +00:00
|
|
|
throw Error("expression does not evaluate to a derivation (or a set or list of those)");
|
|
|
|
}
|
2006-02-08 16:15:07 +00:00
|
|
|
|
|
|
|
|
2006-02-10 17:25:59 +00:00
|
|
|
void getDerivations(EvalState & state, Expr e, DrvInfos & drvs,
|
|
|
|
const string & attrPath)
|
2006-02-08 16:15:07 +00:00
|
|
|
{
|
|
|
|
Exprs doneExprs;
|
2006-02-10 17:25:59 +00:00
|
|
|
getDerivations(state, e, drvs, doneExprs, attrPath);
|
2006-02-08 16:15:07 +00:00
|
|
|
}
|