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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
use std::borrow::Cow;
use crate::char_stream::{CharStream, InputData};
use crate::int_stream::IntStream;
use std::ops::Deref;
use better_any::TidAble;
#[derive(Debug)]
pub struct InputStream<Data: Deref> {
name: String,
data_raw: Data,
index: isize,
}
better_any::tid! {impl<'a, T: 'static> TidAble<'a> for InputStream<&'a T> where T: ?Sized}
better_any::tid! {impl<'a, T: 'static> TidAble<'a> for InputStream<Box<T>> where T: ?Sized}
impl<'a, T: From<&'a str>> CharStream<T> for InputStream<&'a str> {
#[inline]
fn get_text(&self, start: isize, stop: isize) -> T {
self.get_text_inner(start, stop).into()
}
}
impl<T: From<D::Owned>, D: ?Sized + InputData> CharStream<T> for InputStream<Box<D>> {
#[inline]
fn get_text(&self, start: isize, stop: isize) -> T {
self.get_text_owned(start, stop).into()
}
}
pub type ByteStream<'a> = InputStream<&'a [u8]>;
pub type CodePoint8BitCharStream<'a> = InputStream<&'a [u8]>;
pub type CodePoint16BitCharStream<'a> = InputStream<&'a [u16]>;
pub type CodePoint32BitCharStream<'a> = InputStream<&'a [u32]>;
impl<'a, T> CharStream<Cow<'a, [T]>> for InputStream<&'a [T]>
where
[T]: InputData,
{
#[inline]
fn get_text(&self, a: isize, b: isize) -> Cow<'a, [T]> {
Cow::Borrowed(self.get_text_inner(a, b))
}
}
impl<'a, T> CharStream<String> for InputStream<&'a [T]>
where
[T]: InputData,
{
fn get_text(&self, a: isize, b: isize) -> String {
self.get_text_inner(a, b).to_display()
}
}
impl<'a, 'b, T> CharStream<Cow<'b, str>> for InputStream<&'a [T]>
where
[T]: InputData,
{
#[inline]
fn get_text(&self, a: isize, b: isize) -> Cow<'b, str> {
self.get_text_inner(a, b).to_display().into()
}
}
impl<'a, T> CharStream<&'a [T]> for InputStream<&'a [T]>
where
[T]: InputData,
{
#[inline]
fn get_text(&self, a: isize, b: isize) -> &'a [T] {
self.get_text_inner(a, b)
}
}
impl<Data: ?Sized + InputData> InputStream<Box<Data>> {
fn get_text_owned(&self, start: isize, stop: isize) -> Data::Owned {
let start = start as usize;
let stop = self.data_raw.offset(stop, 1).unwrap_or(stop) as usize;
if stop < self.data_raw.len() {
&self.data_raw[start..stop]
} else {
&self.data_raw[start..]
}
.to_owned()
}
pub fn new_owned(data: Box<Data>) -> Self {
Self {
name: "<empty>".to_string(),
data_raw: data.into(),
index: 0,
}
}
}
impl<'a, Data> InputStream<&'a Data>
where
Data: ?Sized + InputData,
{
fn get_text_inner(&self, start: isize, stop: isize) -> &'a Data {
let start = start as usize;
let stop = self.data_raw.offset(stop, 1).unwrap_or(stop) as usize;
if stop < self.data_raw.len() {
&self.data_raw[start..stop]
} else {
&self.data_raw[start..]
}
}
pub fn new(data_raw: &'a Data) -> Self {
Self {
name: "<empty>".to_string(),
data_raw,
index: 0,
}
}
}
impl<'a, Data: Deref> InputStream<Data>
where
Data::Target: InputData,
{
#[inline]
pub fn reset(&mut self) {
self.index = 0
}
}
impl<'a, Data: Deref> IntStream for InputStream<Data>
where
Data::Target: InputData,
{
#[inline]
fn consume(&mut self) {
if let Some(index) = self.data_raw.offset(self.index, 1) {
self.index = index;
} else {
panic!("cannot consume EOF");
}
}
#[inline]
fn la(&mut self, mut offset: isize) -> isize {
if offset == 1 {
return self
.data_raw
.item(self.index)
.unwrap_or(crate::int_stream::EOF);
}
if offset == 0 {
panic!("should not be called with offset 0");
}
if offset < 0 {
offset += 1;
}
self.data_raw
.offset(self.index, offset - 1)
.and_then(|index| self.data_raw.item(index))
.unwrap_or(crate::int_stream::EOF)
}
#[inline]
fn mark(&mut self) -> isize {
-1
}
#[inline]
fn release(&mut self, _marker: isize) {}
#[inline]
fn index(&self) -> isize {
self.index
}
#[inline]
fn seek(&mut self, index: isize) {
self.index = index
}
#[inline]
fn size(&self) -> isize {
self.data_raw.len() as isize
}
fn get_source_name(&self) -> String {
self.name.clone()
}
}
#[cfg(test)]
mod test {
use std::ops::Deref;
use crate::char_stream::CharStream;
use crate::int_stream::{IntStream, EOF};
use super::InputStream;
#[test]
fn test_str_input_stream() {
let mut input = InputStream::new("V1は3");
let input = &mut input as &mut dyn CharStream<String>;
assert_eq!(input.la(1), 'V' as isize);
assert_eq!(input.index(), 0);
input.consume();
assert_eq!(input.la(1), '1' as isize);
assert_eq!(input.la(-1), 'V' as isize);
assert_eq!(input.index(), 1);
input.consume();
assert_eq!(input.la(1), 0x306F);
assert_eq!(input.index(), 2);
input.consume();
assert_eq!(input.index(), 5);
assert_eq!(input.la(-2), '1' as isize);
assert_eq!(input.la(2), EOF);
assert_eq!(input.get_text(1, 1).deref(), "1");
assert_eq!(input.get_text(1, 2).deref(), "1は");
assert_eq!(input.get_text(2, 2).deref(), "は");
assert_eq!(input.get_text(2, 5).deref(), "は3");
assert_eq!(input.get_text(5, 5).deref(), "3");
}
#[test]
fn test_byte_input_stream() {
let mut input = InputStream::new(&b"V\xaa\xbb"[..]);
assert_eq!(input.la(1), 'V' as isize);
input.seek(2);
assert_eq!(input.la(1), 0xBB);
assert_eq!(input.index(), 2);
let mut input = InputStream::new("は".as_bytes());
assert_eq!(input.la(1), 227);
}
}