2003-10-29 16:05:18 +01:00
|
|
|
#include <map>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "globals.hh"
|
2005-01-19 17:39:47 +01:00
|
|
|
#include "build.hh"
|
2005-02-01 13:36:25 +01:00
|
|
|
#include "gc.hh"
|
2003-10-29 16:05:18 +01:00
|
|
|
#include "shared.hh"
|
2003-10-30 17:48:26 +01:00
|
|
|
#include "eval.hh"
|
2003-11-22 19:45:56 +01:00
|
|
|
#include "parser.hh"
|
2004-10-29 13:22:49 +02:00
|
|
|
#include "nixexpr-ast.hh"
|
2006-02-10 16:14:57 +01:00
|
|
|
#include "get-drvs.hh"
|
2006-07-26 17:05:15 +02:00
|
|
|
#include "attr-path.hh"
|
2006-08-03 16:49:57 +02:00
|
|
|
#include "xml-writer.hh"
|
2003-12-01 16:55:05 +01:00
|
|
|
#include "help.txt.hh"
|
|
|
|
|
|
|
|
|
|
|
|
void printHelp()
|
|
|
|
{
|
|
|
|
cout << string((char *) helpText, sizeof helpText);
|
|
|
|
}
|
2003-10-29 16:05:18 +01:00
|
|
|
|
|
|
|
|
2006-07-26 17:05:15 +02:00
|
|
|
static Expr parseStdin(EvalState & state)
|
2003-10-29 16:05:18 +01:00
|
|
|
{
|
2006-07-26 17:05:15 +02:00
|
|
|
startNest(nest, lvlTalkative, format("parsing standard input"));
|
2003-11-22 19:45:56 +01:00
|
|
|
string s, s2;
|
|
|
|
while (getline(cin, s2)) s += s2 + "\n";
|
2006-07-26 17:05:15 +02:00
|
|
|
return parseExprFromString(state, s, absPath("."));
|
2003-10-29 16:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-01 13:36:25 +01:00
|
|
|
static Path gcRoot;
|
|
|
|
static int rootNr = 0;
|
2005-02-01 14:48:46 +01:00
|
|
|
static bool indirectRoot = false;
|
2005-02-01 13:36:25 +01:00
|
|
|
|
|
|
|
|
2006-08-16 12:32:30 +02:00
|
|
|
static XMLAttrs singletonAttrs(const string & name, const string & value)
|
|
|
|
{
|
|
|
|
XMLAttrs attrs;
|
|
|
|
attrs[name] = value;
|
|
|
|
return attrs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-16 23:59:53 +02:00
|
|
|
static void printTermAsXML(Expr e, XMLWriter & doc)
|
2006-08-16 12:32:30 +02:00
|
|
|
{
|
|
|
|
XMLAttrs attrs;
|
|
|
|
ATerm s;
|
|
|
|
int i;
|
2006-08-16 23:59:53 +02:00
|
|
|
ATermList as, formals;
|
|
|
|
ATerm body, pos;
|
|
|
|
|
2006-08-16 12:32:30 +02:00
|
|
|
if (matchStr(e, s))
|
|
|
|
doc.writeEmptyElement("string", singletonAttrs("value", aterm2String(s)));
|
|
|
|
|
|
|
|
else if (matchPath(e, s))
|
|
|
|
doc.writeEmptyElement("path", singletonAttrs("value", aterm2String(s)));
|
|
|
|
|
|
|
|
else if (matchUri(e, s))
|
|
|
|
doc.writeEmptyElement("uri", singletonAttrs("value", aterm2String(s)));
|
|
|
|
|
|
|
|
else if (matchNull(e))
|
|
|
|
doc.writeEmptyElement("null");
|
|
|
|
|
|
|
|
else if (matchInt(e, i))
|
2006-08-16 23:59:53 +02:00
|
|
|
doc.writeEmptyElement("int", singletonAttrs("value", (format("%1%") % i).str()));
|
|
|
|
|
|
|
|
else if (e == eTrue)
|
|
|
|
doc.writeEmptyElement("bool", singletonAttrs("value", "true"));
|
|
|
|
|
|
|
|
else if (e == eFalse)
|
|
|
|
doc.writeEmptyElement("bool", singletonAttrs("value", "false"));
|
2006-08-16 12:32:30 +02:00
|
|
|
|
|
|
|
else if (matchAttrs(e, as)) {
|
|
|
|
XMLOpenElement _(doc, "attrs");
|
|
|
|
ATermMap attrs(128);
|
|
|
|
queryAllAttrs(e, attrs);
|
|
|
|
for (ATermMap::const_iterator i = attrs.begin(); i != attrs.end(); ++i) {
|
|
|
|
XMLOpenElement _(doc, "attr", singletonAttrs("name", aterm2String(i->key)));
|
2006-08-16 23:59:53 +02:00
|
|
|
printTermAsXML(i->value, doc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (matchFunction(e, formals, body, pos)) {
|
|
|
|
XMLOpenElement _(doc, "function");
|
|
|
|
|
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
|
|
|
Expr name; ValidValues valids; ATerm dummy;
|
|
|
|
if (!matchFormal(*i, name, valids, dummy)) abort();
|
|
|
|
XMLOpenElement _(doc, "arg", singletonAttrs("name", aterm2String(name)));
|
|
|
|
|
|
|
|
ATermList valids2;
|
|
|
|
if (matchValidValues(valids, valids2)) {
|
|
|
|
for (ATermIterator j(valids2); j; ++j) {
|
|
|
|
XMLOpenElement _(doc, "value");
|
|
|
|
printTermAsXML(*j, doc);
|
|
|
|
}
|
|
|
|
}
|
2006-08-16 12:32:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
2006-08-16 23:59:53 +02:00
|
|
|
doc.writeEmptyElement("unevaluated");
|
2006-08-16 12:32:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-25 23:21:50 +02:00
|
|
|
static void printResult(EvalState & state, Expr e,
|
2006-08-16 23:59:53 +02:00
|
|
|
bool evalOnly, bool xmlOutput, const ATermMap & autoArgs)
|
2004-10-26 18:59:36 +02:00
|
|
|
{
|
|
|
|
if (evalOnly)
|
2006-08-16 12:32:30 +02:00
|
|
|
if (xmlOutput) {
|
|
|
|
XMLWriter doc(true, cout);
|
|
|
|
XMLOpenElement root(doc, "expr");
|
2006-08-16 23:59:53 +02:00
|
|
|
printTermAsXML(e, doc);
|
2006-08-16 12:32:30 +02:00
|
|
|
} else
|
|
|
|
cout << format("%1%\n") % e;
|
2006-07-25 23:21:50 +02:00
|
|
|
|
2006-02-10 16:14:57 +01:00
|
|
|
else {
|
|
|
|
DrvInfos drvs;
|
2006-07-28 18:03:28 +02:00
|
|
|
getDerivations(state, e, "", autoArgs, drvs);
|
2006-02-10 16:14:57 +01:00
|
|
|
for (DrvInfos::iterator i = drvs.begin(); i != drvs.end(); ++i) {
|
|
|
|
Path drvPath = i->queryDrvPath(state);
|
|
|
|
if (gcRoot == "")
|
|
|
|
printGCWarning();
|
|
|
|
else
|
|
|
|
drvPath = addPermRoot(drvPath,
|
|
|
|
makeRootName(gcRoot, rootNr),
|
|
|
|
indirectRoot);
|
|
|
|
cout << format("%1%\n") % drvPath;
|
|
|
|
}
|
|
|
|
}
|
2004-10-26 18:59:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-16 23:59:53 +02:00
|
|
|
Expr strictEval(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
|
|
|
|
ATermList as;
|
|
|
|
|
|
|
|
if (matchAttrs(e, as)) {
|
|
|
|
ATermList as2 = ATempty;
|
|
|
|
for (ATermIterator i(as); i; ++i) {
|
|
|
|
ATerm name; Expr e; ATerm pos;
|
|
|
|
if (!matchBind(*i, name, e, pos)) abort(); /* can't happen */
|
|
|
|
as2 = ATinsert(as2, makeBind(name, strictEval(state, e), pos));
|
|
|
|
}
|
|
|
|
return makeAttrs(ATreverse(as2));
|
|
|
|
}
|
|
|
|
|
|
|
|
ATermList formals;
|
|
|
|
ATerm body, pos;
|
|
|
|
|
|
|
|
if (matchFunction(e, formals, body, pos)) {
|
|
|
|
ATermList formals2 = ATempty;
|
|
|
|
|
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
|
|
|
Expr name; ValidValues valids; ATerm dummy;
|
|
|
|
if (!matchFormal(*i, name, valids, dummy)) abort();
|
|
|
|
|
|
|
|
ATermList valids2;
|
|
|
|
if (matchValidValues(valids, valids2)) {
|
|
|
|
ATermList valids3 = ATempty;
|
|
|
|
for (ATermIterator j(valids2); j; ++j)
|
|
|
|
valids3 = ATinsert(valids3, strictEval(state, *j));
|
|
|
|
valids = makeValidValues(ATreverse(valids3));
|
|
|
|
}
|
|
|
|
|
|
|
|
formals2 = ATinsert(formals2, makeFormal(name, valids, dummy));
|
|
|
|
}
|
|
|
|
return makeFunction(ATreverse(formals2), body, pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-29 16:05:18 +01:00
|
|
|
void run(Strings args)
|
|
|
|
{
|
|
|
|
EvalState state;
|
|
|
|
Strings files;
|
|
|
|
bool readStdin = false;
|
2004-10-26 18:59:36 +02:00
|
|
|
bool evalOnly = false;
|
|
|
|
bool parseOnly = false;
|
2006-08-16 12:32:30 +02:00
|
|
|
bool xmlOutput = false;
|
2006-08-16 23:59:53 +02:00
|
|
|
bool strict = false;
|
2006-02-10 18:25:59 +01:00
|
|
|
string attrPath;
|
2006-07-28 18:03:28 +02:00
|
|
|
ATermMap autoArgs(128);
|
2003-10-29 16:05:18 +01:00
|
|
|
|
2005-02-01 13:36:25 +01:00
|
|
|
for (Strings::iterator i = args.begin();
|
|
|
|
i != args.end(); )
|
2003-10-29 16:05:18 +01:00
|
|
|
{
|
2005-02-01 13:36:25 +01:00
|
|
|
string arg = *i++;
|
2003-10-29 16:05:18 +01:00
|
|
|
|
2003-12-01 16:55:05 +01:00
|
|
|
if (arg == "-")
|
2003-10-29 16:05:18 +01:00
|
|
|
readStdin = true;
|
2004-10-26 18:59:36 +02:00
|
|
|
else if (arg == "--eval-only") {
|
|
|
|
readOnlyMode = true;
|
|
|
|
evalOnly = true;
|
|
|
|
}
|
|
|
|
else if (arg == "--parse-only") {
|
|
|
|
readOnlyMode = true;
|
|
|
|
parseOnly = evalOnly = true;
|
|
|
|
}
|
2006-02-10 18:37:35 +01:00
|
|
|
else if (arg == "--attr" || arg == "-A") {
|
2006-02-10 18:25:59 +01:00
|
|
|
if (i == args.end())
|
2006-07-28 18:03:28 +02:00
|
|
|
throw UsageError("`--attr' requires an argument");
|
2006-02-10 18:25:59 +01:00
|
|
|
attrPath = *i++;
|
|
|
|
}
|
2006-07-28 18:03:28 +02:00
|
|
|
else if (arg == "--arg") {
|
|
|
|
if (i == args.end())
|
|
|
|
throw UsageError("`--arg' requires two arguments");
|
|
|
|
string name = *i++;
|
|
|
|
if (i == args.end())
|
|
|
|
throw UsageError("`--arg' requires two arguments");
|
|
|
|
Expr value = parseExprFromString(state, *i++, absPath("."));
|
|
|
|
autoArgs.set(toATerm(name), value);
|
|
|
|
}
|
|
|
|
else if (arg == "--add-root") {
|
|
|
|
if (i == args.end())
|
|
|
|
throw UsageError("`--add-root' requires an argument");
|
|
|
|
gcRoot = absPath(*i++);
|
|
|
|
}
|
2005-02-01 14:48:46 +01:00
|
|
|
else if (arg == "--indirect")
|
|
|
|
indirectRoot = true;
|
2006-08-16 12:32:30 +02:00
|
|
|
else if (arg == "--xml")
|
|
|
|
xmlOutput = true;
|
2006-08-16 23:59:53 +02:00
|
|
|
else if (arg == "--strict")
|
|
|
|
strict = true;
|
2003-10-29 16:05:18 +01:00
|
|
|
else if (arg[0] == '-')
|
2006-07-28 18:03:28 +02:00
|
|
|
throw UsageError(format("unknown flag `%1%'") % arg);
|
2003-10-29 16:05:18 +01:00
|
|
|
else
|
|
|
|
files.push_back(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
openDB();
|
|
|
|
|
|
|
|
if (readStdin) {
|
2006-07-26 17:05:15 +02:00
|
|
|
Expr e = findAlongAttrPath(state, attrPath, parseStdin(state));
|
|
|
|
if (!parseOnly) e = evalExpr(state, e);
|
2006-08-16 23:59:53 +02:00
|
|
|
printResult(state, e, evalOnly, xmlOutput, autoArgs);
|
2003-10-29 16:05:18 +01:00
|
|
|
}
|
|
|
|
|
2005-02-01 13:36:25 +01:00
|
|
|
for (Strings::iterator i = files.begin();
|
|
|
|
i != files.end(); i++)
|
2003-10-29 16:05:18 +01:00
|
|
|
{
|
2006-02-10 16:28:47 +01:00
|
|
|
Path path = absPath(*i);
|
2006-07-26 17:05:15 +02:00
|
|
|
Expr e = findAlongAttrPath(state, attrPath,
|
|
|
|
parseExprFromFile(state, path));
|
|
|
|
if (!parseOnly) e = evalExpr(state, e);
|
2006-08-16 23:59:53 +02:00
|
|
|
if (strict) e = strictEval(state, e);
|
|
|
|
printResult(state, e, evalOnly, xmlOutput, autoArgs);
|
2003-10-29 16:05:18 +01:00
|
|
|
}
|
2003-10-31 18:09:31 +01:00
|
|
|
|
|
|
|
printEvalStats(state);
|
2003-10-29 16:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-18 13:06:07 +01:00
|
|
|
string programId = "nix-instantiate";
|