-
Notifications
You must be signed in to change notification settings - Fork 565
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #848 from serde-rs/num
Deserialize small numbers as integers in arbitrary_precision
- Loading branch information
Showing
4 changed files
with
84 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
use serde::{Deserialize, Deserializer}; | ||
use std::convert::TryFrom; | ||
use std::fmt::{self, Display}; | ||
use std::marker::PhantomData; | ||
use std::str::FromStr; | ||
|
||
pub struct NumberVisitor<T> { | ||
marker: PhantomData<T>, | ||
} | ||
|
||
impl<'de, T> serde::de::Visitor<'de> for NumberVisitor<T> | ||
where | ||
T: TryFrom<u64> + TryFrom<i64> + FromStr, | ||
<T as TryFrom<u64>>::Error: Display, | ||
<T as TryFrom<i64>>::Error: Display, | ||
<T as FromStr>::Err: Display, | ||
{ | ||
type Value = T; | ||
|
||
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result { | ||
formatter.write_str("an integer or string") | ||
} | ||
|
||
fn visit_u64<E>(self, v: u64) -> Result<Self::Value, E> | ||
where | ||
E: serde::de::Error, | ||
{ | ||
T::try_from(v).map_err(serde::de::Error::custom) | ||
} | ||
|
||
fn visit_i64<E>(self, v: i64) -> Result<Self::Value, E> | ||
where | ||
E: serde::de::Error, | ||
{ | ||
T::try_from(v).map_err(serde::de::Error::custom) | ||
} | ||
|
||
fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> | ||
where | ||
E: serde::de::Error, | ||
{ | ||
v.parse().map_err(serde::de::Error::custom) | ||
} | ||
} | ||
|
||
fn deserialize_integer_or_string<'de, D, T>(deserializer: D) -> Result<T, D::Error> | ||
where | ||
D: Deserializer<'de>, | ||
T: TryFrom<u64> + TryFrom<i64> + FromStr, | ||
<T as TryFrom<u64>>::Error: Display, | ||
<T as TryFrom<i64>>::Error: Display, | ||
<T as FromStr>::Err: Display, | ||
{ | ||
deserializer.deserialize_any(NumberVisitor { | ||
marker: PhantomData, | ||
}) | ||
} | ||
|
||
#[derive(Deserialize, Debug)] | ||
pub struct Struct { | ||
#[serde(deserialize_with = "deserialize_integer_or_string")] | ||
pub i: i64, | ||
} | ||
|
||
#[test] | ||
fn test() { | ||
let j = r#" {"i":100} "#; | ||
println!("{:?}", serde_json::from_str::<Struct>(j).unwrap()); | ||
|
||
let j = r#" {"i":"100"} "#; | ||
println!("{:?}", serde_json::from_str::<Struct>(j).unwrap()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters