Nix/src/nix-instantiate/main.cc

162 lines
4.1 KiB
C++
Raw Normal View History

2003-10-29 16:05:18 +01:00
#include <map>
#include <iostream>
#include "globals.hh"
#include "build.hh"
#include "gc.hh"
2003-10-29 16:05:18 +01:00
#include "shared.hh"
#include "eval.hh"
#include "parser.hh"
#include "nixexpr-ast.hh"
#include "help.txt.hh"
void printHelp()
{
cout << string((char *) helpText, sizeof helpText);
}
2003-10-29 16:05:18 +01:00
static Expr evalStdin(EvalState & state, bool parseOnly)
2003-10-29 16:05:18 +01:00
{
startNest(nest, lvlTalkative, format("evaluating standard input"));
string s, s2;
while (getline(cin, s2)) s += s2 + "\n";
Expr e = parseExprFromString(state, s, absPath("."));
return parseOnly ? e : evalExpr(state, e);
2003-10-29 16:05:18 +01:00
}
static Path gcRoot;
static int rootNr = 0;
static bool indirectRoot = false;
/* Print out the paths of the resulting derivation(s). If the user
specified the `--add-root' flag, we register the derivation as a
garbage collection root and print out the path of the GC root
symlink instead. */
static void printDrvPaths(EvalState & state, Expr e)
2003-10-29 16:05:18 +01:00
{
ATermList es;
/* !!! duplication w.r.t. parseDerivations in nix-env */
if (matchAttrs(e, es)) {
Expr a = queryAttr(e, "type");
if (a && evalString(state, a) == "derivation") {
a = queryAttr(e, "drvPath");
if (a) {
Path drvPath = evalPath(state, a);
if (gcRoot == "")
printGCWarning();
else
drvPath = addPermRoot(drvPath,
makeRootName(gcRoot, rootNr),
indirectRoot);
cout << format("%1%\n") % drvPath;
return;
}
throw Error("bad derivation");
} else {
ATermMap drvMap;
queryAllAttrs(e, drvMap);
for (ATermIterator i(drvMap.keys()); i; ++i)
printDrvPaths(state, evalExpr(state, drvMap.get(*i)));
return;
}
}
if (matchList(e, es)) {
2003-11-22 21:39:51 +01:00
for (ATermIterator i(es); i; ++i)
printDrvPaths(state, evalExpr(state, *i));
return;
2003-10-29 16:05:18 +01:00
}
ATermList formals;
ATerm body, pos;
if (matchFunction(e, formals, body, pos)) {
for (ATermIterator i(formals); i; ++i) {
Expr name, def;
if (matchNoDefFormal(*i, name))
throw Error(format("expression evaluates to a function with no-default arguments (`%1%')")
% aterm2String(name));
else if (!matchDefFormal(*i, name, def))
abort(); /* can't happen */
}
printDrvPaths(state, evalExpr(state,
makeCall(e, makeAttrs(ATermMap()))));
return;
}
throw Error("expression does not evaluate to one or more derivations");
2003-10-29 16:05:18 +01:00
}
static void printResult(EvalState & state, Expr e, bool evalOnly)
{
if (evalOnly)
cout << format("%1%\n") % e;
else
printDrvPaths(state, e);
}
2003-10-29 16:05:18 +01:00
void run(Strings args)
{
EvalState state;
Strings files;
bool readStdin = false;
bool evalOnly = false;
bool parseOnly = false;
2003-10-29 16:05:18 +01:00
for (Strings::iterator i = args.begin();
i != args.end(); )
2003-10-29 16:05:18 +01:00
{
string arg = *i++;
2003-10-29 16:05:18 +01:00
if (arg == "-")
2003-10-29 16:05:18 +01:00
readStdin = true;
else if (arg == "--eval-only") {
readOnlyMode = true;
evalOnly = true;
}
else if (arg == "--parse-only") {
readOnlyMode = true;
parseOnly = evalOnly = true;
}
else if (arg == "--add-root") {
if (i == args.end())
throw UsageError("`--add-root requires an argument");
gcRoot = absPath(*i++);
}
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) {
Expr e = evalStdin(state, parseOnly);
printResult(state, e, evalOnly);
2003-10-29 16:05:18 +01:00
}
for (Strings::iterator i = files.begin();
i != files.end(); i++)
2003-10-29 16:05:18 +01:00
{
Expr e = evalFile(state, absPath(*i));
/* !!! parseOnly ignored */
printResult(state, e, evalOnly);
2003-10-29 16:05:18 +01:00
}
printEvalStats(state);
2003-10-29 16:05:18 +01:00
}
string programId = "nix-instantiate";