2003-10-31 17:09:31 +00:00
|
|
|
#include "primops.hh"
|
|
|
|
#include "normalise.hh"
|
|
|
|
#include "globals.hh"
|
|
|
|
|
|
|
|
|
|
|
|
Expr primImport(EvalState & state, Expr arg)
|
|
|
|
{
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
|
|
|
string path;
|
|
|
|
if (!(atMatch(m, arg) >> "Path" >> path))
|
2003-10-31 17:09:31 +00:00
|
|
|
throw badTerm("path expected", arg);
|
|
|
|
return evalFile(state, path);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-18 11:22:29 +00:00
|
|
|
static PathSet storeExprRootsCached(EvalState & state, const Path & nePath)
|
2003-10-31 17:09:31 +00:00
|
|
|
{
|
|
|
|
DrvPaths::iterator i = state.drvPaths.find(nePath);
|
|
|
|
if (i != state.drvPaths.end())
|
|
|
|
return i->second;
|
|
|
|
else {
|
2003-11-18 11:22:29 +00:00
|
|
|
PathSet paths = storeExprRoots(nePath);
|
2003-10-31 17:09:31 +00:00
|
|
|
state.drvPaths[nePath] = paths;
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-18 11:22:29 +00:00
|
|
|
static Hash hashDerivation(EvalState & state, StoreExpr ne)
|
2003-10-31 17:09:31 +00:00
|
|
|
{
|
2003-11-18 11:22:29 +00:00
|
|
|
if (ne.type == StoreExpr::neDerivation) {
|
2003-10-31 17:09:31 +00:00
|
|
|
PathSet inputs2;
|
|
|
|
for (PathSet::iterator i = ne.derivation.inputs.begin();
|
|
|
|
i != ne.derivation.inputs.end(); i++)
|
|
|
|
{
|
|
|
|
DrvHashes::iterator j = state.drvHashes.find(*i);
|
|
|
|
if (j == state.drvHashes.end())
|
|
|
|
throw Error(format("don't know expression `%1%'") % (string) *i);
|
|
|
|
inputs2.insert(j->second);
|
|
|
|
}
|
|
|
|
ne.derivation.inputs = inputs2;
|
|
|
|
}
|
2003-11-18 11:22:29 +00:00
|
|
|
return hashTerm(unparseStoreExpr(ne));
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Path copyAtom(EvalState & state, const Path & srcPath)
|
|
|
|
{
|
|
|
|
/* !!! should be cached */
|
|
|
|
Path dstPath(addToStore(srcPath));
|
|
|
|
|
|
|
|
ClosureElem elem;
|
2003-11-18 11:22:29 +00:00
|
|
|
StoreExpr ne;
|
|
|
|
ne.type = StoreExpr::neClosure;
|
2003-10-31 17:09:31 +00:00
|
|
|
ne.closure.roots.insert(dstPath);
|
|
|
|
ne.closure.elems[dstPath] = elem;
|
|
|
|
|
|
|
|
Hash drvHash = hashDerivation(state, ne);
|
2003-11-18 11:22:29 +00:00
|
|
|
Path drvPath = writeTerm(unparseStoreExpr(ne), "");
|
2003-10-31 17:09:31 +00:00
|
|
|
state.drvHashes[drvPath] = drvHash;
|
|
|
|
|
2003-11-09 10:35:45 +00:00
|
|
|
printMsg(lvlChatty, format("copied `%1%' -> closure `%2%'")
|
2003-10-31 17:09:31 +00:00
|
|
|
% srcPath % drvPath);
|
|
|
|
return drvPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static string addInput(EvalState & state,
|
2003-11-18 11:22:29 +00:00
|
|
|
Path & nePath, StoreExpr & ne)
|
2003-10-31 17:09:31 +00:00
|
|
|
{
|
2003-11-18 11:22:29 +00:00
|
|
|
PathSet paths = storeExprRootsCached(state, nePath);
|
2003-10-31 17:09:31 +00:00
|
|
|
if (paths.size() != 1) abort();
|
|
|
|
Path path = *(paths.begin());
|
|
|
|
ne.derivation.inputs.insert(nePath);
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-18 11:22:29 +00:00
|
|
|
static string processBinding(EvalState & state, Expr e, StoreExpr & ne)
|
2003-10-31 17:09:31 +00:00
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
|
|
|
string s;
|
2003-10-31 17:09:31 +00:00
|
|
|
ATermList es;
|
|
|
|
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Str" >> s) return s;
|
|
|
|
if (atMatch(m, e) >> "Uri" >> s) return s;
|
|
|
|
if (atMatch(m, e) >> "Bool" >> "True") return "1";
|
|
|
|
if (atMatch(m, e) >> "Bool" >> "False") return "";
|
2003-10-31 17:09:31 +00:00
|
|
|
|
2003-11-25 12:05:48 +00:00
|
|
|
int n;
|
|
|
|
if (atMatch(m, e) >> "Int" >> n) {
|
|
|
|
ostringstream st;
|
|
|
|
st << n;
|
|
|
|
return st.str();
|
|
|
|
}
|
|
|
|
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Attrs" >> es) {
|
2003-10-31 17:09:31 +00:00
|
|
|
Expr a = queryAttr(e, "type");
|
|
|
|
if (a && evalString(state, a) == "derivation") {
|
|
|
|
a = queryAttr(e, "drvPath");
|
2003-11-21 14:23:18 +00:00
|
|
|
if (!a) throw badTerm("derivation name missing", e);
|
|
|
|
Path drvPath = evalPath(state, a);
|
|
|
|
|
|
|
|
a = queryAttr(e, "drvHash");
|
|
|
|
if (!a) throw badTerm("derivation hash missing", e);
|
|
|
|
Hash drvHash = parseHash(evalString(state, a));
|
|
|
|
|
|
|
|
state.drvHashes[drvPath] = drvHash;
|
|
|
|
|
|
|
|
return addInput(state, drvPath, ne);
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Path" >> s) {
|
2003-10-31 17:09:31 +00:00
|
|
|
Path drvPath = copyAtom(state, s);
|
|
|
|
return addInput(state, drvPath, ne);
|
|
|
|
}
|
|
|
|
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "List" >> es) {
|
2003-10-31 17:09:31 +00:00
|
|
|
string s;
|
|
|
|
bool first = true;
|
2003-11-16 18:31:29 +00:00
|
|
|
for (ATermIterator i(es); i; ++i) {
|
2003-11-09 10:35:45 +00:00
|
|
|
startNest(nest, lvlVomit, format("processing list element"));
|
2003-10-31 17:09:31 +00:00
|
|
|
if (!first) s = s + " "; else first = false;
|
2003-11-16 18:31:29 +00:00
|
|
|
s += processBinding(state, evalExpr(state, *i), ne);
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
2003-11-06 15:24:31 +00:00
|
|
|
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Null") return "";
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
throw badTerm("invalid derivation binding", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Expr primDerivation(EvalState & state, Expr args)
|
|
|
|
{
|
2003-11-09 10:35:45 +00:00
|
|
|
startNest(nest, lvlVomit, "evaluating derivation");
|
2003-10-31 17:09:31 +00:00
|
|
|
|
2003-11-03 20:30:40 +00:00
|
|
|
ATermMap attrs;
|
2003-10-31 17:09:31 +00:00
|
|
|
args = evalExpr(state, args);
|
|
|
|
queryAllAttrs(args, attrs);
|
|
|
|
|
|
|
|
/* Build the derivation expression by processing the attributes. */
|
2003-11-18 11:22:29 +00:00
|
|
|
StoreExpr ne;
|
|
|
|
ne.type = StoreExpr::neDerivation;
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
string drvName;
|
|
|
|
Path outPath;
|
|
|
|
Hash outHash;
|
|
|
|
bool outHashGiven = false;
|
|
|
|
|
2003-11-16 18:31:29 +00:00
|
|
|
for (ATermIterator i(attrs.keys()); i; ++i) {
|
|
|
|
string key = aterm2String(*i);
|
2003-11-03 20:30:40 +00:00
|
|
|
Expr value = attrs.get(key);
|
2003-11-09 10:35:45 +00:00
|
|
|
startNest(nest, lvlVomit, format("processing attribute `%1%'") % key);
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
/* The `args' attribute is special: it supplies the
|
|
|
|
command-line arguments to the builder. */
|
|
|
|
if (key == "args") {
|
2003-11-16 17:46:31 +00:00
|
|
|
throw Error("args not implemented");
|
|
|
|
#if 0
|
2003-10-31 17:09:31 +00:00
|
|
|
ATermList args;
|
2003-11-16 17:46:31 +00:00
|
|
|
if (!(ATmatch(value, "[<list>]", &args))
|
2003-10-31 17:09:31 +00:00
|
|
|
throw badTerm("list expected", value);
|
|
|
|
while (!ATisEmpty(args)) {
|
|
|
|
Expr arg = evalExpr(state, ATgetFirst(args));
|
|
|
|
ne.derivation.args.push_back(processBinding(state, arg, ne));
|
|
|
|
args = ATgetNext(args);
|
|
|
|
}
|
2003-11-16 17:46:31 +00:00
|
|
|
#endif
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* All other attributes are passed to the builder through the
|
|
|
|
environment. */
|
|
|
|
else {
|
|
|
|
string s = processBinding(state, value, ne);
|
|
|
|
ne.derivation.env[key] = s;
|
|
|
|
if (key == "builder") ne.derivation.builder = s;
|
|
|
|
else if (key == "system") ne.derivation.platform = s;
|
|
|
|
else if (key == "name") drvName = s;
|
|
|
|
else if (key == "outPath") outPath = s;
|
|
|
|
else if (key == "id") {
|
|
|
|
outHash = parseHash(s);
|
|
|
|
outHashGiven = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do we have all required attributes? */
|
|
|
|
if (ne.derivation.builder == "")
|
|
|
|
throw badTerm("required attribute `builder' missing", args);
|
|
|
|
if (ne.derivation.platform == "")
|
|
|
|
throw badTerm("required attribute `system' missing", args);
|
|
|
|
if (drvName == "")
|
|
|
|
throw badTerm("required attribute `name' missing", args);
|
|
|
|
|
|
|
|
/* Determine the output path. */
|
|
|
|
if (!outHashGiven) outHash = hashDerivation(state, ne);
|
|
|
|
if (outPath == "")
|
|
|
|
/* Hash the Nix expression with no outputs to produce a
|
|
|
|
unique but deterministic path name for this derivation. */
|
|
|
|
outPath = canonPath(nixStore + "/" +
|
|
|
|
((string) outHash).c_str() + "-" + drvName);
|
|
|
|
ne.derivation.env["out"] = outPath;
|
|
|
|
ne.derivation.outputs.insert(outPath);
|
|
|
|
|
|
|
|
/* Write the resulting term into the Nix store directory. */
|
|
|
|
Hash drvHash = outHashGiven
|
|
|
|
? hashString((string) outHash + outPath)
|
|
|
|
: hashDerivation(state, ne);
|
2003-11-18 11:22:29 +00:00
|
|
|
Path drvPath = writeTerm(unparseStoreExpr(ne), "-d-" + drvName);
|
2003-10-31 17:09:31 +00:00
|
|
|
|
2003-11-09 10:35:45 +00:00
|
|
|
printMsg(lvlChatty, format("instantiated `%1%' -> `%2%'")
|
2003-10-31 17:09:31 +00:00
|
|
|
% drvName % drvPath);
|
|
|
|
|
2003-11-03 20:30:40 +00:00
|
|
|
attrs.set("outPath", ATmake("Path(<str>)", outPath.c_str()));
|
|
|
|
attrs.set("drvPath", ATmake("Path(<str>)", drvPath.c_str()));
|
2003-11-21 14:23:18 +00:00
|
|
|
attrs.set("drvHash", ATmake("Str(<str>)", ((string) drvHash).c_str()));
|
2003-11-03 20:30:40 +00:00
|
|
|
attrs.set("type", ATmake("Str(\"derivation\")"));
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
return makeAttrs(attrs);
|
|
|
|
}
|
2003-11-02 16:31:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
Expr primBaseNameOf(EvalState & state, Expr arg)
|
|
|
|
{
|
|
|
|
string s = evalString(state, arg);
|
|
|
|
return ATmake("Str(<str>)", baseNameOf(s).c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Expr primToString(EvalState & state, Expr arg)
|
|
|
|
{
|
|
|
|
arg = evalExpr(state, arg);
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
|
|
|
string s;
|
|
|
|
if (atMatch(m, arg) >> "Str" >> s ||
|
|
|
|
atMatch(m, arg) >> "Path" >> s ||
|
|
|
|
atMatch(m, arg) >> "Uri" >> s)
|
|
|
|
return ATmake("Str(<str>)", s.c_str());
|
2003-11-02 16:31:35 +00:00
|
|
|
else throw badTerm("cannot coerce to string", arg);
|
|
|
|
}
|
2003-11-05 16:27:40 +00:00
|
|
|
|
|
|
|
|
2003-11-06 14:41:49 +00:00
|
|
|
Expr primNull(EvalState & state)
|
2003-11-05 16:27:40 +00:00
|
|
|
{
|
|
|
|
return ATmake("Null");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Expr primIsNull(EvalState & state, Expr arg)
|
|
|
|
{
|
|
|
|
arg = evalExpr(state, arg);
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
|
|
|
return makeBool(atMatch(m, arg) >> "Null");
|
2003-11-05 16:27:40 +00:00
|
|
|
}
|