aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/print.cc
diff options
context:
space:
mode:
authorrebecca “wiggles” turner <rbt@sent.as>2024-04-10 15:40:03 +0000
committerGerrit Code Review <gerrit@lix>2024-04-10 15:40:03 +0000
commit99845e0e01eaa2120b10c22591c43c4305f5ba51 (patch)
tree0dae19d8a47e008281c886f7d115caf4f43703c9 /src/libexpr/print.cc
parent784a46654cb661582b97f90640dcb145986f6981 (diff)
parent9e7e927837f205fbd00769a47f39e5946ea931b7 (diff)
Merge "Print top-level errors normally in `nix repl`" into main
Diffstat (limited to 'src/libexpr/print.cc')
-rw-r--r--src/libexpr/print.cc120
1 files changed, 60 insertions, 60 deletions
diff --git a/src/libexpr/print.cc b/src/libexpr/print.cc
index 8d7e2ab34..231bde0a0 100644
--- a/src/libexpr/print.cc
+++ b/src/libexpr/print.cc
@@ -229,25 +229,21 @@ private:
void printDerivation(Value & v)
{
- try {
- Bindings::iterator i = v.attrs->find(state.sDrvPath);
- NixStringContext context;
- std::string storePath;
- if (i != v.attrs->end())
- storePath = state.store->printStorePath(state.coerceToStorePath(i->pos, *i->value, context, "while evaluating the drvPath of a derivation"));
+ Bindings::iterator i = v.attrs->find(state.sDrvPath);
+ NixStringContext context;
+ std::string storePath;
+ if (i != v.attrs->end())
+ storePath = state.store->printStorePath(state.coerceToStorePath(i->pos, *i->value, context, "while evaluating the drvPath of a derivation"));
- if (options.ansiColors)
- output << ANSI_GREEN;
- output << "«derivation";
- if (!storePath.empty()) {
- output << " " << storePath;
- }
- output << "»";
- if (options.ansiColors)
- output << ANSI_NORMAL;
- } catch (Error & e) {
- printError_(e);
+ if (options.ansiColors)
+ output << ANSI_GREEN;
+ output << "«derivation";
+ if (!storePath.empty()) {
+ output << " " << storePath;
}
+ output << "»";
+ if (options.ansiColors)
+ output << ANSI_NORMAL;
}
bool shouldPrettyPrintAttrs(AttrVec & v)
@@ -472,64 +468,68 @@ private:
output.flush();
checkInterrupt();
- if (options.force) {
- try {
+ try {
+ if (options.force) {
state.forceValue(v, v.determinePos(noPos));
- } catch (Error & e) {
- printError_(e);
- return;
}
- }
- switch (v.type()) {
+ switch (v.type()) {
- case nInt:
- printInt(v);
- break;
+ case nInt:
+ printInt(v);
+ break;
- case nFloat:
- printFloat(v);
- break;
+ case nFloat:
+ printFloat(v);
+ break;
- case nBool:
- printBool(v);
- break;
+ case nBool:
+ printBool(v);
+ break;
- case nString:
- printString(v);
- break;
+ case nString:
+ printString(v);
+ break;
- case nPath:
- printPath(v);
- break;
+ case nPath:
+ printPath(v);
+ break;
- case nNull:
- printNull();
- break;
+ case nNull:
+ printNull();
+ break;
- case nAttrs:
- printAttrs(v, depth);
- break;
+ case nAttrs:
+ printAttrs(v, depth);
+ break;
- case nList:
- printList(v, depth);
- break;
+ case nList:
+ printList(v, depth);
+ break;
- case nFunction:
- printFunction(v);
- break;
+ case nFunction:
+ printFunction(v);
+ break;
- case nThunk:
- printThunk(v);
- break;
+ case nThunk:
+ printThunk(v);
+ break;
- case nExternal:
- printExternal(v);
- break;
+ case nExternal:
+ printExternal(v);
+ break;
- default:
- printUnknown();
- break;
+ default:
+ printUnknown();
+ break;
+ }
+ } catch (Error & e) {
+ if (options.errors == ErrorPrintBehavior::Throw
+ || (options.errors == ErrorPrintBehavior::ThrowTopLevel
+ && depth == 0)) {
+ throw;
+ }
+ printError_(e);
}
}