2003-10-29 17:05:18 +02:00
|
|
|
#include <map>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "globals.hh"
|
|
|
|
#include "shared.hh"
|
2003-10-30 18:48:26 +02:00
|
|
|
#include "eval.hh"
|
2003-11-22 20:45:56 +02:00
|
|
|
#include "parser.hh"
|
2006-02-10 17:14:57 +02:00
|
|
|
#include "get-drvs.hh"
|
2006-07-26 18:05:15 +03:00
|
|
|
#include "attr-path.hh"
|
2006-08-24 17:16:55 +03:00
|
|
|
#include "expr-to-xml.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "util.hh"
|
2006-11-30 19:43:04 +02:00
|
|
|
#include "store-api.hh"
|
2007-01-14 14:32:44 +02:00
|
|
|
#include "common-opts.hh"
|
2003-12-01 17:55:05 +02:00
|
|
|
#include "help.txt.hh"
|
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
|
2003-12-01 17:55:05 +02:00
|
|
|
void printHelp()
|
|
|
|
{
|
2006-09-05 00:06:23 +03:00
|
|
|
std::cout << string((char *) helpText, sizeof helpText);
|
2003-12-01 17:55:05 +02:00
|
|
|
}
|
2003-10-29 17:05:18 +02:00
|
|
|
|
|
|
|
|
2006-07-26 18:05:15 +03:00
|
|
|
static Expr parseStdin(EvalState & state)
|
2003-10-29 17:05:18 +02:00
|
|
|
{
|
2006-07-26 18:05:15 +03:00
|
|
|
startNest(nest, lvlTalkative, format("parsing standard input"));
|
2003-11-22 20:45:56 +02:00
|
|
|
string s, s2;
|
2006-09-05 00:06:23 +03:00
|
|
|
while (getline(std::cin, s2)) s += s2 + "\n";
|
2006-07-26 18:05:15 +03:00
|
|
|
return parseExprFromString(state, s, absPath("."));
|
2003-10-29 17:05:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-01 14:36:25 +02:00
|
|
|
static Path gcRoot;
|
|
|
|
static int rootNr = 0;
|
2005-02-01 15:48:46 +02:00
|
|
|
static bool indirectRoot = false;
|
2005-02-01 14:36:25 +02:00
|
|
|
|
|
|
|
|
2010-03-29 17:37:56 +03:00
|
|
|
#if 0
|
2006-07-26 00:21:50 +03:00
|
|
|
static void printResult(EvalState & state, Expr e,
|
2006-08-17 00:59:53 +03:00
|
|
|
bool evalOnly, bool xmlOutput, const ATermMap & autoArgs)
|
2004-10-26 19:59:36 +03:00
|
|
|
{
|
2006-10-16 18:55:34 +03:00
|
|
|
PathSet context;
|
2006-10-03 18:38:59 +03:00
|
|
|
|
2004-10-26 19:59:36 +03:00
|
|
|
if (evalOnly)
|
2006-08-24 17:16:55 +03:00
|
|
|
if (xmlOutput)
|
2006-10-03 18:38:59 +03:00
|
|
|
printTermAsXML(e, std::cout, context);
|
2006-08-24 17:16:55 +03:00
|
|
|
else
|
2007-01-13 18:17:07 +02:00
|
|
|
std::cout << format("%1%\n") % canonicaliseExpr(e);
|
2006-07-26 00:21:50 +03:00
|
|
|
|
2006-02-10 17:14:57 +02:00
|
|
|
else {
|
|
|
|
DrvInfos drvs;
|
2006-07-28 19:03:28 +03:00
|
|
|
getDerivations(state, e, "", autoArgs, drvs);
|
2006-02-10 17:14:57 +02: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);
|
2006-09-05 00:06:23 +03:00
|
|
|
std::cout << format("%1%\n") % drvPath;
|
2006-02-10 17:14:57 +02:00
|
|
|
}
|
|
|
|
}
|
2004-10-26 19:59:36 +03:00
|
|
|
}
|
2010-03-29 17:37:56 +03:00
|
|
|
#endif
|
2004-10-26 19:59:36 +03:00
|
|
|
|
|
|
|
|
2007-01-13 20:25:30 +02:00
|
|
|
void processExpr(EvalState & state, const Strings & attrPaths,
|
|
|
|
bool parseOnly, bool strict, const ATermMap & autoArgs,
|
|
|
|
bool evalOnly, bool xmlOutput, Expr e)
|
2006-08-17 11:53:08 +03:00
|
|
|
{
|
2010-03-30 21:05:54 +03:00
|
|
|
if (parseOnly)
|
|
|
|
std::cout << format("%1%\n") % canonicaliseExpr(e);
|
|
|
|
else {
|
|
|
|
Value v;
|
2010-04-07 16:55:46 +03:00
|
|
|
state.eval(e, v);
|
|
|
|
if (strict) state.strictForceValue(v);
|
2010-03-31 18:38:03 +03:00
|
|
|
if (evalOnly)
|
|
|
|
std::cout << v << std::endl;
|
|
|
|
else {
|
|
|
|
DrvInfos drvs;
|
|
|
|
getDerivations(state, v, "", autoArgs, drvs);
|
|
|
|
foreach (DrvInfos::iterator, i, drvs) {
|
|
|
|
Path drvPath = i->queryDrvPath(state);
|
|
|
|
if (gcRoot == "")
|
|
|
|
printGCWarning();
|
|
|
|
else
|
|
|
|
drvPath = addPermRoot(drvPath,
|
|
|
|
makeRootName(gcRoot, rootNr),
|
|
|
|
indirectRoot);
|
|
|
|
std::cout << format("%1%\n") % drvPath;
|
|
|
|
}
|
|
|
|
}
|
2010-03-30 21:05:54 +03:00
|
|
|
}
|
2010-03-29 17:37:56 +03:00
|
|
|
|
|
|
|
#if 0
|
2007-01-13 20:25:30 +02:00
|
|
|
for (Strings::const_iterator i = attrPaths.begin(); i != attrPaths.end(); ++i) {
|
|
|
|
Expr e2 = findAlongAttrPath(state, *i, autoArgs, e);
|
|
|
|
if (!parseOnly)
|
|
|
|
if (strict)
|
2010-03-29 17:37:56 +03:00
|
|
|
e2 = state.strictEval(e2);
|
2007-01-13 20:25:30 +02:00
|
|
|
else
|
|
|
|
e2 = evalExpr(state, e2);
|
|
|
|
printResult(state, e2, evalOnly, xmlOutput, autoArgs);
|
|
|
|
}
|
2010-03-29 17:37:56 +03:00
|
|
|
#endif
|
2006-08-17 11:53:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-29 17:05:18 +02:00
|
|
|
void run(Strings args)
|
|
|
|
{
|
|
|
|
EvalState state;
|
|
|
|
Strings files;
|
|
|
|
bool readStdin = false;
|
2004-10-26 19:59:36 +03:00
|
|
|
bool evalOnly = false;
|
|
|
|
bool parseOnly = false;
|
2006-08-16 13:32:30 +03:00
|
|
|
bool xmlOutput = false;
|
2006-08-17 00:59:53 +03:00
|
|
|
bool strict = false;
|
2007-01-13 20:25:30 +02:00
|
|
|
Strings attrPaths;
|
2006-07-28 19:03:28 +03:00
|
|
|
ATermMap autoArgs(128);
|
2003-10-29 17:05:18 +02:00
|
|
|
|
2005-02-01 14:36:25 +02:00
|
|
|
for (Strings::iterator i = args.begin();
|
|
|
|
i != args.end(); )
|
2003-10-29 17:05:18 +02:00
|
|
|
{
|
2005-02-01 14:36:25 +02:00
|
|
|
string arg = *i++;
|
2003-10-29 17:05:18 +02:00
|
|
|
|
2003-12-01 17:55:05 +02:00
|
|
|
if (arg == "-")
|
2003-10-29 17:05:18 +02:00
|
|
|
readStdin = true;
|
2004-10-26 19:59:36 +03:00
|
|
|
else if (arg == "--eval-only") {
|
|
|
|
readOnlyMode = true;
|
|
|
|
evalOnly = true;
|
|
|
|
}
|
|
|
|
else if (arg == "--parse-only") {
|
|
|
|
readOnlyMode = true;
|
|
|
|
parseOnly = evalOnly = true;
|
|
|
|
}
|
2006-02-10 19:37:35 +02:00
|
|
|
else if (arg == "--attr" || arg == "-A") {
|
2006-02-10 19:25:59 +02:00
|
|
|
if (i == args.end())
|
2006-07-28 19:03:28 +03:00
|
|
|
throw UsageError("`--attr' requires an argument");
|
2007-01-13 20:25:30 +02:00
|
|
|
attrPaths.push_back(*i++);
|
2006-02-10 19:25:59 +02:00
|
|
|
}
|
2007-01-14 14:32:44 +02:00
|
|
|
else if (parseOptionArg(arg, i, args.end(), state, autoArgs))
|
|
|
|
;
|
2006-07-28 19:03:28 +03:00
|
|
|
else if (arg == "--add-root") {
|
|
|
|
if (i == args.end())
|
|
|
|
throw UsageError("`--add-root' requires an argument");
|
|
|
|
gcRoot = absPath(*i++);
|
|
|
|
}
|
2005-02-01 15:48:46 +02:00
|
|
|
else if (arg == "--indirect")
|
|
|
|
indirectRoot = true;
|
2006-08-16 13:32:30 +03:00
|
|
|
else if (arg == "--xml")
|
|
|
|
xmlOutput = true;
|
2006-08-17 00:59:53 +03:00
|
|
|
else if (arg == "--strict")
|
|
|
|
strict = true;
|
2003-10-29 17:05:18 +02:00
|
|
|
else if (arg[0] == '-')
|
2006-07-28 19:03:28 +03:00
|
|
|
throw UsageError(format("unknown flag `%1%'") % arg);
|
2003-10-29 17:05:18 +02:00
|
|
|
else
|
|
|
|
files.push_back(arg);
|
|
|
|
}
|
|
|
|
|
2007-01-13 20:25:30 +02:00
|
|
|
if (attrPaths.empty()) attrPaths.push_back("");
|
|
|
|
|
2006-11-30 19:43:04 +02:00
|
|
|
store = openStore();
|
2003-10-29 17:05:18 +02:00
|
|
|
|
|
|
|
if (readStdin) {
|
2006-08-17 11:53:08 +03:00
|
|
|
Expr e = parseStdin(state);
|
2007-01-13 20:25:30 +02:00
|
|
|
processExpr(state, attrPaths, parseOnly, strict, autoArgs,
|
|
|
|
evalOnly, xmlOutput, e);
|
2003-10-29 17:05:18 +02:00
|
|
|
}
|
|
|
|
|
2005-02-01 14:36:25 +02:00
|
|
|
for (Strings::iterator i = files.begin();
|
|
|
|
i != files.end(); i++)
|
2003-10-29 17:05:18 +02:00
|
|
|
{
|
2006-02-10 17:28:47 +02:00
|
|
|
Path path = absPath(*i);
|
2006-08-17 11:53:08 +03:00
|
|
|
Expr e = parseExprFromFile(state, path);
|
2007-01-13 20:25:30 +02:00
|
|
|
processExpr(state, attrPaths, parseOnly, strict, autoArgs,
|
|
|
|
evalOnly, xmlOutput, e);
|
2003-10-29 17:05:18 +02:00
|
|
|
}
|
2003-10-31 19:09:31 +02:00
|
|
|
|
2010-03-30 18:18:20 +03:00
|
|
|
state.printStats();
|
2003-10-29 17:05:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-18 14:06:07 +02:00
|
|
|
string programId = "nix-instantiate";
|