From 5095e4f2696ef85ee7c6ae0515eb8d1586459f8c Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 12 Mar 2023 21:49:29 +0300 Subject: feat(tvix/eval): add generator "name" to NativeError kind This produces traces in which we can see what kind of native code was run. Note that these "names" are named after the generator message, so these aren't *really* intended for end-user consumption, but we can give them saner names later. Example: https://gist.github.com/tazjin/82b24e92ace8e821008954867ee05057 This already makes the traces a little easier to parse. Change-Id: Idcd601baf84f492211b732ea0f04b377112e10d0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8268 Reviewed-by: flokli Tested-by: BuildkiteCI Autosubmit: tazjin --- tvix/eval/src/errors.rs | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) (limited to 'tvix/eval/src/errors.rs') diff --git a/tvix/eval/src/errors.rs b/tvix/eval/src/errors.rs index de17f8d332ed..5e890c68a74c 100644 --- a/tvix/eval/src/errors.rs +++ b/tvix/eval/src/errors.rs @@ -83,7 +83,10 @@ pub enum ErrorKind { /// An error occured while executing some native code (e.g. a /// builtin), and needs to be chained up. - NativeError(Box), + NativeError { + gen_type: &'static str, + err: Box, + }, /// An error occured while executing Tvix bytecode, but needs to /// be chained up. @@ -179,7 +182,7 @@ pub enum ErrorKind { impl error::Error for Error { fn source(&self) -> Option<&(dyn error::Error + 'static)> { match &self.kind { - ErrorKind::NativeError(err) | ErrorKind::BytecodeError(err) => err.source(), + ErrorKind::NativeError { err, .. } | ErrorKind::BytecodeError(err) => err.source(), ErrorKind::ParseErrors(err) => err.first().map(|e| e as &dyn error::Error), ErrorKind::ParseIntError(err) => Some(err), ErrorKind::ImportParseError { errors, .. } => { @@ -234,7 +237,7 @@ impl ErrorKind { pub fn is_catchable(&self) -> bool { match self { Self::Throw(_) | Self::AssertionFailed | Self::NixPathResolution(_) => true, - Self::NativeError(err) | Self::BytecodeError(err) => err.kind.is_catchable(), + Self::NativeError { err, .. } | Self::BytecodeError(err) => err.kind.is_catchable(), _ => false, } } @@ -356,7 +359,10 @@ to a missing value in the attribute set(s) included via `with`."#, // Errors themselves ignored here & handled in Self::spans instead ErrorKind::ParseErrors(_) => write!(f, "failed to parse Nix code:"), - ErrorKind::NativeError(_) => write!(f, "while evaluating this native code"), + ErrorKind::NativeError { gen_type, .. } => { + write!(f, "while evaluating this as native code ({})", gen_type) + } + ErrorKind::BytecodeError(_) => write!(f, "while evaluating this Nix code"), ErrorKind::NotCoercibleToString { kind, from } => { @@ -750,7 +756,7 @@ impl Error { | ErrorKind::NotCallable(_) | ErrorKind::InfiniteRecursion | ErrorKind::ParseErrors(_) - | ErrorKind::NativeError(_) + | ErrorKind::NativeError { .. } | ErrorKind::BytecodeError(_) | ErrorKind::NotCoercibleToString { .. } | ErrorKind::NotAnAbsolutePath(_) @@ -827,7 +833,9 @@ impl Error { // Chained errors should yield the code of the innermost // error. - ErrorKind::NativeError(ref err) | ErrorKind::BytecodeError(ref err) => err.code(), + ErrorKind::NativeError { ref err, .. } | ErrorKind::BytecodeError(ref err) => { + err.code() + } ErrorKind::WithContext { .. } => { panic!("internal ErrorKind::WithContext variant leaked") @@ -910,7 +918,7 @@ impl Error { // // We don't know how deep this chain is, so we avoid recursing in // this function while unrolling the chain. - ErrorKind::NativeError(next) | ErrorKind::BytecodeError(next) => { + ErrorKind::NativeError { err: next, .. } | ErrorKind::BytecodeError(next) => { // Accumulated diagnostics to return. let mut diagnostics: Vec = vec![]; @@ -945,7 +953,8 @@ impl Error { this_spans = next.spans(source); match next.kind { - ErrorKind::NativeError(inner) | ErrorKind::BytecodeError(inner) => { + ErrorKind::NativeError { err: inner, .. } + | ErrorKind::BytecodeError(inner) => { next = *inner; continue; } -- cgit 1.4.1