-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement
MapSkipError
, analogous to VecSkipError
, but for map-li…
…ke data structures. (#763)
- Loading branch information
Showing
12 changed files
with
752 additions
and
107 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,144 @@ | ||
use super::impls::macros::foreach_map; | ||
use crate::prelude::*; | ||
|
||
#[cfg(feature = "hashbrown_0_14")] | ||
use hashbrown_0_14::HashMap as HashbrownMap014; | ||
#[cfg(feature = "indexmap_1")] | ||
use indexmap_1::IndexMap; | ||
#[cfg(feature = "indexmap_2")] | ||
use indexmap_2::IndexMap as IndexMap2; | ||
|
||
enum GoodOrError<T, TAs> { | ||
Good(T), | ||
// Only here to consume the TAs generic | ||
Error(PhantomData<TAs>), | ||
} | ||
|
||
impl<'de, T, TAs> Deserialize<'de> for GoodOrError<T, TAs> | ||
where | ||
TAs: DeserializeAs<'de, T>, | ||
{ | ||
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> | ||
where | ||
D: Deserializer<'de>, | ||
{ | ||
let is_hr = deserializer.is_human_readable(); | ||
let content: content::de::Content<'de> = Deserialize::deserialize(deserializer)?; | ||
|
||
Ok( | ||
match <DeserializeAsWrap<T, TAs>>::deserialize(content::de::ContentDeserializer::< | ||
D::Error, | ||
>::new(content, is_hr)) | ||
{ | ||
Ok(elem) => GoodOrError::Good(elem.into_inner()), | ||
Err(_) => GoodOrError::Error(PhantomData), | ||
}, | ||
) | ||
} | ||
} | ||
|
||
impl<'de, T, U> DeserializeAs<'de, Vec<T>> for VecSkipError<U> | ||
where | ||
U: DeserializeAs<'de, T>, | ||
{ | ||
fn deserialize_as<D>(deserializer: D) -> Result<Vec<T>, D::Error> | ||
where | ||
D: Deserializer<'de>, | ||
{ | ||
struct SeqVisitor<T, U> { | ||
marker: PhantomData<T>, | ||
marker2: PhantomData<U>, | ||
} | ||
|
||
impl<'de, T, TAs> Visitor<'de> for SeqVisitor<T, TAs> | ||
where | ||
TAs: DeserializeAs<'de, T>, | ||
{ | ||
type Value = Vec<T>; | ||
|
||
fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
formatter.write_str("a sequence") | ||
} | ||
|
||
fn visit_seq<A>(self, seq: A) -> Result<Self::Value, A::Error> | ||
where | ||
A: SeqAccess<'de>, | ||
{ | ||
utils::SeqIter::new(seq) | ||
.filter_map(|res: Result<GoodOrError<T, TAs>, A::Error>| match res { | ||
Ok(GoodOrError::Good(value)) => Some(Ok(value)), | ||
Ok(GoodOrError::Error(_)) => None, | ||
Err(err) => Some(Err(err)), | ||
}) | ||
.collect() | ||
} | ||
} | ||
|
||
let visitor = SeqVisitor::<T, U> { | ||
marker: PhantomData, | ||
marker2: PhantomData, | ||
}; | ||
deserializer.deserialize_seq(visitor) | ||
} | ||
} | ||
|
||
struct MapSkipErrorVisitor<MAP, K, KAs, V, VAs>(PhantomData<(MAP, K, KAs, V, VAs)>); | ||
|
||
impl<'de, MAP, K, KAs, V, VAs> Visitor<'de> for MapSkipErrorVisitor<MAP, K, KAs, V, VAs> | ||
where | ||
MAP: FromIterator<(K, V)>, | ||
KAs: DeserializeAs<'de, K>, | ||
VAs: DeserializeAs<'de, V>, | ||
{ | ||
type Value = MAP; | ||
|
||
fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
formatter.write_str("a map") | ||
} | ||
|
||
#[inline] | ||
fn visit_map<A>(self, access: A) -> Result<Self::Value, A::Error> | ||
where | ||
A: MapAccess<'de>, | ||
{ | ||
type KVPair<K, KAs, V, VAs> = (GoodOrError<K, KAs>, GoodOrError<V, VAs>); | ||
utils::MapIter::new(access) | ||
.filter_map(|res: Result<KVPair<K, KAs, V, VAs>, A::Error>| match res { | ||
Ok((GoodOrError::Good(key), GoodOrError::Good(value))) => Some(Ok((key, value))), | ||
Ok(_) => None, | ||
Err(err) => Some(Err(err)), | ||
}) | ||
.collect() | ||
} | ||
} | ||
|
||
#[cfg(feature = "alloc")] | ||
macro_rules! map_impl { | ||
( | ||
$ty:ident < K $(: $kbound1:ident $(+ $kbound2:ident)*)?, V $(, $typaram:ident : $bound1:ident $(+ $bound2:ident)*)* >, | ||
$with_capacity:expr | ||
) => { | ||
impl<'de, K, V, KAs, VAs $(, $typaram)*> DeserializeAs<'de, $ty<K, V $(, $typaram)*>> | ||
for MapSkipError<KAs, VAs> | ||
where | ||
KAs: DeserializeAs<'de, K>, | ||
VAs: DeserializeAs<'de, V>, | ||
$(K: $kbound1 $(+ $kbound2)*,)? | ||
$($typaram: $bound1 $(+ $bound2)*),* | ||
{ | ||
fn deserialize_as<D>(deserializer: D) -> Result<$ty<K, V $(, $typaram)*>, D::Error> | ||
where | ||
D: Deserializer<'de>, | ||
{ | ||
deserializer.deserialize_map(MapSkipErrorVisitor::< | ||
$ty<K, V $(, $typaram)*>, | ||
K, | ||
KAs, | ||
V, | ||
VAs, | ||
>(PhantomData)) | ||
} | ||
} | ||
}; | ||
} | ||
foreach_map!(map_impl); |
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
Oops, something went wrong.