2003-07-06 14:20:47 +00:00
|
|
|
#include <map>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "globals.hh"
|
2003-07-20 19:29:38 +00:00
|
|
|
#include "normalise.hh"
|
2003-07-06 14:20:47 +00:00
|
|
|
#include "shared.hh"
|
|
|
|
|
|
|
|
|
|
|
|
typedef ATerm Expr;
|
|
|
|
|
|
|
|
|
2003-07-10 09:21:40 +00:00
|
|
|
static Strings searchDirs;
|
|
|
|
|
|
|
|
|
|
|
|
static string searchPath(string relPath)
|
|
|
|
{
|
2003-07-10 13:41:28 +00:00
|
|
|
if (string(relPath, 0, 1) == "/") return relPath;
|
|
|
|
|
2003-07-10 09:21:40 +00:00
|
|
|
for (Strings::iterator i = searchDirs.begin();
|
|
|
|
i != searchDirs.end(); i++)
|
|
|
|
{
|
|
|
|
string path = *i + "/" + relPath;
|
|
|
|
if (pathExists(path)) return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw Error(
|
|
|
|
format("path `%1%' not found in any of the search directories")
|
|
|
|
% relPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-06 14:20:47 +00:00
|
|
|
static Expr evalFile(string fileName);
|
|
|
|
|
|
|
|
|
|
|
|
static Expr substExpr(string x, Expr rep, Expr e)
|
|
|
|
{
|
|
|
|
char * s;
|
|
|
|
Expr e2;
|
|
|
|
|
|
|
|
if (ATmatch(e, "Var(<str>)", &s))
|
|
|
|
if (x == s)
|
|
|
|
return rep;
|
|
|
|
else
|
|
|
|
return e;
|
|
|
|
|
|
|
|
if (ATmatch(e, "Lam(<str>, <term>)", &s, &e2))
|
|
|
|
if (x == s)
|
|
|
|
return e;
|
|
|
|
/* !!! unfair substitutions */
|
|
|
|
|
|
|
|
/* Generically substitute in subterms. */
|
|
|
|
|
|
|
|
if (ATgetType(e) == AT_APPL) {
|
|
|
|
AFun fun = ATgetAFun(e);
|
|
|
|
int arity = ATgetArity(fun);
|
|
|
|
ATermList args = ATempty;
|
|
|
|
|
|
|
|
for (int i = arity - 1; i >= 0; i--)
|
|
|
|
args = ATinsert(args, substExpr(x, rep, ATgetArgument(e, i)));
|
|
|
|
|
|
|
|
return (ATerm) ATmakeApplList(fun, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ATgetType(e) == AT_LIST) {
|
|
|
|
ATermList in = (ATermList) e;
|
|
|
|
ATermList out = ATempty;
|
|
|
|
|
|
|
|
while (!ATisEmpty(in)) {
|
|
|
|
out = ATinsert(out, substExpr(x, rep, ATgetFirst(in)));
|
|
|
|
in = ATgetNext(in);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ATerm) ATreverse(out);
|
|
|
|
}
|
|
|
|
|
|
|
|
throw badTerm("do not know how to substitute", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Expr substExprMany(ATermList formals, ATermList args, Expr body)
|
|
|
|
{
|
|
|
|
char * s;
|
|
|
|
Expr e;
|
|
|
|
|
|
|
|
/* !!! check args against formals */
|
|
|
|
|
|
|
|
while (!ATisEmpty(args)) {
|
|
|
|
ATerm tup = ATgetFirst(args);
|
|
|
|
if (!ATmatch(tup, "(<str>, <term>)", &s, &e))
|
|
|
|
throw badTerm("expected an argument tuple", tup);
|
|
|
|
|
|
|
|
body = substExpr(s, e, body);
|
|
|
|
|
|
|
|
args = ATgetNext(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
return body;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Expr evalExpr(Expr e)
|
|
|
|
{
|
|
|
|
char * s1;
|
|
|
|
Expr e1, e2, e3, e4;
|
|
|
|
ATermList bnds;
|
|
|
|
|
|
|
|
/* Normal forms. */
|
|
|
|
if (ATmatch(e, "<str>", &s1) ||
|
2003-07-15 22:28:27 +00:00
|
|
|
ATmatch(e, "Function([<list>], <term>)", &e1, &e2) ||
|
|
|
|
ATmatch(e, "FSId(<str>)", &s1))
|
2003-07-06 14:20:47 +00:00
|
|
|
return e;
|
|
|
|
|
2003-07-20 19:29:38 +00:00
|
|
|
try {
|
|
|
|
parseFState(e);
|
2003-07-16 20:00:51 +00:00
|
|
|
return ATmake("FSId(<str>)",
|
2003-07-20 19:29:38 +00:00
|
|
|
((string) writeTerm(e, "")).c_str());
|
|
|
|
} catch (...) { /* !!! catch parse errors only */
|
2003-07-16 20:00:51 +00:00
|
|
|
}
|
|
|
|
|
2003-07-06 14:20:47 +00:00
|
|
|
/* Application. */
|
|
|
|
if (ATmatch(e, "App(<term>, [<list>])", &e1, &e2)) {
|
|
|
|
e1 = evalExpr(e1);
|
|
|
|
if (!ATmatch(e1, "Function([<list>], <term>)", &e3, &e4))
|
|
|
|
throw badTerm("expecting a function", e1);
|
|
|
|
return evalExpr(substExprMany((ATermList) e3, (ATermList) e2, e4));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fix inclusion. */
|
|
|
|
if (ATmatch(e, "IncludeFix(<str>)", &s1)) {
|
|
|
|
string fileName(s1);
|
|
|
|
return evalFile(s1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Relative files. */
|
|
|
|
if (ATmatch(e, "Relative(<str>)", &s1)) {
|
2003-07-10 09:21:40 +00:00
|
|
|
string srcPath = searchPath(s1);
|
2003-07-06 14:20:47 +00:00
|
|
|
string dstPath;
|
2003-07-15 22:28:27 +00:00
|
|
|
FSId id;
|
|
|
|
addToStore(srcPath, dstPath, id, true);
|
2003-07-20 19:29:38 +00:00
|
|
|
|
|
|
|
SliceElem elem;
|
|
|
|
elem.path = dstPath;
|
|
|
|
elem.id = id;
|
|
|
|
FState fs;
|
|
|
|
fs.type = FState::fsSlice;
|
|
|
|
fs.slice.roots.push_back(id);
|
|
|
|
fs.slice.elems.push_back(elem);
|
|
|
|
|
2003-07-15 22:28:27 +00:00
|
|
|
return ATmake("FSId(<str>)",
|
2003-07-20 19:29:38 +00:00
|
|
|
((string) writeTerm(unparseFState(fs), "")).c_str());
|
2003-07-06 14:20:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Packages are transformed into Derive fstate expressions. */
|
|
|
|
if (ATmatch(e, "Package([<list>])", &bnds)) {
|
|
|
|
|
|
|
|
/* Evaluate the bindings and put them in a map. */
|
|
|
|
map<string, ATerm> bndMap;
|
|
|
|
bndMap["platform"] = ATmake("<str>", SYSTEM);
|
|
|
|
while (!ATisEmpty(bnds)) {
|
|
|
|
ATerm bnd = ATgetFirst(bnds);
|
|
|
|
if (!ATmatch(bnd, "(<str>, <term>)", &s1, &e1))
|
|
|
|
throw badTerm("binding expected", bnd);
|
|
|
|
bndMap[s1] = evalExpr(e1);
|
|
|
|
bnds = ATgetNext(bnds);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Gather information for building the Derive expression. */
|
2003-07-20 19:29:38 +00:00
|
|
|
FState fs;
|
|
|
|
fs.type = FState::fsDerive;
|
|
|
|
fs.derive.platform = SYSTEM;
|
|
|
|
string name;
|
2003-07-06 14:20:47 +00:00
|
|
|
bnds = ATempty;
|
|
|
|
|
|
|
|
for (map<string, ATerm>::iterator it = bndMap.begin();
|
|
|
|
it != bndMap.end(); it++)
|
|
|
|
{
|
|
|
|
string key = it->first;
|
|
|
|
ATerm value = it->second;
|
|
|
|
|
2003-07-20 19:29:38 +00:00
|
|
|
if (ATmatch(value, "FSId(<str>)", &s1)) {
|
|
|
|
FSId id = parseHash(s1);
|
|
|
|
Strings paths = fstatePaths(id, false);
|
2003-07-15 22:28:27 +00:00
|
|
|
if (paths.size() != 1) abort();
|
|
|
|
string path = *(paths.begin());
|
2003-07-20 19:29:38 +00:00
|
|
|
fs.derive.inputs.push_back(id);
|
|
|
|
fs.derive.env.push_back(StringPair(key, path));
|
|
|
|
if (key == "build") fs.derive.builder = path;
|
2003-07-06 14:20:47 +00:00
|
|
|
}
|
|
|
|
else if (ATmatch(value, "<str>", &s1)) {
|
2003-07-08 09:59:00 +00:00
|
|
|
if (key == "name") name = s1;
|
2003-07-20 19:29:38 +00:00
|
|
|
fs.derive.env.push_back(StringPair(key, s1));
|
2003-07-06 14:20:47 +00:00
|
|
|
}
|
|
|
|
else throw badTerm("invalid package argument", value);
|
|
|
|
|
|
|
|
bnds = ATinsert(bnds,
|
|
|
|
ATmake("(<str>, <term>)", key.c_str(), value));
|
|
|
|
}
|
|
|
|
|
2003-07-20 19:29:38 +00:00
|
|
|
if (fs.derive.builder == "")
|
|
|
|
throw badTerm("no builder specified", e);
|
2003-07-06 14:20:47 +00:00
|
|
|
|
2003-07-08 09:59:00 +00:00
|
|
|
if (name == "")
|
2003-07-20 19:29:38 +00:00
|
|
|
throw badTerm("no package name specified", e);
|
2003-07-06 14:20:47 +00:00
|
|
|
|
2003-07-20 19:29:38 +00:00
|
|
|
/* Hash the fstate-expression with no outputs to produce a
|
|
|
|
unique but deterministic path name for this package. */
|
|
|
|
Hash outId = hashTerm(unparseFState(fs));
|
2003-07-15 22:28:27 +00:00
|
|
|
string outPath =
|
|
|
|
canonPath(nixStore + "/" + ((string) outId).c_str() + "-" + name);
|
2003-07-20 19:29:38 +00:00
|
|
|
fs.derive.env.push_back(StringPair("out", outPath));
|
|
|
|
fs.derive.outputs.push_back(DeriveOutput(outPath, outId));
|
|
|
|
debug(format("%1%: %2%") % (string) outId % name);
|
2003-07-06 14:20:47 +00:00
|
|
|
|
|
|
|
/* Write the resulting term into the Nix store directory. */
|
2003-07-15 22:28:27 +00:00
|
|
|
return ATmake("FSId(<str>)",
|
2003-07-20 19:29:38 +00:00
|
|
|
((string) writeTerm(unparseFState(fs), "-d-" + name)).c_str());
|
2003-07-06 14:20:47 +00:00
|
|
|
}
|
|
|
|
|
2003-07-08 09:53:46 +00:00
|
|
|
/* BaseName primitive function. */
|
|
|
|
if (ATmatch(e, "BaseName(<term>)", &e1)) {
|
|
|
|
e1 = evalExpr(e1);
|
|
|
|
if (!ATmatch(e1, "<str>", &s1))
|
|
|
|
throw badTerm("string expected", e1);
|
|
|
|
return ATmake("<str>", baseNameOf(s1).c_str());
|
|
|
|
}
|
|
|
|
|
2003-07-06 14:20:47 +00:00
|
|
|
/* Barf. */
|
|
|
|
throw badTerm("invalid expression", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-10 09:21:40 +00:00
|
|
|
static Expr evalFile(string relPath)
|
2003-07-06 14:20:47 +00:00
|
|
|
{
|
2003-07-10 13:41:28 +00:00
|
|
|
string path = searchPath(relPath);
|
|
|
|
Expr e = ATreadFromNamedFile(path.c_str());
|
|
|
|
if (!e)
|
|
|
|
throw Error(format("unable to read a term from `%1%'") % path);
|
2003-07-06 14:20:47 +00:00
|
|
|
return evalExpr(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void run(Strings args)
|
|
|
|
{
|
|
|
|
Strings files;
|
|
|
|
|
2003-07-10 09:21:40 +00:00
|
|
|
searchDirs.push_back(".");
|
2003-07-10 13:41:28 +00:00
|
|
|
searchDirs.push_back(nixDataDir + "/fix");
|
2003-07-06 14:20:47 +00:00
|
|
|
|
|
|
|
for (Strings::iterator it = args.begin();
|
|
|
|
it != args.end(); )
|
|
|
|
{
|
|
|
|
string arg = *it++;
|
|
|
|
|
|
|
|
if (arg == "--includedir" || arg == "-I") {
|
|
|
|
if (it == args.end())
|
|
|
|
throw UsageError(format("argument required in `%1%'") % arg);
|
2003-07-10 09:21:40 +00:00
|
|
|
searchDirs.push_back(*it++);
|
2003-07-06 14:20:47 +00:00
|
|
|
}
|
|
|
|
else if (arg[0] == '-')
|
|
|
|
throw UsageError(format("unknown flag `%1%`") % arg);
|
|
|
|
else
|
|
|
|
files.push_back(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (files.empty()) throw UsageError("no files specified");
|
|
|
|
|
|
|
|
for (Strings::iterator it = files.begin();
|
|
|
|
it != files.end(); it++)
|
|
|
|
{
|
|
|
|
Expr e = evalFile(*it);
|
|
|
|
char * s;
|
2003-07-15 22:28:27 +00:00
|
|
|
if (ATmatch(e, "FSId(<str>)", &s)) {
|
2003-07-06 14:20:47 +00:00
|
|
|
cout << format("%1%\n") % s;
|
2003-07-06 15:11:02 +00:00
|
|
|
}
|
2003-07-06 14:20:47 +00:00
|
|
|
else throw badTerm("top level is not a package", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string programId = "fix";
|