1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
mod de;
mod value;
use crate::numberparse::Number;
use crate::{stry, Deserializer, Error, ErrorType, Result};
use serde_ext::Deserialize;
use std::fmt;
pub use self::value::*;
#[cfg_attr(not(feature = "no-inline"), inline(always))]
pub fn from_slice<'a, T>(s: &'a mut [u8]) -> Result<T>
where
T: Deserialize<'a>,
{
let mut deserializer = stry!(Deserializer::from_slice(s));
T::deserialize(&mut deserializer)
}
#[cfg_attr(not(feature = "no-inline"), inline(always))]
pub fn from_str<'a, T>(s: &'a mut str) -> Result<T>
where
T: Deserialize<'a>,
{
let mut deserializer = stry!(Deserializer::from_slice(unsafe { s.as_bytes_mut() }));
T::deserialize(&mut deserializer)
}
impl std::error::Error for Error {}
impl serde::de::Error for Error {
fn custom<T: fmt::Display>(msg: T) -> Self {
Error::generic(ErrorType::Serde(msg.to_string()))
}
}
impl serde_ext::ser::Error for Error {
fn custom<T: fmt::Display>(msg: T) -> Self {
Error::generic(ErrorType::Serde(msg.to_string()))
}
}
impl<'de> Deserializer<'de> {
#[cfg_attr(not(feature = "no-inline"), inline(always))]
fn next(&mut self) -> Result<u8> {
unsafe {
self.idx += 1;
if let Some(idx) = self.structural_indexes.get(self.idx) {
self.iidx = *idx as usize;
let r = *self.input.get_unchecked(self.iidx);
Ok(r)
} else {
Err(self.error(ErrorType::Syntax))
}
}
}
#[cfg_attr(not(feature = "no-inline"), inline(always))]
fn peek(&self) -> Result<u8> {
if let Some(idx) = self.structural_indexes.get(self.idx + 1) {
unsafe { Ok(*self.input.get_unchecked(*idx as usize)) }
} else {
Err(self.error(ErrorType::UnexpectedEnd))
}
}
#[cfg_attr(not(feature = "no-inline"), inline(always))]
fn parse_signed(&mut self) -> Result<i64> {
match self.next_() {
b'-' => match stry!(self.parse_number(true)) {
Number::I64(n) => Ok(n),
_ => Err(self.error(ErrorType::ExpectedSigned)),
},
b'0'..=b'9' => match stry!(self.parse_number(false)) {
Number::I64(n) => Ok(n),
_ => Err(self.error(ErrorType::ExpectedSigned)),
},
_ => Err(self.error(ErrorType::ExpectedSigned)),
}
}
#[cfg_attr(not(feature = "no-inline"), inline(always))]
fn parse_unsigned(&mut self) -> Result<u64> {
match self.next_() {
b'0'..=b'9' => match stry!(self.parse_number(false)) {
Number::I64(n) => Ok(n as u64),
_ => Err(self.error(ErrorType::ExpectedUnsigned)),
},
_ => Err(self.error(ErrorType::ExpectedUnsigned)),
}
}
#[cfg_attr(not(feature = "no-inline"), inline(always))]
fn parse_double(&mut self) -> Result<f64> {
match self.next_() {
b'-' => match stry!(self.parse_number(true)) {
Number::F64(n) => Ok(n),
Number::I64(n) => Ok(n as f64),
},
b'0'..=b'9' => match stry!(self.parse_number(false)) {
Number::F64(n) => Ok(n),
Number::I64(n) => Ok(n as f64),
},
_ => Err(self.error(ErrorType::ExpectedFloat)),
}
}
}