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
use serde::{Deserialize, Serialize};
use std::{collections::HashSet, io::Write};

#[derive(Debug, Default, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(from = "StringSequenceDef")]
#[serde(into = "StringSequenceDef")]
pub struct StringSequence(String);

impl StringSequence {
    pub fn new(items: &[String]) -> Self {
        Self::from_iter(
            items
                .iter()
                .filter(|item| !item.is_empty())
                .map(|item| item.as_str()),
        )
    }

    pub fn append(&mut self, item: &str) {
        if !item.is_empty() {
            if self.0.is_empty() {
                self.0.push_str(item);
            } else {
                self.0.reserve(1 + item.len());
                self.0.push('|');
                self.0.push_str(item);
            }
        }
    }

    pub fn with(mut self, item: &str) -> Self {
        self.append(item);
        self
    }

    pub fn parts(&self) -> impl Iterator<Item = &str> {
        self.0.split('|').filter(|chunk| !chunk.is_empty())
    }

    pub fn rparts(&self) -> impl Iterator<Item = &str> {
        self.0.rsplit('|').filter(|chunk| !chunk.is_empty())
    }

    pub fn as_slice(&self) -> StrSequence<'_> {
        StrSequence(self.0.as_str())
    }
}

impl From<&[String]> for StringSequence {
    fn from(items: &[String]) -> Self {
        Self::new(items)
    }
}

impl<'a> FromIterator<&'a str> for StringSequence {
    fn from_iter<T>(iter: T) -> Self
    where
        T: IntoIterator<Item = &'a str>,
    {
        Self(
            iter.into_iter()
                .filter(|chunk| !chunk.is_empty())
                .flat_map(|item| std::iter::once('|').chain(item.chars()))
                .skip(1)
                .collect::<String>(),
        )
    }
}

impl From<StringSequenceDef> for StringSequence {
    fn from(def: StringSequenceDef) -> Self {
        def.0.iter().map(|item| item.as_str()).collect()
    }
}

#[derive(Serialize, Deserialize)]
#[serde(transparent)]
struct StringSequenceDef(Vec<String>);

impl From<StringSequence> for StringSequenceDef {
    fn from(seq: StringSequence) -> Self {
        Self(seq.parts().map(|item| item.to_owned()).collect())
    }
}

#[derive(Debug, PartialEq, Eq, Hash)]
pub struct StrSequence<'a>(&'a str);

impl<'a> StrSequence<'a> {
    pub fn parts(&self) -> impl Iterator<Item = &str> {
        self.0.split('|').filter(|chunk| !chunk.is_empty())
    }

    pub fn rparts(&self) -> impl Iterator<Item = &str> {
        self.0.rsplit('|').filter(|chunk| !chunk.is_empty())
    }

    pub fn to_owned(&self) -> StringSequence {
        StringSequence(self.0.to_owned())
    }
}

#[derive(Default, Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct TagFilters {
    #[serde(default)]
    inclusive: bool,
    #[serde(default)]
    tags: HashSet<String>,
}

impl TagFilters {
    pub fn inclusive() -> Self {
        Self {
            inclusive: true,
            tags: Default::default(),
        }
    }

    pub fn exclusive() -> Self {
        Self {
            inclusive: false,
            tags: Default::default(),
        }
    }

    pub fn none() -> Self {
        Self::inclusive()
    }

    pub fn all() -> Self {
        Self::exclusive()
    }

    pub fn include(mut self, tag: impl ToString) -> Self {
        if self.inclusive {
            self.tags.insert(tag.to_string());
        } else {
            self.tags.remove(&tag.to_string());
        }
        self
    }

    pub fn include_range(mut self, tags: impl Iterator<Item = impl ToString>) -> Self {
        for tag in tags {
            self = self.include(tag.to_string());
        }
        self
    }

    pub fn exclude(mut self, tag: impl ToString) -> Self {
        if self.inclusive {
            self.tags.remove(&tag.to_string());
        } else {
            self.tags.insert(tag.to_string());
        }
        self
    }

    pub fn exclude_range(mut self, tags: impl Iterator<Item = impl ToString>) -> Self {
        for tag in tags {
            self = self.exclude(tag.to_string());
        }
        self
    }

    pub fn combine(mut self, other: &Self) -> Self {
        if self.inclusive == other.inclusive {
            self.tags = self.tags.union(&other.tags).cloned().collect();
        } else {
            self.tags = self.tags.difference(&other.tags).cloned().collect();
        }
        self
    }

    pub fn validate_tag(&self, tag: &str) -> bool {
        if self.inclusive {
            self.tags.contains(tag)
        } else {
            !self.tags.contains(tag)
        }
    }
}

#[derive(Clone)]
pub struct StringBuffer {
    buffer: Vec<u8>,
    level: usize,
    pub indent: usize,
    pub resize: usize,
}

impl Default for StringBuffer {
    fn default() -> Self {
        Self {
            buffer: Default::default(),
            level: 0,
            indent: 2,
            resize: 1024,
        }
    }
}

impl StringBuffer {
    pub fn push_level(&mut self) {
        self.level += 1;
    }

    pub fn pop_level(&mut self) {
        if self.level > 0 {
            self.level -= 1;
        }
    }

    pub fn level(&self) -> usize {
        self.level
    }

    pub fn write_indent(&mut self) -> std::io::Result<()> {
        if self.level > 0 && self.indent > 0 {
            let count = self.level * self.indent;
            write!(&mut self.buffer, "{:indent$}", "", indent = count)
        } else {
            Ok(())
        }
    }

    pub fn write_indented_lines<S>(&mut self, s: S) -> std::io::Result<()>
    where
        S: AsRef<str>,
    {
        for line in s.as_ref().lines() {
            if !line.is_empty() {
                self.write_new_line()?;
                self.write_str(line.trim())?;
            }
        }
        Ok(())
    }

    pub fn write_str<S>(&mut self, s: S) -> std::io::Result<()>
    where
        S: AsRef<str>,
    {
        write!(&mut self.buffer, "{}", s.as_ref())
    }

    pub fn write_new_line(&mut self) -> std::io::Result<()> {
        writeln!(&mut self.buffer)?;
        self.write_indent()
    }

    pub fn write_space(&mut self) -> std::io::Result<()> {
        write!(&mut self.buffer, " ")
    }
}

impl Write for StringBuffer {
    fn flush(&mut self) -> std::io::Result<()> {
        self.buffer.flush()
    }

    fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
        if self.resize > 0 && self.buffer.len() + buf.len() > self.buffer.capacity() {
            let count = buf.len() / self.resize + 1;
            self.buffer.reserve(self.resize * count);
        }
        self.buffer.write(buf)
    }
}

impl From<StringBuffer> for std::io::Result<String> {
    fn from(buffer: StringBuffer) -> Self {
        match String::from_utf8(buffer.buffer) {
            Ok(result) => Ok(result),
            Err(error) => Err(std::io::Error::new(std::io::ErrorKind::Other, error)),
        }
    }
}