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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
//! A stream of chars for building such as a lexer. Making the step of "iteration between characters" considerably easier.
//! And providing certain utilites for making the code simpler.
//! Respects both ASCII and Unicode.
//!
//! Example, lexing identifiers, numbers and some punctuation marks:
//!
//! ```rust
//! use uwl::Stream;
//!
//! #[derive(Debug, PartialEq)]
//! enum TokenKind {
//!     Ident,
//!     Number,
//!     Question,
//!     Exclamation,
//!     Comma,
//!     Point,
//!
//!     // An invalid token
//!     Illegal,
//! }
//!
//! #[derive(Debug, PartialEq)]
//! enum Lit<'a> {
//!     Short(char),
//!     Long(&'a str),
//! }
//!
//! #[derive(Debug, PartialEq)]
//! struct Token<'a> {
//!     kind: TokenKind,
//!     lit: Lit<'a>,
//! }
//!
//! impl<'a> Token<'a> {
//!     fn new(kind: TokenKind, lit: Lit<'a>) -> Self {
//!         Token {
//!             kind,
//!             lit,
//!         }
//!     }
//! }
//!
//! fn lex<'a>(stream: &mut Stream<'a>) -> Option<Token<'a>> {
//!     match stream.current() {
//!         Some(c) => match c {
//!             // Ignore whitespace.
//!             s if s.is_whitespace() => {
//!                 stream.take_while(|c| c.is_whitespace());
//!                 return lex(stream);
//!             },
//!             s if s.is_alphabetic() => {
//!                 let lit = Lit::Long(stream.take_while(|s| s.is_alphabetic()));
//!                 Some(Token::new(TokenKind::Ident, lit))
//!             },
//!             s if s.is_numeric() => {
//!                 let lit = Lit::Long(stream.take_while(|s| s.is_numeric()));
//!                 Some(Token::new(TokenKind::Number, lit))
//!             },
//!             '?' => Some(Token::new(TokenKind::Question, Lit::Short(stream.next()?))),
//!             '!' => Some(Token::new(TokenKind::Exclamation, Lit::Short(stream.next()?))),
//!             ',' => Some(Token::new(TokenKind::Comma, Lit::Short(stream.next()?))),
//!             '.' => Some(Token::new(TokenKind::Point, Lit::Short(stream.next()?))),
//!             _ => Some(Token::new(TokenKind::Illegal, Lit::Short(stream.next()?))),
//!         },
//!         None => None,
//!     }
//! }
//!
//! fn main() {
//!     let mut stream = Stream::new("Hello, world! ...world? Hello?");
//!
//!     assert_eq!(lex(&mut stream), Some(Token::new(TokenKind::Ident, Lit::Long("Hello"))));
//!     assert_eq!(lex(&mut stream), Some(Token::new(TokenKind::Comma, Lit::Short(','))));
//!     assert_eq!(lex(&mut stream), Some(Token::new(TokenKind::Ident, Lit::Long("world"))));
//!     assert_eq!(lex(&mut stream), Some(Token::new(TokenKind::Exclamation, Lit::Short('!'))));
//!     assert_eq!(lex(&mut stream), Some(Token::new(TokenKind::Point, Lit::Short('.'))));
//!     assert_eq!(lex(&mut stream), Some(Token::new(TokenKind::Point, Lit::Short('.'))));
//!     assert_eq!(lex(&mut stream), Some(Token::new(TokenKind::Point, Lit::Short('.'))));
//!     assert_eq!(lex(&mut stream), Some(Token::new(TokenKind::Ident, Lit::Long("world"))));
//!     assert_eq!(lex(&mut stream), Some(Token::new(TokenKind::Question, Lit::Short('?'))));
//!     assert_eq!(lex(&mut stream), Some(Token::new(TokenKind::Ident, Lit::Long("Hello"))));
//!     assert_eq!(lex(&mut stream), Some(Token::new(TokenKind::Question, Lit::Short('?'))));
//!
//!     // Reached the end
//!     assert_eq!(lex(&mut stream), None);
//! }
//! ```

#![no_std]
#![doc(html_root_url = "https://docs.rs/uwl/*")]
#![deny(rust_2018_idioms)]
#![cfg_attr(test, feature(test))]

/// Adds additional `is_*` methods to `char`,
pub trait CharExt: Copy {
    /// Is the character fit for the beginning of an identifier? (A-Z)
    fn is_ident_start(self) -> bool;
    /// Is the character fit for continuing the identifier? (A-Z; 0-9; _)
    fn is_ident_continue(self) -> bool;
    /// Is the character fit for continuing the identifier in kebab-case? (A-Z; 0-9; -)
    fn is_kebab_continue(self) -> bool;
}

impl CharExt for char {
    #[inline]
    fn is_ident_start(self) -> bool {
        self.is_ascii_alphabetic()
    }

    #[inline]
    fn is_ident_continue(self) -> bool {
        self == '_' || self.is_ident_start()
    }

    #[inline]
    fn is_kebab_continue(self) -> bool {
        self == '-' || self.is_ident_start()
    }
}

#[inline]
fn current_char(src: &str, offset: usize) -> Option<char> {
    src[offset..].chars().next()
}

#[inline]
fn peek_char(src: &str, mut offset: usize, ahead: usize) -> Option<char> {
    for _ in 0..ahead {
        let c = current_char(src, offset)?;

        offset += c.len_utf8();
    }

    current_char(src, offset)
}

#[inline]
fn take_while(src: &str, mut offset: usize, mut f: impl FnMut(char) -> bool) -> &str {
    let start = offset;

    while let Some(c) = current_char(src, offset) {
        if !f(c) {
            break;
        }

        offset += c.len_utf8();
    }

    &src[start..offset]
}

/// A stream of characters. Handles ASCII and/or Unicode.
#[derive(Debug, Default, Clone, Copy)]
pub struct Stream<'a> {
    src: &'a str,
    offset: usize,
    buf: Option<char>,
}

impl<'a> Stream<'a> {
    /// Create a new stream from a source.
    #[inline]
    pub fn new(src: &'a str) -> Self {
        Self {
            src,
            offset: 0,
            buf: current_char(src, 0),
        }
    }

    /// The "offset"; the start of the current char.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("a 🍆");
    ///
    /// assert_eq!(stream.offset(), 0);
    /// stream.next();
    /// assert_eq!(stream.offset(), 1);
    /// stream.next();
    /// assert_eq!(stream.offset(), 2);
    /// stream.next();
    /// assert_eq!(stream.offset(), 6);
    /// ```
    #[inline]
    pub fn offset(&self) -> usize {
        self.offset
    }

    /// Returns the source the stream is operating on.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let stream = Stream::new("Once upon a time... life");
    ///
    /// assert_eq!(stream.source(), "Once upon a time... life");
    /// ```
    #[inline]
    pub fn source(&self) -> &'a str {
        self.src
    }

    /// The provided source's length. Returns the amount of bytes.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("abc🍆");
    /// assert_eq!(stream.len(), 7);
    /// stream.next();
    /// // Regardless of any modification method present on the stream,
    /// // `len` always returns a constant.
    /// assert_eq!(stream.len(), 7);
    /// ```
    #[inline]
    pub fn len(&self) -> usize {
        self.src.len()
    }

    /// Is the provided source empty?
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let stream = Stream::new("");
    ///
    /// assert!(stream.is_empty());
    /// assert_eq!(stream.source(), "");
    /// ```
    #[inline]
    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }

    /// Returns the remainder (after the offset).
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("foo bar");
    ///
    /// assert_eq!(stream.take_until(|s| s == ' '), "foo");
    /// assert_eq!(stream.next(), Some(' '));
    /// assert_eq!(stream.rest(), "bar");
    #[inline]
    pub fn rest(&self) -> &'a str {
        &self.src[self.offset..]
    }

    /// Determines the end of the input.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("a");
    ///
    /// assert!(!stream.at_end());
    /// stream.next();
    /// assert!(stream.at_end());
    /// assert_eq!(stream.current(), None);
    /// ```
    #[inline]
    pub fn at_end(&self) -> bool {
        self.offset >= self.len()
    }

    /// Fetch the current char.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let stream = Stream::new("hello");
    ///
    /// assert_eq!(stream.current(), Some('h'));
    /// ```
    #[inline]
    pub fn current(&self) -> Option<char> {
        self.buf
    }

    /// Advance to the next char
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("hello");
    ///
    /// assert_eq!(stream.current(), Some('h'));
    ///
    /// assert_eq!(stream.next(), Some('h'));
    /// assert_eq!(stream.current(), Some('e'));
    /// ```
    #[inline]
    pub fn next(&mut self) -> Option<char> {
        let buf = self.buf;

        if let Some(c) = buf {
            self.offset += c.len_utf8();
            self.buf = current_char(self.src, self.offset);
        }

        buf
    }

    /// Consume while true.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("hello");
    ///
    /// assert_eq!(stream.current(), Some('h'));
    /// assert_eq!(stream.take_while(|s| s.is_alphabetic()), "hello");
    /// assert_eq!(stream.current(), None);
    /// ```
    pub fn take_while(&mut self, f: impl FnMut(char) -> bool) -> &'a str {
        if self.at_end() {
            return "";
        }

        let s = take_while(self.src, self.offset, f);

        self.offset += s.len();
        self.buf = current_char(self.src, self.offset);

        s
    }

    /// Consume until true.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("hello!");
    ///
    /// assert_eq!(stream.current(), Some('h'));
    /// assert_eq!(stream.take_until(|s| s == '!'), "hello");
    /// assert_eq!(stream.current(), Some('!'));
    /// ```
    #[inline]
    pub fn take_until(&mut self, mut f: impl FnMut(char) -> bool) -> &'a str {
        self.take_while(|c| !f(c))
    }

    /// Lookahead for as long as `f` returns true. Returns a substring up to the ending character
    /// that it landed on.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::{Stream, CharExt};
    ///
    /// let mut stream = Stream::new("hello _wo_r_l_4d");
    ///
    /// assert_eq!(stream.peek_while(|s| s.is_alphabetic()), "hello");
    /// assert_eq!(stream.rest(), "hello _wo_r_l_4d");
    /// stream.take_while(|s| s.is_alphabetic());
    /// stream.next();
    /// assert_eq!(stream.peek_while(|s| s.is_diglet()), "_wo_r_l_4d");
    /// assert_eq!(stream.rest(), "_wo_r_l_4d");
    /// ```
    #[inline]
    pub fn peek_while(&self, f: impl FnMut(char) -> bool) -> &'a str {
        if self.at_end() {
            return "";
        }

        take_while(self.src, self.offset, f)
    }

    /// Lookahead for as long as `f` does not return true. Returns a substring up to the end it landed on.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("hello!");
    ///
    /// assert_eq!(stream.peek_until(|s| s == '!'), "hello");
    /// assert_eq!(stream.rest(), "hello!");
    /// ```
    #[inline]
    pub fn peek_until(&self, mut f: impl FnMut(char) -> bool) -> &'a str {
        self.peek_while(|c| !f(c))
    }

    /// Lookahead by `x` chars. Returns a substring up to the ending character
    /// that it landed on.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("hello world");
    ///
    /// assert_eq!(stream.current(), Some('h'));
    /// assert_eq!(stream.peek_for(5), "hello");
    ///
    /// for _ in 0..5 {
    ///     stream.next();
    /// }
    ///
    /// assert_eq!(stream.next(), Some(' '));
    /// assert_eq!(stream.peek_for(5), "world");
    /// assert_eq!(stream.next(), Some('w'));
    /// assert_eq!(stream.next(), Some('o'));
    /// assert_eq!(stream.next(), Some('r'));
    /// assert_eq!(stream.next(), Some('l'));
    /// assert_eq!(stream.next(), Some('d'));
    /// ```
    #[inline]
    pub fn peek_for(&self, mut much: usize) -> &'a str {
        self.peek_while(|_| {
            let b = 0 < much;
            much -= 1;
            b
        })
    }

    /// Advance by `x` characters. Short-circuits
    /// if there are no more characters available.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("hello world");
    ///
    /// assert_eq!(stream.advance(5), "hello");
    /// stream.next();
    /// assert_eq!(stream.advance(5), "world");
    /// assert!(stream.at_end());
    /// ```
    #[inline]
    pub fn advance(&mut self, mut much: usize) -> &'a str {
        self.take_while(|_| {
            let b = 0 < much;
            much -= 1;
            b
        })
    }

    /// Advance if the leading string matches to the expected input.
    /// Returns `true` on succession, `false` on failure.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("hello world");
    ///
    /// assert!(stream.eat("hello"));
    /// assert!(!stream.eat("not a space"));
    /// assert!(stream.eat(" "));
    /// assert_eq!(stream.rest(), "world");
    /// ```
    #[inline]
    pub fn eat(&mut self, m: &str) -> bool {
        let s = self.peek_for(m.chars().count());

        if s == m {
            self.offset += s.len();

            true
        } else {
            false
        }
    }

    /// Lookahead by `x` characters. Returns the character it landed on.
    ///
    /// # Example
    ///
    /// ```rust
    /// use uwl::Stream;
    ///
    /// let mut stream = Stream::new("hello");
    ///
    /// assert_eq!(stream.current(), Some('h'));
    /// assert_eq!(stream.peek(1), Some('e'));
    /// assert_eq!(stream.current(), Some('h'));
    /// assert_eq!(stream.peek(2), Some('l'));
    /// assert_eq!(stream.current(), Some('h'));
    /// ```
    #[inline]
    pub fn peek(&self, ahead: usize) -> Option<char> {
        peek_char(self.src, self.offset, ahead)
    }

    /// Set the offset to the `pos`.
    #[inline]
    pub fn set(&mut self, pos: usize) {
        self.offset = pos;
    }

    /// Increment the offset by `n` bytes.
    #[inline]
    pub fn increment(&mut self, n: usize) {
        self.offset += n;
        self.buf = current_char(self.src, self.offset);
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    extern crate alloc;
    extern crate test;

    use alloc::string::String;
    use alloc::vec::Vec;

    #[test]
    fn all_chars() {
        const STRING: &str = "hello a b c ! ?👀👁!!!";
        let mut v = Vec::with_capacity(STRING.len());
        let mut s = Stream::new(STRING);

        while let Some(c) = s.next() {
            v.push(c);
        }

        assert_eq!(v[0], 'h');
        assert_eq!(v[1], 'e');
        assert_eq!(v[2], 'l');
        assert_eq!(v[3], 'l');
        assert_eq!(v[4], 'o');
        assert_eq!(v[5], ' ');
        assert_eq!(v[6], 'a');
        assert_eq!(v[7], ' ');
        assert_eq!(v[8], 'b');
        assert_eq!(v[9], ' ');
        assert_eq!(v[10], 'c');
        assert_eq!(v[11], ' ');
        assert_eq!(v[12], '!');
        assert_eq!(v[13], ' ');
        assert_eq!(v[14], '?');
        assert_eq!(v[15], '👀');
        assert_eq!(v[16], '👁');
        assert_eq!(v[17], '!');
        assert_eq!(v[18], '!');
        assert_eq!(v[19], '!');
        assert_eq!(v.len(), 20);

        // There are no other characters beyond index `19`
        assert_eq!(v.get(20), None);

        assert_eq!(v.into_iter().collect::<String>(), STRING);
    }

    #[test]
    fn peek() {
        const STRING: &str = "// a comment!";

        let mut s = Stream::new(STRING);

        assert_eq!(s.current(), Some('/'));
        assert_eq!(s.peek(0), Some('/'));
        assert_eq!(s.peek(1), Some('/'));
        assert_eq!(s.peek(2), Some(' '));

        assert_eq!(s.next(), Some('/'));
        assert_eq!(s.next(), Some('/'));
        assert_eq!(s.rest(), " a comment!");
    }

    #[bench]
    fn lang(b: &mut test::Bencher) {
        #[derive(Debug, Clone, Copy, PartialEq, Eq)]
        enum TokenKind {
            Illegal,
            Identifier,
            Number,
            Paren,
            CParen,
        }

        #[derive(Debug, Clone, Copy, PartialEq, Eq)]
        enum Lit<'a> {
            Short(char),
            Long(&'a str),
        }

        #[derive(Debug, Clone, Copy, PartialEq, Eq)]
        struct Token<'a> {
            kind: TokenKind,
            lit: Lit<'a>,
        }

        return b.iter(|| {
            const SRC: &str = "(abc foo bar) ()() 1 2 3 4 5 6 7 8 9";

            let mut stream = Stream::new(SRC);

            while let Some(_) = lit(&mut stream) {}
        });

        fn lit<'a>(s: &mut Stream<'a>) -> Option<Token<'a>> {
            match s.current() {
                Some(c) => {
                    if c.is_ident_start() {
                        let l = Lit::Long(s.take_while(|c| c.is_ident_continue()));

                        Some(Token {
                            kind: TokenKind::Identifier,
                            lit: l,
                        })
                    } else if c.is_ascii_digit() {
                        let l = Lit::Long(s.take_while(|c| c.is_ascii_digit()));

                        Some(Token {
                            kind: TokenKind::Number,
                            lit: l,
                        })
                    } else {
                        s.next();

                        let kind = match c {
                            '(' => TokenKind::Paren,
                            ')' => TokenKind::CParen,
                            _ => TokenKind::Illegal,
                        };

                        Some(Token {
                            kind,
                            lit: Lit::Short(c),
                        })
                    }
                }
                None => None,
            }
        }
    }
}