docopticon 0.1.2

An argument-parser based on the obligatory help-text
Documentation
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
//! Core parts of the `const`-time string parser.

/// Checks if the right slice exists in the left slice while optionally ignoring casing of ASCII letters,
/// returning the index in the left slice where the match first occurs.
#[inline]
pub(crate) const fn find_slice(
    start_index: usize,
    left: &[u8],
    right: &[u8],
    case_insensitive: bool,
    direction_left: bool,
) -> Option<usize> {
    if start_index >= left.len() || right.len() > left.len() {
        return None;
    }

    let mut i = start_index;
    let mut count = 0;
    while i < left.len() {
        let (l, r) = if direction_left {
            let l = left[i];
            let r = right[count];
            (l, r)
        } else {
            // read backwards
            let l = left[(left.len() - 1) - i];
            let r = right[(right.len() - 1) - count];
            (l, r)
        };

        // Check if left character and right character match
        if l == r || (case_insensitive && l.eq_ignore_ascii_case(&r)) {
            count += 1;
            // All characters match
            if count == right.len() {
                // Subtract from the current index the length to get the proper
                // starting index of the matching bytes
                if direction_left {
                    return Some(i - (right.len() - 1));
                } else {
                    return Some(left.len() - i - 1);
                }
            }
        } else {
            count = 0;
        }
        i += 1;
    }
    None
}

// /// Finds the first instance of any of the bytes in the list returning a tuple
// /// containing the index and what in the list matched.
// pub(crate) fn find_first_bytes(
//     start_index: usize,
//     s: &[u8],
//     bytes: &[u8],
//     case_insensitive: bool,
// ) -> Option<(u8, usize)> {
//     if start_index >= s.len() {
//         return None;
//     }
//
//     let mut i = start_index;
//     while i < s.len() {
//         let c = s[i];
//         let mut n = 0;
//         while n < bytes.len() {
//             let b = bytes[n];
//             if b == c || (case_insensitive && c.eq_ignore_ascii_case(&b)) {
//                 return Some((c, i));
//             }
//             n += 1
//         }
//         i += 1;
//     }
//     None
// }

/// Reads from 'the left' until a full non-case sensitive match is made returning the index of the
/// match.
///
/// If no match is made an Error will be returned instead.
///
/// Can technically panic due to indexing bounds (or an overflow), but the internal-usage should
/// never encounter that.
pub(crate) const fn find<'a>(
    start_index: usize,
    left: &'a str,
    right: &'a str,
    case_insensitive: bool,
) -> Option<usize> {
    find_slice(
        start_index,
        left.as_bytes(),
        right.as_bytes(),
        case_insensitive,
        true,
    )
}

/// Reads from 'the right' until a full non-case sensitive match is made returning the index of the
/// match.
///
/// If no match is made an Error will be returned instead.
///
/// Can technically panic due to indexing bounds (or an overflow), but the internal-usage should
/// never encounter that.
pub(crate) const fn find_from_end<'a>(
    start_index: usize,
    left: &'a str,
    right: &'a str,
    case_insensitive: bool,
) -> Option<usize> {
    find_slice(
        start_index,
        left.as_bytes(),
        right.as_bytes(),
        case_insensitive,
        false,
    )
}

/// Trims the whitespace from the left, returning the resulting str.
pub(crate) const fn trim_start<'a>(s: &'a str) -> &'a str {
    let mut i = 0;
    let mut count = 0;
    let bytes = s.as_bytes();
    while i < bytes.len() {
        if bytes[i] != b' ' {
            break;
        }
        count += 1;
        i += 1;
    }

    match str_from(s, count) {
        Some(s) => s,
        None => unreachable!(),
    }
}

/// Trims the whitespace from the right, returning the resulting str.
pub(crate) const fn trim_end<'a>(s: &'a str) -> &'a str {
    let mut i = s.len() - 1;
    let mut count = 0;
    let bytes = s.as_bytes();
    while i > 0 {
        if bytes[i] != b' ' {
            break;
        }
        count += 1;
        i -= 1;
    }

    match str_up_to(s, i + 1) {
        Some(s) => s,
        None => unreachable!(),
    }
}

/// Trims the whitespace from left and right, returning the resulting str.
pub(crate) const fn trim<'a>(s: &'a str) -> &'a str {
    let s = trim_start(s);
    trim_end(s)
}

