2003-10-31 17:09:31 +00:00
|
|
|
#include "normalise.hh"
|
2004-08-04 10:59:20 +00:00
|
|
|
#include "eval.hh"
|
2003-10-31 17:09:31 +00:00
|
|
|
#include "globals.hh"
|
|
|
|
|
|
|
|
|
2004-08-04 10:59:20 +00:00
|
|
|
/* Load and evaluate an expression from path specified by the
|
|
|
|
argument. */
|
|
|
|
static Expr primImport(EvalState & state, const ATermVector & args)
|
2003-10-31 17:09:31 +00:00
|
|
|
{
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
|
|
|
string path;
|
2004-08-04 10:59:20 +00:00
|
|
|
if (!(atMatch(m, args[0]) >> "Path" >> path))
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error("path expected");
|
2003-10-31 17:09:31 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-28 20:34:22 +00:00
|
|
|
static void processBinding(EvalState & state, Expr e, StoreExpr & ne,
|
|
|
|
Strings & ss)
|
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;
|
2004-03-28 20:34:22 +00:00
|
|
|
int n;
|
2004-03-28 20:58:28 +00:00
|
|
|
Expr e1, e2;
|
2003-10-31 17:09:31 +00:00
|
|
|
|
2004-03-28 20:34:22 +00:00
|
|
|
if (atMatch(m, e) >> "Str" >> s) ss.push_back(s);
|
|
|
|
else if (atMatch(m, e) >> "Uri" >> s) ss.push_back(s);
|
|
|
|
else if (atMatch(m, e) >> "Bool" >> "True") ss.push_back("1");
|
|
|
|
else if (atMatch(m, e) >> "Bool" >> "False") ss.push_back("");
|
2003-10-31 17:09:31 +00:00
|
|
|
|
2004-03-28 20:34:22 +00:00
|
|
|
else if (atMatch(m, e) >> "Int" >> n) {
|
2003-11-25 12:05:48 +00:00
|
|
|
ostringstream st;
|
|
|
|
st << n;
|
2004-03-28 20:34:22 +00:00
|
|
|
ss.push_back(st.str());
|
2003-11-25 12:05:48 +00:00
|
|
|
}
|
|
|
|
|
2004-03-28 20:34:22 +00:00
|
|
|
else if (atMatch(m, e) >> "Attrs") {
|
2003-10-31 17:09:31 +00:00
|
|
|
Expr a = queryAttr(e, "type");
|
|
|
|
if (a && evalString(state, a) == "derivation") {
|
|
|
|
a = queryAttr(e, "drvPath");
|
2004-04-05 22:27:41 +00:00
|
|
|
if (!a) throw Error("derivation name missing");
|
2003-11-21 14:23:18 +00:00
|
|
|
Path drvPath = evalPath(state, a);
|
|
|
|
|
|
|
|
a = queryAttr(e, "drvHash");
|
2004-04-05 22:27:41 +00:00
|
|
|
if (!a) throw Error("derivation hash missing");
|
2003-11-21 14:23:18 +00:00
|
|
|
Hash drvHash = parseHash(evalString(state, a));
|
|
|
|
|
|
|
|
state.drvHashes[drvPath] = drvHash;
|
|
|
|
|
2004-03-28 20:34:22 +00:00
|
|
|
ss.push_back(addInput(state, drvPath, ne));
|
|
|
|
} else
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error("invalid derivation attribute");
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
2004-03-28 20:34:22 +00:00
|
|
|
else if (atMatch(m, e) >> "Path" >> s) {
|
2003-10-31 17:09:31 +00:00
|
|
|
Path drvPath = copyAtom(state, s);
|
2004-03-28 20:34:22 +00:00
|
|
|
ss.push_back(addInput(state, drvPath, ne));
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
2004-03-28 20:34:22 +00:00
|
|
|
else if (atMatch(m, e) >> "List" >> es) {
|
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"));
|
2004-03-28 20:34:22 +00:00
|
|
|
processBinding(state, evalExpr(state, *i), ne, ss);
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
}
|
2003-11-06 15:24:31 +00:00
|
|
|
|
2004-03-28 20:34:22 +00:00
|
|
|
else if (atMatch(m, e) >> "Null") ss.push_back("");
|
2004-03-28 20:58:28 +00:00
|
|
|
|
|
|
|
else if (atMatch(m, e) >> "SubPath" >> e1 >> e2) {
|
|
|
|
Strings ss2;
|
|
|
|
processBinding(state, evalExpr(state, e1), ne, ss2);
|
|
|
|
if (ss2.size() != 1)
|
|
|
|
throw Error("left-hand side of `~' operator cannot be a list");
|
|
|
|
e2 = evalExpr(state, e2);
|
|
|
|
if (!(atMatch(m, e2) >> "Str" >> s ||
|
|
|
|
(atMatch(m, e2) >> "Path" >> s)))
|
|
|
|
throw Error("right-hand side of `~' operator must be a path or string");
|
|
|
|
ss.push_back(canonPath(ss2.front() + "/" + s));
|
|
|
|
}
|
2003-10-31 17:09:31 +00:00
|
|
|
|
2004-04-05 22:27:41 +00:00
|
|
|
else throw Error("invalid derivation attribute");
|
2004-03-28 20:34:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static string concatStrings(const Strings & ss)
|
|
|
|
{
|
|
|
|
string s;
|
|
|
|
bool first = true;
|
|
|
|
for (Strings::const_iterator i = ss.begin(); i != ss.end(); ++i) {
|
|
|
|
if (!first) s += " "; else first = false;
|
|
|
|
s += *i;
|
|
|
|
}
|
|
|
|
return s;
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-04 10:59:20 +00:00
|
|
|
/* Construct (as a unobservable side effect) a Nix derivation
|
|
|
|
expression that performs the derivation described by the argument
|
|
|
|
set. Returns the original set extended with the following
|
|
|
|
attributes: `outPath' containing the primary output path of the
|
|
|
|
derivation; `drvPath' containing the path of the Nix expression;
|
|
|
|
and `type' set to `derivation' to indicate that this is a
|
|
|
|
derivation. */
|
|
|
|
static Expr primDerivation(EvalState & state, const ATermVector & _args)
|
2003-10-31 17:09:31 +00:00
|
|
|
{
|
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;
|
2004-08-04 10:59:20 +00:00
|
|
|
Expr args = _args[0];
|
2003-10-31 17:09:31 +00:00
|
|
|
args = evalExpr(state, args);
|
2004-04-05 22:27:41 +00:00
|
|
|
queryAllAttrs(args, attrs, true);
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
/* 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);
|
2004-04-05 22:27:41 +00:00
|
|
|
ATerm value;
|
|
|
|
Expr pos;
|
|
|
|
ATerm rhs = attrs.get(key);
|
|
|
|
ATMatcher m;
|
|
|
|
if (!(atMatch(m, rhs) >> "" >> value >> pos)) abort();
|
2003-11-09 10:35:45 +00:00
|
|
|
startNest(nest, lvlVomit, format("processing attribute `%1%'") % key);
|
2003-10-31 17:09:31 +00:00
|
|
|
|
2004-03-28 20:34:22 +00:00
|
|
|
Strings ss;
|
2004-04-02 10:49:37 +00:00
|
|
|
try {
|
|
|
|
processBinding(state, value, ne, ss);
|
|
|
|
} catch (Error & e) {
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error(format("while processing derivation attribute `%1%' at %2%:\n%3%")
|
|
|
|
% key % showPos(pos) % e.msg());
|
2004-04-02 10:49:37 +00:00
|
|
|
}
|
2004-03-28 20:34:22 +00:00
|
|
|
|
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") {
|
2004-03-28 20:34:22 +00:00
|
|
|
for (Strings::iterator i = ss.begin(); i != ss.end(); ++i)
|
|
|
|
ne.derivation.args.push_back(*i);
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* All other attributes are passed to the builder through the
|
|
|
|
environment. */
|
|
|
|
else {
|
2004-03-28 20:34:22 +00:00
|
|
|
string s = concatStrings(ss);
|
2003-10-31 17:09:31 +00:00
|
|
|
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 == "")
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error("required attribute `builder' missing");
|
2003-10-31 17:09:31 +00:00
|
|
|
if (ne.derivation.platform == "")
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error("required attribute `system' missing");
|
2003-10-31 17:09:31 +00:00
|
|
|
if (drvName == "")
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error("required attribute `name' missing");
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
2004-04-05 22:27:41 +00:00
|
|
|
attrs.set("outPath", ATmake("(Path(<str>), NoPos)", outPath.c_str()));
|
|
|
|
attrs.set("drvPath", ATmake("(Path(<str>), NoPos)", drvPath.c_str()));
|
|
|
|
attrs.set("drvHash", ATmake("(Str(<str>), NoPos)", ((string) drvHash).c_str()));
|
|
|
|
attrs.set("type", ATmake("(Str(\"derivation\"), NoPos)"));
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
return makeAttrs(attrs);
|
|
|
|
}
|
2003-11-02 16:31:35 +00:00
|
|
|
|
|
|
|
|
2004-08-04 10:59:20 +00:00
|
|
|
/* Return the base name of the given string, i.e., everything
|
|
|
|
following the last slash. */
|
|
|
|
static Expr primBaseNameOf(EvalState & state, const ATermVector & args)
|
2003-11-02 16:31:35 +00:00
|
|
|
{
|
2004-08-04 10:59:20 +00:00
|
|
|
string s = evalString(state, args[0]);
|
2003-11-02 16:31:35 +00:00
|
|
|
return ATmake("Str(<str>)", baseNameOf(s).c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-04 10:59:20 +00:00
|
|
|
/* Convert the argument (which can be a path or a uri) to a string. */
|
|
|
|
static Expr primToString(EvalState & state, const ATermVector & args)
|
2003-11-02 16:31:35 +00:00
|
|
|
{
|
2004-08-04 10:59:20 +00:00
|
|
|
Expr arg = evalExpr(state, args[0]);
|
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());
|
2004-04-05 22:27:41 +00:00
|
|
|
else throw Error("cannot coerce value to string");
|
2003-11-02 16:31:35 +00:00
|
|
|
}
|
2003-11-05 16:27:40 +00:00
|
|
|
|
|
|
|
|
2004-08-04 10:59:20 +00:00
|
|
|
/* Boolean constructors. */
|
|
|
|
static Expr primTrue(EvalState & state, const ATermVector & args)
|
2004-02-04 16:03:29 +00:00
|
|
|
{
|
|
|
|
return ATmake("Bool(True)");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-04 10:59:20 +00:00
|
|
|
static Expr primFalse(EvalState & state, const ATermVector & args)
|
2004-02-04 16:03:29 +00:00
|
|
|
{
|
|
|
|
return ATmake("Bool(False)");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-04 10:59:20 +00:00
|
|
|
/* Return the null value. */
|
|
|
|
Expr primNull(EvalState & state, const ATermVector & args)
|
2003-11-05 16:27:40 +00:00
|
|
|
{
|
|
|
|
return ATmake("Null");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-04 10:59:20 +00:00
|
|
|
/* Determine whether the argument is the null value. */
|
|
|
|
Expr primIsNull(EvalState & state, const ATermVector & args)
|
2003-11-05 16:27:40 +00:00
|
|
|
{
|
2004-08-04 10:59:20 +00:00
|
|
|
Expr arg = evalExpr(state, args[0]);
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
|
|
|
return makeBool(atMatch(m, arg) >> "Null");
|
2003-11-05 16:27:40 +00:00
|
|
|
}
|
2004-08-04 10:59:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Apply a function to every element of a list. */
|
|
|
|
Expr primMap(EvalState & state, Expr fun, Expr list)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void EvalState::addPrimOps()
|
|
|
|
{
|
|
|
|
addPrimOp("true", 0, primTrue);
|
|
|
|
addPrimOp("false", 0, primFalse);
|
|
|
|
addPrimOp("null", 0, primNull);
|
|
|
|
|
|
|
|
addPrimOp("import", 1, primImport);
|
|
|
|
addPrimOp("derivation", 1, primDerivation);
|
|
|
|
addPrimOp("baseNameOf", 1, primBaseNameOf);
|
|
|
|
addPrimOp("toString", 1, primToString);
|
|
|
|
addPrimOp("isNull", 1, primIsNull);
|
|
|
|
}
|