-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73ec0f7
commit 44455f0
Showing
4 changed files
with
147 additions
and
1 deletion.
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,68 @@ | ||
#[cfg(feature="serde-1")] | ||
pub(super) mod rand_size_serde { | ||
const RAND_SIZE_LEN: usize = 8; | ||
const RAND_SIZE: usize = 1 << RAND_SIZE_LEN; | ||
|
||
use serde::{Deserialize, Deserializer, Serialize, Serializer}; | ||
use serde::de::{Visitor,SeqAccess}; | ||
use serde::de; | ||
|
||
use std::fmt; | ||
|
||
pub fn serialize<T, S>(arr: &[T;RAND_SIZE], ser: S) -> Result<S::Ok, S::Error> | ||
where | ||
T: Serialize, | ||
S: Serializer | ||
{ | ||
use serde::ser::SerializeTuple; | ||
|
||
let mut seq = ser.serialize_tuple(RAND_SIZE)?; | ||
|
||
for e in arr.iter() { | ||
seq.serialize_element(&e)?; | ||
} | ||
|
||
seq.end() | ||
} | ||
|
||
#[inline] | ||
pub fn deserialize<'de, T, D>(de: D) -> Result<[T;RAND_SIZE], D::Error> | ||
where | ||
T: Deserialize<'de>+Default+Copy, | ||
D: Deserializer<'de>, | ||
{ | ||
use std::marker::PhantomData; | ||
struct ArrayVisitor<T> { | ||
_pd: PhantomData<T>, | ||
}; | ||
impl<'de,T> Visitor<'de> for ArrayVisitor<T> | ||
where | ||
T: Deserialize<'de>+Default+Copy | ||
{ | ||
type Value = [T; RAND_SIZE]; | ||
|
||
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result { | ||
formatter.write_str("Isaac state array") | ||
} | ||
|
||
#[inline] | ||
fn visit_seq<A>(self, mut seq: A) -> Result<[T; RAND_SIZE], A::Error> | ||
where | ||
A: SeqAccess<'de>, | ||
{ | ||
let mut out = [Default::default();RAND_SIZE]; | ||
|
||
for i in 0..RAND_SIZE { | ||
match seq.next_element()? { | ||
Some(val) => out[i] = val, | ||
None => return Err(de::Error::invalid_length(i, &self)), | ||
}; | ||
} | ||
|
||
Ok(out) | ||
} | ||
} | ||
|
||
de.deserialize_tuple(RAND_SIZE, ArrayVisitor{_pd: PhantomData}) | ||
} | ||
} |
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