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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
use std::fmt::Debug;
use error::CoreError;
pub trait GeneralQSSpec: Clone+Debug {
type Quoting: QuotingClassifier;
type Parsing: ParsingImpl;
}
pub trait QuotingClassifier {
fn classify_for_quoting(pcp: PartialCodePoint) -> QuotingClass;
}
#[derive(Debug, Eq, PartialEq, Hash, Clone)]
pub enum QuotingClass {
QText,
NeedsQuoting,
Invalid
}
pub trait WithoutQuotingValidator {
fn next(&mut self, pcp: PartialCodePoint) -> bool;
fn end(&self) -> bool { true }
}
#[derive(Copy, Clone, Eq, PartialEq, Debug, Hash)]
pub enum State<T: Copy+Eq+Debug> {
Start,
Normal,
Failed,
QPStart,
Custom(T),
End
}
pub trait ParsingImpl: Copy+Eq+Debug {
fn can_be_quoted(bch: PartialCodePoint) -> bool;
fn handle_normal_state(bch: PartialCodePoint) -> Result<(State<Self>, bool), CoreError>;
fn advance(&self, _pcp: PartialCodePoint) -> Result<(State<Self>, bool), CoreError> {
unreachable!("[BUG] custom state is not used, so advance is unreachable")
}
}
#[derive(Debug, Eq, PartialEq, Hash, Clone)]
pub struct ScanAutomaton<T: ParsingImpl> {
state: State<T>,
last_was_emit: bool
}
impl<Impl> ScanAutomaton<Impl>
where Impl: ParsingImpl
{
pub fn new() -> Self {
ScanAutomaton { state: State::Start, last_was_emit: false }
}
pub fn did_end(&self) -> bool {
self.state == State::End
}
pub fn end(&mut self) -> Result<(), CoreError> {
if self.did_end() {
Ok(())
} else {
Err(CoreError::DoesNotEndWithDQuotes.into())
}
}
pub fn advance(&mut self, pcp: PartialCodePoint) -> Result<bool, CoreError> {
match _advance_scan_automaton(self.state, pcp) {
Ok((state, emit)) => {
self.state = state;
self.last_was_emit = emit;
Ok(emit)
},
Err(err) => {
self.state = State::Failed;
Err(err)
}
}
}
}
fn _advance_scan_automaton<Impl: ParsingImpl>(state: State<Impl>, pcp: PartialCodePoint)
-> Result<(State<Impl>, bool), CoreError>
{
use self::State::*;
let pcp_val = pcp.as_u8();
match state {
Start => {
if pcp_val == b'"' {
Ok((Normal, false))
} else {
Err(CoreError::DoesNotStartWithDQuotes)
}
}
Normal => {
match pcp_val {
b'"' => Ok((End, false)),
b'\\' => Ok((QPStart, false)),
_ => Impl::handle_normal_state(pcp)
}
}
QPStart => {
if Impl::can_be_quoted(pcp) {
Ok((Normal, true))
} else {
Err(CoreError::UnquoteableCharQuoted.into())
}
}
Custom(inner) => {
inner.advance(pcp)
}
End => {
Err(CoreError::QuotedStringAlreadyEnded.into())
},
Failed => Err(CoreError::AdvancedFailedAutomaton.into())
}
}
#[derive(Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug)]
pub struct PartialCodePoint(u8);
impl PartialCodePoint {
#[inline(always)]
pub fn as_u8(self) -> u8 {
self.0
}
#[inline(always)]
pub fn from_utf8_byte(u8b: u8) -> PartialCodePoint {
debug_assert!(u8b != 0xFF, "utf8 bytes can not be 0xFF");
PartialCodePoint(u8b)
}
#[inline]
pub fn from_code_point(code_point: u32) -> PartialCodePoint {
if code_point > 0x7f {
PartialCodePoint(0xFF)
} else {
PartialCodePoint(code_point as u8)
}
}
}
#[derive(Copy, Clone, Debug)]
pub struct AsciiWordValidator;
impl WithoutQuotingValidator for AsciiWordValidator {
fn next(&mut self, pcp: PartialCodePoint) -> bool {
let u8val = pcp.as_u8();
u8val.is_ascii_alphanumeric() || u8val == b'_'
}
}