Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

serde: support tuple #50

Merged
merged 1 commit into from
Jun 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
185 changes: 148 additions & 37 deletions valuable-serde/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
use core::{fmt, mem};

use serde::ser::{
Error, SerializeMap, SerializeSeq, SerializeStruct, SerializeStructVariant,
Error, SerializeMap, SerializeSeq, SerializeStruct, SerializeStructVariant, SerializeTuple,
SerializeTupleStruct, SerializeTupleVariant,
};
use serde::{Serialize, Serializer};
use valuable::{
EnumDef, Fields, NamedValues, StructDef, Valuable, Value, Variant, VariantDef, Visit,
EnumDef, Fields, NamedValues, StructDef, TupleDef, Valuable, Value, Variant, VariantDef, Visit,
};

/// A wrapper around [`Valuable`] types that implements [`Serialize`].
Expand Down Expand Up @@ -172,7 +172,7 @@ where
ser.end()
}
}
_ => unreachable!(),
def => unreachable!("{:?}", def),
},
Value::Enumerable(e) => match (e.definition(), e.variant()) {
(
Expand Down Expand Up @@ -219,13 +219,35 @@ where
(EnumDef::Static { .. }, Variant::Dynamic(..)) => {
Err(S::Error::custom("dynamic variant in static enum"))
}
_ => unreachable!(),
def => unreachable!("{:?}", def),
},
Value::Tuplable(t) => {
if t.definition().is_unit() {
serializer.serialize_unit()
} else {
unimplemented!()
let def = t.definition();
if def.is_unit() {
return serializer.serialize_unit();
}
match def {
TupleDef::Static { fields: len, .. } => {
let ser = serializer.serialize_tuple(len)?;
let mut visitor = VisitStaticTuple::<S>::Start(ser);
t.visit(&mut visitor);
match visitor {
VisitStaticTuple::End(res) => res,
_ => unreachable!(),
}
}
TupleDef::Dynamic {
fields: size_hint, ..
} => {
let mut ser = serializer.serialize_seq(size_hint.1)?;
let mut visitor = VisitDynamic::<S>::UnnamedFields(&mut ser);
t.visit(&mut visitor);
if let VisitDynamic::Error(e) = visitor {
return Err(e);
}
ser.end()
}
def => unreachable!("{:?}", def),
}
}
#[cfg(feature = "std")]
Expand Down Expand Up @@ -253,15 +275,21 @@ impl<S: Serializer> Visit for VisitList<'_, S> {
}

fn visit_entry(&mut self, _: Value<'_>, _: Value<'_>) {
*self = Self::Error(S::Error::custom("visit_entry in list"));
if !matches!(self, Self::Error(..)) {
*self = Self::Error(S::Error::custom("visit_entry in list"));
}
}

fn visit_named_fields(&mut self, _: &NamedValues<'_>) {
*self = Self::Error(S::Error::custom("visit_named_fields in list"));
if !matches!(self, Self::Error(..)) {
*self = Self::Error(S::Error::custom("visit_named_fields in list"));
}
}

fn visit_unnamed_fields(&mut self, _: &[Value<'_>]) {
*self = Self::Error(S::Error::custom("visit_unnamed_fields in list"));
if !matches!(self, Self::Error(..)) {
*self = Self::Error(S::Error::custom("visit_unnamed_fields in list"));
}
}
}

Expand All @@ -280,15 +308,21 @@ impl<S: Serializer> Visit for VisitMap<'_, S> {
}

fn visit_value(&mut self, _: Value<'_>) {
*self = Self::Error(S::Error::custom("visit_value in map"));
if !matches!(self, Self::Error(..)) {
*self = Self::Error(S::Error::custom("visit_value in map"));
}
}

fn visit_named_fields(&mut self, _: &NamedValues<'_>) {
*self = Self::Error(S::Error::custom("visit_named_fields in map"));
if !matches!(self, Self::Error(..)) {
*self = Self::Error(S::Error::custom("visit_named_fields in map"));
}
}

fn visit_unnamed_fields(&mut self, _: &[Value<'_>]) {
*self = Self::Error(S::Error::custom("visit_unnamed_fields in map"));
if !matches!(self, Self::Error(..)) {
*self = Self::Error(S::Error::custom("visit_unnamed_fields in map"));
}
}
}

