2003-10-29 15:05:18 +00:00
|
|
|
#include <map>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "globals.hh"
|
2005-01-19 16:39:47 +00:00
|
|
|
#include "build.hh"
|
2005-02-01 12:36:25 +00:00
|
|
|
#include "gc.hh"
|
2003-10-29 15:05:18 +00:00
|
|
|
#include "shared.hh"
|
2003-10-30 16:48:26 +00:00
|
|
|
#include "eval.hh"
|
2003-11-22 18:45:56 +00:00
|
|
|
#include "parser.hh"
|
2004-10-29 11:22:49 +00:00
|
|
|
#include "nixexpr-ast.hh"
|
2006-02-10 15:14:57 +00:00
|
|
|
#include "get-drvs.hh"
|
2003-12-01 15:55:05 +00:00
|
|
|
#include "help.txt.hh"
|
|
|
|
|
|
|
|
|
|
|
|
void printHelp()
|
|
|
|
{
|
|
|
|
cout << string((char *) helpText, sizeof helpText);
|
|
|
|
}
|
2003-10-29 15:05:18 +00:00
|
|
|
|
|
|
|
|
2004-10-26 16:59:36 +00:00
|
|
|
static Expr evalStdin(EvalState & state, bool parseOnly)
|
2003-10-29 15:05:18 +00:00
|
|
|
{
|
2003-11-09 10:35:45 +00:00
|
|
|
startNest(nest, lvlTalkative, format("evaluating standard input"));
|
2003-11-22 18:45:56 +00:00
|
|
|
string s, s2;
|
|
|
|
while (getline(cin, s2)) s += s2 + "\n";
|
2004-02-04 16:03:29 +00:00
|
|
|
Expr e = parseExprFromString(state, s, absPath("."));
|
2004-10-26 16:59:36 +00:00
|
|
|
return parseOnly ? e : evalExpr(state, e);
|
2003-10-29 15:05:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-01 12:36:25 +00:00
|
|
|
static Path gcRoot;
|
|
|
|
static int rootNr = 0;
|
2005-02-01 13:48:46 +00:00
|
|
|
static bool indirectRoot = false;
|
2005-02-01 12:36:25 +00:00
|
|
|
|
|
|
|
|
2006-07-25 21:21:50 +00:00
|
|
|
static void printResult(EvalState & state, Expr e,
|
|
|
|
bool evalOnly, bool printArgs, const string & attrPath)
|
2004-10-26 16:59:36 +00:00
|
|
|
{
|
|
|
|
if (evalOnly)
|
|
|
|
cout << format("%1%\n") % e;
|
2006-07-25 21:21:50 +00:00
|
|
|
|
|
|
|
else if (printArgs) {
|
|
|
|
ATermList formals;
|
|
|
|
ATerm body, pos;
|
|
|
|
if (matchFunction(e, formals, body, pos)) {
|
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
|
|
|
Expr name; ATerm d1, d2;
|
|
|
|
if (!matchFormal(*i, name, d1, d2)) abort();
|
|
|
|
cout << format("%1%\n") % aterm2String(name);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
printMsg(lvlError, "warning: expression does not evaluate to a function");
|
|
|
|
}
|
|
|
|
|
2006-02-10 15:14:57 +00:00
|
|
|
else {
|
|
|
|
DrvInfos drvs;
|
2006-02-10 17:25:59 +00:00
|
|
|
getDerivations(state, e, drvs, attrPath);
|
2006-02-10 15:14:57 +00: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 16:59:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-29 15:05:18 +00:00
|
|
|
void run(Strings args)
|
|
|
|
{
|
|
|
|
EvalState state;
|
|
|
|
Strings files;
|
|
|
|
bool readStdin = false;
|
2004-10-26 16:59:36 +00:00
|
|
|
bool evalOnly = false;
|
|
|
|
bool parseOnly = false;
|
2006-07-25 21:21:50 +00:00
|
|
|
bool printArgs = false;
|
2006-02-10 17:25:59 +00:00
|
|
|
string attrPath;
|
2003-10-29 15:05:18 +00:00
|
|
|
|
2005-02-01 12:36:25 +00:00
|
|
|
for (Strings::iterator i = args.begin();
|
|
|
|
i != args.end(); )
|
2003-10-29 15:05:18 +00:00
|
|
|
{
|
2005-02-01 12:36:25 +00:00
|
|
|
string arg = *i++;
|
2003-10-29 15:05:18 +00:00
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
if (arg == "-")
|
2003-10-29 15:05:18 +00:00
|
|
|
readStdin = true;
|
2004-10-26 16:59:36 +00:00
|
|
|
else if (arg == "--eval-only") {
|
|
|
|
readOnlyMode = true;
|
|
|
|
evalOnly = true;
|
|
|
|
}
|
|
|
|
else if (arg == "--parse-only") {
|
|
|
|
readOnlyMode = true;
|
|
|
|
parseOnly = evalOnly = true;
|
|
|
|
}
|
2006-07-25 21:21:50 +00:00
|
|
|
else if (arg == "--print-args") {
|
|
|
|
readOnlyMode = true;
|
|
|
|
printArgs = true;
|
|
|
|
}
|
2005-02-01 12:36:25 +00:00
|
|
|
else if (arg == "--add-root") {
|
|
|
|
if (i == args.end())
|
|
|
|
throw UsageError("`--add-root requires an argument");
|
2005-02-01 13:48:46 +00:00
|
|
|
gcRoot = absPath(*i++);
|
2005-02-01 12:36:25 +00:00
|
|
|
}
|
2006-02-10 17:37:35 +00:00
|
|
|
else if (arg == "--attr" || arg == "-A") {
|
2006-02-10 17:25:59 +00:00
|
|
|
if (i == args.end())
|
|
|
|
throw UsageError("`--attr requires an argument");
|
|
|
|
attrPath = *i++;
|
|
|
|
}
|
2005-02-01 13:48:46 +00:00
|
|
|
else if (arg == "--indirect")
|
|
|
|
indirectRoot = true;
|
2003-10-29 15:05:18 +00:00
|
|
|
else if (arg[0] == '-')
|
|
|
|
throw UsageError(format("unknown flag `%1%`") % arg);
|
|
|
|
else
|
|
|
|
files.push_back(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
openDB();
|
|
|
|
|
|
|
|
if (readStdin) {
|
2004-10-26 16:59:36 +00:00
|
|
|
Expr e = evalStdin(state, parseOnly);
|
2006-07-25 21:21:50 +00:00
|
|
|
printResult(state, e, evalOnly, printArgs, attrPath);
|
2003-10-29 15:05:18 +00:00
|
|
|
}
|
|
|
|
|
2005-02-01 12:36:25 +00:00
|
|
|
for (Strings::iterator i = files.begin();
|
|
|
|
i != files.end(); i++)
|
2003-10-29 15:05:18 +00:00
|
|
|
{
|
2006-02-10 15:28:47 +00:00
|
|
|
Path path = absPath(*i);
|
|
|
|
Expr e = parseOnly
|
|
|
|
? parseExprFromFile(state, path)
|
|
|
|
: evalFile(state, path);
|
2006-07-25 21:21:50 +00:00
|
|
|
printResult(state, e, evalOnly, printArgs, attrPath);
|
2003-10-29 15:05:18 +00:00
|
|
|
}
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
printEvalStats(state);
|
2003-10-29 15:05:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-18 12:06:07 +00:00
|
|
|
string programId = "nix-instantiate";
|