summaryrefslogtreecommitdiff
path: root/dhall_core/src/text.rs
blob: 2a468d2c13f09c3b93d3180a353dd1eeac4b501e (plain)
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
use crate::*;
use std::iter::FromIterator;
use std::ops::Add;
use std::rc::Rc;

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct InterpolatedText<Note, Embed> {
    head: String,
    tail: Vec<(Rc<Expr<Note, Embed>>, String)>,
}

impl<N, E> From<(String, Vec<(Rc<Expr<N, E>>, String)>)>
    for InterpolatedText<N, E>
{
    fn from(x: (String, Vec<(Rc<Expr<N, E>>, String)>)) -> Self {
        InterpolatedText {
            head: x.0,
            tail: x.1,
        }
    }
}

impl<N, E> From<String> for InterpolatedText<N, E> {
    fn from(s: String) -> Self {
        InterpolatedText {
            head: s,
            tail: vec![],
        }
    }
}

#[derive(Debug, Clone)]
pub enum InterpolatedTextContents<Note, Embed> {
    Text(String),
    Expr(SubExpr<Note, Embed>),
}

impl<N, E> InterpolatedText<N, E> {
    pub fn map<N2, E2, F>(&self, mut f: F) -> InterpolatedText<N2, E2>
    where
        F: FnMut(&Rc<Expr<N, E>>) -> Rc<Expr<N2, E2>>,
    {
        InterpolatedText {
            head: self.head.clone(),
            tail: self.tail.iter().map(|(e, s)| (f(e), s.clone())).collect(),
        }
    }

    pub fn iter<'a>(
        &'a self,
    ) -> impl Iterator<Item = InterpolatedTextContents<N, E>> + 'a {
        use std::iter::once;
        once(InterpolatedTextContents::Text(self.head.clone())).chain(
            self.tail.iter().flat_map(|(e, s)| {
                once(InterpolatedTextContents::Expr(Rc::clone(e)))
                    .chain(once(InterpolatedTextContents::Text(s.clone())))
            }),
        )
    }
}

impl<'a, N: 'a, E: 'a> FromIterator<InterpolatedTextContents<N, E>>
    for InterpolatedText<N, E>
{
    fn from_iter<T>(iter: T) -> Self
    where
        T: IntoIterator<Item = InterpolatedTextContents<N, E>>,
    {
        let mut res = InterpolatedText {
            head: "".to_owned(),
            tail: vec![],
        };
        let mut crnt_str = &mut res.head;
        for x in iter.into_iter() {
            match x {
                InterpolatedTextContents::Text(s) => crnt_str.push_str(&s),
                InterpolatedTextContents::Expr(e) => {
                    res.tail.push((e.clone(), "".to_owned()));
                    crnt_str = &mut res.tail.last_mut().unwrap().1;
                }
            }
        }
        res
    }
}

impl<N, E> Add for &InterpolatedText<N, E> {
    type Output = InterpolatedText<N, E>;
    fn add(self, rhs: &InterpolatedText<N, E>) -> Self::Output {
        self.iter().chain(rhs.iter()).collect()
    }
}