forked from toml-rs/toml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(spanned): Expose SpannedDeserializer
Fixes toml-rs#634
- Loading branch information
Showing
8 changed files
with
105 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
//! Deserialzation support for [`Spanned`] | ||
|
||
use serde::de::value::BorrowedStrDeserializer; | ||
use serde::de::IntoDeserializer as _; | ||
|
||
use crate::Spanned; | ||
|
||
/// Deserializer / format support for emitting [`Spanned`] | ||
pub struct SpannedDeserializer<'de, T, E> | ||
where | ||
T: serde::de::IntoDeserializer<'de, E>, | ||
E: serde::de::Error, | ||
{ | ||
start: Option<usize>, | ||
end: Option<usize>, | ||
value: Option<T>, | ||
_lifetime: std::marker::PhantomData<&'de ()>, | ||
_error: std::marker::PhantomData<E>, | ||
} | ||
|
||
impl<'de, T, E> SpannedDeserializer<'de, T, E> | ||
where | ||
T: serde::de::IntoDeserializer<'de, E>, | ||
E: serde::de::Error, | ||
{ | ||
/// Create a deserializer to emit [`Spanned`] | ||
pub fn new(value: T, span: std::ops::Range<usize>) -> Self { | ||
Self { | ||
start: Some(span.start), | ||
end: Some(span.end), | ||
value: Some(value), | ||
_lifetime: Default::default(), | ||
_error: Default::default(), | ||
} | ||
} | ||
|
||
/// Check if deserializing a [`Spanned`] | ||
pub fn is_spanned(name: &'static str, fields: &'static [&'static str]) -> bool { | ||
Spanned::is_spanned(name, fields) | ||
} | ||
} | ||
|
||
impl<'de, T, E> serde::de::MapAccess<'de> for SpannedDeserializer<'de, T, E> | ||
where | ||
T: serde::de::IntoDeserializer<'de, E>, | ||
E: serde::de::Error, | ||
{ | ||
type Error = E; | ||
fn next_key_seed<K>(&mut self, seed: K) -> Result<Option<K::Value>, Self::Error> | ||
where | ||
K: serde::de::DeserializeSeed<'de>, | ||
{ | ||
if self.start.is_some() { | ||
seed.deserialize(BorrowedStrDeserializer::new(Spanned::START_FIELD)) | ||
.map(Some) | ||
} else if self.end.is_some() { | ||
seed.deserialize(BorrowedStrDeserializer::new(Spanned::END_FIELD)) | ||
.map(Some) | ||
} else if self.value.is_some() { | ||
seed.deserialize(BorrowedStrDeserializer::new(Spanned::VALUE_FIELD)) | ||
.map(Some) | ||
} else { | ||
Ok(None) | ||
} | ||
} | ||
|
||
fn next_value_seed<V>(&mut self, seed: V) -> Result<V::Value, Self::Error> | ||
where | ||
V: serde::de::DeserializeSeed<'de>, | ||
{ | ||
if let Some(start) = self.start.take() { | ||
seed.deserialize(start.into_deserializer()) | ||
} else if let Some(end) = self.end.take() { | ||
seed.deserialize(end.into_deserializer()) | ||
} else if let Some(value) = self.value.take() { | ||
seed.deserialize(value.into_deserializer()) | ||
} else { | ||
panic!("next_value_seed called before next_key_seed") | ||
} | ||
} | ||
} |
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
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 was deleted.
Oops, something went wrong.
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