1
0
dust/src/value/mod.rs

806 lines
22 KiB
Rust
Raw Normal View History

2023-08-28 14:12:41 +00:00
//! Types that represent runtime values.
2023-08-22 15:40:50 +00:00
use crate::{
error::{Error, Result},
2023-10-26 22:03:59 +00:00
Function, List, Map, Table, ValueType,
2023-08-22 15:40:50 +00:00
};
use serde::{
de::{MapAccess, SeqAccess, Visitor},
ser::SerializeTuple,
Deserialize, Serialize, Serializer,
};
use std::{
cmp::Ordering,
convert::TryFrom,
fmt::{self, Display, Formatter},
marker::PhantomData,
2023-10-13 23:56:57 +00:00
ops::{Add, AddAssign, Div, Mul, Rem, Sub, SubAssign},
2023-08-22 15:40:50 +00:00
};
pub mod function;
2023-10-26 22:03:59 +00:00
pub mod list;
2023-10-25 20:44:50 +00:00
pub mod map;
2023-08-22 15:40:50 +00:00
pub mod table;
pub mod value_type;
2023-11-07 00:15:22 +00:00
/// Dust value representation.
2023-08-22 15:40:50 +00:00
///
2023-11-07 00:15:22 +00:00
/// Every dust variable has a key and a Value. Variables are represented by
2023-08-22 15:40:50 +00:00
/// storing them in a VariableMap. This means the map of variables is itself a
/// value that can be treated as any other.
2023-10-10 17:29:11 +00:00
#[derive(Debug, Clone, Default)]
2023-08-22 15:40:50 +00:00
pub enum Value {
2023-10-26 22:03:59 +00:00
List(List),
2023-10-25 20:44:50 +00:00
Map(Map),
2023-08-22 15:40:50 +00:00
Table(Table),
Function(Function),
2023-10-05 12:03:14 +00:00
String(String),
Float(f64),
Integer(i64),
Boolean(bool),
#[default]
Empty,
2023-08-22 15:40:50 +00:00
}
2023-10-10 17:29:11 +00:00
impl Value {
2023-08-22 15:40:50 +00:00
pub fn value_type(&self) -> ValueType {
ValueType::from(self)
}
pub fn is_table(&self) -> bool {
matches!(self, Value::Table(_))
}
pub fn is_string(&self) -> bool {
2023-10-05 12:03:14 +00:00
matches!(self, Value::String(_))
2023-08-22 15:40:50 +00:00
}
pub fn is_integer(&self) -> bool {
2023-10-05 12:03:14 +00:00
matches!(self, Value::Integer(_))
2023-08-22 15:40:50 +00:00
}
pub fn is_float(&self) -> bool {
2023-10-05 12:03:14 +00:00
matches!(self, Value::Float(_))
2023-08-22 15:40:50 +00:00
}
pub fn is_number(&self) -> bool {
2023-10-05 12:03:14 +00:00
matches!(self, Value::Integer(_) | Value::Float(_))
2023-08-22 15:40:50 +00:00
}
pub fn is_boolean(&self) -> bool {
2023-10-05 12:03:14 +00:00
matches!(self, Value::Boolean(_))
2023-08-22 15:40:50 +00:00
}
pub fn is_list(&self) -> bool {
matches!(self, Value::List(_))
}
pub fn is_empty(&self) -> bool {
2023-10-05 12:03:14 +00:00
matches!(self, Value::Empty)
2023-08-22 15:40:50 +00:00
}
pub fn is_map(&self) -> bool {
matches!(self, Value::Map(_))
}
pub fn is_function(&self) -> bool {
matches!(self, Value::Map(_))
}
2023-10-05 12:03:14 +00:00
/// Borrows the value stored in `self` as `String`, or returns `Err` if `self` is not a `Value::String`.
2023-08-22 15:40:50 +00:00
pub fn as_string(&self) -> Result<&String> {
match self {
2023-10-05 12:03:14 +00:00
Value::String(string) => Ok(string),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedString {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
/// Copies the value stored in `self` as `i64`, or returns `Err` if `self` is not a `Value::Int`.
2023-10-28 14:28:43 +00:00
pub fn as_integer(&self) -> Result<i64> {
2023-08-22 15:40:50 +00:00
match self {
2023-10-05 12:03:14 +00:00
Value::Integer(i) => Ok(*i),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedInt {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
2023-10-02 21:15:05 +00:00
/// Copies the value stored in `self` as `f64`, or returns `Err` if `self` is not a `Primitive::Float`.
2023-08-22 15:40:50 +00:00
pub fn as_float(&self) -> Result<f64> {
match self {
2023-10-05 12:03:14 +00:00
Value::Float(f) => Ok(*f),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedFloat {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
2023-10-02 21:15:05 +00:00
/// Copies the value stored in `self` as `f64`, or returns `Err` if `self` is not a `Primitive::Float` or `Value::Int`.
2023-08-22 15:40:50 +00:00
/// Note that this method silently converts `i64` to `f64`, if `self` is a `Value::Int`.
pub fn as_number(&self) -> Result<f64> {
match self {
2023-10-05 12:03:14 +00:00
Value::Float(f) => Ok(*f),
Value::Integer(i) => Ok(*i as f64),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedNumber {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
2023-10-02 21:15:05 +00:00
/// Copies the value stored in `self` as `bool`, or returns `Err` if `self` is not a `Primitive::Boolean`.
2023-08-22 15:40:50 +00:00
pub fn as_boolean(&self) -> Result<bool> {
match self {
2023-10-05 12:03:14 +00:00
Value::Boolean(boolean) => Ok(*boolean),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedBoolean {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
/// Borrows the value stored in `self` as `Vec<Value>`, or returns `Err` if `self` is not a `Value::List`.
2023-10-26 22:03:59 +00:00
pub fn as_list(&self) -> Result<&List> {
2023-08-22 15:40:50 +00:00
match self {
Value::List(list) => Ok(list),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedList {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
/// Borrows the value stored in `self` as `Vec<Value>`, or returns `Err` if `self` is not a `Value::List`.
2023-10-26 22:03:59 +00:00
pub fn into_inner_list(self) -> Result<List> {
2023-08-22 15:40:50 +00:00
match self {
Value::List(list) => Ok(list),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedList {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
/// Borrows the value stored in `self` as `Vec<Value>`, or returns `Err` if `self` is not a `Value::Map`.
2023-10-25 20:44:50 +00:00
pub fn as_map(&self) -> Result<&Map> {
2023-08-22 15:40:50 +00:00
match self {
Value::Map(map) => Ok(map),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedMap {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
/// Borrows the value stored in `self` as `Vec<Value>`, or returns `Err` if `self` is not a `Value::Table`.
pub fn as_table(&self) -> Result<&Table> {
match self {
Value::Table(table) => Ok(table),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedTable {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
/// Borrows the value stored in `self` as `Function`, or returns `Err` if
/// `self` is not a `Value::Function`.
pub fn as_function(&self) -> Result<&Function> {
match self {
Value::Function(function) => Ok(function),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedFunction {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
2023-10-24 00:45:47 +00:00
/// Returns `()`, or returns`Err` if `self` is not a `Value::Empty`.
2023-08-22 15:40:50 +00:00
pub fn as_empty(&self) -> Result<()> {
match self {
2023-10-05 12:03:14 +00:00
Value::Empty => Ok(()),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedEmpty {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
2023-10-24 00:45:47 +00:00
/// Returns an owned table, either by cloning or converting the inner value.
2023-08-22 15:40:50 +00:00
pub fn to_table(&self) -> Result<Table> {
match self {
Value::Table(table) => Ok(table.clone()),
Value::List(list) => Ok(Table::from(list)),
2023-11-05 18:54:29 +00:00
Value::Map(map) => Result::from(map),
2023-10-13 16:26:44 +00:00
value => Err(Error::ExpectedTable {
actual: value.clone(),
}),
2023-08-22 15:40:50 +00:00
}
}
}
2023-09-29 03:53:37 +00:00
impl Add for Value {
type Output = Result<Value>;
2023-09-29 10:02:46 +00:00
fn add(self, other: Self) -> Self::Output {
2023-11-04 03:42:10 +00:00
if let (Ok(left), Ok(right)) = (self.as_integer(), other.as_integer()) {
return Ok(Value::Integer(left + right));
2023-10-22 21:04:14 +00:00
}
2023-11-04 03:42:10 +00:00
if let (Ok(left), Ok(right)) = (self.as_number(), other.as_number()) {
return Ok(Value::Float(left + right));
2023-10-22 21:04:14 +00:00
}
2023-11-04 03:42:10 +00:00
if let (Ok(left), Ok(right)) = (self.as_string(), other.as_string()) {
return Ok(Value::String(left.to_string() + right));
}
if self.is_string() || other.is_string() {
return Ok(Value::String(self.to_string() + &other.to_string()));
2023-10-22 21:04:14 +00:00
}
let non_number_or_string = if !self.is_number() == !self.is_string() {
self
} else {
other
2023-10-09 19:54:47 +00:00
};
2023-10-22 21:04:14 +00:00
Err(Error::ExpectedNumberOrString {
actual: non_number_or_string,
})
2023-10-09 19:54:47 +00:00
}
}
impl Sub for Value {
type Output = Result<Self>;
fn sub(self, other: Self) -> Self::Output {
2023-10-28 14:28:43 +00:00
match (self.as_integer(), other.as_integer()) {
(Ok(left), Ok(right)) => return Ok(Value::Integer(left - right)),
_ => {}
}
match (self.as_number(), other.as_number()) {
(Ok(left), Ok(right)) => return Ok(Value::Float(left - right)),
_ => {}
}
let non_number = if !self.is_number() { self } else { other };
2023-10-09 19:54:47 +00:00
Err(Error::ExpectedNumber { actual: non_number })
2023-09-29 03:53:37 +00:00
}
}
2023-10-13 23:56:57 +00:00
impl Mul for Value {
type Output = Result<Self>;
fn mul(self, other: Self) -> Self::Output {
if self.is_integer() && other.is_integer() {
2023-10-28 14:28:43 +00:00
let left = self.as_integer().unwrap();
let right = other.as_integer().unwrap();
2023-10-13 23:56:57 +00:00
let value = Value::Integer(left.saturating_mul(right));
Ok(value)
} else {
let left = self.as_number()?;
let right = other.as_number()?;
let value = Value::Float(left * right);
Ok(value)
}
}
}
impl Div for Value {
type Output = Result<Self>;
fn div(self, other: Self) -> Self::Output {
let left = self.as_number()?;
let right = other.as_number()?;
let result = left / right;
let value = if result % 2.0 == 0.0 {
Value::Integer(result as i64)
} else {
Value::Float(result)
};
Ok(value)
}
}
impl Rem for Value {
type Output = Result<Self>;
fn rem(self, other: Self) -> Self::Output {
2023-10-28 14:28:43 +00:00
let left = self.as_integer()?;
let right = other.as_integer()?;
2023-10-13 23:56:57 +00:00
let result = left % right;
Ok(Value::Integer(result))
}
}
2023-10-09 19:54:47 +00:00
impl AddAssign for Value {
fn add_assign(&mut self, other: Self) {
match (self, other) {
(Value::Integer(left), Value::Integer(right)) => *left += right,
(Value::Float(left), Value::Float(right)) => *left += right,
(Value::Float(left), Value::Integer(right)) => *left += right as f64,
2023-10-23 19:25:22 +00:00
(Value::String(left), Value::String(right)) => *left += &right,
2023-10-26 22:03:59 +00:00
(Value::List(list), value) => list.items_mut().push(value),
2023-10-09 19:54:47 +00:00
_ => {}
}
}
}
2023-09-29 10:02:46 +00:00
2023-10-09 19:54:47 +00:00
impl SubAssign for Value {
fn sub_assign(&mut self, other: Self) {
match (self, other) {
(Value::Integer(left), Value::Integer(right)) => *left -= right,
(Value::Float(left), Value::Float(right)) => *left -= right,
(Value::Float(left), Value::Integer(right)) => *left -= right as f64,
_ => {}
}
2023-09-29 10:02:46 +00:00
}
}
2023-08-22 15:40:50 +00:00
impl Eq for Value {}
2023-10-01 16:17:27 +00:00
impl PartialEq for Value {
fn eq(&self, other: &Self) -> bool {
match (self, other) {
2023-10-05 12:42:23 +00:00
(Value::Integer(left), Value::Integer(right)) => left == right,
(Value::Float(left), Value::Float(right)) => left == right,
(Value::Boolean(left), Value::Boolean(right)) => left == right,
(Value::String(left), Value::String(right)) => left == right,
2023-10-01 16:17:27 +00:00
(Value::List(left), Value::List(right)) => left == right,
(Value::Map(left), Value::Map(right)) => left == right,
(Value::Table(left), Value::Table(right)) => left == right,
(Value::Function(left), Value::Function(right)) => left == right,
2023-10-05 12:42:23 +00:00
(Value::Empty, Value::Empty) => true,
2023-10-01 16:17:27 +00:00
_ => false,
}
}
}
2023-08-22 15:40:50 +00:00
impl PartialOrd for Value {
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
Some(self.cmp(other))
}
}
impl Ord for Value {
fn cmp(&self, other: &Self) -> Ordering {
match (self, other) {
2023-10-05 12:03:14 +00:00
(Value::String(left), Value::String(right)) => left.cmp(right),
(Value::String(_), _) => Ordering::Greater,
(Value::Float(left), Value::Float(right)) => left.total_cmp(right),
(Value::Integer(left), Value::Integer(right)) => left.cmp(right),
2023-10-28 14:28:43 +00:00
(Value::Float(float), Value::Integer(integer)) => {
let int_as_float = *integer as f64;
float.total_cmp(&int_as_float)
}
(Value::Integer(integer), Value::Float(float)) => {
let int_as_float = *integer as f64;
int_as_float.total_cmp(float)
}
(Value::Float(_), _) => Ordering::Greater,
2023-10-05 12:03:14 +00:00
(Value::Integer(_), _) => Ordering::Greater,
(Value::Boolean(left), Value::Boolean(right)) => left.cmp(right),
(Value::Boolean(_), _) => Ordering::Greater,
2023-08-22 15:40:50 +00:00
(Value::List(left), Value::List(right)) => left.cmp(right),
(Value::List(_), _) => Ordering::Greater,
(Value::Map(left), Value::Map(right)) => left.cmp(right),
(Value::Map(_), _) => Ordering::Greater,
(Value::Table(left), Value::Table(right)) => left.cmp(right),
(Value::Table(_), _) => Ordering::Greater,
(Value::Function(left), Value::Function(right)) => left.cmp(right),
(Value::Function(_), _) => Ordering::Greater,
2023-10-05 12:42:23 +00:00
(Value::Empty, Value::Empty) => Ordering::Equal,
2023-10-05 12:03:14 +00:00
(Value::Empty, _) => Ordering::Less,
2023-08-22 15:40:50 +00:00
}
}
}
impl Serialize for Value {
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
where
S: Serializer,
{
match self {
2023-10-05 12:03:14 +00:00
Value::String(inner) => serializer.serialize_str(inner),
Value::Float(inner) => serializer.serialize_f64(*inner),
Value::Integer(inner) => serializer.serialize_i64(*inner),
Value::Boolean(inner) => serializer.serialize_bool(*inner),
2023-08-22 15:40:50 +00:00
Value::List(inner) => {
2023-10-26 22:03:59 +00:00
let items = inner.items();
let mut list = serializer.serialize_tuple(items.len())?;
2023-08-22 15:40:50 +00:00
2023-10-26 22:03:59 +00:00
for value in items.iter() {
2023-10-24 00:45:47 +00:00
list.serialize_element(value)?;
2023-08-22 15:40:50 +00:00
}
2023-10-24 00:45:47 +00:00
list.end()
2023-08-22 15:40:50 +00:00
}
2023-10-05 12:03:14 +00:00
Value::Empty => todo!(),
2023-08-22 15:40:50 +00:00
Value::Map(inner) => inner.serialize(serializer),
Value::Table(inner) => inner.serialize(serializer),
Value::Function(inner) => inner.serialize(serializer),
}
}
}
impl Display for Value {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
match self {
2023-10-05 12:03:14 +00:00
Value::String(string) => write!(f, "{string}"),
2023-10-14 18:18:13 +00:00
Value::Float(float) => write!(f, "{float}"),
Value::Integer(int) => write!(f, "{int}"),
Value::Boolean(boolean) => write!(f, "{boolean}"),
Value::Empty => write!(f, "empty"),
2023-10-03 03:19:01 +00:00
Value::List(list) => {
2023-10-05 12:20:20 +00:00
write!(f, "[")?;
2023-10-26 22:03:59 +00:00
for value in list.items().iter() {
2023-10-03 03:19:01 +00:00
write!(f, " {value} ")?;
}
2023-10-05 12:20:20 +00:00
write!(f, "]")
2023-10-03 03:19:01 +00:00
}
2023-08-22 15:40:50 +00:00
Value::Map(map) => write!(f, "{map}"),
Value::Table(table) => write!(f, "{table}"),
Value::Function(function) => write!(f, "{function}"),
}
}
}
impl From<String> for Value {
fn from(string: String) -> Self {
2023-10-05 12:03:14 +00:00
Value::String(string)
2023-08-22 15:40:50 +00:00
}
}
impl From<&str> for Value {
fn from(string: &str) -> Self {
2023-10-05 12:03:14 +00:00
Value::String(string.to_string())
2023-08-22 15:40:50 +00:00
}
}
impl From<f64> for Value {
fn from(float: f64) -> Self {
2023-10-05 12:03:14 +00:00
Value::Float(float)
2023-08-22 15:40:50 +00:00
}
}
impl From<i64> for Value {
fn from(int: i64) -> Self {
2023-10-05 12:03:14 +00:00
Value::Integer(int)
2023-08-22 15:40:50 +00:00
}
}
impl From<bool> for Value {
fn from(boolean: bool) -> Self {
2023-10-05 12:03:14 +00:00
Value::Boolean(boolean)
2023-08-22 15:40:50 +00:00
}
}
impl From<Vec<Value>> for Value {
2023-10-24 00:45:47 +00:00
fn from(vec: Vec<Value>) -> Self {
2023-10-26 22:03:59 +00:00
Value::List(List::with_items(vec))
2023-08-22 15:40:50 +00:00
}
}
impl From<Value> for Result<Value> {
fn from(value: Value) -> Self {
Ok(value)
}
}
impl From<()> for Value {
fn from(_: ()) -> Self {
2023-10-05 12:03:14 +00:00
Value::Empty
2023-08-22 15:40:50 +00:00
}
}
impl TryFrom<Value> for String {
type Error = Error;
fn try_from(value: Value) -> std::result::Result<Self, Self::Error> {
2023-10-05 12:03:14 +00:00
if let Value::String(value) = value {
2023-08-22 15:40:50 +00:00
Ok(value)
} else {
Err(Error::ExpectedString { actual: value })
}
}
}
impl TryFrom<Value> for f64 {
type Error = Error;
fn try_from(value: Value) -> std::result::Result<Self, Self::Error> {
2023-10-05 12:03:14 +00:00
if let Value::Float(value) = value {
2023-08-22 15:40:50 +00:00
Ok(value)
} else {
Err(Error::ExpectedFloat { actual: value })
}
}
}
impl TryFrom<Value> for i64 {
type Error = Error;
fn try_from(value: Value) -> std::result::Result<Self, Self::Error> {
2023-10-05 12:03:14 +00:00
if let Value::Integer(value) = value {
2023-08-22 15:40:50 +00:00
Ok(value)
} else {
Err(Error::ExpectedInt { actual: value })
}
}
}
impl TryFrom<Value> for bool {
type Error = Error;
fn try_from(value: Value) -> std::result::Result<Self, Self::Error> {
2023-10-05 12:03:14 +00:00
if let Value::Boolean(value) = value {
2023-08-22 15:40:50 +00:00
Ok(value)
} else {
Err(Error::ExpectedBoolean { actual: value })
}
}
}
struct ValueVisitor {
marker: PhantomData<fn() -> Value>,
}
impl ValueVisitor {
fn new() -> Self {
ValueVisitor {
marker: PhantomData,
}
}
}
impl<'de> Visitor<'de> for ValueVisitor {
type Value = Value;
fn expecting(&self, formatter: &mut Formatter) -> fmt::Result {
formatter.write_str("Any valid whale data.")
}
fn visit_bool<E>(self, v: bool) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
2023-10-05 12:03:14 +00:00
Ok(Value::Boolean(v))
2023-08-22 15:40:50 +00:00
}
fn visit_i8<E>(self, v: i8) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(v as i64)
}
fn visit_i16<E>(self, v: i16) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(v as i64)
}
fn visit_i32<E>(self, v: i32) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(v as i64)
}
fn visit_i64<E>(self, v: i64) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
2023-10-05 12:03:14 +00:00
Ok(Value::Integer(v))
2023-08-22 15:40:50 +00:00
}
fn visit_i128<E>(self, v: i128) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
if v > i64::MAX as i128 {
2023-10-05 12:03:14 +00:00
Ok(Value::Integer(i64::MAX))
2023-08-22 15:40:50 +00:00
} else {
2023-10-05 12:03:14 +00:00
Ok(Value::Integer(v as i64))
2023-08-22 15:40:50 +00:00
}
}
fn visit_u8<E>(self, v: u8) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_u64(v as u64)
}
fn visit_u16<E>(self, v: u16) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_u64(v as u64)
}
fn visit_u32<E>(self, v: u32) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_u64(v as u64)
}
fn visit_u64<E>(self, v: u64) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i64(v as i64)
}
fn visit_u128<E>(self, v: u128) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_i128(v as i128)
}
fn visit_f32<E>(self, v: f32) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_f64(v as f64)
}
fn visit_f64<E>(self, v: f64) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
2023-10-05 12:03:14 +00:00
Ok(Value::Float(v))
2023-08-22 15:40:50 +00:00
}
fn visit_char<E>(self, v: char) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_str(&v.to_string())
}
fn visit_str<E>(self, v: &str) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
2023-10-05 12:03:14 +00:00
Ok(Value::String(v.to_string()))
2023-08-22 15:40:50 +00:00
}
fn visit_borrowed_str<E>(self, v: &'de str) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_str(v)
}
fn visit_string<E>(self, v: String) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
2023-10-05 12:03:14 +00:00
Ok(Value::String(v))
2023-08-22 15:40:50 +00:00
}
fn visit_bytes<E>(self, v: &[u8]) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
let _ = v;
Err(serde::de::Error::invalid_type(
serde::de::Unexpected::Bytes(v),
&self,
))
}
fn visit_borrowed_bytes<E>(self, v: &'de [u8]) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_bytes(v)
}
fn visit_byte_buf<E>(self, v: Vec<u8>) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
self.visit_bytes(&v)
}
fn visit_none<E>(self) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
2023-10-23 21:36:11 +00:00
Ok(Value::Empty)
2023-08-22 15:40:50 +00:00
}
fn visit_some<D>(self, deserializer: D) -> std::result::Result<Self::Value, D::Error>
where
D: serde::Deserializer<'de>,
{
let _ = deserializer;
Err(serde::de::Error::invalid_type(
serde::de::Unexpected::Option,
&self,
))
}
fn visit_unit<E>(self) -> std::result::Result<Self::Value, E>
where
E: serde::de::Error,
{
2023-10-23 21:36:11 +00:00
Ok(Value::Empty)
2023-08-22 15:40:50 +00:00
}
fn visit_newtype_struct<D>(self, deserializer: D) -> std::result::Result<Self::Value, D::Error>
where
D: serde::Deserializer<'de>,
{
let _ = deserializer;
Err(serde::de::Error::invalid_type(
serde::de::Unexpected::NewtypeStruct,
&self,
))
}
fn visit_seq<A>(self, mut access: A) -> std::result::Result<Self::Value, A::Error>
where
A: SeqAccess<'de>,
{
let mut list = Vec::new();
while let Some(value) = access.next_element()? {
list.push(value);
}
2023-10-26 22:03:59 +00:00
Ok(Value::List(List::with_items(list)))
2023-08-22 15:40:50 +00:00
}
fn visit_map<M>(self, mut access: M) -> std::result::Result<Value, M::Error>
where
M: MapAccess<'de>,
{
2023-10-29 23:31:06 +00:00
let map = Map::new();
2023-08-22 15:40:50 +00:00
2023-11-05 18:54:29 +00:00
{
let mut variables = map.variables_mut().unwrap();
while let Some((key, value)) = access.next_entry()? {
variables.insert(key, value);
}
2023-08-22 15:40:50 +00:00
}
Ok(Value::Map(map))
}
fn visit_enum<A>(self, data: A) -> std::result::Result<Self::Value, A::Error>
where
A: serde::de::EnumAccess<'de>,
{
let _ = data;
Err(serde::de::Error::invalid_type(
serde::de::Unexpected::Enum,
&self,
))
}
fn __private_visit_untagged_option<D>(self, _: D) -> std::result::Result<Self::Value, ()>
where
D: serde::Deserializer<'de>,
{
Err(())
}
}
impl<'de> Deserialize<'de> for Value {
fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
deserializer.deserialize_any(ValueVisitor::new())
}
}