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