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
//! Converter traits for things that can be converted into tokens.

use super::{Item, Lang, Tokens};
use std::rc::Rc;

/// Helper trait to convert something into tokens.
pub trait FormatTokens<L>
where
    L: Lang,
{
    /// Convert the type into tokens.
    fn format_tokens(self, tokens: &mut Tokens<L>);

    /// Convert into tokens.
    fn into_tokens(self) -> Tokens<L>
    where
        Self: Sized,
    {
        let mut tokens = Tokens::new();
        self.format_tokens(&mut tokens);
        tokens
    }

    /// Hint to test if we are empty.
    fn is_empty(&self) -> bool {
        false
    }
}

impl<L> FormatTokens<L> for Tokens<L>
where
    L: Lang,
{
    fn format_tokens(self, tokens: &mut Self) {
        tokens.extend(self);
    }

    fn is_empty(&self) -> bool {
        Tokens::is_empty(self)
    }
}

impl<'a, L> FormatTokens<L> for &'a Tokens<L>
where
    L: Lang,
{
    fn format_tokens(self, tokens: &mut Tokens<L>) {
        tokens.extend(self.iter().cloned());
    }

    fn is_empty(&self) -> bool {
        Tokens::is_empty(*self)
    }
}

/// Convert collection to tokens.
impl<L> FormatTokens<L> for Vec<Tokens<L>>
where
    L: Lang,
{
    fn format_tokens(self, tokens: &mut Tokens<L>) {
        for t in self {
            tokens.extend(t);
        }
    }

    fn is_empty(&self) -> bool {
        self.iter().all(|t| t.is_empty())
    }
}

/// Convert element to tokens.
impl<L> FormatTokens<L> for Item<L>
where
    L: Lang,
{
    fn format_tokens(self, tokens: &mut Tokens<L>) {
        tokens.push_item(self);
    }
}

/// Convert borrowed strings.
impl<'a, L> FormatTokens<L> for &'a str
where
    L: Lang,
{
    fn format_tokens(self, tokens: &mut Tokens<L>) {
        tokens.push_item(self.to_string().into());
    }
}

/// Convert borrowed strings.
impl<'a, L> FormatTokens<L> for &'a String
where
    L: Lang,
{
    fn format_tokens(self, tokens: &mut Tokens<L>) {
        tokens.push_item(self.clone().into());
    }
}

/// Convert strings.
impl<L> FormatTokens<L> for String
where
    L: Lang,
{
    fn format_tokens(self, tokens: &mut Tokens<L>) {
        tokens.push_item(self.into());
    }
}

/// Convert refcounted strings.
impl<L> FormatTokens<L> for Rc<String>
where
    L: Lang,
{
    fn format_tokens(self, tokens: &mut Tokens<L>) {
        tokens.push_item(self.into());
    }
}

/// Convert reference to refcounted strings.
impl<'a, L> FormatTokens<L> for &'a Rc<String>
where
    L: Lang,
{
    fn format_tokens(self, tokens: &mut Tokens<L>) {
        tokens.push_item(self.clone().into());
    }
}

/// Convert stringy things.
impl<L, T> FormatTokens<L> for Option<T>
where
    L: Lang,
    T: FormatTokens<L>,
{
    fn format_tokens(self, tokens: &mut Tokens<L>) {
        if let Some(inner) = self {
            inner.format_tokens(tokens);
        }
    }
}

/// Unit implementation of format tokens. Does nothing.
impl<L> FormatTokens<L> for ()
where
    L: Lang,
{
    #[inline]
    fn format_tokens(self, _: &mut Tokens<L>) {}
}

macro_rules! impl_display {
    ($($ty:ty),*) => {
        $(
            impl<L> FormatTokens<L> for $ty
            where
                L: Lang,
            {
                fn format_tokens(self, tokens: &mut Tokens<L>) {
                    tokens.append(self.to_string());
                }
            }
        )*
    };
}

impl_display!(u8, u16, u32, u64, u128, i8, i16, i32, i64, i128);