2006-02-08 15:21:16 +02:00
|
|
|
#include "get-drvs.hh"
|
|
|
|
#include "nixexpr-ast.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
2006-02-08 15:21:16 +02:00
|
|
|
|
|
|
|
|
2006-03-10 18:20:42 +02:00
|
|
|
string DrvInfo::queryDrvPath(EvalState & state) const
|
|
|
|
{
|
|
|
|
if (drvPath == "") {
|
2006-05-04 15:21:08 +03:00
|
|
|
Expr a = attrs->get(toATerm("drvPath"));
|
2006-10-17 17:13:15 +03:00
|
|
|
|
|
|
|
/* Backwards compatibility hack with user environments made by
|
|
|
|
Nix <= 0.10: these contain illegal Path("") expressions. */
|
|
|
|
ATerm t;
|
|
|
|
if (a && matchPath(evalExpr(state, a), t))
|
|
|
|
return aterm2String(t);
|
|
|
|
|
2006-10-16 18:55:34 +03:00
|
|
|
PathSet context;
|
|
|
|
(string &) drvPath = a ? coerceToPath(state, a, context) : "";
|
2006-03-10 18:20:42 +02:00
|
|
|
}
|
|
|
|
return drvPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string DrvInfo::queryOutPath(EvalState & state) const
|
|
|
|
{
|
|
|
|
if (outPath == "") {
|
2006-05-04 15:21:08 +03:00
|
|
|
Expr a = attrs->get(toATerm("outPath"));
|
2006-07-19 18:36:15 +03:00
|
|
|
if (!a) throw TypeError("output path missing");
|
2006-10-16 18:55:34 +03:00
|
|
|
PathSet context;
|
|
|
|
(string &) outPath = coerceToPath(state, a, context);
|
2006-03-10 18:20:42 +02:00
|
|
|
}
|
|
|
|
return outPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MetaInfo DrvInfo::queryMetaInfo(EvalState & state) const
|
|
|
|
{
|
|
|
|
MetaInfo meta;
|
|
|
|
|
2006-05-04 15:21:08 +03:00
|
|
|
Expr a = attrs->get(toATerm("meta"));
|
2006-03-10 18:20:42 +02:00
|
|
|
if (!a) return meta; /* fine, empty meta information */
|
|
|
|
|
2007-01-13 16:21:49 +02:00
|
|
|
ATermMap attrs2;
|
2006-03-10 18:20:42 +02:00
|
|
|
queryAllAttrs(evalExpr(state, a), attrs2);
|
|
|
|
|
2006-05-04 15:21:08 +03:00
|
|
|
for (ATermMap::const_iterator i = attrs2.begin(); i != attrs2.end(); ++i) {
|
2006-10-16 18:55:34 +03:00
|
|
|
Expr e = evalExpr(state, i->value);
|
|
|
|
string s;
|
|
|
|
PathSet context;
|
|
|
|
if (matchStr(e, s, context))
|
|
|
|
meta[aterm2String(i->key)] = s;
|
2006-03-10 18:20:42 +02:00
|
|
|
/* For future compatibility, ignore attribute values that are
|
|
|
|
not strings. */
|
|
|
|
}
|
|
|
|
|
|
|
|
return meta;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-01 23:33:18 +03:00
|
|
|
string DrvInfo::queryMetaInfo(EvalState & state, const string & name) const
|
|
|
|
{
|
|
|
|
/* !!! evaluates all meta attributes => inefficient */
|
|
|
|
MetaInfo meta = queryMetaInfo(state);
|
|
|
|
MetaInfo::iterator i = meta.find(name);
|
|
|
|
return i == meta.end() ? "" : i->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-02 03:52:42 +02:00
|
|
|
void DrvInfo::setMetaInfo(const MetaInfo & meta)
|
|
|
|
{
|
|
|
|
ATermMap metaAttrs;
|
|
|
|
for (MetaInfo::const_iterator i = meta.begin(); i != meta.end(); ++i)
|
|
|
|
metaAttrs.set(toATerm(i->first),
|
|
|
|
makeAttrRHS(makeStr(i->second), makeNoPos()));
|
|
|
|
attrs->set(toATerm("meta"), makeAttrs(metaAttrs));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-01 12:56:56 +03: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 18:15:07 +02:00
|
|
|
typedef set<Expr> Exprs;
|
|
|
|
|
|
|
|
|
2006-03-08 18:03:58 +02: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 18:15:07 +02:00
|
|
|
static bool getDerivation(EvalState & state, Expr e,
|
2006-07-26 18:05:15 +03:00
|
|
|
const string & attrPath, DrvInfos & drvs, Exprs & doneExprs)
|
2006-02-08 15:21:16 +02:00
|
|
|
{
|
2006-03-08 18:03:58 +02:00
|
|
|
try {
|
|
|
|
|
|
|
|
ATermList es;
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
if (!matchAttrs(e, es)) return true;
|
|
|
|
|
2007-01-13 16:21:49 +02:00
|
|
|
boost::shared_ptr<ATermMap> attrs(new ATermMap());
|
2006-05-02 20:12:03 +03:00
|
|
|
queryAllAttrs(e, *attrs, false);
|
2008-08-25 17:15:56 +03:00
|
|
|
|
2006-05-04 15:21:08 +03:00
|
|
|
Expr a = attrs->get(toATerm("type"));
|
2006-10-16 18:55:34 +03:00
|
|
|
if (!a || evalStringNoCtx(state, a) != "derivation") return true;
|
2006-02-08 15:21:16 +02:00
|
|
|
|
2006-03-08 18:03:58 +02: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 18:15:07 +02:00
|
|
|
|
2006-03-08 18:03:58 +02:00
|
|
|
DrvInfo drv;
|
2006-02-08 18:15:07 +02:00
|
|
|
|
2006-05-04 15:21:08 +03:00
|
|
|
a = attrs->get(toATerm("name"));
|
2006-05-30 14:31:33 +03:00
|
|
|
/* !!! We really would like to have a decent back trace here. */
|
2006-07-19 18:36:15 +03:00
|
|
|
if (!a) throw TypeError("derivation name missing");
|
2006-10-16 18:55:34 +03:00
|
|
|
drv.name = evalStringNoCtx(state, a);
|
2006-02-08 15:21:16 +02:00
|
|
|
|
2006-05-04 15:21:08 +03:00
|
|
|
a = attrs->get(toATerm("system"));
|
2006-03-08 18:03:58 +02:00
|
|
|
if (!a)
|
|
|
|
drv.system = "unknown";
|
|
|
|
else
|
2006-10-16 18:55:34 +03:00
|
|
|
drv.system = evalStringNoCtx(state, a);
|
2006-02-08 15:21:16 +02:00
|
|
|
|
2006-03-08 18:03:58 +02:00
|
|
|
drv.attrs = attrs;
|
2006-02-08 15:21:16 +02:00
|
|
|
|
2006-07-26 18:05:15 +03:00
|
|
|
drv.attrPath = attrPath;
|
2006-07-25 19:40:38 +03:00
|
|
|
|
2006-03-08 18:03:58 +02:00
|
|
|
drvs.push_back(drv);
|
|
|
|
return false;
|
|
|
|
|
|
|
|
} catch (AssertionError & e) {
|
|
|
|
return false;
|
|
|
|
}
|
2006-02-08 15:21:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-08 18:15:07 +02:00
|
|
|
bool getDerivation(EvalState & state, Expr e, DrvInfo & drv)
|
|
|
|
{
|
|
|
|
Exprs doneExprs;
|
|
|
|
DrvInfos drvs;
|
2006-07-26 18:05:15 +03:00
|
|
|
getDerivation(state, e, "", drvs, doneExprs);
|
2006-03-08 18:03:58 +02:00
|
|
|
if (drvs.size() != 1) return false;
|
|
|
|
drv = drvs.front();
|
|
|
|
return true;
|
2006-02-08 18:15:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-25 19:40:38 +03:00
|
|
|
static string addToPath(const string & s1, const string & s2)
|
|
|
|
{
|
|
|
|
return s1.empty() ? s2 : s1 + "." + s2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-08 18:15:07 +02:00
|
|
|
static void getDerivations(EvalState & state, Expr e,
|
2006-07-28 19:03:28 +03:00
|
|
|
const string & pathPrefix, const ATermMap & autoArgs,
|
|
|
|
DrvInfos & drvs, Exprs & doneExprs)
|
2006-02-08 15:21:16 +02:00
|
|
|
{
|
2006-07-28 19:03:28 +03:00
|
|
|
e = evalExpr(state, autoCallFunction(evalExpr(state, e), autoArgs));
|
2006-02-10 19:25:59 +02:00
|
|
|
|
|
|
|
/* Process the expression. */
|
2006-02-08 15:21:16 +02:00
|
|
|
ATermList es;
|
|
|
|
DrvInfo drv;
|
|
|
|
|
2006-07-26 18:05:15 +03:00
|
|
|
if (!getDerivation(state, e, pathPrefix, drvs, doneExprs))
|
2006-02-08 17:22:30 +02:00
|
|
|
return;
|
2006-03-08 18:03:58 +02:00
|
|
|
|
2006-02-08 17:22:30 +02:00
|
|
|
if (matchAttrs(e, es)) {
|
2006-05-04 15:21:08 +03:00
|
|
|
ATermMap drvMap(ATgetLength(es));
|
2006-02-08 15:21:16 +02:00
|
|
|
queryAllAttrs(e, drvMap);
|
2007-05-02 02:16:38 +03:00
|
|
|
|
2007-09-17 19:08:24 +03:00
|
|
|
/* !!! undocumented hackery to support combining channels in
|
|
|
|
nix-env.cc. */
|
2008-08-25 17:15:56 +03:00
|
|
|
bool combineChannels = drvMap.get(toATerm("_combineChannels"));
|
|
|
|
|
2006-07-26 18:05:15 +03: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));
|
2008-08-25 17:15:56 +03:00
|
|
|
if (combineChannels)
|
|
|
|
getDerivations(state, i->value, pathPrefix2, autoArgs, drvs, doneExprs);
|
2007-05-02 02:16:38 +03:00
|
|
|
else if (getDerivation(state, i->value, pathPrefix2, drvs, doneExprs)) {
|
2006-07-26 18:05:15 +03:00
|
|
|
/* 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;
|
2008-08-25 17:15:56 +03:00
|
|
|
Expr e = evalExpr(state, i->value), e2;
|
2006-07-26 18:05:15 +03:00
|
|
|
if (matchAttrs(e, es)) {
|
|
|
|
ATermMap attrs(ATgetLength(es));
|
|
|
|
queryAllAttrs(e, attrs, false);
|
2007-05-02 02:16:38 +03:00
|
|
|
if (((e2 = attrs.get(toATerm("recurseForDerivations")))
|
|
|
|
&& evalBool(state, e2)))
|
2006-07-28 19:03:28 +03:00
|
|
|
getDerivations(state, e, pathPrefix2, autoArgs, drvs, doneExprs);
|
2006-03-23 18:43:07 +02:00
|
|
|
}
|
2006-02-10 19:25:59 +02:00
|
|
|
}
|
2006-02-08 15:21:16 +02:00
|
|
|
}
|
2006-07-26 18:05:15 +03:00
|
|
|
|
2006-02-08 17:22:30 +02:00
|
|
|
return;
|
2006-02-08 15:21:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-08 17:22:30 +02:00
|
|
|
if (matchList(e, es)) {
|
2006-07-26 18:05:15 +03:00
|
|
|
int n = 0;
|
|
|
|
for (ATermIterator i(es); i; ++i, ++n) {
|
2006-03-08 18:03:58 +02:00
|
|
|
startNest(nest, lvlDebug,
|
|
|
|
format("evaluating list element"));
|
2006-07-26 18:05:15 +03:00
|
|
|
string pathPrefix2 = addToPath(pathPrefix, (format("%1%") % n).str());
|
|
|
|
if (getDerivation(state, *i, pathPrefix2, drvs, doneExprs))
|
2006-07-28 19:03:28 +03:00
|
|
|
getDerivations(state, *i, pathPrefix2, autoArgs, drvs, doneExprs);
|
2006-02-08 17:22:30 +02:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2006-02-08 15:21:16 +02:00
|
|
|
|
2006-07-19 18:36:15 +03:00
|
|
|
throw TypeError("expression does not evaluate to a derivation (or a set or list of those)");
|
2006-02-08 17:22:30 +02:00
|
|
|
}
|
2006-02-08 18:15:07 +02:00
|
|
|
|
|
|
|
|
2006-07-26 18:05:15 +03:00
|
|
|
void getDerivations(EvalState & state, Expr e, const string & pathPrefix,
|
2006-07-28 19:03:28 +03:00
|
|
|
const ATermMap & autoArgs, DrvInfos & drvs)
|
2006-02-08 18:15:07 +02:00
|
|
|
{
|
|
|
|
Exprs doneExprs;
|
2006-07-28 19:03:28 +03:00
|
|
|
getDerivations(state, e, pathPrefix, autoArgs, drvs, doneExprs);
|
2006-02-08 18:15:07 +02:00
|
|
|
}
|
2006-09-05 00:06:23 +03:00
|
|
|
|
|
|
|
|
|
|
|
}
|