/// Reads up to a given index, returning a subslice of the given str.
///
/// This is a hack to get subslices of a str to work in const time, since several things are not yet
/// stabilized in `const`: see [https://github.com/rust-lang/rfcs/pull/2632] and [https://github.com/rust-lang/rust/issues/66753].
pub(crate) const fn str_up_to<'a>(s: &'a str, index: usize) -> Option<&'a str> {
    let bytes = s.as_bytes();
    if index < bytes.len() {
        let (_, overflowed) = bytes.len().overflowing_sub(index);
        if overflowed {
            return None;
        }
        // SAFETY: This is safe since we check that index is within the length of bytes before
        unsafe {
            let slice = core::slice::from_raw_parts(bytes.as_ptr(), index);
            return Some(core::str::from_utf8_unchecked(slice));
        };
    }
    None
}

/// Reads from a given index, returning the remainder of the given str.
///
/// This is a hack to get subslices of a str to work in const time, since several things are not yet
/// stabilized in `const`: see [https://github.com/rust-lang/rfcs/pull/2632] and [https://github.com/rust-lang/rust/issues/66753].
pub(crate) const fn str_from<'a>(s: &'a str, index: usize) -> Option<&'a str> {
    let bytes = s.as_bytes();
    if index < bytes.len() {
        let (rem, overflowed) = bytes.len().overflowing_sub(index);
        if overflowed {
            return None;
        }
        // SAFETY: This is safe since we check that index is within the length of bytes before
        unsafe {
            let slice = core::slice::from_raw_parts(bytes.as_ptr().offset(index as _), rem);
            return Some(core::str::from_utf8_unchecked(slice));
        };
    }
    None
}

/// Reads up to a given range, returning a subslice of the given str.
///
/// This is a hack to get subslices of a str to work in const time, since several things are not yet
/// stabilized in `const`: see [https://github.com/rust-lang/rfcs/pull/2632] and [https://github.com/rust-lang/rust/issues/66753].
pub(crate) const fn str_range<'a>(s: &'a str, start: usize, end: usize) -> Option<&'a str> {
    let Some(s) = str_up_to(s, end) else {
        return None;
    };
    str_from(s, start)
}

/// Constant-time parser of help text.
///
/// A lot of credit for this goes to [`konst`](https://github.com/rodrimati1992/konst)
/// from which I have lifted a bunch of constant-time hacks to make this feasible.
#[derive(Debug, Copy, Clone)]
pub(crate) struct Parser<'a> {
    /// Help text.
    data: &'a str,
    /// Current byte index.
    current_index: usize,
}

impl<'a> Parser<'a> {
    /// Create a new parser for a help text.
    pub(crate) const fn new(data: &'a str, start_index: usize) -> Self {
        Self {
            data,
            current_index: start_index,
        }
    }

