use core::marker::PhantomData;
use crate::Context;
use crate::de::EntryDecoder;
use crate::json::parser::{Parser, Token};
use super::{JsonDecoder, JsonKeyDecoder};
pub(crate) struct JsonObjectPairDecoder<P, C, M> {
cx: C,
parser: P,
_marker: PhantomData<M>,
}
impl<P, C, M> JsonObjectPairDecoder<P, C, M> {
#[inline]
pub(super) fn new(cx: C, parser: P) -> Self {
Self {
cx,
parser,
_marker: PhantomData,
}
}
}
impl<'de, P, C, M> EntryDecoder<'de> for JsonObjectPairDecoder<P, C, M>
where
P: Parser<'de>,
C: Context,
M: 'static,
{
type Cx = C;
type Error = C::Error;
type Allocator = C::Allocator;
type Mode = M;
type DecodeKey<'this>
= JsonKeyDecoder<P::Mut<'this>, C, M>
where
Self: 'this;
type DecodeValue = JsonDecoder<P, C, M>;
#[inline]
fn cx(&self) -> Self::Cx {
self.cx
}
#[inline]
fn decode_key(&mut self) -> Result<Self::DecodeKey<'_>, C::Error> {
Ok(JsonKeyDecoder::new(self.cx, self.parser.borrow_mut()))
}
#[inline]
fn decode_value(mut self) -> Result<Self::DecodeValue, C::Error> {
let actual = self.parser.lex(self.cx);
if !matches!(actual, Token::Colon) {
return Err(self
.cx
.message(format_args!("Expected colon `:`, was {actual}")));
}
self.parser.skip(self.cx, 1)?;
Ok(JsonDecoder::new(self.cx, self.parser))
}
}