refactor(tvix/eval): remove Value::Json and related functionality
Currently Value::Json is used in combination with VMRequest::ToJson to recursively convert tvix Value to serde_json::Value. This functionality is used in builtins.toJSON as well as derivation __structuredAttrs. Both Value::Json and VMRequest::ToJson were removed in this commit. Related functionality in vm.rs is also removed: vm.rs does not know about JSON anymore. Recursively converting to serde_json now happens without going through the VM. Thrown errors that are part of the value of toJSON are now directly propagated as ErrorKind, were-as previously there was a split between CatchableErrorKind and ErrorKind, where eventually CatchableErrorKind would be converted to ErrorKind::Catchable. Change-Id: I066f064926c491e4c087a984f07af43d19124cfe Reviewed-on: https://cl.tvl.fyi/c/depot/+/12732 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
b6e524c726
commit
9aa479648b
8 changed files with 27 additions and 109 deletions
|
|
@ -76,8 +76,6 @@ pub enum Value {
|
|||
DeferredUpvalue(StackIdx),
|
||||
#[serde(skip)]
|
||||
UnresolvedPath(Box<PathBuf>),
|
||||
#[serde(skip)]
|
||||
Json(Box<(serde_json::Value, NixContext)>),
|
||||
|
||||
#[serde(skip)]
|
||||
FinaliseRequest(bool),
|
||||
|
|
@ -299,7 +297,6 @@ impl Value {
|
|||
| Value::Blueprint(_)
|
||||
| Value::DeferredUpvalue(_)
|
||||
| Value::UnresolvedPath(_)
|
||||
| Value::Json(..)
|
||||
| Value::FinaliseRequest(_) => panic!(
|
||||
"Tvix bug: internal value left on stack: {}",
|
||||
value.type_of()
|
||||
|
|
@ -449,7 +446,6 @@ impl Value {
|
|||
| (Value::Blueprint(_), _)
|
||||
| (Value::DeferredUpvalue(_), _)
|
||||
| (Value::UnresolvedPath(_), _)
|
||||
| (Value::Json(..), _)
|
||||
| (Value::FinaliseRequest(_), _) => {
|
||||
panic!("tvix bug: .coerce_to_string() called on internal value")
|
||||
}
|
||||
|
|
@ -686,7 +682,6 @@ impl Value {
|
|||
Value::Blueprint(_) => "internal[blueprint]",
|
||||
Value::DeferredUpvalue(_) => "internal[deferred_upvalue]",
|
||||
Value::UnresolvedPath(_) => "internal[unresolved_path]",
|
||||
Value::Json(..) => "internal[json]",
|
||||
Value::FinaliseRequest(_) => "internal[finaliser_sentinel]",
|
||||
Value::Catchable(_) => "internal[catchable]",
|
||||
}
|
||||
|
|
@ -882,7 +877,6 @@ impl Value {
|
|||
| Value::Blueprint(_)
|
||||
| Value::DeferredUpvalue(_)
|
||||
| Value::UnresolvedPath(_)
|
||||
| Value::Json(..)
|
||||
| Value::FinaliseRequest(_) => "an internal Tvix evaluator value".into(),
|
||||
}
|
||||
}
|
||||
|
|
@ -1002,7 +996,6 @@ impl TotalDisplay for Value {
|
|||
Value::Blueprint(_) => f.write_str("internal[blueprint]"),
|
||||
Value::DeferredUpvalue(_) => f.write_str("internal[deferred_upvalue]"),
|
||||
Value::UnresolvedPath(_) => f.write_str("internal[unresolved_path]"),
|
||||
Value::Json(..) => f.write_str("internal[json]"),
|
||||
Value::FinaliseRequest(_) => f.write_str("internal[finaliser_sentinel]"),
|
||||
|
||||
// Delegate thunk display to the type, as it must handle
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue