File: 02_storable_state_with_conditions.rs

package info (click to toggle)
re2c 4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 50,052 kB
  • sloc: cpp: 32,477; ml: 8,279; sh: 5,265; makefile: 968; haskell: 612; python: 428; ansic: 227; javascript: 111; java: 3
file content (417 lines) | stat: -rw-r--r-- 13,448 bytes parent folder | download | duplicates (2)
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
/* Generated by re2rust */
// re2rust $INPUT -o $OUTPUT -fc --no-unsafe

use std::fs::File;
use std::io::{Read, Write};

const BUFSIZE: usize = 10;

const YYC_INIT: isize = 0;
const YYC_SPACES: isize = 6;
const YYC_NUMBER: isize = 11;
const YYC_WORD: isize = 16;


const DEBUG: bool = false;
macro_rules! log {
    ($($fmt:expr)? $(, $args:expr)*) => { if DEBUG { println!($($fmt)? $(, $args)*) } }
}

struct State {
    file: File,
    yyinput: [u8; BUFSIZE + 1],
    yylimit: usize,
    yycursor: usize,
    yymarker: usize,
    token: usize,
    yystate: isize,
}

#[derive(Debug, PartialEq)]
enum Status {End, Ready, Waiting, BadPacket, BigPacket}

fn fill(st: &mut State) -> Status {
    let shift = st.token;
    let used = st.yylimit - st.token;
    let free = BUFSIZE - used;

    // Error: no space. In real life can reallocate a larger buffer.
    if free < 1 { return Status::BigPacket; }

    // Shift buffer contents (discard already processed data).
    unsafe {
        let p = st.yyinput.as_mut_ptr();
        std::ptr::copy(p, p.offset(shift as isize), used);
    }
    st.yylimit -= shift;
    st.yycursor -= shift;
    st.yymarker = st.yymarker.overflowing_sub(shift).0; // underflow ok if marker is unused
    st.token -= shift;

    // Fill free space at the end of buffer with new data.
    match st.file.read(&mut st.yyinput[st.yylimit..BUFSIZE]) {
        Ok(n) => st.yylimit += n,
        Err(why) => panic!("cannot read from file: {}", why)
    }
    st.yyinput[st.yylimit] = 0; // append sentinel symbol

    return Status::Ready;
}