    /// Returns the internal string data of the parser.
    pub(crate) const fn data(&self) -> &'a str {
        self.data
    }

    /// Returns the remaining data in the parser.
    pub(crate) const fn remainder(&self) -> Option<&'a str> {
        str_from(self.data, self.current_index)
    }

    /// Returns the first byte of the parser if there are still chars in it.
    pub(crate) const fn first(&self) -> Option<u8> {
        self.get(self.current_index)
    }

    /// Returns the last byte of the parser if there are still chars in it.
    pub(crate) const fn last(&self) -> Option<u8> {
        self.get(self.data.as_bytes().len() - 1)
    }

    /// Returns the byte at the given index (if it exists).
    pub(crate) const fn get(&self, index: usize) -> Option<u8> {
        let bytes = self.data.as_bytes();
        if index >= bytes.len() {
            return None;
        }
        Some(bytes[index])
    }

    /// Checks if the current data starts with a given pattern.
    pub(crate) const fn starts_with(&self, pattern: &'a str) -> bool {
        debug_assert!(pattern.len() < self.data.len());

        let bytes = self.data.as_bytes();
        let pattern = pattern.as_bytes();

        let mut i = 0;
        while i < pattern.len() {
            if bytes[i + self.current_index] != pattern[i] {
                return false;
            }
            i += 1;
        }
        true
    }

    /// Checks if the current data starts with a given pattern a number of times.
    pub(crate) const fn starts_with_num(&self, pattern: &'a str, num: usize) -> bool {
        debug_assert!(pattern.len() * num < self.data.len());

        let bytes = self.data.as_bytes();
        let pattern = pattern.as_bytes();

        let mut i = 0;
        let mut count = 0;
        while count < num {
            while i < pattern.len() {
                if bytes[i + self.current_index] != pattern[i] {
                    return false;
                }
                i += 1;
            }
            count += 1;
        }
        num == count
    }

    /// Read a number of bytes from the parser.
    pub(crate) const fn read(mut self, num: usize) -> Option<(&'a str, Self)> {
        if num >= self.data.as_bytes().len() {
            return None;
        }
        match str_up_to(self.data, self.current_index + num) {
            Some(s) => {
                self.current_index += num;
                return Some((s, self));
            }
            None => None,
        }
    }

    /// Reads until a given delimiter occurs.
    pub(crate) const fn read_until(
        mut self,
        delimiter: &'a str,
        case_insensitive: bool,
    ) -> Option<(&'a str, Self)> {
        let Some(index) = find(self.current_index, self.data, delimiter, case_insensitive) else {
            return None;
        };

        match str_range(self.data, self.current_index, index) {
            Some(s) => {
                self.current_index = index;
                return Some((s, self));
            }
            None => None,
        }
    }

    /// Reads until one of the delimiters occurs, if multiple match the one with the lowest index
    /// will be the one chosen.
    pub(crate) fn read_until_either(
        mut self,
        delimiters: &[&'a str],
        case_insensitive: bool,
    ) -> Option<(&'a str, Self)> {
        let mut lowest_index = None;
        let mut i = 0;
        while i < delimiters.len() {
            let delimiter = delimiters[i];
            if let Some(index) = find(self.current_index, self.data, delimiter, case_insensitive) {
                match lowest_index {
                    Some(li) => {
                        if index < li {
                            lowest_index = Some(index);
                        }
                    }
                    None => lowest_index = Some(index),
                }
            }
            i += 1;
        }

        if let Some(index) = lowest_index {
            match str_range(self.data, self.current_index, index) {
                Some(s) => {
                    self.current_index = index;
                    return Some((s, self));
                }
                None => None,
            }
        } else {
            None
        }
    }

    /// Reads from the parser while there are whitespace characters (' ') until
    /// any character is encountered.
    pub(crate) const fn read_while_whitespace(mut self) -> Option<(&'a str, Self)> {
        let mut index = self.current_index;
        while index < self.data.len() {
            let Some(b) = self.get(index) else {
                return None;
            };
            if !b.is_ascii_whitespace() {
                break;
            }
            index += 1;
        }

        match str_range(self.data, self.current_index, index) {
            Some(s) => {
                self.current_index = index;
                return Some((s, self));
            }
            None => None,
        }
    }

    /// Reads from the parser while there are alphanumeric characters (including '-' and '_') until
    /// a non-alphanumeric character is encountered.
    pub(crate) const fn read_while_alphanumeric(mut self) -> Option<(&'a str, Self)> {
        let mut index = self.current_index;
        while index < self.data.as_bytes().len() {
            let Some(b) = self.get(index) else {
                return None;
            };
            if !b.is_ascii_alphanumeric() && b != b'-' && b != b'_' {
                break;
            }
            index += 1;
        }

        match str_range(self.data, self.current_index, index) {
            Some(s) => {
                self.current_index = index;
                return Some((s, self));
            }
            None => None,
        }
    }

    /// Skips the internal parser's current index a given number forward.
    pub(crate) const fn skip(mut self, num: usize) -> Option<Self> {
        if num >= self.data.as_bytes().len() {
            return None;
        }
        self.current_index += num;
        Some(self)
    }

    /// Skips the internal parser to before a given delimiter if it exists. Returning None
    /// if the delimiter does not exist, thus no skipping.
    pub(crate) const fn skip_until(
        mut self,
        delimiter: &'a str,
        case_insensitive: bool,
    ) -> Option<Self> {
        let Some(index) = find(self.current_index, self.data, delimiter, case_insensitive) else {
            return None;
        };
        self.current_index = index;
        Some(self)
    }

    /// Skips the internal parser to after a given delimiter if it exists. Returning None
    /// if the delimiter does not exist, thus no skipping.
    pub(crate) const fn skip_after(
        mut self,
        delimiter: &'a str,
        case_insensitive: bool,
    ) -> Option<Self> {
        let Some(index) = find(self.current_index, self.data, delimiter, case_insensitive) else {
            return None;
        };
        // TODO: no bounds check here but there should be one
        self.current_index = index + delimiter.len();
        Some(self)
    }

    /// Reads until the end of a line from the parser.
    pub(crate) const fn readline(mut self) -> Option<(&'a str, Self)> {
        self.split_once_delimiter("\n", false)
    }

    /// Splits the string in the parser, returning the result before (and not including) the delimiter
    /// and the returns the new parser state after reading skipping the delimiter.
    pub(crate) const fn split_once_delimiter(
        mut self,
        delimiter: &'a str,
        case_insensitive: bool,
    ) -> Option<(&'a str, Self)> {
        let Some(index) = find(self.current_index, self.data, delimiter, case_insensitive) else {
            return None;
        };

        // Self::str_from(self.data, index + delimiter.len()),
        match str_range(self.data, self.current_index, index) {
            Some(s) => {
                self.current_index = index + delimiter.len();
                Some((s, self))
            }
            _ => None,
        }
    }
}

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

    #[test]
    fn find() {
        assert_eq!(super::find(0, "foo-bar", "foo", false), Some(0));
        assert_eq!(super::find(0, "foo-bar", "BAR", true), Some(4));
        assert_eq!(super::find(0, "foo-foo", "foo", false), Some(0));
        assert_eq!(super::find(0, "foo-bar", "biz", false), None);
        assert_eq!(super::find(0, "fo-oof", "foo", false), None);
    }

    #[test]
    fn find_from_end() {
        assert_eq!(super::find_from_end(0, "foo-bar", "bar", false), Some(4));
        assert_eq!(super::find_from_end(0, "foo-bar", "BAR", true), Some(4));
        assert_eq!(super::find_from_end(0, "foo-bar", "biz", false), None);
        assert_eq!(super::find_from_end(0, "foo-foo", "foo", false), Some(4));
        assert_eq!(super::find_from_end(0, "fo-oof", "foo", false), None);
    }

    #[test]
    fn starts_with() {
        let mut parser = Parser::new("abc def ghi jkl", 0);
        assert_eq!(parser.starts_with("abc"), true);
        assert_eq!(parser.starts_with("def"), false);
        parser = parser.skip(4).unwrap();
        assert_eq!(parser.starts_with("def"), true);
        dbg!(parser);
        assert_eq!(parser.starts_with("abc"), false);
        assert_eq!(parser.starts_with("ghi"), false);
    }

    // #[test]
    // fn find_first_bytes() {
    //     assert_eq!(
    //         super::find_first_bytes(0, b"abcdefghjkl", b"lkjh", false),
    //         Some((b'h', 7))
    //     );
    //     assert_eq!(
    //         super::find_first_bytes(0, b"abcdefghjkl", b"mno", false),
    //         None,
    //     );
    //     assert_eq!(
    //         super::find_first_bytes(0, b"abcdefghjkl", b"D", true),
    //         Some((b'd', 3)),
    //     );
    //     assert_eq!(
    //         super::find_first_bytes(0, b"abcdefghjkl", b"a", false),
    //         Some((b'a', 0))
    //     );
    // }

    #[test]
    fn split_once_delimiter() {
        let parser = Parser::new("abc def ghi", 0);
        let (s, parser) = parser.split_once_delimiter(" ", false).unwrap();
        assert_eq!(s, "abc");
        let (s, parser) = parser.split_once_delimiter(" ", false).unwrap();
        assert_eq!(s, "def");
        assert_eq!(parser.remainder(), Some("ghi"));
    }

    #[test]
    fn read_until() {
        let parser = Parser::new("abc def ghi jkl", 0);
        let (s, parser) = parser.read_until("d", false).unwrap();
        assert_eq!(s, "abc ");
        assert_eq!(parser.remainder(), Some("def ghi jkl"));
        // does not advance parser index
        let prev_index = parser.current_index;
        let read_opt = parser.read_until("m", false);
        assert!(read_opt.is_none());
        assert_eq!(prev_index, parser.current_index);
    }

    #[test]
    fn read_until_either() {
        let parser = Parser::new("abc def ghi jkl", 0);
        let (s, parser) = parser
            .read_until_either(&["mno", "jkl", "ghi", "def"], false)
            .unwrap();
        assert_eq!(s, "abc ");
        assert_eq!(parser.remainder(), Some("def ghi jkl"));
        // does not advance parser index
        let prev_index = parser.current_index;
        let read_opt = parser.read_until("m", false);
        assert!(read_opt.is_none());
        assert_eq!(prev_index, parser.current_index);
    }

    #[test]
    fn skip() {
        let mut parser = Parser::new("abc def ghi", 0);
        parser = parser.skip(4).unwrap();
        assert_eq!(parser.remainder(), Some("def ghi"));
    }

    #[test]
    fn skip_until() {
        let mut parser = Parser::new("abc def ghi", 0);
        parser = parser.skip_until("ghi", false).unwrap();
        assert_eq!(parser.remainder(), Some("ghi"));
    }

    #[test]
    fn skip_after() {
        let mut parser = Parser::new("abc def ghi", 0);
        parser = parser.skip_after("def", false).unwrap();
        assert_eq!(parser.remainder(), Some(" ghi"));
    }

    #[test]
    fn readline() {
        let parser = Parser::new("foo\nbar\nbiz", 0);
        let (s, parser) = parser.readline().unwrap();
        assert_eq!(s, "foo");
        let (s, parser) = parser.readline().unwrap();
        assert_eq!(s, "bar");
        assert_eq!(parser.remainder(), Some("biz"));
    }

    #[test]
    fn trim() {
        let s = "   abc   ";
        assert_eq!("abc   ", super::trim_start(s));
        assert_eq!("   abc", super::trim_end(s));
        assert_eq!("abc", super::trim(s));
        let s = "  there is no spoon  ";
        assert_eq!("there is no spoon", super::trim(s));
    }
}