1201 lines
40 KiB
C++
1201 lines
40 KiB
C++
#include <cstdio>
|
|
#include <editline.h>
|
|
#include <iostream>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <string_view>
|
|
|
|
#include "lix/libexpr/value.hh"
|
|
#include "lix/libutil/box_ptr.hh"
|
|
#include "lix/libcmd/repl-interacter.hh"
|
|
#include "lix/libcmd/repl.hh"
|
|
|
|
#include "lix/libutil/ansicolor.hh"
|
|
#include "lix/libmain/shared.hh"
|
|
#include "lix/libexpr/eval.hh"
|
|
#include "lix/libexpr/eval-settings.hh"
|
|
#include "lix/libexpr/attr-path.hh"
|
|
#include "lix/libutil/signals.hh"
|
|
#include "lix/libstore/store-api.hh"
|
|
#include "lix/libstore/log-store.hh"
|
|
#include "lix/libcmd/common-eval-args.hh"
|
|
#include "lix/libexpr/get-drvs.hh"
|
|
#include "lix/libstore/derivations.hh"
|
|
#include "lix/libstore/globals.hh"
|
|
#include "lix/libexpr/flake/flake.hh"
|
|
#include "lix/libexpr/flake/lockfile.hh"
|
|
#include "lix/libcmd/editor-for.hh"
|
|
#include "lix/libutil/finally.hh"
|
|
#include "lix/libcmd/markdown.hh"
|
|
#include "lix/libstore/local-fs-store.hh"
|
|
#include "lix/libutil/signals.hh"
|
|
#include "lix/libexpr/print.hh"
|
|
#include "lix/libexpr/gc-small-vector.hh"
|
|
#include "lix/libutil/types.hh"
|
|
#include "lix/libutil/users.hh"
|
|
|
|
#if HAVE_BOEHMGC
|
|
#define GC_INCLUDE_NEW
|
|
#include <gc/gc_cpp.h>
|
|
#endif
|
|
|
|
// XXX: These are for lix-doc features and will be removed in a future rewrite where this functionality is integrated more natively.
|
|
extern "C" {
|
|
char const *lixdoc_get_function_docs(char const *filename, size_t line, size_t col);
|
|
void lixdoc_free_string(char const *str);
|
|
}
|
|
|
|
namespace nix {
|
|
|
|
|
|
/** Wrapper around std::unique_ptr with a custom deleter for strings from nix-doc **/
|
|
using NdString = std::unique_ptr<const char, decltype(&lixdoc_free_string)>;
|
|
|
|
/**
|
|
* Fetch a string representing the doc comment using nix-doc and wrap it in an RAII wrapper.
|
|
*/
|
|
NdString lambdaDocsForPos(SourcePath const path, nix::Pos const &pos) {
|
|
std::string const file = path.to_string();
|
|
// NOLINTNEXTLINE(lix-unsafe-c-calls): paths are safe
|
|
return NdString{lixdoc_get_function_docs(file.c_str(), pos.line, pos.column), &lixdoc_free_string};
|
|
}
|
|
|
|
/**
|
|
* Returned by `NixRepl::processLine`.
|
|
*/
|
|
enum class ProcessLineResult {
|
|
/**
|
|
* The user exited with `:quit`. The REPL should exit. The surrounding
|
|
* program or evaluation (e.g., if the REPL was acting as the debugger)
|
|
* should also exit.
|
|
*/
|
|
Quit,
|
|
/**
|
|
* The user exited with `:continue`. The REPL should exit, but the program
|
|
* should continue running.
|
|
*/
|
|
Continue,
|
|
/**
|
|
* The user did not exit. The REPL should request another line of input.
|
|
*/
|
|
PromptAgain,
|
|
};
|
|
|
|
using namespace std::literals::string_view_literals;
|
|
|
|
struct NixRepl
|
|
: AbstractNixRepl
|
|
, detail::ReplCompleterMixin
|
|
#if HAVE_BOEHMGC
|
|
, gc
|
|
#endif
|
|
{
|
|
/* clang-format: off */
|
|
static constexpr std::array COMMANDS = {
|
|
"add"sv, "a"sv,
|
|
"load"sv, "l"sv,
|
|
"load-flake"sv, "lf"sv,
|
|
"reload"sv, "r"sv,
|
|
"edit"sv, "e"sv,
|
|
"t"sv,
|
|
"u"sv,
|
|
"b"sv,
|
|
"bl"sv,
|
|
"i"sv,
|
|
"sh"sv,
|
|
"log"sv,
|
|
"print"sv, "p"sv,
|
|
"quit"sv, "q"sv,
|
|
"doc"sv,
|
|
"te"sv,
|
|
};
|
|
|
|
static constexpr std::array DEBUG_COMMANDS = {
|
|
"env"sv,
|
|
"bt"sv, "backtrace"sv,
|
|
"st"sv,
|
|
"c"sv, "continue"sv,
|
|
"s"sv, "step"sv,
|
|
};
|
|
/* clang-format: on */
|
|
|
|
Evaluator & evaluator;
|
|
size_t debugTraceIndex;
|
|
|
|
Strings loadedFiles;
|
|
std::function<AnnotatedValues()> getValues;
|
|
|
|
// Uses 8MiB of memory. It's fine.
|
|
const static int envSize = 1 << 20;
|
|
std::shared_ptr<StaticEnv> staticEnv;
|
|
Env * env;
|
|
int displ;
|
|
StringSet varNames;
|
|
|
|
box_ptr<ReplInteracter> interacter;
|
|
|
|
NixRepl(const SearchPath & searchPath, nix::ref<Store> store, EvalState & state,
|
|
std::function<AnnotatedValues()> getValues);
|
|
virtual ~NixRepl() = default;
|
|
|
|
ReplExitStatus mainLoop() override;
|
|
void initEnv() override;
|
|
|
|
virtual StringSet completePrefix(const std::string & prefix) override;
|
|
|
|
/**
|
|
* @exception nix::Error thrown directly if the expression does not evaluate
|
|
* to a derivation, or evaluates to an invalid derivation.
|
|
*/
|
|
StorePath getDerivationPath(Value & v);
|
|
ProcessLineResult processLine(std::string line);
|
|
|
|
void loadFile(const Path & path);
|
|
void loadFlake(const std::string & flakeRef);
|
|
void loadFiles();
|
|
void reloadFiles();
|
|
|
|
template<typename T, typename NameFn, typename ValueFn>
|
|
void addToScope(T && things, NameFn nameFn, ValueFn valueFn);
|
|
|
|
void addAttrsToScope(Value & attrs);
|
|
void addValMapToScope(const ValMap & attrs);
|
|
void addVarToScope(const Symbol name, Value & v);
|
|
Expr & parseString(std::string s);
|
|
std::variant<std::unique_ptr<Expr>, ExprReplBindings> parseReplString(std::string s);
|
|
void evalString(std::string s, Value & v);
|
|
void loadDebugTraceEnv(const DebugTrace & dt);
|
|
|
|
/**
|
|
* Load the `repl-overlays` and add the resulting AttrSet to the top-level
|
|
* bindings.
|
|
*/
|
|
void loadReplOverlays();
|
|
|
|
/**
|
|
* Get a list of each of the `repl-overlays` (parsed and evaluated).
|
|
*/
|
|
Value replOverlays();
|
|
|
|
/**
|
|
* Get the Nix function that composes the `repl-overlays` together.
|
|
*/
|
|
Value getReplOverlaysEvalFunction();
|
|
|
|
/**
|
|
* Cached return value of `getReplOverlaysEvalFunction`.
|
|
*
|
|
* Note: This is `shared_ptr` to avoid garbage collection.
|
|
*/
|
|
std::shared_ptr<std::optional<Value>> replOverlaysEvalFunction =
|
|
std::allocate_shared<std::optional<Value>>(
|
|
TraceableAllocator<std::optional<Value>>(), std::nullopt
|
|
);
|
|
|
|
/**
|
|
* Get the `info` AttrSet that's passed as the first argument to each
|
|
* of the `repl-overlays`.
|
|
*/
|
|
Value replInitInfo();
|
|
|
|
/**
|
|
* Get the current top-level bindings as an AttrSet.
|
|
*/
|
|
Value bindingsToAttrs();
|
|
/**
|
|
* Parse a file, evaluate its result, and force the resulting value.
|
|
*/
|
|
Value evalFile(SourcePath & path);
|
|
|
|
void printValue(std::ostream & str,
|
|
Value & v,
|
|
unsigned int maxDepth = std::numeric_limits<unsigned int>::max(),
|
|
unsigned int derivationPathDepth = 0)
|
|
{
|
|
::nix::printValue(state, str, v, PrintOptions {
|
|
.ansiColors = true,
|
|
.force = true,
|
|
.derivationPathDepth = derivationPathDepth,
|
|
.maxDepth = maxDepth,
|
|
.prettyIndent = 2,
|
|
.errors = ErrorPrintBehavior::ThrowTopLevel,
|
|
});
|
|
}
|
|
};
|
|
|
|
std::string removeWhitespace(std::string s)
|
|
{
|
|
s = chomp(s);
|
|
size_t n = s.find_first_not_of(" \n\r\t");
|
|
if (n != std::string::npos) s = std::string(s, n);
|
|
return s;
|
|
}
|
|
|
|
static box_ptr<ReplInteracter> makeInteracter() {
|
|
if (experimentalFeatureSettings.isEnabled(Xp::ReplAutomation))
|
|
return make_box_ptr<AutomationInteracter>();
|
|
else
|
|
return make_box_ptr<ReadlineLikeInteracter>(getDataDir() + "/nix/repl-history");
|
|
}
|
|
|
|
NixRepl::NixRepl(const SearchPath & searchPath, nix::ref<Store> store, EvalState & state,
|
|
std::function<NixRepl::AnnotatedValues()> getValues)
|
|
: AbstractNixRepl(state)
|
|
, evaluator(state.ctx)
|
|
, debugTraceIndex(0)
|
|
, getValues(getValues)
|
|
, staticEnv(new StaticEnv(nullptr, evaluator.builtins.staticEnv.get()))
|
|
, interacter(makeInteracter())
|
|
{
|
|
}
|
|
|
|
void runNix(Path program, const Strings & args)
|
|
{
|
|
auto subprocessEnv = getEnv();
|
|
subprocessEnv["NIX_CONFIG"] = globalConfig.toKeyValue(true);
|
|
|
|
runProgram2(RunOptions {
|
|
.program = settings.nixBinDir+ "/" + program,
|
|
.args = args,
|
|
.environment = subprocessEnv,
|
|
}).waitAndCheck();
|
|
|
|
return;
|
|
}
|
|
|
|
static std::ostream & showDebugTrace(std::ostream & out, const PosTable & positions, const DebugTrace & dt)
|
|
{
|
|
if (dt.isError)
|
|
out << ANSI_RED "error: " << ANSI_NORMAL;
|
|
out << dt.hint.str() << "\n";
|
|
|
|
// prefer direct pos, but if noPos then try the expr.
|
|
auto pos = dt.pos
|
|
? dt.pos
|
|
: positions[dt.expr.getPos() ? dt.expr.getPos() : noPos];
|
|
|
|
if (pos) {
|
|
out << *pos;
|
|
if (auto loc = pos->getCodeLines()) {
|
|
out << "\n";
|
|
printCodeLines(out, "", *pos, *loc);
|
|
out << "\n";
|
|
}
|
|
}
|
|
|
|
return out;
|
|
}
|
|
|
|
static bool isFirstRepl = true;
|
|
|
|
ReplExitStatus NixRepl::mainLoop()
|
|
{
|
|
if (isFirstRepl) {
|
|
std::string_view debuggerNotice = "";
|
|
if (evaluator.debug && evaluator.debug->inDebugger) {
|
|
debuggerNotice = " debugger";
|
|
}
|
|
notice("Lix %1%%2%\nType :? for help.", Uncolored(nixVersion), debuggerNotice);
|
|
}
|
|
|
|
isFirstRepl = false;
|
|
|
|
loadFiles();
|
|
|
|
auto _guard = interacter->init(static_cast<detail::ReplCompleterMixin *>(this));
|
|
|
|
/* Stop the progress bar because it interferes with the display of
|
|
the repl. */
|
|
logger->pause();
|
|
|
|
std::string input;
|
|
|
|
while (true) {
|
|
unsetUserInterruptRequest();
|
|
|
|
// When continuing input from previous lines, don't print a prompt, just align to the same
|
|
// number of chars as the prompt.
|
|
if (!interacter->getLine(input, input.empty() ? ReplPromptType::ReplPrompt : ReplPromptType::ContinuationPrompt)) {
|
|
// Ctrl-D should exit the debugger.
|
|
if (evaluator.debug) {
|
|
evaluator.debug->stop = false;
|
|
}
|
|
logger->cout("");
|
|
// TODO: Should Ctrl-D exit just the current debugger session or
|
|
// the entire program?
|
|
return ReplExitStatus::QuitAll;
|
|
}
|
|
try {
|
|
switch (processLine(input)) {
|
|
case ProcessLineResult::Quit:
|
|
return ReplExitStatus::QuitAll;
|
|
case ProcessLineResult::Continue:
|
|
return ReplExitStatus::Continue;
|
|
case ProcessLineResult::PromptAgain:
|
|
break;
|
|
default:
|
|
abort();
|
|
}
|
|
} catch (ParseError & e) {
|
|
if (e.msg().find("unexpected end of file") != std::string::npos) {
|
|
// For parse errors on incomplete input, we continue waiting for the next line of
|
|
// input without clearing the input so far.
|
|
continue;
|
|
} else {
|
|
printMsg(lvlError, "%1%", Uncolored(e.msg()));
|
|
}
|
|
} catch (EvalError & e) {
|
|
printMsg(lvlError, "%1%", Uncolored(e.msg()));
|
|
} catch (Error & e) {
|
|
printMsg(lvlError, "%1%", Uncolored(e.msg()));
|
|
} catch (Interrupted & e) {
|
|
printMsg(lvlError, "%1%", Uncolored(e.msg()));
|
|
}
|
|
|
|
// We handled the current input fully, so we should clear it
|
|
// and read brand new input.
|
|
input.clear();
|
|
std::cout << std::endl;
|
|
}
|
|
}
|
|
|
|
StringSet NixRepl::completePrefix(const std::string &prefix)
|
|
{
|
|
StringSet completions;
|
|
|
|
// We should only complete colon commands if there's a colon at the beginning,
|
|
// but editline (for... whatever reason) doesn't *give* us the colon in the
|
|
// completion callback. If the user types :rel<TAB>, `prefix` will only be `rel`.
|
|
// Luckily, editline provides a global variable for its current buffer, so we can
|
|
// check for the presence of a colon there.
|
|
if (rl_line_buffer != nullptr && rl_line_buffer[0] == ':') {
|
|
for (auto const & colonCmd : this->COMMANDS) {
|
|
if (colonCmd.starts_with(prefix)) {
|
|
completions.insert(std::string(colonCmd));
|
|
}
|
|
}
|
|
|
|
if (evaluator.debug && evaluator.debug->inDebugger) {
|
|
for (auto const & colonCmd : this->DEBUG_COMMANDS) {
|
|
if (colonCmd.starts_with(prefix)) {
|
|
completions.insert(std::string(colonCmd));
|
|
}
|
|
}
|
|
}
|
|
|
|
// If there were : command completions, then we should only return those,
|
|
// because otherwise this is not valid Nix syntax.
|
|
// However if we didn't get any completions, then this could be something
|
|
// like `:b pkgs.hel<TAB>`, in which case we should do expression completion
|
|
// as normal.
|
|
if (!completions.empty()) {
|
|
return completions;
|
|
}
|
|
}
|
|
|
|
size_t start = prefix.find_last_of(" \n\r\t(){}[]");
|
|
std::string prev, cur;
|
|
if (start == std::string::npos) {
|
|
prev = "";
|
|
cur = prefix;
|
|
} else {
|
|
prev = std::string(prefix, 0, start + 1);
|
|
cur = std::string(prefix, start + 1);
|
|
}
|
|
|
|
size_t slash, dot;
|
|
|
|
if ((slash = cur.rfind('/')) != std::string::npos) {
|
|
try {
|
|
auto dir = std::string(cur, 0, slash);
|
|
auto prefix2 = std::string(cur, slash + 1);
|
|
for (auto & entry : readDirectory(dir == "" ? "/" : dir)) {
|
|
if (entry.name[0] != '.' && entry.name.starts_with(prefix2))
|
|
completions.insert(prev + dir + "/" + entry.name);
|
|
}
|
|
} catch (Error &) {
|
|
}
|
|
} else if ((dot = cur.rfind('.')) == std::string::npos) {
|
|
/* This is a variable name; look it up in the current scope. */
|
|
StringSet::iterator i = varNames.lower_bound(cur);
|
|
while (i != varNames.end()) {
|
|
if (i->substr(0, cur.size()) != cur) break;
|
|
completions.insert(prev + *i);
|
|
i++;
|
|
}
|
|
} else {
|
|
// To handle cases like `foo."bar.`, walk back the cursor
|
|
// to the previous dot if there are an odd number of quotes.
|
|
auto quoteCount =
|
|
std::count_if(cur.begin(), cur.begin() + dot, [](char c) { return c == '"'; });
|
|
if (quoteCount % 2 != 0) {
|
|
// Find the last quote before the dot
|
|
auto prevQuote = cur.rfind('"', dot - 1);
|
|
if (prevQuote != std::string::npos) {
|
|
// And the previous dot prior to that quote
|
|
auto prevDot = cur.rfind('.', prevQuote);
|
|
if (prevDot != std::string::npos) {
|
|
dot = prevDot;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Temporarily disable the debugger, to avoid re-entering readline. */
|
|
auto debug = std::move(evaluator.debug);
|
|
Finally restoreDebug([&]() { evaluator.debug = std::move(debug); });
|
|
try {
|
|
/* This is an expression that should evaluate to an
|
|
attribute set. Evaluate it to get the names of the
|
|
attributes. */
|
|
auto expr = cur.substr(0, dot);
|
|
auto cur2 = cur.substr(dot + 1);
|
|
|
|
Expr & e = parseString(expr);
|
|
Value v;
|
|
e.eval(state, *env, v);
|
|
state.forceAttrs(v, noPos, "while evaluating an attrset for the purpose of completion (this error should not be displayed; file an issue?)");
|
|
|
|
for (auto & i : *v.attrs()) {
|
|
std::ostringstream output;
|
|
printAttributeName(output, evaluator.symbols[i.name]);
|
|
std::string name = output.str();
|
|
|
|
if (name.substr(0, cur2.size()) != cur2) continue;
|
|
completions.insert(concatStrings(prev, expr, ".", name));
|
|
}
|
|
|
|
} catch (ParseError & e) {
|
|
// Quietly ignore parse errors.
|
|
} catch (EvalError & e) {
|
|
// Quietly ignore evaluation errors.
|
|
} catch (BadURL & e) {
|
|
// Quietly ignore BadURL flake-related errors.
|
|
} catch (SysError & e) {
|
|
// Quietly ignore system errors which can for example be raised by
|
|
// a non-existent file being `import`-ed.
|
|
}
|
|
}
|
|
|
|
return completions;
|
|
}
|
|
|
|
StorePath NixRepl::getDerivationPath(Value & v) {
|
|
auto drvInfo = getDerivation(state, v, false);
|
|
if (!drvInfo)
|
|
throw Error("expression does not evaluate to a derivation, so I can't build it");
|
|
auto drvPath = drvInfo->queryDrvPath(state);
|
|
if (!drvPath)
|
|
throw Error("expression did not evaluate to a valid derivation (no 'drvPath' attribute)");
|
|
if (!state.aio.blockOn(evaluator.store->isValidPath(*drvPath)))
|
|
throw Error("expression evaluated to invalid derivation '%s'", evaluator.store->printStorePath(*drvPath));
|
|
return *drvPath;
|
|
}
|
|
|
|
void NixRepl::loadDebugTraceEnv(const DebugTrace & dt)
|
|
{
|
|
initEnv();
|
|
|
|
auto se = evaluator.debug->staticEnvFor(dt.expr);
|
|
if (se) {
|
|
auto vm = mapStaticEnvBindings(evaluator.symbols, *se.get(), dt.env);
|
|
|
|
// add staticenv vars.
|
|
addValMapToScope(*vm);
|
|
}
|
|
}
|
|
|
|
ProcessLineResult NixRepl::processLine(std::string line)
|
|
{
|
|
line = trim(line);
|
|
if (line.empty())
|
|
return ProcessLineResult::PromptAgain;
|
|
|
|
std::string command, arg;
|
|
|
|
if (line[0] == ':') {
|
|
size_t p = line.find_first_of(" \n\r\t");
|
|
command = line.substr(0, p);
|
|
if (p != std::string::npos) arg = removeWhitespace(line.substr(p));
|
|
} else {
|
|
arg = line;
|
|
}
|
|
|
|
bool inDebugger = evaluator.debug && evaluator.debug->inDebugger;
|
|
|
|
if (command == ":?" || command == ":help") {
|
|
// FIXME: convert to Markdown, include in the 'nix repl' manpage.
|
|
std::cout
|
|
<< "The following commands are available:\n"
|
|
<< "\n"
|
|
<< " <expr> Evaluate and print expression\n"
|
|
<< " <x> = <expr> Bind expression to variable\n"
|
|
<< " :a, :add <expr> Add attributes from resulting set to scope\n"
|
|
<< " :b <expr> Build a derivation\n"
|
|
<< " :bl <expr> Build a derivation, creating GC roots in the\n"
|
|
<< " working directory\n"
|
|
<< " :e, :edit <expr> Open package or function in $EDITOR\n"
|
|
<< " :env Show env stack\n"
|
|
<< " :i <expr> Build derivation, then install result into\n"
|
|
<< " current profile\n"
|
|
<< " :l, :load <path> Load Nix expression and add it to scope\n"
|
|
<< " :lf, :load-flake <ref> Load Nix flake and add it to scope\n"
|
|
<< " :p, :print <expr> Evaluate and print expression recursively\n"
|
|
<< " Strings are printed directly, without escaping.\n"
|
|
<< " :q, :quit Exit nix-repl\n"
|
|
<< " :r, :reload Reload all files\n"
|
|
<< " :sh <expr> Build dependencies of derivation, then start\n"
|
|
<< " nix-shell\n"
|
|
<< " :t <expr> Describe result of evaluation\n"
|
|
<< " :u <expr> Build derivation, then start nix-shell\n"
|
|
<< " :doc <expr> Show documentation for the provided function (experimental lambda support)\n"
|
|
<< " :log <expr | .drv path> Show logs for a derivation\n"
|
|
<< " :te, :trace-enable [bool] Enable, disable or toggle showing traces for\n"
|
|
<< " errors\n"
|
|
<< " :?, :help Brings up this help menu\n"
|
|
;
|
|
if (inDebugger) {
|
|
std::cout
|
|
<< "\n"
|
|
<< " Debug mode commands\n"
|
|
<< " :bt, :backtrace Show trace stack\n"
|
|
<< " :st Show current trace\n"
|
|
<< " :st <idx> Change to another trace in the stack\n"
|
|
<< " :c, :continue Go until end of program, exception, or builtins.break\n"
|
|
<< " :s, :step Go one step\n"
|
|
;
|
|
}
|
|
|
|
}
|
|
|
|
else if (command == ":bt" || command == ":backtrace") {
|
|
if (!inDebugger)
|
|
throw Error("backtrace command is only available in debug mode (see %s)", "--debugger");
|
|
auto traces = evaluator.debug->traces();
|
|
for (const auto & [idx, i] : enumerate(traces)) {
|
|
std::cout << "\n" << ANSI_BLUE << idx << ANSI_NORMAL << ": ";
|
|
showDebugTrace(std::cout, evaluator.positions, *i);
|
|
}
|
|
}
|
|
|
|
else if (command == ":env") {
|
|
if (inDebugger) {
|
|
auto traces = evaluator.debug->traces();
|
|
for (const auto & [idx, i] : enumerate(traces)) {
|
|
if (idx == debugTraceIndex) {
|
|
printEnvBindings(state, i->expr, i->env);
|
|
break;
|
|
}
|
|
}
|
|
} else {
|
|
printEnvBindings(state.ctx.symbols, *staticEnv, *env, 0);
|
|
}
|
|
}
|
|
|
|
else if (command == ":st") {
|
|
if (!inDebugger)
|
|
throw Error("trace command is only available in debug mode (see %s)", "--debugger");
|
|
try {
|
|
// change the DebugTrace index.
|
|
debugTraceIndex = stoi(arg);
|
|
} catch (...) { }
|
|
|
|
auto traces = evaluator.debug->traces();
|
|
for (const auto & [idx, i] : enumerate(traces)) {
|
|
if (idx == debugTraceIndex) {
|
|
std::cout << "\n" << ANSI_BLUE << idx << ANSI_NORMAL << ": ";
|
|
showDebugTrace(std::cout, evaluator.positions, *i);
|
|
std::cout << std::endl;
|
|
printEnvBindings(state, i->expr, i->env);
|
|
loadDebugTraceEnv(*i);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
else if (command == ":s" || command == ":step") {
|
|
if (!inDebugger)
|
|
throw Error("step command is only available in debug mode (see %s)", "--debugger");
|
|
// set flag to stop at next DebugTrace; exit repl.
|
|
evaluator.debug->stop = true;
|
|
return ProcessLineResult::Continue;
|
|
}
|
|
|
|
else if (command == ":c" || command == ":continue") {
|
|
if (!inDebugger)
|
|
throw Error("continue command is only available in debug mode (see %s)", "--debugger");
|
|
// set flag to run to next breakpoint or end of program; exit repl.
|
|
evaluator.debug->stop = false;
|
|
return ProcessLineResult::Continue;
|
|
}
|
|
|
|
else if (command == ":a" || command == ":add") {
|
|
Value v;
|
|
evalString(arg, v);
|
|
addAttrsToScope(v);
|
|
}
|
|
|
|
else if (command == ":l" || command == ":load") {
|
|
state.resetFileCache();
|
|
loadFile(arg);
|
|
}
|
|
|
|
else if (command == ":lf" || command == ":load-flake") {
|
|
loadFlake(arg);
|
|
}
|
|
|
|
else if (command == ":r" || command == ":reload") {
|
|
state.resetFileCache();
|
|
reloadFiles();
|
|
}
|
|
|
|
else if (command == ":e" || command == ":edit") {
|
|
Value v;
|
|
evalString(arg, v);
|
|
|
|
const auto [path, line] = [&] () -> std::pair<SourcePath, uint32_t> {
|
|
if (v.type() == nPath || v.type() == nString) {
|
|
NixStringContext context;
|
|
auto path = state.coerceToPath(noPos, v, context, "while evaluating the filename to edit");
|
|
return {path, 0};
|
|
} else if (v.isLambda()) {
|
|
auto pos = evaluator.positions[v.lambda().fun->pos];
|
|
if (auto path = std::get_if<CheckedSourcePath>(&pos.origin))
|
|
return {*path, pos.line};
|
|
else
|
|
throw Error("'%s' cannot be shown in an editor", pos);
|
|
} else {
|
|
// assume it's a derivation
|
|
return findPackageFilename(state, v, arg);
|
|
}
|
|
}();
|
|
|
|
// Open in EDITOR
|
|
auto args = editorFor(path, line);
|
|
auto editor = args.front();
|
|
args.pop_front();
|
|
|
|
// runProgram redirects stdout to a StringSink,
|
|
// using runProgram2 to allow editors to display their UI
|
|
runProgram2(RunOptions { .program = editor, .searchPath = true, .args = args }).waitAndCheck();
|
|
|
|
// Reload right after exiting the editor if path is not in store
|
|
// Store is immutable, so there could be no changes, so there's no need to reload
|
|
if (!evaluator.store->isInStore(canonPath(path.canonical().abs(), true))) {
|
|
state.resetFileCache();
|
|
reloadFiles();
|
|
}
|
|
}
|
|
|
|
else if (command == ":t") {
|
|
Value v;
|
|
evalString(arg, v);
|
|
logger->cout(showType(v));
|
|
}
|
|
|
|
else if (command == ":u") {
|
|
Value v, f, result;
|
|
evalString(arg, v);
|
|
evalString("drv: (import <nixpkgs> {}).runCommand \"shell\" { buildInputs = [ drv ]; } \"\"", f);
|
|
state.callFunction(f, v, result, PosIdx());
|
|
|
|
StorePath drvPath = getDerivationPath(result);
|
|
runNix("nix-shell", {evaluator.store->printStorePath(drvPath)});
|
|
}
|
|
|
|
else if (command == ":log") {
|
|
if (arg.empty())
|
|
throw Error("cannot use ':log' without a specifying a derivation");
|
|
StorePath drvPath = ([&] {
|
|
auto maybeDrvPath = evaluator.store->maybeParseStorePath(arg);
|
|
if (maybeDrvPath && maybeDrvPath->isDerivation()) {
|
|
return std::move(*maybeDrvPath);
|
|
} else {
|
|
Value v;
|
|
evalString(arg, v);
|
|
return getDerivationPath(v);
|
|
}
|
|
})();
|
|
Path drvPathRaw = evaluator.store->printStorePath(drvPath);
|
|
|
|
settings.readOnlyMode = true;
|
|
Finally roModeReset([&]() {
|
|
settings.readOnlyMode = false;
|
|
});
|
|
auto subs = state.aio.blockOn(getDefaultSubstituters());
|
|
|
|
subs.push_front(evaluator.store);
|
|
|
|
bool foundLog = false;
|
|
RunPager pager;
|
|
for (auto & sub : subs) {
|
|
auto * logSubP = dynamic_cast<LogStore *>(&*sub);
|
|
if (!logSubP) {
|
|
printInfo("Skipped '%s' which does not support retrieving build logs", sub->getUri());
|
|
continue;
|
|
}
|
|
auto & logSub = *logSubP;
|
|
|
|
auto log = state.aio.blockOn(logSub.getBuildLog(drvPath));
|
|
if (log) {
|
|
printInfo("got build log for '%s' from '%s'", drvPathRaw, logSub.getUri());
|
|
logger->writeToStdout(*log);
|
|
foundLog = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!foundLog) throw Error("build log of '%s' is not available", drvPathRaw);
|
|
}
|
|
|
|
else if (command == ":b" || command == ":bl" || command == ":i" || command == ":sh") {
|
|
Value v;
|
|
evalString(arg, v);
|
|
StorePath drvPath = getDerivationPath(v);
|
|
Path drvPathRaw = evaluator.store->printStorePath(drvPath);
|
|
|
|
if (command == ":b" || command == ":bl") {
|
|
// TODO: this only shows a progress bar for explicitly initiated builds,
|
|
// not eval-time fetching or builds performed for IFD.
|
|
// But we can't just show it everywhere, since that would erase partial output from evaluation.
|
|
logger->resetProgress();
|
|
logger->resume();
|
|
Finally stopLogger([&]() {
|
|
logger->pause();
|
|
});
|
|
|
|
state.aio.blockOn(evaluator.store->buildPaths({
|
|
DerivedPath::Built {
|
|
.drvPath = makeConstantStorePath(drvPath),
|
|
.outputs = OutputsSpec::All { },
|
|
},
|
|
}));
|
|
auto drv = state.aio.blockOn(evaluator.store->readDerivation(drvPath));
|
|
logger->cout("\nThis derivation produced the following outputs:");
|
|
for (auto & [outputName, outputPath] :
|
|
state.aio.blockOn(evaluator.store->queryDerivationOutputMap(drvPath)))
|
|
{
|
|
auto localStore = evaluator.store.try_cast_shared<LocalFSStore>();
|
|
if (localStore && command == ":bl") {
|
|
std::string symlink = "repl-result-" + outputName;
|
|
state.aio.blockOn(localStore->addPermRoot(outputPath, absPath(symlink)));
|
|
logger->cout(" ./%s -> %s", symlink, evaluator.store->printStorePath(outputPath));
|
|
} else {
|
|
logger->cout(" %s -> %s", outputName, evaluator.store->printStorePath(outputPath));
|
|
}
|
|
}
|
|
} else if (command == ":i") {
|
|
runNix("nix-env", {"-i", drvPathRaw});
|
|
} else {
|
|
runNix("nix-shell", {drvPathRaw});
|
|
}
|
|
}
|
|
|
|
else if (command == ":p" || command == ":print") {
|
|
Value v;
|
|
evalString(arg, v);
|
|
if (v.type() == nString) {
|
|
std::cout << v.str();
|
|
} else if (v.type() == nAttrs && state.isDerivation(v)) {
|
|
printValue(std::cout, v, 2, 1);
|
|
} else {
|
|
printValue(std::cout, v, std::numeric_limits<unsigned int>::max(), 0);
|
|
}
|
|
std::cout << std::endl;
|
|
}
|
|
|
|
else if (command == ":q" || command == ":quit") {
|
|
if (evaluator.debug) {
|
|
evaluator.debug->stop = false;
|
|
}
|
|
return ProcessLineResult::Quit;
|
|
}
|
|
|
|
else if (command == ":doc") {
|
|
Value v;
|
|
evalString(arg, v);
|
|
if (auto doc = evaluator.builtins.getDoc(v)) {
|
|
std::string markdown;
|
|
|
|
if (!doc->args.empty() && doc->name) {
|
|
auto args = doc->args;
|
|
for (auto & arg : args)
|
|
arg = "*" + arg + "*";
|
|
|
|
markdown +=
|
|
"**Synopsis:** `builtins." + (std::string) (*doc->name) + "` "
|
|
+ concatStringsSep(" ", args) + "\n\n";
|
|
}
|
|
|
|
markdown += stripIndentation(doc->doc);
|
|
|
|
logger->cout(trim(renderMarkdownToTerminal(markdown)));
|
|
} else if (v.isLambda()) {
|
|
auto pos = evaluator.positions[v.lambda().fun->pos];
|
|
if (auto path = std::get_if<CheckedSourcePath>(&pos.origin)) {
|
|
// Path and position have now been obtained, feed to nix-doc library to get data.
|
|
auto docComment = lambdaDocsForPos(*path, pos);
|
|
if (!docComment) {
|
|
throw Error("lambda '%s' has no documentation comment", pos);
|
|
}
|
|
|
|
// Build and print Markdown representation of documentation comment.
|
|
std::string markdown = stripIndentation(docComment.get());
|
|
logger->cout(trim(renderMarkdownToTerminal(markdown)));
|
|
} else {
|
|
throw Error("lambda '%s' doesn't have a determinable source file", pos);
|
|
}
|
|
} else {
|
|
throw Error("value '%s' does not have documentation", arg);
|
|
}
|
|
}
|
|
|
|
else if (command == ":te" || command == ":trace-enable") {
|
|
if (arg == "false" || (arg == "" && loggerSettings.showTrace)) {
|
|
std::cout << "not showing error traces\n";
|
|
loggerSettings.showTrace.override(false);
|
|
} else if (arg == "true" || (arg == "" && !loggerSettings.showTrace)) {
|
|
std::cout << "showing error traces\n";
|
|
loggerSettings.showTrace.override(true);
|
|
} else {
|
|
throw Error("unexpected argument '%s' to %s", arg, command);
|
|
};
|
|
}
|
|
|
|
else if (command != "")
|
|
throw Error("unknown command '%1%'", command);
|
|
|
|
else {
|
|
/* A line is either a regular expression or a `var = expr` assignment */
|
|
std::variant<std::unique_ptr<Expr>, ExprReplBindings> result = parseReplString(line);
|
|
std::visit(overloaded {
|
|
[&](ExprReplBindings & b) {
|
|
for (auto & [name, e] : b.symbols) {
|
|
Value v;
|
|
e->eval(state, *env, v);
|
|
(void) e.release(); // NOLINT(bugprone-unused-return-value): leak because of thunk references
|
|
addVarToScope(name, v);
|
|
}
|
|
},
|
|
[&](std::unique_ptr<Expr> & e) {
|
|
Value v;
|
|
e->eval(state, *env, v);
|
|
(void) e.release(); // NOLINT(bugprone-unused-return-value): leak because of thunk references
|
|
state.forceValue(v, noPos);
|
|
printValue(std::cout, v, 1);
|
|
std::cout << std::endl;
|
|
}
|
|
}, result);
|
|
}
|
|
|
|
return ProcessLineResult::PromptAgain;
|
|
}
|
|
|
|
void NixRepl::loadFile(const Path & path)
|
|
{
|
|
loadedFiles.remove(path);
|
|
loadedFiles.push_back(path);
|
|
Value v, v2;
|
|
state.evalFile(state.aio.blockOn(lookupFileArg(evaluator, path)).unwrap(always_progresses), v);
|
|
state.autoCallFunction(*autoArgs, v, v2, noPos);
|
|
addAttrsToScope(v2);
|
|
}
|
|
|
|
void NixRepl::loadFlake(const std::string & flakeRefS)
|
|
{
|
|
if (flakeRefS.empty())
|
|
throw Error("cannot use ':load-flake' without a path specified. (Use '.' for the current working directory.)");
|
|
|
|
auto flakeRef = parseFlakeRef(flakeRefS, absPath("."), true);
|
|
if (evalSettings.pureEval && !flakeRef.input.isLocked())
|
|
throw Error("cannot use ':load-flake' on locked flake reference '%s' (use --impure to override)", flakeRefS);
|
|
|
|
Value v;
|
|
|
|
flake::callFlake(state,
|
|
flake::lockFlake(state, flakeRef,
|
|
flake::LockFlags {
|
|
.updateLockFile = false,
|
|
.useRegistries = !evalSettings.pureEval,
|
|
.allowUnlocked = !evalSettings.pureEval,
|
|
}),
|
|
v);
|
|
addAttrsToScope(v);
|
|
}
|
|
|
|
|
|
void NixRepl::initEnv()
|
|
{
|
|
env = &evaluator.mem.allocEnv(envSize);
|
|
env->up = &evaluator.builtins.env;
|
|
displ = 0;
|
|
staticEnv->vars.clear();
|
|
|
|
varNames.clear();
|
|
for (auto & i : evaluator.builtins.staticEnv->vars)
|
|
varNames.emplace(evaluator.symbols[i.first]);
|
|
}
|
|
|
|
|
|
void NixRepl::reloadFiles()
|
|
{
|
|
initEnv();
|
|
|
|
loadFiles();
|
|
}
|
|
|
|
|
|
void NixRepl::loadFiles()
|
|
{
|
|
Strings old = loadedFiles;
|
|
loadedFiles.clear();
|
|
|
|
for (auto & i : old) {
|
|
notice("Loading '%1%'...", Magenta(i));
|
|
loadFile(i);
|
|
}
|
|
|
|
for (auto & [i, what] : getValues()) {
|
|
notice("Loading installable '%1%'...", Magenta(what));
|
|
addAttrsToScope(i);
|
|
}
|
|
|
|
loadReplOverlays();
|
|
}
|
|
|
|
void NixRepl::loadReplOverlays()
|
|
{
|
|
if (evalSettings.replOverlays.get().empty()) {
|
|
return;
|
|
}
|
|
|
|
notice("Loading '%1%'...", "repl-overlays");
|
|
auto replInitFilesFunction = getReplOverlaysEvalFunction();
|
|
|
|
Value newAttrs;
|
|
Value args[] = {replInitInfo(), bindingsToAttrs(), replOverlays()};
|
|
state.callFunction(replInitFilesFunction, args, newAttrs, noPos);
|
|
|
|
// n.b. this does in fact load the stuff into the environment twice (once
|
|
// from the superset of the environment returned by repl-overlays and once
|
|
// from the thing itself), but it's not fixable because clearEnv here could
|
|
// lead to dangling references to the old environment in thunks.
|
|
// https://git.lix.systems/lix-project/lix/issues/337#issuecomment-3745
|
|
addAttrsToScope(newAttrs);
|
|
}
|
|
|
|
Value NixRepl::getReplOverlaysEvalFunction()
|
|
{
|
|
if (replOverlaysEvalFunction && *replOverlaysEvalFunction) {
|
|
return **replOverlaysEvalFunction;
|
|
}
|
|
|
|
auto evalReplInitFilesPath = CanonPath::root + "repl-overlays.nix";
|
|
*replOverlaysEvalFunction = Value{};
|
|
auto code =
|
|
#include "repl-overlays.nix.gen.hh"
|
|
;
|
|
auto & expr = evaluator.parseExprFromString(
|
|
code,
|
|
SourcePath(evalReplInitFilesPath),
|
|
evaluator.builtins.staticEnv
|
|
);
|
|
|
|
state.eval(expr, **replOverlaysEvalFunction);
|
|
|
|
return **replOverlaysEvalFunction;
|
|
}
|
|
|
|
Value NixRepl::replOverlays()
|
|
{
|
|
Value replInits;
|
|
auto replInitStorage = evaluator.mem.newList(evalSettings.replOverlays.get().size());
|
|
replInits = {NewValueAs::list, replInitStorage};
|
|
|
|
size_t i = 0;
|
|
for (auto path : evalSettings.replOverlays.get()) {
|
|
debug("Loading '%1%' path '%2%'...", "repl-overlays", path);
|
|
SourcePath sourcePath((CanonPath(path)));
|
|
|
|
// XXX(jade): This is a somewhat unsatisfying solution to
|
|
// https://git.lix.systems/lix-project/lix/issues/777 which means that
|
|
// the top level item in the repl-overlays file (that is, the lambda)
|
|
// gets evaluated with pure eval off. This means that if you want to do
|
|
// impure eval stuff, you will have to force it with builtins.seq.
|
|
bool prevPureEval = evalSettings.pureEval.get();
|
|
auto replInit = evalFile(sourcePath);
|
|
evalSettings.pureEval.setDefault(prevPureEval);
|
|
|
|
if (!replInit.isLambda()) {
|
|
evaluator.errors
|
|
.make<TypeError>(
|
|
"Expected `repl-overlays` entry %s to be a lambda but found %s: %s",
|
|
path,
|
|
showType(replInit),
|
|
ValuePrinter(state, replInit, errorPrintOptions)
|
|
)
|
|
.debugThrow();
|
|
}
|
|
|
|
if (auto attrs = dynamic_cast<AttrsPattern *>(replInit.lambda().fun->pattern.get());
|
|
attrs && !attrs->ellipsis)
|
|
{
|
|
evaluator.errors
|
|
.make<TypeError>(
|
|
"Expected first argument of %1% to have %2% to allow future versions of Lix to "
|
|
"add additional attributes to the argument",
|
|
"repl-overlays",
|
|
"..."
|
|
)
|
|
.atPos(replInit.lambda().fun->pos)
|
|
.debugThrow();
|
|
}
|
|
|
|
replInitStorage->elems[i] = replInit;
|
|
i++;
|
|
}
|
|
|
|
|
|
return replInits;
|
|
}
|
|
|
|
Value NixRepl::replInitInfo()
|
|
{
|
|
auto builder = evaluator.buildBindings(2);
|
|
|
|
Value currentSystem;
|
|
currentSystem.mkString(evalSettings.getCurrentSystem());
|
|
builder.insert(evaluator.symbols.create("currentSystem"), currentSystem);
|
|
|
|
Value info;
|
|
info.mkAttrs(builder.finish());
|
|
return info;
|
|
}
|
|
|
|
|
|
template<typename T, typename NameFn, typename ValueFn>
|
|
void NixRepl::addToScope(T && things, NameFn nameFn, ValueFn valueFn)
|
|
{
|
|
size_t added = 0;
|
|
|
|
staticEnv->vars.unsafe_insert_bulk([&] (auto & map) {
|
|
auto oldSize = map.size();
|
|
for (auto && thing : things) {
|
|
if (displ + 1 >= envSize)
|
|
throw Error("environment full; cannot add more variables");
|
|
|
|
const auto name = nameFn(thing);
|
|
map.emplace_back(name, displ);
|
|
env->values[displ++] = valueFn(thing);
|
|
varNames.emplace(evaluator.symbols[name]);
|
|
added++;
|
|
}
|
|
// safety: we sort the range that we inserted so that we don't have to push that
|
|
// invariant up to the caller
|
|
std::sort(map.begin() + oldSize, map.end());
|
|
});
|
|
|
|
if (added > 0) {
|
|
notice("Added %1% variables.", added);
|
|
}
|
|
}
|
|
|
|
void NixRepl::addAttrsToScope(Value & attrs)
|
|
{
|
|
state.forceAttrs(attrs, noPos, "while evaluating an attribute set to be merged in the global scope");
|
|
addToScope(
|
|
*attrs.attrs(), [](const Attr & a) { return a.name; }, [](const Attr & a) { return a.value; }
|
|
);
|
|
}
|
|
|
|
void NixRepl::addValMapToScope(const ValMap & attrs)
|
|
{
|
|
addToScope(
|
|
attrs,
|
|
[&](auto & val) { return evaluator.symbols.create(val.first); },
|
|
[&](auto & val) { return val.second; }
|
|
);
|
|
}
|
|
|
|
void NixRepl::addVarToScope(const Symbol name, Value & v)
|
|
{
|
|
if (displ >= envSize)
|
|
throw Error("environment full; cannot add more variables");
|
|
if (staticEnv->vars.insert_or_assign(name, displ).second) {
|
|
notice("Updated %s.", evaluator.symbols[name]);
|
|
} else {
|
|
notice("Added %s.", evaluator.symbols[name]);
|
|
}
|
|
env->values[displ++] = v;
|
|
varNames.emplace(evaluator.symbols[name]);
|
|
}
|
|
|
|
Value NixRepl::bindingsToAttrs()
|
|
{
|
|
auto builder = evaluator.buildBindings(staticEnv->vars.size());
|
|
for (auto & [symbol, displacement] : staticEnv->vars) {
|
|
builder.insert(symbol, env->values[displacement]);
|
|
}
|
|
|
|
Value attrs;
|
|
attrs.mkAttrs(builder.finish());
|
|
return attrs;
|
|
}
|
|
|
|
|
|
Expr & NixRepl::parseString(std::string s)
|
|
{
|
|
return evaluator.parseExprFromString(std::move(s), CanonPath::fromCwd(), staticEnv, featureSettings);
|
|
}
|
|
|
|
std::variant<std::unique_ptr<Expr>, ExprReplBindings> NixRepl::parseReplString(std::string s)
|
|
{
|
|
return evaluator.parseReplInput(std::move(s), CanonPath::fromCwd(), staticEnv, featureSettings);
|
|
}
|
|
|
|
|
|
void NixRepl::evalString(std::string s, Value & v)
|
|
{
|
|
Expr & e = parseString(s);
|
|
e.eval(state, *env, v);
|
|
state.forceValue(v, noPos);
|
|
}
|
|
|
|
Value NixRepl::evalFile(SourcePath & path)
|
|
{
|
|
auto & expr = evaluator.parseExprFromFile(evaluator.paths.checkSourcePath(path), staticEnv);
|
|
Value result;
|
|
expr.eval(state, *env, result);
|
|
state.forceValue(result, noPos);
|
|
return result;
|
|
}
|
|
|
|
ReplExitStatus AbstractNixRepl::run(
|
|
const SearchPath & searchPath,
|
|
nix::ref<Store> store,
|
|
EvalState & state,
|
|
std::function<AnnotatedValues()> getValues,
|
|
const ValMap & extraEnv,
|
|
Bindings * autoArgs
|
|
)
|
|
{
|
|
NixRepl repl(searchPath, store, state, getValues);
|
|
|
|
repl.autoArgs = autoArgs;
|
|
repl.initEnv();
|
|
repl.addValMapToScope(extraEnv);
|
|
return repl.mainLoop();
|
|
}
|
|
|
|
ReplExitStatus AbstractNixRepl::runSimple(EvalState & evalState, const ValMap & extraEnv)
|
|
{
|
|
return run(
|
|
{},
|
|
evalState.aio.blockOn(openStore()),
|
|
evalState,
|
|
[] { return AnnotatedValues{}; },
|
|
extraEnv,
|
|
nullptr
|
|
);
|
|
}
|
|
|
|
}
|