From 846c14f92bda2fb3e68c3debf940414628013574 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Tue, 9 Mar 2021 23:13:00 +0000 Subject: fix: don't use `Option` to signal errors --- serde_dhall/src/value.rs | 55 +++++++++++++++++++++++++++--------------------- 1 file changed, 31 insertions(+), 24 deletions(-) (limited to 'serde_dhall/src/value.rs') diff --git a/serde_dhall/src/value.rs b/serde_dhall/src/value.rs index df81a85..6dc13a8 100644 --- a/serde_dhall/src/value.rs +++ b/serde_dhall/src/value.rs @@ -1,4 +1,5 @@ use std::collections::{BTreeMap, HashMap}; +use std::result::Result as StdResult; use dhall::builtins::Builtin; use dhall::operations::OpKind; @@ -212,13 +213,13 @@ impl Value { x: &Nir<'cx>, ty: &Nir<'cx>, ) -> Result { - Ok(if let Some(val) = SimpleValue::from_nir(x) { + Ok(if let Ok(val) = SimpleValue::from_nir(x) { // The type must be simple if the value is simple. let ty = SimpleType::from_nir(ty).unwrap(); Value { kind: ValueKind::Val(val, Some(ty)), } - } else if let Some(ty) = SimpleType::from_nir(x) { + } else if let Ok(ty) = SimpleType::from_nir(x) { Value { kind: ValueKind::Ty(ty), } @@ -256,9 +257,12 @@ impl Value { } } +#[derive(Debug)] +struct NotSimpleValue; + impl SimpleValue { - pub(crate) fn from_nir(nir: &Nir) -> Option { - Some(match nir.kind() { + fn from_nir(nir: &Nir) -> StdResult { + Ok(match nir.kind() { NirKind::Num(lit) => SimpleValue::Num(lit.clone()), NirKind::TextLit(x) => SimpleValue::Text( x.as_text() @@ -275,7 +279,7 @@ impl SimpleValue { && kts.contains_key("mapKey") && kts.contains_key("mapValue") { - return Some(SimpleValue::Record(Default::default())); + return Ok(SimpleValue::Record(Default::default())); } } SimpleValue::List(vec![]) @@ -305,25 +309,27 @@ impl SimpleValue { let v = Self::from_nir( kvs.get("mapValue").unwrap(), )?; - Some((k, v)) + Ok((k, v)) } _ => unreachable!("Internal type error"), }; - return Some(SimpleValue::Record( + return Ok(SimpleValue::Record( xs.iter() .map(convert_entry) - .collect::>()?, + .collect::>()?, )); } } SimpleValue::List( - xs.iter().map(Self::from_nir).collect::>()?, + xs.iter() + .map(Self::from_nir) + .collect::>()?, ) } NirKind::RecordLit(kvs) => SimpleValue::Record( kvs.iter() - .map(|(k, v)| Some((k.to_string(), Self::from_nir(v)?))) - .collect::>()?, + .map(|(k, v)| Ok((k.to_string(), Self::from_nir(v)?))) + .collect::>()?, ), NirKind::UnionLit(field, x, _) => SimpleValue::Union( field.into(), @@ -334,7 +340,7 @@ impl SimpleValue { { SimpleValue::Union(field.into(), None) } - _ => return None, + _ => return Err(NotSimpleValue), }) } @@ -450,9 +456,12 @@ impl SimpleValue { } } +#[derive(Debug)] +struct NotSimpleType; + impl SimpleType { - pub(crate) fn from_nir(nir: &Nir) -> Option { - Some(match nir.kind() { + fn from_nir(nir: &Nir) -> StdResult { + Ok(match nir.kind() { NirKind::BuiltinType(b) => match b { Builtin::Bool => SimpleType::Bool, Builtin::Natural => SimpleType::Natural, @@ -469,22 +478,20 @@ impl SimpleType { } NirKind::RecordType(kts) => SimpleType::Record( kts.iter() - .map(|(k, v)| Some((k.into(), Self::from_nir(v)?))) - .collect::>()?, + .map(|(k, v)| Ok((k.into(), Self::from_nir(v)?))) + .collect::>()?, ), NirKind::UnionType(kts) => SimpleType::Union( kts.iter() .map(|(k, v)| { - Some(( + Ok(( k.into(), - v.as_ref() - .map(|v| Ok(Self::from_nir(v)?)) - .transpose()?, + v.as_ref().map(Self::from_nir).transpose()?, )) }) - .collect::>()?, + .collect::>()?, ), - _ => return None, + _ => return Err(NotSimpleType), }) } @@ -565,7 +572,7 @@ impl std::fmt::Display for Value { fn fmt( &self, f: &mut std::fmt::Formatter, - ) -> std::result::Result<(), std::fmt::Error> { + ) -> StdResult<(), std::fmt::Error> { self.to_expr().fmt(f) } } @@ -574,7 +581,7 @@ impl std::fmt::Display for SimpleType { fn fmt( &self, f: &mut std::fmt::Formatter, - ) -> std::result::Result<(), std::fmt::Error> { + ) -> StdResult<(), std::fmt::Error> { self.to_expr().fmt(f) } } -- cgit v1.2.3