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 == "") {
|
2006-05-04 12:21:08 +00:00
|
|
|
Expr a = attrs->get(toATerm("drvPath"));
|
2006-03-10 16:20:42 +00:00
|
|
|
(string &) drvPath = a ? evalPath(state, a) : "";
|
|
|
|
}
|
|
|
|
return drvPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string DrvInfo::queryOutPath(EvalState & state) const
|
|
|
|
{
|
|
|
|
if (outPath == "") {
|
2006-05-04 12:21:08 +00:00
|
|
|
Expr a = attrs->get(toATerm("outPath"));
|
2006-07-19 15:36:15 +00:00
|
|
|
if (!a) throw TypeError("output path missing");
|
2006-03-10 16:20:42 +00:00
|
|
|
(string &) outPath = evalPath(state, a);
|
|
|
|
}
|
|
|
|
return outPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MetaInfo DrvInfo::queryMetaInfo(EvalState & state) const
|
|
|
|
{
|
|
|
|
MetaInfo meta;
|
|
|
|
|
2006-05-04 12:21:08 +00:00
|
|
|
Expr a = attrs->get(toATerm("meta"));
|
2006-03-10 16:20:42 +00:00
|
|
|
if (!a) return meta; /* fine, empty meta information */
|
|
|
|
|
2006-05-04 12:21:08 +00:00
|
|
|
ATermMap attrs2(16); /* !!! */
|
2006-03-10 16:20:42 +00:00
|
|
|
queryAllAttrs(evalExpr(state, a), attrs2);
|
|
|
|
|
2006-05-04 12:21:08 +00:00
|
|
|
for (ATermMap::const_iterator i = attrs2.begin(); i != attrs2.end(); ++i) {
|
|
|
|
ATerm s = coerceToString(evalExpr(state, i->value));
|
2006-03-10 16:20:42 +00:00
|
|
|
if (s)
|
2006-05-04 12:21:08 +00:00
|
|
|
meta[aterm2String(i->key)] = aterm2String(s);
|
2006-03-10 16:20:42 +00:00
|
|
|
/* 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,
|
2006-07-26 15:05:15 +00:00
|
|
|
const string & attrPath, 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;
|
|
|
|
|
2006-05-04 12:21:08 +00:00
|
|
|
shared_ptr<ATermMap> attrs(new ATermMap(32)); /* !!! */
|
2006-05-02 17:12:03 +00:00
|
|
|
queryAllAttrs(e, *attrs, false);
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2006-05-04 12:21:08 +00:00
|
|
|
Expr a = attrs->get(toATerm("type"));
|
2006-03-08 16:03:58 +00:00
|
|
|
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-05-04 12:21:08 +00:00
|
|
|
a = attrs->get(toATerm("name"));
|
2006-05-30 11:31:33 +00:00
|
|
|
/* !!! We really would like to have a decent back trace here. */
|
2006-07-19 15:36:15 +00:00
|
|
|
if (!a) throw TypeError("derivation name missing");
|
2006-03-08 16:03:58 +00:00
|
|
|
drv.name = evalString(state, a);
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2006-05-04 12:21:08 +00:00
|
|
|
a = attrs->get(toATerm("system"));
|
2006-03-08 16:03:58 +00:00
|
|
|
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-07-26 15:05:15 +00:00
|
|
|
drv.attrPath = attrPath;
|
2006-07-25 16:40:38 +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-07-26 15:05:15 +00:00
|
|
|
getDerivation(state, e, "", drvs, doneExprs);
|
2006-03-08 16:03:58 +00:00
|
|
|
if (drvs.size() != 1) return false;
|
|
|
|
drv = drvs.front();
|
|
|
|
return true;
|
2006-02-08 16:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-25 16:40:38 +00:00
|
|
|
static string addToPath(const string & s1, const string & s2)
|
|
|
|
{
|
|
|
|
return s1.empty() ? s2 : s1 + "." + s2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-08 16:15:07 +00:00
|
|
|
static void getDerivations(EvalState & state, Expr e,
|
2006-07-26 15:05:15 +00:00
|
|
|
const string & pathPrefix, DrvInfos & drvs, Exprs & doneExprs)
|
2006-02-08 13:21:16 +00:00
|
|
|
{
|
2006-07-26 15:05:15 +00:00
|
|
|
e = evalExpr(state, autoCallFunction(evalExpr(state, e)));
|
2006-02-10 17:25:59 +00:00
|
|
|
|
|
|
|
/* Process the expression. */
|
2006-02-08 13:21:16 +00:00
|
|
|
ATermList es;
|
|
|
|
DrvInfo drv;
|
|
|
|
|
2006-07-26 15:05:15 +00:00
|
|
|
if (!getDerivation(state, e, pathPrefix, drvs, doneExprs))
|
2006-02-08 15:22:30 +00:00
|
|
|
return;
|
2006-03-08 16:03:58 +00:00
|
|
|
|
2006-02-08 15:22:30 +00:00
|
|
|
if (matchAttrs(e, es)) {
|
2006-05-04 12:21:08 +00:00
|
|
|
ATermMap drvMap(ATgetLength(es));
|
2006-02-08 13:21:16 +00:00
|
|
|
queryAllAttrs(e, drvMap);
|
2006-07-26 15:05:15 +00:00
|
|
|
|
|
|
|
for (ATermMap::const_iterator i = drvMap.begin(); i != drvMap.end(); ++i) {
|
|
|
|
startNest(nest, lvlDebug,
|
|
|
|
format("evaluating attribute `%1%'") % aterm2String(i->key));
|
|
|
|
string pathPrefix2 = addToPath(pathPrefix, aterm2String(i->key));
|
|
|
|
if (getDerivation(state, i->value, pathPrefix2, drvs, doneExprs)) {
|
|
|
|
/* If the value of this attribute is itself an
|
|
|
|
attribute set, should we recurse into it? => Only
|
|
|
|
if it has a `recurseForDerivations = true'
|
|
|
|
attribute. */
|
|
|
|
ATermList es;
|
|
|
|
Expr e = evalExpr(state, i->value);
|
|
|
|
if (matchAttrs(e, es)) {
|
|
|
|
ATermMap attrs(ATgetLength(es));
|
|
|
|
queryAllAttrs(e, attrs, false);
|
|
|
|
Expr e2 = attrs.get(toATerm("recurseForDerivations"));
|
|
|
|
if (e2 && evalBool(state, e2))
|
|
|
|
getDerivations(state, e, pathPrefix2, drvs, doneExprs);
|
2006-03-23 16:43:07 +00:00
|
|
|
}
|
2006-02-10 17:25:59 +00:00
|
|
|
}
|
2006-02-08 13:21:16 +00:00
|
|
|
}
|
2006-07-26 15:05:15 +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-07-26 15:05:15 +00:00
|
|
|
int n = 0;
|
|
|
|
for (ATermIterator i(es); i; ++i, ++n) {
|
2006-03-08 16:03:58 +00:00
|
|
|
startNest(nest, lvlDebug,
|
|
|
|
format("evaluating list element"));
|
2006-07-26 15:05:15 +00:00
|
|
|
string pathPrefix2 = addToPath(pathPrefix, (format("%1%") % n).str());
|
|
|
|
if (getDerivation(state, *i, pathPrefix2, drvs, doneExprs))
|
|
|
|
getDerivations(state, *i, pathPrefix2, drvs, doneExprs);
|
2006-02-08 15:22:30 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2006-02-08 13:21:16 +00:00
|
|
|
|
2006-07-19 15:36:15 +00:00
|
|
|
throw TypeError("expression does not evaluate to a derivation (or a set or list of those)");
|
2006-02-08 15:22:30 +00:00
|
|
|
}
|
2006-02-08 16:15:07 +00:00
|
|
|
|
|
|
|
|
2006-07-26 15:05:15 +00:00
|
|
|
void getDerivations(EvalState & state, Expr e, const string & pathPrefix,
|
|
|
|
DrvInfos & drvs)
|
2006-02-08 16:15:07 +00:00
|
|
|
{
|
|
|
|
Exprs doneExprs;
|
2006-07-26 15:05:15 +00:00
|
|
|
getDerivations(state, e, pathPrefix, drvs, doneExprs);
|
2006-02-08 16:15:07 +00:00
|
|
|
}
|