Expand All @@ -310,10 +344,13 @@ impl<S: Serializer> Visit for VisitStaticStruct<S> {
fields: Fields::Named(fields),
serializer,
} => (name, fields, serializer),
Self::End(..) => {
*self = Self::End(Err(S::Error::custom(
"visit_named_fields called multiple times in static struct",
)));
mut res @ Self::End(..) => {
if matches!(res, Self::End(Ok(..))) {
res = Self::End(Err(S::Error::custom(
"visit_named_fields called multiple times in static struct",
)));
}
*self = res;
return;
}
_ => unreachable!(),
Expand Down Expand Up @@ -341,10 +378,13 @@ impl<S: Serializer> Visit for VisitStaticStruct<S> {
fields: Fields::Unnamed,
serializer,
} => (name, serializer),
Self::End(..) => {
*self = Self::End(Err(S::Error::custom(
"visit_unnamed_fields called multiple times in static struct",
)));
mut res @ Self::End(..) => {
if matches!(res, Self::End(Ok(..))) {
res = Self::End(Err(S::Error::custom(
"visit_unnamed_fields called multiple times in static struct",
)));
}
*self = res;
return;
}
_ => unreachable!(),
Expand All @@ -370,11 +410,15 @@ impl<S: Serializer> Visit for VisitStaticStruct<S> {
}

fn visit_entry(&mut self, _: Value<'_>, _: Value<'_>) {
*self = Self::End(Err(S::Error::custom("visit_entry in struct")));
if !matches!(self, Self::End(Err(..))) {
*self = Self::End(Err(S::Error::custom("visit_entry in struct")));
}
}

fn visit_value(&mut self, _: Value<'_>) {
*self = Self::End(Err(S::Error::custom("visit_value in struct")));
if !matches!(self, Self::End(Err(..))) {
*self = Self::End(Err(S::Error::custom("visit_value in struct")));
}
}
}

Expand All @@ -398,10 +442,13 @@ impl<S: Serializer> Visit for VisitStaticEnum<S> {
variant,
serializer,
} => (name, def, variant, serializer),
Self::End(..) => {
*self = Self::End(Err(S::Error::custom(
"visit_named_fields called multiple times in static enum",
)));
mut res @ Self::End(..) => {
if matches!(res, Self::End(Ok(..))) {
res = Self::End(Err(S::Error::custom(
"visit_named_fields called multiple times in static enum",
)));
}
*self = res;
return;
}
_ => unreachable!(),
Expand Down Expand Up @@ -442,10 +489,13 @@ impl<S: Serializer> Visit for VisitStaticEnum<S> {
variant,
serializer,
} => (name, def, variant, serializer),
Self::End(..) => {
*self = Self::End(Err(S::Error::custom(
"visit_unnamed_fields called multiple times in static enum",
)));
mut res @ Self::End(..) => {
if matches!(res, Self::End(Ok(..))) {
res = Self::End(Err(S::Error::custom(
"visit_unnamed_fields called multiple times in static enum",
)));
}
*self = res;
return;
}
_ => unreachable!(),
Expand Down Expand Up @@ -484,17 +534,74 @@ impl<S: Serializer> Visit for VisitStaticEnum<S> {
}

fn visit_entry(&mut self, _: Value<'_>, _: Value<'_>) {
*self = Self::End(Err(S::Error::custom("visit_entry in enum")));
if !matches!(self, Self::End(Err(..))) {
*self = Self::End(Err(S::Error::custom("visit_entry in enum")));
}
}

fn visit_value(&mut self, _: Value<'_>) {
*self = Self::End(Err(S::Error::custom("visit_value in enum")));
if !matches!(self, Self::End(Err(..))) {
*self = Self::End(Err(S::Error::custom("visit_value in enum")));
}
}
}

// Dynamic struct and variant of dynamic enum will be serialized as map or seq.
enum VisitStaticTuple<S: Serializer> {
Start(S::SerializeTuple),
End(Result<S::Ok, S::Error>),
Tmp,
}

impl<S: Serializer> Visit for VisitStaticTuple<S> {
fn visit_unnamed_fields(&mut self, values: &[Value<'_>]) {
let mut ser = match mem::replace(self, Self::Tmp) {
Self::Start(ser) => ser,
mut res @ Self::End(..) => {
if matches!(res, Self::End(Ok(..))) {
res = Self::End(Err(S::Error::custom(
"visit_unnamed_fields called multiple times in static tuple",
)));
}
*self = res;
return;
}
_ => unreachable!(),
};
for v in values {
if let Err(e) = ser.serialize_element(&Serializable(v)) {
*self = Self::End(Err(e));
return;
}
}
*self = Self::End(ser.end());
}

fn visit_named_fields(&mut self, _: &NamedValues<'_>) {
if !matches!(self, Self::End(Err(..))) {
*self = Self::End(Err(S::Error::custom("visit_named_fields in tuple")));
}
}

fn visit_entry(&mut self, _: Value<'_>, _: Value<'_>) {
if !matches!(self, Self::End(Err(..))) {
*self = Self::End(Err(S::Error::custom("visit_entry in tuple")));
}
}

fn visit_value(&mut self, _: Value<'_>) {
if !matches!(self, Self::End(Err(..))) {
*self = Self::End(Err(S::Error::custom("visit_value in tuple")));
}
}
}

// Dynamic struct, variant of dynamic enum, and dynamic tuple will be serialized as map or sequence.
enum VisitDynamic<'a, S: Serializer> {
// `Structable` or `Enumerable` with named fields.
// Serialized as map.
NamedFields(&'a mut S::SerializeMap),
// `Structable` or `Enumerable` with unnamed fields, or `Tuplable`.
// Serialized as sequence.
UnnamedFields(&'a mut S::SerializeSeq),
Error(S::Error),
}
Expand Down Expand Up @@ -539,10 +646,14 @@ impl<S: Serializer> Visit for VisitDynamic<'_, S> {
}

fn visit_entry(&mut self, _: Value<'_>, _: Value<'_>) {
*self = Self::Error(S::Error::custom("visit_entry in dynamic struct/variant"));
if !matches!(self, Self::Error(..)) {
*self = Self::Error(S::Error::custom("visit_entry in dynamic struct/variant"));
}
}

fn visit_value(&mut self, _: Value<'_>) {
*self = Self::Error(S::Error::custom("visit_value in dynamic struct/variant"));
if !matches!(self, Self::Error(..)) {
*self = Self::Error(S::Error::custom("visit_value in dynamic struct/variant"));
}
}
}
19 changes: 15 additions & 4 deletions valuable-serde/tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,22 @@ fn test_seq() {
);
}

// TODO:
// - valuable currently does not support tuple
// https://github.com/tokio-rs/valuable/issues/21
#[test]
fn test_tuple() {}
fn test_tuple() {
assert_ser_eq!(
(1,),
&[Token::Tuple { len: 1 }, Token::I32(1), Token::TupleEnd]
);
assert_ser_eq!(
("a", 'b'),
&[
Token::Tuple { len: 2 },
Token::Str("a"),
Token::Char('b'),
Token::TupleEnd
]
);
}

#[test]
fn test_tuple_struct() {
Expand Down