2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2018-06-04 10:19:50 +02:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2018-06-04 10:19:50 +02:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2018-06-04 10:19:50 +02:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-03-24 01:25:59 +01:00
|
|
|
|
|
|
|
//! Deserializer of empty string values into optionals.
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
use serde::{
|
|
|
|
de::{Error, IntoDeserializer, Visitor},
|
|
|
|
Deserialize, Deserializer,
|
|
|
|
};
|
|
|
|
use std::{fmt, marker::PhantomData};
|
2016-03-24 01:25:59 +01:00
|
|
|
|
|
|
|
/// Deserializer of empty string values into optionals.
|
2017-04-12 13:33:49 +02:00
|
|
|
#[derive(Debug, PartialEq, Clone)]
|
2016-03-24 01:25:59 +01:00
|
|
|
pub enum MaybeEmpty<T> {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Some.
|
|
|
|
Some(T),
|
|
|
|
/// None.
|
|
|
|
None,
|
2016-03-24 01:25:59 +01:00
|
|
|
}
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
impl<'a, T> Deserialize<'a> for MaybeEmpty<T>
|
|
|
|
where
|
|
|
|
T: Deserialize<'a>,
|
|
|
|
{
|
|
|
|
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
|
|
|
where
|
|
|
|
D: Deserializer<'a>,
|
|
|
|
{
|
|
|
|
deserializer.deserialize_any(MaybeEmptyVisitor::new())
|
|
|
|
}
|
2016-03-24 01:25:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct MaybeEmptyVisitor<T> {
|
2020-08-05 06:08:03 +02:00
|
|
|
_phantom: PhantomData<T>,
|
2016-03-24 01:25:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> MaybeEmptyVisitor<T> {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn new() -> Self {
|
|
|
|
MaybeEmptyVisitor {
|
|
|
|
_phantom: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
2016-03-24 01:25:59 +01:00
|
|
|
}
|
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
impl<'a, T> Visitor<'a> for MaybeEmptyVisitor<T>
|
|
|
|
where
|
|
|
|
T: Deserialize<'a>,
|
|
|
|
{
|
|
|
|
type Value = MaybeEmpty<T>;
|
|
|
|
|
|
|
|
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(formatter, "an empty string or string-encoded type")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_str<E>(self, value: &str) -> Result<Self::Value, E>
|
|
|
|
where
|
|
|
|
E: Error,
|
|
|
|
{
|
|
|
|
self.visit_string(value.to_owned())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_string<E>(self, value: String) -> Result<Self::Value, E>
|
|
|
|
where
|
|
|
|
E: Error,
|
|
|
|
{
|
|
|
|
match value.is_empty() {
|
|
|
|
true => Ok(MaybeEmpty::None),
|
|
|
|
false => T::deserialize(value.into_deserializer()).map(MaybeEmpty::Some),
|
|
|
|
}
|
|
|
|
}
|
2016-03-24 01:25:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Into<Option<T>> for MaybeEmpty<T> {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn into(self) -> Option<T> {
|
|
|
|
match self {
|
|
|
|
MaybeEmpty::Some(s) => Some(s),
|
|
|
|
MaybeEmpty::None => None,
|
|
|
|
}
|
|
|
|
}
|
2016-03-24 01:25:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2021-03-12 14:55:49 +01:00
|
|
|
use crate::{hash::H256, maybe::MaybeEmpty};
|
2020-08-05 06:08:03 +02:00
|
|
|
use ethereum_types;
|
|
|
|
use serde_json;
|
|
|
|
use std::str::FromStr;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn maybe_deserialization() {
|
|
|
|
let s = r#"["", "5a39ed1020c04d4d84539975b893a4e7c53eab6c2965db8bc3468093a31bc5ae"]"#;
|
|
|
|
let deserialized: Vec<MaybeEmpty<H256>> = serde_json::from_str(s).unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
deserialized,
|
|
|
|
vec![
|
|
|
|
MaybeEmpty::None,
|
|
|
|
MaybeEmpty::Some(H256(
|
|
|
|
ethereum_types::H256::from_str(
|
|
|
|
"5a39ed1020c04d4d84539975b893a4e7c53eab6c2965db8bc3468093a31bc5ae"
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
))
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
2016-03-24 01:25:59 +01:00
|
|
|
}
|