#include #include #include "globals.hh" #include "fstate.hh" #include "store.hh" #include "shared.hh" typedef ATerm Expr; static Strings searchDirs; static string searchPath(string relPath) { if (string(relPath, 0, 1) == "/") return relPath; 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); } static Expr evalFile(string fileName); static Expr substExpr(string x, Expr rep, Expr e) { char * s; Expr e2; if (ATmatch(e, "Var()", &s)) if (x == s) return rep; else return e; if (ATmatch(e, "Lam(, )", &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, "(, )", &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, "", &s1) || ATmatch(e, "Function([], )", &e1, &e2) || ATmatch(e, "FSId()", &s1)) return e; /* Application. */ if (ATmatch(e, "App(, [])", &e1, &e2)) { e1 = evalExpr(e1); if (!ATmatch(e1, "Function([], )", &e3, &e4)) throw badTerm("expecting a function", e1); return evalExpr(substExprMany((ATermList) e3, (ATermList) e2, e4)); } /* Fix inclusion. */ if (ATmatch(e, "IncludeFix()", &s1)) { string fileName(s1); return evalFile(s1); } /* Relative files. */ if (ATmatch(e, "Relative()", &s1)) { string srcPath = searchPath(s1); string dstPath; FSId id; addToStore(srcPath, dstPath, id, true); FState fs = ATmake("Slice([], [(, , [])])", ((string) id).c_str(), dstPath.c_str(), ((string) id).c_str()); return ATmake("FSId()", ((string) writeTerm(fs, "", 0)).c_str()); } /* Packages are transformed into Derive fstate expressions. */ if (ATmatch(e, "Package([])", &bnds)) { /* Evaluate the bindings and put them in a map. */ map bndMap; bndMap["platform"] = ATmake("", SYSTEM); while (!ATisEmpty(bnds)) { ATerm bnd = ATgetFirst(bnds); if (!ATmatch(bnd, "(, )", &s1, &e1)) throw badTerm("binding expected", bnd); bndMap[s1] = evalExpr(e1); bnds = ATgetNext(bnds); } /* Gather information for building the Derive expression. */ ATermList ins = ATempty, env = ATempty; string builder, name; bnds = ATempty; for (map::iterator it = bndMap.begin(); it != bndMap.end(); it++) { string key = it->first; ATerm value = it->second; char * id; if (ATmatch(value, "FSId()", &id)) { Strings paths = fstatePaths(parseHash(id)); if (paths.size() != 1) abort(); string path = *(paths.begin()); ins = ATinsert(ins, ATmake("", id)); env = ATinsert(env, ATmake("(, )", key.c_str(), path.c_str())); if (key == "build") builder = path; } else if (ATmatch(value, "", &s1)) { if (key == "name") name = s1; env = ATinsert(env, ATmake("(, )", key.c_str(), s1)); } else throw badTerm("invalid package argument", value); bnds = ATinsert(bnds, ATmake("(, )", key.c_str(), value)); } /* Hash the normal form to produce a unique but deterministic path name for this package. */ ATerm nf = ATmake("Package()", ATreverse(bnds)); FSId outId = hashTerm(nf); if (builder == "") throw badTerm("no builder specified", nf); if (name == "") throw badTerm("no package name specified", nf); string outPath = canonPath(nixStore + "/" + ((string) outId).c_str() + "-" + name); env = ATinsert(env, ATmake("(, )", "out", outPath.c_str())); /* Construct the result. */ FState fs = ATmake("Derive([(, )], , , , )", outPath.c_str(), ((string) outId).c_str(), ins, builder.c_str(), SYSTEM, env); /* Write the resulting term into the Nix store directory. */ return ATmake("FSId()", ((string) writeTerm(fs, "-d-" + name, 0)).c_str()); } /* BaseName primitive function. */ if (ATmatch(e, "BaseName()", &e1)) { e1 = evalExpr(e1); if (!ATmatch(e1, "", &s1)) throw badTerm("string expected", e1); return ATmake("", baseNameOf(s1).c_str()); } /* Barf. */ throw badTerm("invalid expression", e); } static Expr evalFile(string relPath) { string path = searchPath(relPath); Expr e = ATreadFromNamedFile(path.c_str()); if (!e) throw Error(format("unable to read a term from `%1%'") % path); return evalExpr(e); } void run(Strings args) { Strings files; searchDirs.push_back("."); searchDirs.push_back(nixDataDir + "/fix"); 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); searchDirs.push_back(*it++); } 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; if (ATmatch(e, "FSId()", &s)) { cout << format("%1%\n") % s; } else throw badTerm("top level is not a package", e); } } string programId = "fix";