2003-10-29 16:05:18 +01:00
|
|
|
#include <map>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "globals.hh"
|
|
|
|
#include "normalise.hh"
|
|
|
|
#include "shared.hh"
|
2003-10-30 17:48:26 +01:00
|
|
|
#include "eval.hh"
|
2003-10-29 16:05:18 +01:00
|
|
|
|
|
|
|
|
2003-10-30 17:10:56 +01:00
|
|
|
#if 0
|
2003-10-29 16:05:18 +01:00
|
|
|
static Path searchPath(const Paths & searchDirs, const Path & relPath)
|
|
|
|
{
|
|
|
|
if (string(relPath, 0, 1) == "/") return relPath;
|
|
|
|
|
|
|
|
for (Paths::const_iterator i = searchDirs.begin();
|
|
|
|
i != searchDirs.end(); i++)
|
|
|
|
{
|
|
|
|
Path path = *i + "/" + relPath;
|
|
|
|
if (pathExists(path)) return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw Error(
|
|
|
|
format("path `%1%' not found in any of the search directories")
|
|
|
|
% relPath);
|
|
|
|
}
|
2003-10-30 17:10:56 +01:00
|
|
|
#endif
|
2003-10-29 16:05:18 +01:00
|
|
|
|
|
|
|
|
|
|
|
static Expr evalStdin(EvalState & state)
|
|
|
|
{
|
2003-11-09 11:35:45 +01:00
|
|
|
startNest(nest, lvlTalkative, format("evaluating standard input"));
|
2003-10-29 16:05:18 +01:00
|
|
|
Expr e = ATreadFromFile(stdin);
|
|
|
|
if (!e)
|
|
|
|
throw Error(format("unable to read a term from stdin"));
|
|
|
|
return evalExpr(state, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void printNixExpr(EvalState & state, Expr e)
|
|
|
|
{
|
2003-11-16 18:46:31 +01:00
|
|
|
ATMatcher m;
|
2003-10-29 16:05:18 +01:00
|
|
|
ATermList es;
|
2003-10-31 18:09:31 +01:00
|
|
|
|
2003-11-16 18:46:31 +01:00
|
|
|
if (atMatch(m, e) >> "Attrs" >> es) {
|
2003-10-31 18:09:31 +01: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-16 18:46:31 +01:00
|
|
|
if (ATgetType(e) == AT_LIST) {
|
2003-11-16 19:31:29 +01:00
|
|
|
for (ATermIterator i((ATermList) e); i; ++i)
|
|
|
|
printNixExpr(state, evalExpr(state, *i));
|
2003-10-31 18:09:31 +01:00
|
|
|
return;
|
2003-10-29 16:05:18 +01:00
|
|
|
}
|
2003-10-31 18:09:31 +01:00
|
|
|
|
|
|
|
throw badTerm("top level does not evaluate to one or more Nix expressions", e);
|
2003-10-29 16:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void run(Strings args)
|
|
|
|
{
|
|
|
|
EvalState state;
|
|
|
|
Strings files;
|
|
|
|
bool readStdin = false;
|
|
|
|
|
2003-10-30 17:48:26 +01:00
|
|
|
#if 0
|
2003-10-29 16:05:18 +01:00
|
|
|
state.searchDirs.push_back(".");
|
2003-11-18 13:06:07 +01:00
|
|
|
state.searchDirs.push_back(nixDataDir + "/nix");
|
2003-10-30 17:48:26 +01:00
|
|
|
#endif
|
2003-10-29 16:05:18 +01:00
|
|
|
|
|
|
|
for (Strings::iterator it = args.begin();
|
|
|
|
it != args.end(); )
|
|
|
|
{
|
|
|
|
string arg = *it++;
|
|
|
|
|
2003-10-30 17:48:26 +01:00
|
|
|
#if 0
|
2003-10-29 16:05:18 +01:00
|
|
|
if (arg == "--includedir" || arg == "-I") {
|
|
|
|
if (it == args.end())
|
|
|
|
throw UsageError(format("argument required in `%1%'") % arg);
|
|
|
|
state.searchDirs.push_back(*it++);
|
|
|
|
}
|
2003-10-30 17:48:26 +01:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if (arg == "--verbose" || arg == "-v")
|
2003-10-29 16:05:18 +01:00
|
|
|
verbosity = (Verbosity) ((int) verbosity + 1);
|
|
|
|
else if (arg == "-")
|
|
|
|
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 17:10:56 +01:00
|
|
|
Expr e = evalFile(state, absPath(*it));
|
2003-10-29 16:05:18 +01:00
|
|
|
printNixExpr(state, e);
|
|
|
|
}
|
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";
|