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"
|
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-07-25 23:21:50 +02:00
|
|
|
static void printResult(EvalState & state, Expr e,
|
2006-07-26 17:05:15 +02:00
|
|
|
bool evalOnly, bool printArgs)
|
2004-10-26 18:59:36 +02:00
|
|
|
{
|
|
|
|
if (evalOnly)
|
|
|
|
cout << format("%1%\n") % e;
|
2006-07-25 23:21:50 +02: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 16:14:57 +01:00
|
|
|
else {
|
|
|
|
DrvInfos drvs;
|
2006-07-26 17:05:15 +02:00
|
|
|
getDerivations(state, e, "", 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
|
|
|
}
|
|
|
|
|
|
|
|
|
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-07-25 23:21:50 +02:00
|
|
|
bool printArgs = false;
|
2006-02-10 18:25:59 +01:00
|
|
|
string attrPath;
|
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-07-25 23:21:50 +02:00
|
|
|
else if (arg == "--print-args") {
|
|
|
|
readOnlyMode = true;
|
|
|
|
printArgs = true;
|
|
|
|
}
|
2005-02-01 13:36:25 +01:00
|
|
|
else if (arg == "--add-root") {
|
|
|
|
if (i == args.end())
|
|
|
|
throw UsageError("`--add-root requires an argument");
|
2005-02-01 14:48:46 +01:00
|
|
|
gcRoot = absPath(*i++);
|
2005-02-01 13:36:25 +01:00
|
|
|
}
|
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())
|
|
|
|
throw UsageError("`--attr requires an argument");
|
|
|
|
attrPath = *i++;
|
|
|
|
}
|
2005-02-01 14:48:46 +01:00
|
|
|
else if (arg == "--indirect")
|
|
|
|
indirectRoot = true;
|
2003-10-29 16:05:18 +01:00
|
|
|
else if (arg[0] == '-')
|
|
|
|
throw UsageError(format("unknown flag `%1%`") % arg);
|
|
|
|
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);
|
|
|
|
printResult(state, e, evalOnly, printArgs);
|
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);
|
|
|
|
printResult(state, e, evalOnly, printArgs);
|
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";
|