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
use crate::string::{TermGrapheme, TermString};
use std::fmt;
use unicode_segmentation::{GraphemeIndices, UnicodeSegmentation};

/// Iterator over the `TermString`'s grapheme cluster ([`TermGrapheme`])s
/// indices and over the grapheme cluster ([`TermGrapheme`])s themselves.
pub struct TermStringIndices<'tstring> {
    base: TermString,
    prev_index: usize,
    next_index: usize,
    indices: GraphemeIndices<'tstring>,
}

impl<'tstring> TermStringIndices<'tstring> {
    pub(crate) fn new(string: &'tstring TermString) -> Self {
        let mut indices = string.as_str().grapheme_indices(true);
        let prev_index =
            indices.next().map_or(string.len(), |(index, _)| index);
        let next_index = string.len();

        Self { indices, prev_index, next_index, base: string.clone() }
    }
}

impl<'tstring> Iterator for TermStringIndices<'tstring> {
    type Item = (usize, TermGrapheme);

    fn next(&mut self) -> Option<Self::Item> {
        if self.prev_index == self.next_index {
            None
        } else {
            let index =
                self.indices.next().map_or(self.next_index, |(index, _)| index);
            let start = self.base.range.start + self.prev_index;
            let end = self.base.range.start + index;
            let alloc = self.base.alloc.clone();
            let tstring = TermString { alloc, range: start .. end };
            self.prev_index = index;
            Some((tstring.range.start, TermGrapheme { tstring }))
        }
    }
}

impl<'tstring> DoubleEndedIterator for TermStringIndices<'tstring> {
    fn next_back(&mut self) -> Option<Self::Item> {
        if self.prev_index == self.next_index {
            None
        } else {
            let index = self
                .indices
                .next_back()
                .map_or(self.prev_index, |(index, _)| index);
            let start = self.base.range.start + index;
            let end = self.base.range.start + self.next_index;
            let alloc = self.base.alloc.clone();
            let tstring = TermString { alloc, range: start .. end };
            self.next_index = index;
            Some((tstring.range.start, TermGrapheme { tstring }))
        }
    }
}

impl<'tstring> fmt::Debug for TermStringIndices<'tstring> {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt.debug_struct("TermStringIndices")
            .field("base", &self.base)
            .field("prev_index", &self.prev_index)
            .field("next_index", &self.next_index)
            .finish()
    }
}

/// Iterator only over the grapheme cluster ([`TermGrapheme`])s of a
/// `TermString`.
#[derive(Debug)]
pub struct TermStringIter<'tstring> {
    inner: TermStringIndices<'tstring>,
}

impl<'tstring> Iterator for TermStringIter<'tstring> {
    type Item = TermGrapheme;

    fn next(&mut self) -> Option<Self::Item> {
        self.inner.next().map(|(_, grapheme)| grapheme)
    }
}

impl<'tstring> DoubleEndedIterator for TermStringIter<'tstring> {
    fn next_back(&mut self) -> Option<Self::Item> {
        self.inner.next_back().map(|(_, grapheme)| grapheme)
    }
}

impl<'tstring> IntoIterator for &'tstring TermString {
    type Item = TermGrapheme;
    type IntoIter = TermStringIter<'tstring>;

    fn into_iter(self) -> Self::IntoIter {
        TermStringIter { inner: self.indices() }
    }
}