fn lex(yyrecord: &mut State, nc: &mut isize, wc: &mut isize) -> Status {
    #[allow(unused_assignments)]
    let mut yych: u8 = 0;
    'lex: loop {
        yyrecord.token = yyrecord.yycursor;
    
{
    let mut yystate : isize = yyrecord.yystate;
    'yyl: loop {
        match yystate {
            -1 ..= 0 => {
                yych = yyrecord.yyinput[yyrecord.yycursor];
                match yych {
                    0x09 |
                    0x20 => {
                        yyrecord.yycursor += 1;
                        yystate = 2;
                        continue 'yyl;
                    }
                    0x30 ..= 0x39 => {
                        yyrecord.yycursor += 1;
                        yystate = 3;
                        continue 'yyl;
                    }
                    0x61 ..= 0x7A => {
                        yyrecord.yycursor += 1;
                        yystate = 4;
                        continue 'yyl;
                    }
                    _ => {
                        if yyrecord.yylimit <= yyrecord.yycursor {
                            yyrecord.yystate = 21;
                            return Status::Waiting;
                        }
                        yyrecord.yycursor += 1;
                        yystate = 1;
                        continue 'yyl;
                    }
                }
            }
            1 => {
                yyrecord.yystate = YYC_INIT;
                { return Status::BadPacket; }
            }
            2 => {
                yyrecord.yycursor -= 1;
                yyrecord.yystate = YYC_SPACES;
                yystate = YYC_SPACES;
                continue 'yyl;
            }
            3 => {
                yyrecord.yycursor -= 1;
                yyrecord.yystate = YYC_NUMBER;
                yystate = YYC_NUMBER;
                continue 'yyl;
            }
            4 => {
                yyrecord.yycursor -= 1;
                yyrecord.yystate = YYC_WORD;
                yystate = YYC_WORD;
                continue 'yyl;
            }
            5 => {
                yyrecord.yystate = YYC_INIT;
                { return Status::End; }
            }
            6 => {
                yych = yyrecord.yyinput[yyrecord.yycursor];
                match yych {
                    0x09 |
                    0x20 => {
                        yyrecord.yycursor += 1;
                        yystate = 8;
                        continue 'yyl;
                    }
                    _ => {
                        if yyrecord.yylimit <= yyrecord.yycursor {
                            yyrecord.yystate = 22;
                            return Status::Waiting;
                        }
                        yyrecord.yycursor += 1;
                        yystate = 7;
                        continue 'yyl;
                    }
                }
            }
            7 => {
                yyrecord.yystate = YYC_SPACES;
                { return Status::BadPacket; }
            }
            8 => {
                yych = yyrecord.yyinput[yyrecord.yycursor];
                match yych {
                    0x09 |
                    0x20 => {
                        yyrecord.yycursor += 1;
                        yystate = 8;
                        continue 'yyl;
                    }
                    _ => {
                        if yyrecord.yylimit <= yyrecord.yycursor {
                            yyrecord.yystate = 23;
                            return Status::Waiting;
                        }
                        yystate = 9;
                        continue 'yyl;
                    }
                }
            }
            9 => {
                yyrecord.yystate = YYC_INIT;
                { continue 'lex; }
            }
            10 => {
                yyrecord.yystate = YYC_SPACES;
                { return Status::End; }
            }
            11 => {
                yych = yyrecord.yyinput[yyrecord.yycursor];
                match yych {
                    0x30 ..= 0x39 => {
                        yyrecord.yycursor += 1;
                        yystate = 13;
                        continue 'yyl;
                    }
                    _ => {
                        if yyrecord.yylimit <= yyrecord.yycursor {
                            yyrecord.yystate = 24;
                            return Status::Waiting;
                        }
                        yyrecord.yycursor += 1;
                        yystate = 12;
                        continue 'yyl;
                    }
                }
            }
            12 => {
                yyrecord.yystate = YYC_NUMBER;
                { return Status::BadPacket; }
            }
            13 => {
                yych = yyrecord.yyinput[yyrecord.yycursor];
                match yych {
                    0x30 ..= 0x39 => {
                        yyrecord.yycursor += 1;
                        yystate = 13;
                        continue 'yyl;
                    }
                    _ => {
                        if yyrecord.yylimit <= yyrecord.yycursor {
                            yyrecord.yystate = 25;
                            return Status::Waiting;
                        }
                        yystate = 14;
                        continue 'yyl;
                    }
                }
            }
            14 => {
                yyrecord.yystate = YYC_SPACES;
                { *nc += 1; continue 'lex; }
            }
            15 => {
                yyrecord.yystate = YYC_NUMBER;
                { return Status::End; }
            }
            16 => {
                yych = yyrecord.yyinput[yyrecord.yycursor];
                match yych {
                    0x61 ..= 0x7A => {
                        yyrecord.yycursor += 1;
                        yystate = 18;
                        continue 'yyl;
                    }
                    _ => {
                        if yyrecord.yylimit <= yyrecord.yycursor {
                            yyrecord.yystate = 26;
                            return Status::Waiting;
                        }
                        yyrecord.yycursor += 1;
                        yystate = 17;
                        continue 'yyl;
                    }
                }
            }
            17 => {
                yyrecord.yystate = YYC_WORD;
                { return Status::BadPacket; }
            }
            18 => {
                yych = yyrecord.yyinput[yyrecord.yycursor];
                match yych {
                    0x61 ..= 0x7A => {
                        yyrecord.yycursor += 1;
                        yystate = 18;
                        continue 'yyl;
                    }
                    _ => {
                        if yyrecord.yylimit <= yyrecord.yycursor {
                            yyrecord.yystate = 27;
                            return Status::Waiting;
                        }
                        yystate = 19;
                        continue 'yyl;
                    }
                }
            }
            19 => {
                yyrecord.yystate = YYC_SPACES;
                { *wc += 1; continue 'lex; }
            }
            20 => {
                yyrecord.yystate = YYC_WORD;
                { return Status::End; }
            }
            21 => {
                if yyrecord.yylimit <= yyrecord.yycursor {
                    yystate = 5;
                    continue 'yyl;
                }
                yystate = 0;
                continue 'yyl;
            }
            22 => {
                if yyrecord.yylimit <= yyrecord.yycursor {
                    yystate = 10;
                    continue 'yyl;
                }
                yystate = 6;
                continue 'yyl;
            }
            23 => {
                if yyrecord.yylimit <= yyrecord.yycursor {
                    yystate = 9;
                    continue 'yyl;
                }
                yystate = 8;
                continue 'yyl;
            }
            24 => {
                if yyrecord.yylimit <= yyrecord.yycursor {
                    yystate = 15;
                    continue 'yyl;
                }
                yystate = 11;
                continue 'yyl;
            }
            25 => {
                if yyrecord.yylimit <= yyrecord.yycursor {
                    yystate = 14;
                    continue 'yyl;
                }
                yystate = 13;
                continue 'yyl;
            }
            26 => {
                if yyrecord.yylimit <= yyrecord.yycursor {
                    yystate = 20;
                    continue 'yyl;
                }
                yystate = 16;
                continue 'yyl;
            }
            27 => {
                if yyrecord.yylimit <= yyrecord.yycursor {
                    yystate = 19;
                    continue 'yyl;
                }
                yystate = 18;
                continue 'yyl;
            }
            _ => panic!("internal lexer error"),
        }
    }
}
}
}

fn test(packets: Vec<&[u8]>, expect: Status, expect_nc: isize, expect_wc: isize) {
    // Create a "socket" (open the same file for reading and writing).
    let fname = "pipe";
    let mut fw: File = match File::create(fname) {
        Err(why) => panic!("cannot open {}: {}", fname, why),
        Ok(file) => file,
    };
    let fr: File = match File::open(fname) {
        Err(why) => panic!("cannot read file {}: {}", fname, why),
        Ok(file) => file,
    };

    // Initialize lexer state: `state` value is -1, all offsets are at the end
    // of buffer, the character at `yylimit` offset is the sentinel (null).
    let mut state = State {
        file: fr,
        yyinput: [0; BUFSIZE + 1], // sentinel (at `yylimit` offset) is set to null
        yylimit: BUFSIZE,
        yycursor: BUFSIZE,
        yymarker: BUFSIZE,
        token: BUFSIZE,
        yystate: -1,
    };

    // Main loop. The buffer contains incomplete data which appears packet by
    // packet. When the lexer needs more input it saves its internal state and
    // returns to the caller which should provide more input and resume lexing.
    let mut status;
    let mut send = 0;
    let mut nc = 0;
    let mut wc = 0;
    loop {
        status = lex(&mut state, &mut nc, &mut wc);
        if status == Status::End {
            log!("done: got {} numbers and {} words", nc, wc);
            break;
        } else if status == Status::Waiting {
            log!("waiting...");
            if send < packets.len() {
                log!("sent packet {}", send);
                match fw.write_all(packets[send]) {
                    Err(why) => panic!("cannot write to {}: {}", fname, why),
                    Ok(_) => send += 1,
                }
            }
            status = fill(&mut state);
            log!("queue: '{}'", String::from_utf8_lossy(&state.yyinput));
            if status == Status::BigPacket {
                log!("error: packet too big");
                break;
            }
            assert_eq!(status, Status::Ready);
        } else {
            assert_eq!(status, Status::BadPacket);
            log!("error: ill-formed packet");
            break;
        }
    }

    // Check results.
    assert_eq!(status, expect);
    if status == Status::End {
        assert_eq!(nc, expect_nc);
        assert_eq!(wc, expect_wc);
    }

    // Cleanup: remove input file.
    match std::fs::remove_file(fname) {
        Err(why) => panic!("cannot remove {}: {}", fname, why),
        Ok(_) => {}
    }
}

fn main() {
    test(vec![], Status::End, 0, 0);
    test(vec![b" zero one", b" ", b"123", b"4 tw", b"o  ", b"456789"], Status::End, 2, 3);
    test(vec![b"zer0"], Status::BadPacket, -1, -1);
    test(vec![b"tooooooloooooong"], Status::BigPacket, -1, -1);
}