2013-09-02 13:18:15 +00:00
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
2013-09-06 11:01:02 +00:00
|
|
|
|
#include <setjmp.h>
|
|
|
|
|
|
2013-09-02 13:18:15 +00:00
|
|
|
|
#include <readline/readline.h>
|
|
|
|
|
#include <readline/history.h>
|
|
|
|
|
|
|
|
|
|
#include "shared.hh"
|
|
|
|
|
#include "eval.hh"
|
2013-09-02 15:53:58 +00:00
|
|
|
|
#include "eval-inline.hh"
|
|
|
|
|
#include "store-api.hh"
|
2013-09-02 16:18:27 +00:00
|
|
|
|
#include "common-opts.hh"
|
2013-09-06 12:58:53 +00:00
|
|
|
|
#include "get-drvs.hh"
|
|
|
|
|
#include "derivations.hh"
|
2013-09-06 19:00:36 +00:00
|
|
|
|
#include "affinity.hh"
|
2013-09-02 13:18:15 +00:00
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string programId = "nix-repl";
|
|
|
|
|
|
|
|
|
|
|
2013-09-02 15:53:58 +00:00
|
|
|
|
struct NixRepl
|
|
|
|
|
{
|
|
|
|
|
string curDir;
|
|
|
|
|
EvalState state;
|
|
|
|
|
|
2013-09-09 14:02:46 +00:00
|
|
|
|
Strings loadedFiles;
|
|
|
|
|
|
2013-09-09 15:06:14 +00:00
|
|
|
|
const static int envSize = 32768;
|
2013-09-02 15:53:58 +00:00
|
|
|
|
StaticEnv staticEnv;
|
|
|
|
|
Env * env;
|
|
|
|
|
int displ;
|
2013-09-06 17:51:59 +00:00
|
|
|
|
StringSet varNames;
|
|
|
|
|
|
|
|
|
|
StringSet completions;
|
|
|
|
|
StringSet::iterator curCompletion;
|
2013-09-02 15:53:58 +00:00
|
|
|
|
|
2014-08-26 18:05:08 +00:00
|
|
|
|
NixRepl(const Strings & searchPath);
|
2014-08-26 18:03:12 +00:00
|
|
|
|
void mainLoop(const Strings & files);
|
2013-09-06 17:51:59 +00:00
|
|
|
|
void completePrefix(string prefix);
|
|
|
|
|
bool getLine(string & line);
|
2013-09-09 13:02:56 +00:00
|
|
|
|
bool processLine(string line);
|
2013-09-06 13:20:06 +00:00
|
|
|
|
void loadFile(const Path & path);
|
2013-09-09 15:06:14 +00:00
|
|
|
|
void initEnv();
|
2013-09-09 14:02:46 +00:00
|
|
|
|
void reloadFiles();
|
2013-09-02 16:18:27 +00:00
|
|
|
|
void addAttrsToScope(Value & attrs);
|
2013-09-09 11:56:53 +00:00
|
|
|
|
void addVarToScope(const Symbol & name, Value & v);
|
2013-09-02 15:53:58 +00:00
|
|
|
|
Expr * parseString(string s);
|
2013-09-02 16:00:48 +00:00
|
|
|
|
void evalString(string s, Value & v);
|
2013-09-09 09:14:43 +00:00
|
|
|
|
|
|
|
|
|
typedef set<Value *> ValuesSeen;
|
2013-09-06 22:35:54 +00:00
|
|
|
|
std::ostream & printValue(std::ostream & str, Value & v, unsigned int maxDepth);
|
2013-09-09 09:14:43 +00:00
|
|
|
|
std::ostream & printValue(std::ostream & str, Value & v, unsigned int maxDepth, ValuesSeen & seen);
|
2013-09-02 15:53:58 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2013-09-02 13:18:15 +00:00
|
|
|
|
void printHelp()
|
|
|
|
|
{
|
2015-07-06 13:26:17 +00:00
|
|
|
|
std::cout << "Usage: nix-repl [--help|--version]";
|
|
|
|
|
std::cout << std::endl;
|
2013-09-02 13:18:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-02 16:18:27 +00:00
|
|
|
|
string removeWhitespace(string s)
|
|
|
|
|
{
|
|
|
|
|
s = chomp(s);
|
|
|
|
|
size_t n = s.find_first_not_of(" \n\r\t");
|
|
|
|
|
if (n != string::npos) s = string(s, n);
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-08-26 18:05:08 +00:00
|
|
|
|
NixRepl::NixRepl(const Strings & searchPath)
|
|
|
|
|
: state(searchPath)
|
2014-07-24 15:53:32 +00:00
|
|
|
|
, staticEnv(false, &state.staticBaseEnv)
|
2013-09-02 13:18:15 +00:00
|
|
|
|
{
|
2013-09-02 15:53:58 +00:00
|
|
|
|
curDir = absPath(".");
|
|
|
|
|
|
|
|
|
|
store = openStore();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-08-26 18:03:12 +00:00
|
|
|
|
void NixRepl::mainLoop(const Strings & files)
|
2013-09-02 15:53:58 +00:00
|
|
|
|
{
|
2013-09-06 13:20:06 +00:00
|
|
|
|
std::cout << "Welcome to Nix version " << NIX_VERSION << ". Type :? for help." << std::endl << std::endl;
|
|
|
|
|
|
2015-09-07 11:05:58 +00:00
|
|
|
|
for (auto & i : files)
|
|
|
|
|
loadedFiles.push_back(i);
|
2013-09-09 14:02:46 +00:00
|
|
|
|
|
2013-09-09 15:06:14 +00:00
|
|
|
|
reloadFiles();
|
|
|
|
|
if (!loadedFiles.empty()) std::cout << std::endl;
|
2013-09-02 13:18:15 +00:00
|
|
|
|
|
2013-09-06 11:14:28 +00:00
|
|
|
|
using_history();
|
|
|
|
|
read_history(0);
|
|
|
|
|
|
2013-09-02 13:18:15 +00:00
|
|
|
|
while (true) {
|
|
|
|
|
string line;
|
2013-09-09 13:02:56 +00:00
|
|
|
|
if (!getLine(line)) {
|
|
|
|
|
std::cout << std::endl;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2013-09-02 13:18:15 +00:00
|
|
|
|
|
|
|
|
|
try {
|
2013-09-09 13:02:56 +00:00
|
|
|
|
if (!processLine(removeWhitespace(line))) return;
|
2013-09-02 13:18:15 +00:00
|
|
|
|
} catch (Error & e) {
|
2013-09-06 12:58:53 +00:00
|
|
|
|
printMsg(lvlError, "error: " + e.msg());
|
2013-09-06 11:20:35 +00:00
|
|
|
|
} catch (Interrupted & e) {
|
2013-09-06 12:58:53 +00:00
|
|
|
|
printMsg(lvlError, "error: " + e.msg());
|
2013-09-02 13:18:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::cout << std::endl;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-09-02 15:53:58 +00:00
|
|
|
|
|
|
|
|
|
|
2013-09-06 17:51:59 +00:00
|
|
|
|
/* Apparently, the only way to get readline() to return on Ctrl-C
|
|
|
|
|
(SIGINT) is to use siglongjmp(). That's fucked up... */
|
|
|
|
|
static sigjmp_buf sigintJmpBuf;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void sigintHandler(int signo)
|
|
|
|
|
{
|
|
|
|
|
siglongjmp(sigintJmpBuf, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Oh, if only g++ had nested functions... */
|
|
|
|
|
NixRepl * curRepl;
|
|
|
|
|
|
|
|
|
|
char * completerThunk(const char * s, int state)
|
|
|
|
|
{
|
|
|
|
|
string prefix(s);
|
|
|
|
|
|
|
|
|
|
/* If the prefix has a slash in it, use readline's builtin filename
|
|
|
|
|
completer. */
|
|
|
|
|
if (prefix.find('/') != string::npos)
|
|
|
|
|
return rl_filename_completion_function(s, state);
|
|
|
|
|
|
|
|
|
|
/* Otherwise, return all symbols that start with the prefix. */
|
|
|
|
|
if (state == 0) {
|
|
|
|
|
curRepl->completePrefix(s);
|
|
|
|
|
curRepl->curCompletion = curRepl->completions.begin();
|
|
|
|
|
}
|
|
|
|
|
if (curRepl->curCompletion == curRepl->completions.end()) return 0;
|
|
|
|
|
return strdup((curRepl->curCompletion++)->c_str());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool NixRepl::getLine(string & line)
|
|
|
|
|
{
|
|
|
|
|
struct sigaction act, old;
|
|
|
|
|
act.sa_handler = sigintHandler;
|
|
|
|
|
sigfillset(&act.sa_mask);
|
|
|
|
|
act.sa_flags = 0;
|
|
|
|
|
if (sigaction(SIGINT, &act, &old))
|
|
|
|
|
throw SysError("installing handler for SIGINT");
|
|
|
|
|
|
|
|
|
|
if (sigsetjmp(sigintJmpBuf, 1))
|
|
|
|
|
line = "";
|
|
|
|
|
else {
|
|
|
|
|
curRepl = this;
|
|
|
|
|
rl_completion_entry_function = completerThunk;
|
|
|
|
|
|
|
|
|
|
char * s = readline("nix-repl> ");
|
|
|
|
|
if (!s) return false;
|
|
|
|
|
line = chomp(string(s));
|
|
|
|
|
free(s);
|
|
|
|
|
if (line != "") {
|
|
|
|
|
add_history(line.c_str());
|
|
|
|
|
append_history(1, 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_isInterrupted = 0;
|
|
|
|
|
|
|
|
|
|
if (sigaction(SIGINT, &old, 0))
|
|
|
|
|
throw SysError("restoring handler for SIGINT");
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void NixRepl::completePrefix(string prefix)
|
|
|
|
|
{
|
|
|
|
|
completions.clear();
|
|
|
|
|
|
2013-09-09 10:00:33 +00:00
|
|
|
|
size_t dot = prefix.rfind('.');
|
|
|
|
|
|
|
|
|
|
if (dot == string::npos) {
|
|
|
|
|
/* This is a variable name; look it up in the current scope. */
|
|
|
|
|
StringSet::iterator i = varNames.lower_bound(prefix);
|
|
|
|
|
while (i != varNames.end()) {
|
|
|
|
|
if (string(*i, 0, prefix.size()) != prefix) break;
|
|
|
|
|
completions.insert(*i);
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
try {
|
|
|
|
|
/* This is an expression that should evaluate to an
|
|
|
|
|
attribute set. Evaluate it to get the names of the
|
|
|
|
|
attributes. */
|
|
|
|
|
string expr(prefix, 0, dot);
|
|
|
|
|
string prefix2 = string(prefix, dot + 1);
|
|
|
|
|
|
|
|
|
|
Expr * e = parseString(expr);
|
|
|
|
|
Value v;
|
|
|
|
|
e->eval(state, *env, v);
|
|
|
|
|
state.forceAttrs(v);
|
|
|
|
|
|
2015-09-07 11:05:58 +00:00
|
|
|
|
for (auto & i : *v.attrs) {
|
|
|
|
|
string name = i.name;
|
2013-09-09 10:00:33 +00:00
|
|
|
|
if (string(name, 0, prefix2.size()) != prefix2) continue;
|
|
|
|
|
completions.insert(expr + "." + name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} catch (ParseError & e) {
|
|
|
|
|
// Quietly ignore parse errors.
|
2014-04-11 10:51:15 +00:00
|
|
|
|
} catch (EvalError & e) {
|
2013-09-09 10:00:33 +00:00
|
|
|
|
// Quietly ignore evaluation errors.
|
2014-04-11 10:51:15 +00:00
|
|
|
|
} catch (UndefinedVarError & e) {
|
|
|
|
|
// Quietly ignore undefined variable errors.
|
2013-09-09 10:00:33 +00:00
|
|
|
|
}
|
2013-09-06 17:51:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-06 19:00:36 +00:00
|
|
|
|
static int runProgram(const string & program, const Strings & args)
|
|
|
|
|
{
|
|
|
|
|
std::vector<const char *> cargs; /* careful with c_str()! */
|
|
|
|
|
cargs.push_back(program.c_str());
|
|
|
|
|
for (Strings::const_iterator i = args.begin(); i != args.end(); ++i)
|
|
|
|
|
cargs.push_back(i->c_str());
|
|
|
|
|
cargs.push_back(0);
|
|
|
|
|
|
|
|
|
|
Pid pid;
|
|
|
|
|
pid = fork();
|
|
|
|
|
if (pid == -1) throw SysError("forking");
|
|
|
|
|
if (pid == 0) {
|
|
|
|
|
restoreAffinity();
|
|
|
|
|
execvp(program.c_str(), (char * *) &cargs[0]);
|
|
|
|
|
_exit(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return pid.wait(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-09 11:56:53 +00:00
|
|
|
|
bool isVarName(const string & s)
|
|
|
|
|
{
|
2016-02-14 07:29:48 +00:00
|
|
|
|
if (s.size() > 0 && (s[0] == '-' || s[0] == '\''))
|
|
|
|
|
return false;
|
2015-09-07 11:05:58 +00:00
|
|
|
|
for (auto & i : s)
|
|
|
|
|
if (!((i >= 'a' && i <= 'z') ||
|
|
|
|
|
(i >= 'A' && i <= 'Z') ||
|
|
|
|
|
(i >= '0' && i <= '9') ||
|
2016-02-14 07:16:30 +00:00
|
|
|
|
i == '_' || i == '-' || i == '\''))
|
2013-09-09 11:56:53 +00:00
|
|
|
|
return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-09 13:02:56 +00:00
|
|
|
|
bool NixRepl::processLine(string line)
|
2013-09-02 15:53:58 +00:00
|
|
|
|
{
|
2013-09-09 13:02:56 +00:00
|
|
|
|
if (line == "") return true;
|
|
|
|
|
|
|
|
|
|
string command, arg;
|
2013-09-06 11:01:02 +00:00
|
|
|
|
|
2013-09-09 13:02:56 +00:00
|
|
|
|
if (line[0] == ':') {
|
|
|
|
|
size_t p = line.find(' ');
|
|
|
|
|
command = string(line, 0, p);
|
|
|
|
|
if (p != string::npos) arg = removeWhitespace(string(line, p));
|
|
|
|
|
} else {
|
|
|
|
|
arg = line;
|
|
|
|
|
}
|
2013-09-06 13:05:18 +00:00
|
|
|
|
|
2013-09-09 14:02:46 +00:00
|
|
|
|
if (command == ":?" || command == ":help") {
|
2013-09-09 11:22:33 +00:00
|
|
|
|
cout << "The following commands are available:\n"
|
|
|
|
|
<< "\n"
|
2013-09-09 11:56:53 +00:00
|
|
|
|
<< " <expr> Evaluate and print expression\n"
|
|
|
|
|
<< " <x> = <expr> Bind expression to variable\n"
|
|
|
|
|
<< " :a <expr> Add attributes from resulting set to scope\n"
|
|
|
|
|
<< " :b <expr> Build derivation\n"
|
|
|
|
|
<< " :l <path> Load Nix expression and add it to scope\n"
|
|
|
|
|
<< " :p <expr> Evaluate and print expression recursively\n"
|
2013-09-09 13:02:56 +00:00
|
|
|
|
<< " :q Exit nix-repl\n"
|
2013-09-09 14:02:46 +00:00
|
|
|
|
<< " :r Reload all files\n"
|
2013-09-09 11:56:53 +00:00
|
|
|
|
<< " :s <expr> Build dependencies of derivation, then start nix-shell\n"
|
|
|
|
|
<< " :t <expr> Describe result of evaluation\n";
|
2013-09-09 11:22:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-09 14:02:46 +00:00
|
|
|
|
else if (command == ":a" || command == ":add") {
|
2013-09-02 15:53:58 +00:00
|
|
|
|
Value v;
|
2013-09-09 13:02:56 +00:00
|
|
|
|
evalString(arg, v);
|
2013-09-02 16:18:27 +00:00
|
|
|
|
addAttrsToScope(v);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-09 14:02:46 +00:00
|
|
|
|
else if (command == ":l" || command == ":load") {
|
2013-09-02 16:18:27 +00:00
|
|
|
|
state.resetFileCache();
|
2013-09-09 13:02:56 +00:00
|
|
|
|
loadFile(arg);
|
2013-09-02 15:53:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-09 14:02:46 +00:00
|
|
|
|
else if (command == ":r" || command == ":reload") {
|
|
|
|
|
state.resetFileCache();
|
|
|
|
|
reloadFiles();
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-06 13:05:18 +00:00
|
|
|
|
else if (command == ":t") {
|
2013-09-02 16:00:48 +00:00
|
|
|
|
Value v;
|
2013-09-09 13:02:56 +00:00
|
|
|
|
evalString(arg, v);
|
2013-09-02 16:00:48 +00:00
|
|
|
|
std::cout << showType(v) << std::endl;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-06 13:05:18 +00:00
|
|
|
|
else if (command == ":b" || command == ":s") {
|
2013-09-06 12:58:53 +00:00
|
|
|
|
Value v;
|
2013-09-09 13:02:56 +00:00
|
|
|
|
evalString(arg, v);
|
2014-01-28 09:42:05 +00:00
|
|
|
|
DrvInfo drvInfo(state);
|
2013-09-06 12:58:53 +00:00
|
|
|
|
if (!getDerivation(state, v, drvInfo, false))
|
|
|
|
|
throw Error("expression does not evaluation to a derivation, so I can't build it");
|
2014-01-28 09:42:05 +00:00
|
|
|
|
Path drvPath = drvInfo.queryDrvPath();
|
2013-09-06 12:58:53 +00:00
|
|
|
|
if (drvPath == "" || !store->isValidPath(drvPath))
|
|
|
|
|
throw Error("expression did not evaluate to a valid derivation");
|
2013-09-06 13:05:18 +00:00
|
|
|
|
|
|
|
|
|
if (command == ":b") {
|
|
|
|
|
/* We could do the build in this process using buildPaths(),
|
|
|
|
|
but doing it in a child makes it easier to recover from
|
|
|
|
|
problems / SIGINT. */
|
2013-09-09 13:02:56 +00:00
|
|
|
|
if (runProgram("nix-store", Strings{"-r", drvPath}) == 0) {
|
2014-04-11 10:50:46 +00:00
|
|
|
|
Derivation drv = readDerivation(drvPath);
|
2013-09-09 13:02:56 +00:00
|
|
|
|
std::cout << std::endl << "this derivation produced the following outputs:" << std::endl;
|
2015-09-07 11:05:58 +00:00
|
|
|
|
for (auto & i : drv.outputs)
|
|
|
|
|
std::cout << format(" %1% -> %2%") % i.first % i.second.path << std::endl;
|
2013-09-09 13:02:56 +00:00
|
|
|
|
}
|
2013-09-06 19:00:36 +00:00
|
|
|
|
} else
|
|
|
|
|
runProgram("nix-shell", Strings{drvPath});
|
2013-09-02 15:53:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-09 14:02:46 +00:00
|
|
|
|
else if (command == ":p" || command == ":print") {
|
2013-09-06 22:35:54 +00:00
|
|
|
|
Value v;
|
2013-09-09 13:02:56 +00:00
|
|
|
|
evalString(arg, v);
|
2013-09-06 22:35:54 +00:00
|
|
|
|
printValue(std::cout, v, 1000000000) << std::endl;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-09 13:02:56 +00:00
|
|
|
|
else if (command == ":q" || command == ":quit")
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
else if (command != "")
|
|
|
|
|
throw Error(format("unknown command ‘%1%’") % command);
|
2013-09-06 12:58:53 +00:00
|
|
|
|
|
2013-09-02 15:53:58 +00:00
|
|
|
|
else {
|
2013-09-09 11:56:53 +00:00
|
|
|
|
size_t p = line.find('=');
|
|
|
|
|
string name;
|
|
|
|
|
if (p != string::npos &&
|
2014-06-16 14:05:09 +00:00
|
|
|
|
p < line.size() &&
|
|
|
|
|
line[p + 1] != '=' &&
|
2013-09-09 11:56:53 +00:00
|
|
|
|
isVarName(name = removeWhitespace(string(line, 0, p))))
|
|
|
|
|
{
|
|
|
|
|
Expr * e = parseString(string(line, p + 1));
|
|
|
|
|
Value & v(*state.allocValue());
|
|
|
|
|
v.type = tThunk;
|
|
|
|
|
v.thunk.env = env;
|
|
|
|
|
v.thunk.expr = e;
|
|
|
|
|
addVarToScope(state.symbols.create(name), v);
|
|
|
|
|
} else {
|
|
|
|
|
Value v;
|
|
|
|
|
evalString(line, v);
|
|
|
|
|
printValue(std::cout, v, 1) << std::endl;
|
|
|
|
|
}
|
2013-09-02 15:53:58 +00:00
|
|
|
|
}
|
2013-09-09 13:02:56 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
2013-09-02 15:53:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-06 13:20:06 +00:00
|
|
|
|
void NixRepl::loadFile(const Path & path)
|
|
|
|
|
{
|
2013-09-09 14:02:46 +00:00
|
|
|
|
loadedFiles.remove(path);
|
|
|
|
|
loadedFiles.push_back(path);
|
2013-09-06 13:20:06 +00:00
|
|
|
|
Value v, v2;
|
|
|
|
|
state.evalFile(lookupFileArg(state, path), v);
|
2014-12-01 09:07:10 +00:00
|
|
|
|
Bindings & bindings(*state.allocBindings(0));
|
2013-09-06 13:20:06 +00:00
|
|
|
|
state.autoCallFunction(bindings, v, v2);
|
|
|
|
|
addAttrsToScope(v2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-09 15:06:14 +00:00
|
|
|
|
void NixRepl::initEnv()
|
|
|
|
|
{
|
|
|
|
|
env = &state.allocEnv(envSize);
|
|
|
|
|
env->up = &state.baseEnv;
|
|
|
|
|
displ = 0;
|
|
|
|
|
staticEnv.vars.clear();
|
2013-09-09 15:22:42 +00:00
|
|
|
|
|
|
|
|
|
varNames.clear();
|
2015-09-07 11:05:58 +00:00
|
|
|
|
for (auto & i : state.staticBaseEnv.vars)
|
|
|
|
|
varNames.insert(i.first);
|
2013-09-09 15:06:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-09 14:02:46 +00:00
|
|
|
|
void NixRepl::reloadFiles()
|
|
|
|
|
{
|
2013-09-09 15:06:14 +00:00
|
|
|
|
initEnv();
|
|
|
|
|
|
2013-09-09 14:02:46 +00:00
|
|
|
|
Strings old = loadedFiles;
|
|
|
|
|
loadedFiles.clear();
|
|
|
|
|
|
2015-09-07 11:05:58 +00:00
|
|
|
|
bool first = true;
|
|
|
|
|
for (auto & i : old) {
|
|
|
|
|
if (!first) std::cout << std::endl;
|
|
|
|
|
first = false;
|
|
|
|
|
std::cout << format("Loading ‘%1%’...") % i << std::endl;
|
|
|
|
|
loadFile(i);
|
2013-09-09 14:02:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-02 16:18:27 +00:00
|
|
|
|
void NixRepl::addAttrsToScope(Value & attrs)
|
|
|
|
|
{
|
|
|
|
|
state.forceAttrs(attrs);
|
2015-09-07 11:05:58 +00:00
|
|
|
|
for (auto & i : *attrs.attrs)
|
|
|
|
|
addVarToScope(i.name, *i.value);
|
2013-09-06 13:20:06 +00:00
|
|
|
|
std::cout << format("Added %1% variables.") % attrs.attrs->size() << std::endl;
|
2013-09-02 16:18:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-09 11:56:53 +00:00
|
|
|
|
void NixRepl::addVarToScope(const Symbol & name, Value & v)
|
2013-09-02 15:53:58 +00:00
|
|
|
|
{
|
2013-09-09 15:06:14 +00:00
|
|
|
|
if (displ >= envSize)
|
|
|
|
|
throw Error("environment full; cannot add more variables");
|
2013-09-02 15:53:58 +00:00
|
|
|
|
staticEnv.vars[name] = displ;
|
2013-09-09 11:56:53 +00:00
|
|
|
|
env->values[displ++] = &v;
|
2013-09-06 17:51:59 +00:00
|
|
|
|
varNames.insert((string) name);
|
2013-09-02 15:53:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Expr * NixRepl::parseString(string s)
|
|
|
|
|
{
|
|
|
|
|
Expr * e = state.parseExprFromString(s, curDir, staticEnv);
|
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-02 16:00:48 +00:00
|
|
|
|
void NixRepl::evalString(string s, Value & v)
|
|
|
|
|
{
|
|
|
|
|
Expr * e = parseString(s);
|
|
|
|
|
e->eval(state, *env, v);
|
|
|
|
|
state.forceValue(v);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-09 09:14:43 +00:00
|
|
|
|
std::ostream & NixRepl::printValue(std::ostream & str, Value & v, unsigned int maxDepth)
|
|
|
|
|
{
|
|
|
|
|
ValuesSeen seen;
|
|
|
|
|
return printValue(str, v, maxDepth, seen);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-09-06 22:35:54 +00:00
|
|
|
|
// FIXME: lot of cut&paste from Nix's eval.cc.
|
2013-09-09 09:14:43 +00:00
|
|
|
|
std::ostream & NixRepl::printValue(std::ostream & str, Value & v, unsigned int maxDepth, ValuesSeen & seen)
|
2013-09-06 22:35:54 +00:00
|
|
|
|
{
|
|
|
|
|
str.flush();
|
|
|
|
|
checkInterrupt();
|
|
|
|
|
|
|
|
|
|
state.forceValue(v);
|
|
|
|
|
|
|
|
|
|
switch (v.type) {
|
|
|
|
|
|
|
|
|
|
case tInt:
|
|
|
|
|
str << v.integer;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case tBool:
|
|
|
|
|
str << (v.boolean ? "true" : "false");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case tString:
|
|
|
|
|
str << "\"";
|
|
|
|
|
for (const char * i = v.string.s; *i; i++)
|
|
|
|
|
if (*i == '\"' || *i == '\\') str << "\\" << *i;
|
|
|
|
|
else if (*i == '\n') str << "\\n";
|
|
|
|
|
else if (*i == '\r') str << "\\r";
|
|
|
|
|
else if (*i == '\t') str << "\\t";
|
|
|
|
|
else str << *i;
|
|
|
|
|
str << "\"";
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case tPath:
|
|
|
|
|
str << v.path; // !!! escaping?
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case tNull:
|
|
|
|
|
str << "null";
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case tAttrs: {
|
2013-09-09 09:14:43 +00:00
|
|
|
|
seen.insert(&v);
|
|
|
|
|
|
2013-09-06 22:35:54 +00:00
|
|
|
|
bool isDrv = state.isDerivation(v);
|
|
|
|
|
|
2014-01-28 09:40:02 +00:00
|
|
|
|
if (isDrv) {
|
|
|
|
|
str << "«derivation ";
|
|
|
|
|
Bindings::iterator i = v.attrs->find(state.sDrvPath);
|
|
|
|
|
PathSet context;
|
2014-04-11 10:50:46 +00:00
|
|
|
|
Path drvPath = i != v.attrs->end() ? state.coerceToPath(*i->pos, *i->value, context) : "???";
|
2014-01-28 09:40:02 +00:00
|
|
|
|
str << drvPath << "»";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (maxDepth > 0) {
|
|
|
|
|
str << "{ ";
|
|
|
|
|
|
2013-09-06 22:35:54 +00:00
|
|
|
|
typedef std::map<string, Value *> Sorted;
|
|
|
|
|
Sorted sorted;
|
2015-09-07 11:05:58 +00:00
|
|
|
|
for (auto & i : *v.attrs)
|
|
|
|
|
sorted[i.name] = i.value;
|
2013-09-06 22:35:54 +00:00
|
|
|
|
|
|
|
|
|
/* If this is a derivation, then don't show the
|
|
|
|
|
self-references ("all", "out", etc.). */
|
|
|
|
|
StringSet hidden;
|
|
|
|
|
if (isDrv) {
|
|
|
|
|
hidden.insert("all");
|
|
|
|
|
Bindings::iterator i = v.attrs->find(state.sOutputs);
|
|
|
|
|
if (i == v.attrs->end())
|
|
|
|
|
hidden.insert("out");
|
|
|
|
|
else {
|
|
|
|
|
state.forceList(*i->value);
|
2015-09-07 11:05:58 +00:00
|
|
|
|
for (unsigned int j = 0; j < i->value->listSize(); ++j)
|
|
|
|
|
hidden.insert(state.forceStringNoCtx(*i->value->listElems()[j]));
|
2013-09-06 22:35:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-07 11:05:58 +00:00
|
|
|
|
for (auto & i : sorted) {
|
|
|
|
|
str << i.first << " = ";
|
|
|
|
|
if (hidden.find(i.first) != hidden.end())
|
2013-09-09 09:34:54 +00:00
|
|
|
|
str << "«...»";
|
2015-09-07 11:05:58 +00:00
|
|
|
|
else if (seen.find(i.second) != seen.end())
|
2013-09-09 09:34:54 +00:00
|
|
|
|
str << "«repeated»";
|
2013-09-06 22:35:54 +00:00
|
|
|
|
else
|
2013-09-09 09:34:54 +00:00
|
|
|
|
try {
|
2015-09-07 11:05:58 +00:00
|
|
|
|
printValue(str, *i.second, maxDepth - 1, seen);
|
2013-09-09 09:34:54 +00:00
|
|
|
|
} catch (AssertionError & e) {
|
|
|
|
|
str << "«error: " << e.msg() << "»";
|
|
|
|
|
}
|
|
|
|
|
str << "; ";
|
|
|
|
|
}
|
2013-09-06 22:35:54 +00:00
|
|
|
|
|
2014-01-28 09:40:02 +00:00
|
|
|
|
str << "}";
|
2013-09-06 22:35:54 +00:00
|
|
|
|
} else
|
2014-01-28 09:40:02 +00:00
|
|
|
|
str << "{ ... }";
|
2013-09-06 22:35:54 +00:00
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-07 11:05:58 +00:00
|
|
|
|
case tList1:
|
|
|
|
|
case tList2:
|
|
|
|
|
case tListN:
|
2013-09-09 09:14:43 +00:00
|
|
|
|
seen.insert(&v);
|
|
|
|
|
|
2013-09-06 22:35:54 +00:00
|
|
|
|
str << "[ ";
|
|
|
|
|
if (maxDepth > 0)
|
2015-09-07 11:05:58 +00:00
|
|
|
|
for (unsigned int n = 0; n < v.listSize(); ++n) {
|
|
|
|
|
if (seen.find(v.listElems()[n]) != seen.end())
|
2013-09-09 09:34:54 +00:00
|
|
|
|
str << "«repeated»";
|
2013-09-09 09:14:43 +00:00
|
|
|
|
else
|
2013-09-09 09:34:54 +00:00
|
|
|
|
try {
|
2015-09-07 11:05:58 +00:00
|
|
|
|
printValue(str, *v.listElems()[n], maxDepth - 1, seen);
|
2013-09-09 09:34:54 +00:00
|
|
|
|
} catch (AssertionError & e) {
|
|
|
|
|
str << "«error: " << e.msg() << "»";
|
|
|
|
|
}
|
|
|
|
|
str << " ";
|
2013-09-09 09:14:43 +00:00
|
|
|
|
}
|
2013-09-06 22:35:54 +00:00
|
|
|
|
else
|
|
|
|
|
str << "... ";
|
|
|
|
|
str << "]";
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case tLambda:
|
|
|
|
|
str << "«lambda»";
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case tPrimOp:
|
|
|
|
|
str << "«primop»";
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case tPrimOpApp:
|
|
|
|
|
str << "«primop-app»";
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
str << "«unknown»";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return str;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-08-26 18:03:12 +00:00
|
|
|
|
int main(int argc, char * * argv)
|
2013-09-02 15:53:58 +00:00
|
|
|
|
{
|
2014-08-26 18:03:12 +00:00
|
|
|
|
return handleExceptions(argv[0], [&]() {
|
|
|
|
|
initNix();
|
2015-06-02 11:23:53 +00:00
|
|
|
|
initGC();
|
2014-08-26 18:03:12 +00:00
|
|
|
|
|
2014-08-26 18:05:08 +00:00
|
|
|
|
Strings files, searchPath;
|
2014-08-26 18:03:12 +00:00
|
|
|
|
|
|
|
|
|
parseCmdLine(argc, argv, [&](Strings::iterator & arg, const Strings::iterator & end) {
|
|
|
|
|
if (*arg == "--version")
|
|
|
|
|
printVersion("nix-repl");
|
2015-07-06 13:26:17 +00:00
|
|
|
|
else if (*arg == "--help") {
|
|
|
|
|
printHelp();
|
|
|
|
|
// exit with 0 since user asked for help
|
|
|
|
|
_exit(0);
|
|
|
|
|
}
|
2014-08-26 18:05:08 +00:00
|
|
|
|
else if (parseSearchPathArg(arg, end, searchPath))
|
|
|
|
|
;
|
2014-08-26 18:03:12 +00:00
|
|
|
|
else if (*arg != "" && arg->at(0) == '-')
|
|
|
|
|
return false;
|
|
|
|
|
else
|
|
|
|
|
files.push_back(*arg);
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
|
2014-08-26 18:05:08 +00:00
|
|
|
|
NixRepl repl(searchPath);
|
2014-08-26 18:03:12 +00:00
|
|
|
|
repl.mainLoop(files);
|
|
|
|
|
});
|
2013-09-02 15:53:58 +00:00
|
|
|
|
}
|