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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#![allow(clippy::useless_conversion)]
use futures::{Stream, StreamExt};
#[cfg(all(not(feature = "std"), feature = "string-value"))]
use alloc::string::String;
use crate::{
stream::PushBackable,
types::{Literal, ParseResult},
utils::skip_whitespaces,
Error,
};
#[cfg(not(feature = "parse-expressions"))]
use crate::types::RealValue;
#[cfg(any(feature = "parse-parameters", feature = "parse-expressions"))]
pub use crate::types::expressions::{Expression, Operator};
pub(crate) async fn parse_number<S, E>(input: &mut S) -> Option<Result<(u32, u32), E>>
where
S: Stream<Item = Result<u8, E>> + Unpin + PushBackable<Item = u8>,
{
let mut n = 0;
let mut order = 1;
let res = loop {
let b = match input.next().await? {
Ok(b) => b,
Err(e) => return Some(Err(e)),
};
match b {
b'0'..=b'9' => {
let digit = u32::from(b - b'0');
n = n * 10 + digit;
order *= 10;
}
_ => {
input.push_back(b);
break Ok((n, order));
}
}
};
Some(res)
}
async fn parse_real_literal<S, E>(input: &mut S) -> Option<ParseResult<f64, E>>
where
S: Stream<Item = Result<u8, E>> + Unpin + PushBackable<Item = u8>,
{
let mut b = try_result!(input.next());
let mut negativ = false;
if b == b'-' || b == b'+' {
negativ = b == b'-';
try_result!(skip_whitespaces(input));
b = try_result!(input.next());
}
let int = if b != b'.' {
input.push_back(b);
let (v, _) = try_result!(parse_number(input));
try_result!(skip_whitespaces(input));
b = try_result!(input.next());
Some(v)
} else {
None
};
let dec = if b == b'.' {
try_result!(skip_whitespaces(input));
Some(try_result!(parse_number(input)))
} else {
input.push_back(b);
None
};
let res = if int.is_none() && dec.is_none() {
ParseResult::Parsing(Error::BadNumberFormat.into())
} else {
let int = int.map(f64::from).unwrap_or(0.);
let (dec, ord) = dec
.map(|(dec, ord)| (dec.into(), ord.into()))
.unwrap_or((0., 1.));
ParseResult::Ok((if negativ { -1. } else { 1. }) * (int + dec / ord))
};
Some(res)
}
#[cfg(feature = "string-value")]
async fn parse_string_literal<S, E>(input: &mut S) -> Option<ParseResult<String, E>>
where
S: Stream<Item = Result<u8, E>> + Unpin + PushBackable<Item = u8>,
{
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
let mut array = Vec::new();
loop {
match try_result!(input.next()) {
b'"' => break,
b'\\' => {
array.push(try_result!(input.next()));
}
b => array.push(b),
}
}
match String::from_utf8(array) {
Ok(string) => Some(ParseResult::Ok(string)),
Err(_) => Some(Error::InvalidUTF8String.into()),
}
}
pub(crate) async fn parse_literal<S, E>(input: &mut S) -> Option<ParseResult<Literal, E>>
where
S: Stream<Item = Result<u8, E>> + Unpin + PushBackable<Item = u8>,
{
let b = try_result!(input.next());
Some(match b {
b'+' | b'-' | b'.' | b'0'..=b'9' => {
input.push_back(b);
ParseResult::Ok(Literal::from(try_parse!(parse_real_literal(input))))
}
#[cfg(feature = "string-value")]
b'"' => ParseResult::Ok(Literal::from(try_parse!(parse_string_literal(input)))),
_ => Error::UnexpectedByte(b).into(),
})
}
#[cfg(not(feature = "parse-expressions"))]
pub(crate) async fn parse_real_value<S, E>(input: &mut S) -> Option<ParseResult<RealValue, E>>
where
S: Stream<Item = Result<u8, E>> + Unpin + PushBackable<Item = u8>,
{
let b = try_result!(input.next());
let res = match b {
b'+' | b'-' | b'.' | b'0'..=b'9' => {
input.push_back(b);
ParseResult::Ok(RealValue::from(try_parse!(parse_literal(input))))
}
#[cfg(feature = "string-value")]
b'"' => {
input.push_back(b);
ParseResult::Ok(RealValue::from(try_parse!(parse_literal(input))))
}
#[cfg(feature = "parse-parameters")]
b'#' => {
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
let mut n = 1;
let literal = loop {
try_result!(skip_whitespaces(input));
let b = try_result!(input.next());
if b != b'#' {
input.push_back(b);
break try_parse!(parse_literal(input));
}
n += 1;
};
let vec: Vec<_> = core::iter::once(literal.into())
.chain(core::iter::repeat(Operator::GetParameter.into()).take(n))
.collect();
ParseResult::Ok(Expression(vec).into())
}
#[cfg(feature = "optional-value")]
b => {
input.push_back(b);
ParseResult::Ok(RealValue::None)
}
#[cfg(not(feature = "optional-value"))]
b => Error::UnexpectedByte(b).into(),
};
Some(res)
}