2003-11-18 12:22:29 +01:00
|
|
|
#include "storeexpr.hh"
|
2003-06-16 15:33:38 +02:00
|
|
|
#include "globals.hh"
|
2003-07-07 09:43:58 +02:00
|
|
|
#include "store.hh"
|
2003-06-16 15:33:38 +02:00
|
|
|
|
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
Hash hashTerm(ATerm t)
|
2003-06-16 15:33:38 +02:00
|
|
|
{
|
2003-11-16 18:46:31 +01:00
|
|
|
return hashString(atPrint(t));
|
2003-06-16 15:33:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
Path writeTerm(ATerm t, const string & suffix)
|
2003-07-04 14:18:06 +02:00
|
|
|
{
|
2003-10-08 17:06:59 +02:00
|
|
|
/* The id of a term is its hash. */
|
|
|
|
Hash h = hashTerm(t);
|
2003-07-15 18:28:54 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
Path path = canonPath(nixStore + "/" +
|
2004-01-12 11:44:48 +01:00
|
|
|
(string) h + suffix + ".store");
|
2003-07-15 18:28:54 +02:00
|
|
|
|
2004-10-25 16:38:23 +02:00
|
|
|
if (!readOnlyMode && !isValidPath(path)) {
|
2003-10-15 14:42:39 +02:00
|
|
|
char * s = ATwriteToString(t);
|
|
|
|
if (!s) throw Error(format("cannot write aterm to `%1%'") % path);
|
|
|
|
addTextToStore(path, string(s));
|
2003-10-10 15:22:29 +02:00
|
|
|
}
|
2003-10-15 14:42:39 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
return path;
|
2003-07-04 14:18:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
static void parsePaths(ATermList paths, PathSet & out)
|
2003-07-15 18:28:54 +02:00
|
|
|
{
|
2003-11-16 18:46:31 +01:00
|
|
|
ATMatcher m;
|
2003-11-16 19:31:29 +01:00
|
|
|
for (ATermIterator i(paths); i; ++i) {
|
2003-11-16 18:46:31 +01:00
|
|
|
string s;
|
2003-11-16 19:31:29 +01:00
|
|
|
if (!(atMatch(m, *i) >> s))
|
|
|
|
throw badTerm("not a path", *i);
|
2003-08-20 16:11:40 +02:00
|
|
|
out.insert(s);
|
2003-07-15 18:28:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 14:27:49 +02:00
|
|
|
static void checkClosure(const Closure & closure)
|
2003-07-20 21:29:38 +02:00
|
|
|
{
|
2003-10-07 14:27:49 +02:00
|
|
|
if (closure.elems.size() == 0)
|
|
|
|
throw Error("empty closure");
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
PathSet decl;
|
2003-10-07 14:27:49 +02:00
|
|
|
for (ClosureElems::const_iterator i = closure.elems.begin();
|
|
|
|
i != closure.elems.end(); i++)
|
2003-08-20 16:11:40 +02:00
|
|
|
decl.insert(i->first);
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
for (PathSet::const_iterator i = closure.roots.begin();
|
2003-10-07 14:27:49 +02:00
|
|
|
i != closure.roots.end(); i++)
|
2003-07-20 21:29:38 +02:00
|
|
|
if (decl.find(*i) == decl.end())
|
* Change the abstract syntax of slices. It used to be that ids were used as
keys to reference slice elements, e.g.,
Slice(["1ef7..."], [("/nix/store/1ef7...-foo", "1ef7", ["8c99..."]), ...])
This was wrong, since ids represent contents, not locations. Therefore we
now have:
Slice(["/nix/store/1ef7..."], [("/nix/store/1ef7...-foo", "1ef7", ["/nix/store/8c99-..."]), ...])
* Fix a bug in the computation of slice closures that could cause slice
elements to be duplicated.
2003-08-20 14:39:56 +02:00
|
|
|
throw Error(format("undefined root path `%1%'") % *i);
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2003-10-07 14:27:49 +02:00
|
|
|
for (ClosureElems::const_iterator i = closure.elems.begin();
|
|
|
|
i != closure.elems.end(); i++)
|
2003-10-08 17:06:59 +02:00
|
|
|
for (PathSet::const_iterator j = i->second.refs.begin();
|
2003-08-20 16:11:40 +02:00
|
|
|
j != i->second.refs.end(); j++)
|
2003-07-20 21:29:38 +02:00
|
|
|
if (decl.find(*j) == decl.end())
|
* Change the abstract syntax of slices. It used to be that ids were used as
keys to reference slice elements, e.g.,
Slice(["1ef7..."], [("/nix/store/1ef7...-foo", "1ef7", ["8c99..."]), ...])
This was wrong, since ids represent contents, not locations. Therefore we
now have:
Slice(["/nix/store/1ef7..."], [("/nix/store/1ef7...-foo", "1ef7", ["/nix/store/8c99-..."]), ...])
* Fix a bug in the computation of slice closures that could cause slice
elements to be duplicated.
2003-08-20 14:39:56 +02:00
|
|
|
throw Error(
|
|
|
|
format("undefined path `%1%' referenced by `%2%'")
|
2003-08-20 16:11:40 +02:00
|
|
|
% *j % i->first);
|
2003-07-20 21:29:38 +02:00
|
|
|
}
|
2003-07-16 22:33:29 +02:00
|
|
|
|
|
|
|
|
2003-10-07 14:27:49 +02:00
|
|
|
/* Parse a closure. */
|
|
|
|
static bool parseClosure(ATerm t, Closure & closure)
|
2003-07-15 18:28:54 +02:00
|
|
|
{
|
|
|
|
ATermList roots, elems;
|
2003-11-16 18:46:31 +01:00
|
|
|
ATMatcher m;
|
|
|
|
|
|
|
|
if (!(atMatch(m, t) >> "Closure" >> roots >> elems))
|
2003-07-20 21:29:38 +02:00
|
|
|
return false;
|
2003-07-15 18:28:54 +02:00
|
|
|
|
2003-10-07 14:27:49 +02:00
|
|
|
parsePaths(roots, closure.roots);
|
2003-07-15 18:28:54 +02:00
|
|
|
|
2003-11-16 19:31:29 +01:00
|
|
|
for (ATermIterator i(elems); i; ++i) {
|
2003-11-16 18:46:31 +01:00
|
|
|
string path;
|
2003-07-15 18:28:54 +02:00
|
|
|
ATermList refs;
|
2003-11-16 19:31:29 +01:00
|
|
|
if (!(atMatch(m, *i) >> "" >> path >> refs))
|
|
|
|
throw badTerm("not a closure element", *i);
|
2003-10-07 14:27:49 +02:00
|
|
|
ClosureElem elem;
|
* Change the abstract syntax of slices. It used to be that ids were used as
keys to reference slice elements, e.g.,
Slice(["1ef7..."], [("/nix/store/1ef7...-foo", "1ef7", ["8c99..."]), ...])
This was wrong, since ids represent contents, not locations. Therefore we
now have:
Slice(["/nix/store/1ef7..."], [("/nix/store/1ef7...-foo", "1ef7", ["/nix/store/8c99-..."]), ...])
* Fix a bug in the computation of slice closures that could cause slice
elements to be duplicated.
2003-08-20 14:39:56 +02:00
|
|
|
parsePaths(refs, elem.refs);
|
2003-11-16 18:46:31 +01:00
|
|
|
closure.elems[path] = elem;
|
2003-07-15 18:28:54 +02:00
|
|
|
}
|
|
|
|
|
2003-10-07 14:27:49 +02:00
|
|
|
checkClosure(closure);
|
2003-07-20 21:29:38 +02:00
|
|
|
return true;
|
2003-07-15 18:28:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 14:27:49 +02:00
|
|
|
static bool parseDerivation(ATerm t, Derivation & derivation)
|
2003-07-15 23:24:05 +02:00
|
|
|
{
|
2003-11-16 18:46:31 +01:00
|
|
|
ATMatcher m;
|
2003-08-15 14:32:37 +02:00
|
|
|
ATermList outs, ins, args, bnds;
|
2003-11-16 18:46:31 +01:00
|
|
|
string builder, platform;
|
|
|
|
|
|
|
|
if (!(atMatch(m, t) >> "Derive" >> outs >> ins >> platform
|
|
|
|
>> builder >> args >> bnds))
|
|
|
|
return false;
|
2003-07-15 18:28:54 +02:00
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
parsePaths(outs, derivation.outputs);
|
|
|
|
parsePaths(ins, derivation.inputs);
|
2003-07-15 18:28:54 +02:00
|
|
|
|
2003-10-07 14:27:49 +02:00
|
|
|
derivation.builder = builder;
|
|
|
|
derivation.platform = platform;
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2003-11-16 19:31:29 +01:00
|
|
|
for (ATermIterator i(args); i; ++i) {
|
2003-11-16 18:46:31 +01:00
|
|
|
string s;
|
2003-11-16 19:31:29 +01:00
|
|
|
if (!(atMatch(m, *i) >> s))
|
|
|
|
throw badTerm("string expected", *i);
|
2003-10-07 14:27:49 +02:00
|
|
|
derivation.args.push_back(s);
|
2003-08-15 14:32:37 +02:00
|
|
|
}
|
|
|
|
|
2003-11-16 19:31:29 +01:00
|
|
|
for (ATermIterator i(bnds); i; ++i) {
|
2003-11-16 18:46:31 +01:00
|
|
|
string s1, s2;
|
2003-11-16 19:31:29 +01:00
|
|
|
if (!(atMatch(m, *i) >> "" >> s1 >> s2))
|
|
|
|
throw badTerm("tuple of strings expected", *i);
|
2003-10-07 14:27:49 +02:00
|
|
|
derivation.env[s1] = s2;
|
2003-07-15 18:28:54 +02:00
|
|
|
}
|
|
|
|
|
2003-07-20 21:29:38 +02:00
|
|
|
return true;
|
2003-07-15 18:28:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-18 12:22:29 +01:00
|
|
|
StoreExpr parseStoreExpr(ATerm t)
|
2003-07-16 13:05:59 +02:00
|
|
|
{
|
2003-11-18 12:22:29 +01:00
|
|
|
StoreExpr ne;
|
2003-10-07 14:27:49 +02:00
|
|
|
if (parseClosure(t, ne.closure))
|
2003-11-18 12:22:29 +01:00
|
|
|
ne.type = StoreExpr::neClosure;
|
2003-10-07 14:27:49 +02:00
|
|
|
else if (parseDerivation(t, ne.derivation))
|
2003-11-18 12:22:29 +01:00
|
|
|
ne.type = StoreExpr::neDerivation;
|
|
|
|
else throw badTerm("not a store expression", t);
|
2003-10-07 14:27:49 +02:00
|
|
|
return ne;
|
2003-07-16 13:05:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-08 17:06:59 +02:00
|
|
|
static ATermList unparsePaths(const PathSet & paths)
|
2003-07-15 23:24:05 +02:00
|
|
|
{
|
2003-07-20 21:29:38 +02:00
|
|
|
ATermList l = ATempty;
|
2003-10-08 17:06:59 +02:00
|
|
|
for (PathSet::const_iterator i = paths.begin();
|
* Change the abstract syntax of slices. It used to be that ids were used as
keys to reference slice elements, e.g.,
Slice(["1ef7..."], [("/nix/store/1ef7...-foo", "1ef7", ["8c99..."]), ...])
This was wrong, since ids represent contents, not locations. Therefore we
now have:
Slice(["/nix/store/1ef7..."], [("/nix/store/1ef7...-foo", "1ef7", ["/nix/store/8c99-..."]), ...])
* Fix a bug in the computation of slice closures that could cause slice
elements to be duplicated.
2003-08-20 14:39:56 +02:00
|
|
|
i != paths.end(); i++)
|
|
|
|
l = ATinsert(l, ATmake("<str>", i->c_str()));
|
2003-07-20 21:29:38 +02:00
|
|
|
return ATreverse(l);
|
2003-07-15 23:24:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-07 14:27:49 +02:00
|
|
|
static ATerm unparseClosure(const Closure & closure)
|
2003-07-15 18:28:54 +02:00
|
|
|
{
|
2003-10-07 14:27:49 +02:00
|
|
|
ATermList roots = unparsePaths(closure.roots);
|
2003-07-20 21:29:38 +02:00
|
|
|
|
|
|
|
ATermList elems = ATempty;
|
2003-10-07 14:27:49 +02:00
|
|
|
for (ClosureElems::const_iterator i = closure.elems.begin();
|
|
|
|
i != closure.elems.end(); i++)
|
2003-07-20 21:29:38 +02:00
|
|
|
elems = ATinsert(elems,
|
2003-10-08 17:06:59 +02:00
|
|
|
ATmake("(<str>, <term>)",
|
2003-08-20 16:11:40 +02:00
|
|
|
i->first.c_str(),
|
|
|
|
unparsePaths(i->second.refs)));
|
2003-07-15 18:28:54 +02:00
|
|
|
|
2003-10-07 14:27:49 +02:00
|
|
|
return ATmake("Closure(<term>, <term>)", roots, elems);
|
2003-07-15 18:28:54 +02:00
|
|
|
}
|
2003-07-16 00:28:27 +02:00
|
|
|
|
|
|
|
|
2003-10-07 14:27:49 +02:00
|
|
|
static ATerm unparseDerivation(const Derivation & derivation)
|
2003-07-16 00:28:27 +02:00
|
|
|
{
|
2003-08-15 14:32:37 +02:00
|
|
|
ATermList args = ATempty;
|
2003-10-07 14:27:49 +02:00
|
|
|
for (Strings::const_iterator i = derivation.args.begin();
|
|
|
|
i != derivation.args.end(); i++)
|
2003-08-15 14:32:37 +02:00
|
|
|
args = ATinsert(args, ATmake("<str>", i->c_str()));
|
|
|
|
|
2003-07-20 21:29:38 +02:00
|
|
|
ATermList env = ATempty;
|
2003-10-07 14:27:49 +02:00
|
|
|
for (StringPairs::const_iterator i = derivation.env.begin();
|
|
|
|
i != derivation.env.end(); i++)
|
2003-07-20 21:29:38 +02:00
|
|
|
env = ATinsert(env,
|
|
|
|
ATmake("(<str>, <str>)",
|
|
|
|
i->first.c_str(), i->second.c_str()));
|
2003-07-16 00:28:27 +02:00
|
|
|
|
2003-08-15 14:32:37 +02:00
|
|
|
return ATmake("Derive(<term>, <term>, <str>, <str>, <term>, <term>)",
|
2003-10-08 17:06:59 +02:00
|
|
|
unparsePaths(derivation.outputs),
|
|
|
|
unparsePaths(derivation.inputs),
|
2003-10-07 14:27:49 +02:00
|
|
|
derivation.platform.c_str(),
|
|
|
|
derivation.builder.c_str(),
|
2003-08-15 14:32:37 +02:00
|
|
|
ATreverse(args),
|
2003-07-20 21:29:38 +02:00
|
|
|
ATreverse(env));
|
2003-07-16 00:28:27 +02:00
|
|
|
}
|
2003-07-16 13:05:59 +02:00
|
|
|
|
|
|
|
|
2003-11-18 12:22:29 +01:00
|
|
|
ATerm unparseStoreExpr(const StoreExpr & ne)
|
2003-07-16 13:05:59 +02:00
|
|
|
{
|
2003-11-18 12:22:29 +01:00
|
|
|
if (ne.type == StoreExpr::neClosure)
|
2003-10-07 14:27:49 +02:00
|
|
|
return unparseClosure(ne.closure);
|
2003-11-18 12:22:29 +01:00
|
|
|
else if (ne.type == StoreExpr::neDerivation)
|
2003-10-07 14:27:49 +02:00
|
|
|
return unparseDerivation(ne.derivation);
|
2003-07-20 21:29:38 +02:00
|
|
|
else abort();
|
2003-07-16 13:05:59 +02:00
|
|
|
}
|