From<serde_json::Value> and From<serde_yaml::Value> (#196)

Provide wrappers around serde_json::from_value and serde_yaml::from_value since
they may not be apparent and the user may end up serializing to json/yaml and
rereading as a regorus::Value

Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
Anand Krishnamoorthi
2024-04-06 16:40:57 +05:30
committed by GitHub
parent 3c7674e7c2
commit e326f3c629
2 changed files with 50 additions and 1 deletions

View File

@@ -210,7 +210,7 @@ impl Engine {
/// Evaluate rule(s) at given path.
///
/// [`eval_rule`] is often faster than [`eval_query`] and should be preferred if
/// [`Engine::eval_rule`] is often faster than [`Engine::eval_query`] and should be preferred if
/// OPA style [`QueryResults`] are not needed.
///
/// ```

View File

@@ -584,6 +584,55 @@ impl From<f64> for Value {
}
}
impl From<serde_json::Value> for Value {
/// Create a [`Value`] from [`serde_json::Value`].
///
/// Returns [`Value::Undefined`] in case of error.
/// ```
/// # use regorus::*;
/// # fn main() -> anyhow::Result<()> {
/// let json_v = serde_json::json!({ "x":10, "y": 20 });
/// let v = Value::from(json_v);
///
/// assert_eq!(v["x"].as_u64()?, 10);
/// assert_eq!(v["y"].as_u64()?, 20);
/// # Ok(())
/// # }
fn from(v: serde_json::Value) -> Self {
match serde_json::from_value(v) {
Ok(v) => v,
_ => Value::Undefined,
}
}
}
#[cfg(feature = "yaml")]
impl From<serde_yaml::Value> for Value {
/// Create a [`Value`] from [`serde_yaml::Value`].
///
/// Returns [`Value::Undefined`] in case of error.
/// ```
/// # use regorus::*;
/// # fn main() -> anyhow::Result<()> {
/// let yaml = "
/// x: 10
/// y: 20
/// ";
/// let yaml_v : serde_yaml::Value = serde_yaml::from_str(&yaml).unwrap();
/// let v = Value::from(yaml_v);
///
/// assert_eq!(v["x"].as_u64()?, 10);
/// assert_eq!(v["y"].as_u64()?, 20);
/// # Ok(())
/// # }
fn from(v: serde_yaml::Value) -> Self {
match serde_yaml::from_value(v) {
Ok(v) => v,
_ => Value::Undefined,
}
}
}
impl Value {
/// Create a [`Value::Number`] from a string containing numeric representation of a number.
///