2003-10-29 15:05:18 +00:00
|
|
|
#include <map>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "globals.hh"
|
|
|
|
#include "normalise.hh"
|
|
|
|
#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"
|
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
|
|
|
|
|
|
|
|
|
|
|
static Expr evalStdin(EvalState & state)
|
|
|
|
{
|
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("."));
|
2003-10-29 15:05:18 +00:00
|
|
|
return evalExpr(state, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void printNixExpr(EvalState & state, Expr e)
|
|
|
|
{
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
2003-10-29 15:05:18 +00:00
|
|
|
ATermList es;
|
2003-10-31 17:09:31 +00:00
|
|
|
|
2004-07-01 14:25:26 +00:00
|
|
|
/* !!! duplication w.r.t. parseDerivations in nix-env */
|
|
|
|
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Attrs" >> es) {
|
2003-10-31 17:09:31 +00:00
|
|
|
Expr a = queryAttr(e, "type");
|
|
|
|
if (a && evalString(state, a) == "derivation") {
|
|
|
|
a = queryAttr(e, "drvPath");
|
|
|
|
if (a) {
|
|
|
|
cout << format("%1%\n") % evalPath(state, a);
|
|
|
|
return;
|
|
|
|
}
|
2004-07-01 14:25:26 +00:00
|
|
|
throw Error("bad derivation");
|
|
|
|
} else {
|
|
|
|
ATermMap drvMap;
|
|
|
|
queryAllAttrs(e, drvMap);
|
|
|
|
for (ATermIterator i(drvMap.keys()); i; ++i)
|
|
|
|
printNixExpr(state, evalExpr(state, drvMap.get(*i)));
|
|
|
|
return;
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-22 20:39:51 +00:00
|
|
|
if (atMatch(m, e) >> "List" >> es) {
|
|
|
|
for (ATermIterator i(es); i; ++i)
|
2003-11-16 18:31:29 +00:00
|
|
|
printNixExpr(state, evalExpr(state, *i));
|
2003-10-31 17:09:31 +00:00
|
|
|
return;
|
2003-10-29 15:05:18 +00:00
|
|
|
}
|
2003-10-31 17:09:31 +00:00
|
|
|
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error("expression does not evaluate to one or more derivations");
|
2003-10-29 15:05:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void run(Strings args)
|
|
|
|
{
|
|
|
|
EvalState state;
|
|
|
|
Strings files;
|
|
|
|
bool readStdin = false;
|
|
|
|
|
|
|
|
for (Strings::iterator it = args.begin();
|
|
|
|
it != args.end(); )
|
|
|
|
{
|
|
|
|
string arg = *it++;
|
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
if (arg == "-")
|
2003-10-29 15:05:18 +00:00
|
|
|
readStdin = true;
|
|
|
|
else if (arg[0] == '-')
|
|
|
|
throw UsageError(format("unknown flag `%1%`") % arg);
|
|
|
|
else
|
|
|
|
files.push_back(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
openDB();
|
|
|
|
|
|
|
|
if (readStdin) {
|
|
|
|
Expr e = evalStdin(state);
|
|
|
|
printNixExpr(state, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Strings::iterator it = files.begin();
|
|
|
|
it != files.end(); it++)
|
|
|
|
{
|
2003-10-30 16:10:56 +00:00
|
|
|
Expr e = evalFile(state, absPath(*it));
|
2003-10-29 15:05:18 +00:00
|
|
|
printNixExpr(state, e);
|
|
|
|
}
|
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";
|