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
use super::helpers::parse_label;
use super::Cursor;
use std::borrow::Cow;
use std::iter::IntoIterator;
use std::vec::IntoIter;

pub struct Test<'a> {
    pub no_label: bool,
    pub prefix: &'a str,
}

impl<'a> Test<'a> {
    pub fn new() -> Test<'a> {
        Test {
            no_label: true,
            prefix: "🌖",
        }
    }

    pub fn capture<'b>(
        &self,
        input: Cow<'b, str>,
    ) -> CaptureResult<'b> {
        let mut chunks: Vec<String> = vec![];
        let mut indices: Vec<(String, usize)> = vec![];
        let mut offset: usize = 0;

        let mut cursor = Cursor::from(input);
        let mut marker = cursor.clone();

        let prefix_len = self.prefix.chars().count();

        while !cursor.is_eof() {
            if cursor.starts_with(&self.prefix) {
                chunks.push(marker.take_until(&cursor));
                marker = cursor.clone();

                cursor.next_mut(prefix_len);

                let label = if self.no_label {
                    String::from("")
                } else {
                    parse_label(&mut cursor)
                };
                offset = offset + cursor.get_index()
                    - marker.get_index();

                indices
                    .push((label, cursor.get_index() - offset));
                marker = cursor.clone();
            } else {
                cursor.next_mut(1);
            };
        }

        chunks.push(marker.take_until(&cursor));

        let doc = chunks.concat();

        CaptureResult {
            doc: doc.into(),
            indices,
        }
    }
}

pub struct CaptureResult<'a> {
    doc: Cow<'a, str>,
    indices: Vec<(String, usize)>,
}

impl<'a> CaptureResult<'a> {
    pub fn iter(&self) -> IntoIter<Cursor<'a>> {
        self.indices
            .iter()
            .map(|index| {
                Cursor::from_string_at(
                    self.doc.clone(),
                    index.1,
                )
            })
            .collect::<Vec<Cursor>>()
            .into_iter()
    }
}

impl<'a> IntoIterator for CaptureResult<'a> {
    type Item = Cursor<'a>;
    type IntoIter = IntoIter<Self::Item>;

    fn into_iter(self) -> Self::IntoIter {
        self.indices
            .iter()
            .map(|index| {
                Cursor::from_string_at(
                    self.doc.clone(),
                    index.1,
                )
            })
            .collect::<Vec<Cursor>>()
            .into_iter()
    }
}

pub fn capture<'a>(input: Cow<'a, str>) -> CaptureResult {
    Test::new().capture(input)
}