]> git.scottworley.com Git - tablify/blame - src/lib.rs
Trim whitespace when parsing entries
[tablify] / src / lib.rs
CommitLineData
397ef957 1use std::collections::{HashMap, HashSet};
9dfa98b7 2use std::io::BufRead;
75bb888a
SW
3use std::iter::Iterator;
4
cc2378d5
SW
5const HEADER: &str = "<!DOCTYPE html>
6<html>
7<head>
8 <meta charset=\"utf-8\">
9 <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
10 <style>
11 /* h/t https://wabain.github.io/2019/10/13/css-rotated-table-header.html */
12 th, td { white-space: nowrap; }
13 th { text-align: left; font-weight: normal; }
14 table { border-collapse: collapse }
15 tr.key > th { height: 8em; vertical-align: bottom; line-height: 1 }
16 tr.key > th > div { width: 1em; }
17 tr.key > th > div > div { width: 5em; transform-origin: bottom left; transform: translateX(1em) rotate(-65deg) }
18 td { border: thin solid gray; }
19 td.numeric { text-align: right; }
20 td.yes { border: thin solid gray; background-color: gray; }
21 td.spacer { border: none; }
22 /* h/t https://stackoverflow.com/questions/5687035/css-bolding-some-text-without-changing-its-containers-size/46452396#46452396 */
23 .highlight { text-shadow: -0.06ex 0 black, 0.06ex 0 black; }
24 img { height: 1.2em; }
25 </style>
26 <script>
27 function highlight(id) { const e = document.getElementById(id); if (e) { e.classList.add( \"highlight\"); } }
28 function clear_highlight(id) { const e = document.getElementById(id); if (e) { e.classList.remove(\"highlight\"); } }
29 function h2(a, b) { highlight(a); highlight(b); }
30 function ch2(a, b) { clear_highlight(a); clear_highlight(b); }
31 </script>
32</head>
33<body>
34 <table>
35 <tbody>";
36const FOOTER: &str = " </tbody>
37 </table>
38</body>
39</html>";
40
14e9852b 41#[derive(Debug, PartialEq, Eq, Hash)]
e8657dff
SW
42struct Entry {
43 col: String,
b8907770 44 instance: Option<String>,
e8657dff
SW
45}
46impl From<&str> for Entry {
47 fn from(value: &str) -> Entry {
b8907770
SW
48 match value.split_once(':') {
49 None => Entry {
50 col: String::from(value),
51 instance: None,
52 },
53 Some((col, instance)) => Entry {
0d999bc3
SW
54 col: String::from(col.trim()),
55 instance: Some(String::from(instance.trim())),
b8907770 56 },
e8657dff
SW
57 }
58 }
59}
14e9852b 60
75bb888a
SW
61#[derive(Debug, PartialEq, Eq)]
62struct RowInput {
63 label: String,
14e9852b 64 entries: Vec<Entry>,
75bb888a
SW
65}
66
201b9ef3 67struct Reader<Input: Iterator<Item = Result<String, std::io::Error>>> {
8110b492 68 input: std::iter::Enumerate<Input>,
201b9ef3
SW
69 row: Option<RowInput>,
70}
71impl<Input: Iterator<Item = Result<String, std::io::Error>>> Reader<Input> {
201b9ef3 72 fn new(input: Input) -> Self {
8110b492
SW
73 Self {
74 input: input.enumerate(),
75 row: None,
76 }
201b9ef3
SW
77 }
78}
79impl<Input: Iterator<Item = Result<String, std::io::Error>>> Iterator for Reader<Input> {
80 type Item = Result<RowInput, std::io::Error>;
81 fn next(&mut self) -> Option<Self::Item> {
82 loop {
1f6bd845
SW
83 match self
84 .input
85 .next()
8110b492 86 .map(|(n, r)| (n, r.map(|line| String::from(line.trim_end()))))
1f6bd845 87 {
201b9ef3 88 None => return Ok(std::mem::take(&mut self.row)).transpose(),
8110b492
SW
89 Some((_, Err(e))) => return Some(Err(e)),
90 Some((_, Ok(line))) if line.is_empty() && self.row.is_some() => {
201b9ef3
SW
91 return Ok(std::mem::take(&mut self.row)).transpose()
92 }
8110b492
SW
93 Some((_, Ok(line))) if line.is_empty() => {}
94 Some((n, Ok(line))) if line.starts_with(' ') => match &mut self.row {
95 None => {
96 return Some(Err(std::io::Error::other(format!(
97 "{}: Entry with no header",
98 n + 1
99 ))))
100 }
e8657dff 101 Some(ref mut row) => row.entries.push(Entry::from(line.trim())),
201b9ef3 102 },
8110b492 103 Some((_, Ok(line))) => {
201b9ef3
SW
104 let prev = std::mem::take(&mut self.row);
105 self.row = Some(RowInput {
106 label: line,
107 entries: vec![],
108 });
109 if prev.is_some() {
110 return Ok(prev).transpose();
111 }
112 }
113 }
114 }
115 }
116}
117
201b9ef3
SW
118fn read_rows(input: impl std::io::Read) -> impl Iterator<Item = Result<RowInput, std::io::Error>> {
119 Reader::new(std::io::BufReader::new(input).lines())
75bb888a
SW
120}
121
58b5f36d
SW
122fn column_counts(rows: &[RowInput]) -> Vec<(usize, String)> {
123 let mut counts: Vec<_> = rows
124 .iter()
b8907770
SW
125 .flat_map(|r| {
126 r.entries
127 .iter()
128 .map(|e| &e.col)
129 .collect::<HashSet<_>>()
130 .into_iter()
131 })
132 .fold(HashMap::new(), |mut cs, col| {
133 cs.entry(String::from(col))
58b5f36d 134 .and_modify(|n| *n += 1)
f272e502 135 .or_insert(1);
58b5f36d 136 cs
f272e502 137 })
58b5f36d
SW
138 .into_iter()
139 .map(|(col, n)| (n, col))
140 .collect();
141 counts.sort();
142 counts
f272e502
SW
143}
144
4b99fb70
SW
145/// # Errors
146///
147/// Will return `Err` if
148/// * there's an i/o error while reading `input`
149/// * the log has invalid syntax:
150/// * an indented line with no preceding non-indented line
151pub fn tablify(input: impl std::io::Read) -> Result<String, std::io::Error> {
152 let rows = read_rows(input).collect::<Result<Vec<_>, _>>()?;
153 let _columns = column_counts(&rows);
cc2378d5 154 Ok(String::from(HEADER) + "Hello, world!" + FOOTER)
ece97615 155}
75bb888a
SW
156
157#[cfg(test)]
158mod tests {
159 use super::*;
160
b8907770
SW
161 #[test]
162 fn test_parse_entry() {
163 assert_eq!(
164 Entry::from("foo"),
165 Entry {
166 col: String::from("foo"),
167 instance: None
168 }
169 );
170 assert_eq!(
171 Entry::from("foo:bar"),
172 Entry {
173 col: String::from("foo"),
174 instance: Some(String::from("bar"))
175 }
176 );
0d999bc3
SW
177 assert_eq!(
178 Entry::from("foo: bar"),
179 Entry {
180 col: String::from("foo"),
181 instance: Some(String::from("bar"))
182 }
183 );
b8907770
SW
184 }
185
75bb888a
SW
186 #[test]
187 fn test_read_rows() {
188 assert_eq!(
201b9ef3 189 read_rows(&b"foo"[..]).flatten().collect::<Vec<_>>(),
75bb888a
SW
190 vec![RowInput {
191 label: String::from("foo"),
192 entries: vec![]
193 }]
194 );
9dfa98b7 195 assert_eq!(
201b9ef3 196 read_rows(&b"bar"[..]).flatten().collect::<Vec<_>>(),
9dfa98b7
SW
197 vec![RowInput {
198 label: String::from("bar"),
199 entries: vec![]
200 }]
201 );
2aa9ef94 202 assert_eq!(
201b9ef3 203 read_rows(&b"foo\nbar\n"[..]).flatten().collect::<Vec<_>>(),
2aa9ef94
SW
204 vec![
205 RowInput {
206 label: String::from("foo"),
207 entries: vec![]
208 },
209 RowInput {
210 label: String::from("bar"),
211 entries: vec![]
212 }
213 ]
214 );
201b9ef3
SW
215 assert_eq!(
216 read_rows(&b"foo\n bar\n"[..]).flatten().collect::<Vec<_>>(),
217 vec![RowInput {
218 label: String::from("foo"),
e8657dff 219 entries: vec![Entry::from("bar")]
201b9ef3
SW
220 }]
221 );
222 assert_eq!(
223 read_rows(&b"foo\n bar\n baz\n"[..])
224 .flatten()
225 .collect::<Vec<_>>(),
226 vec![RowInput {
227 label: String::from("foo"),
e8657dff 228 entries: vec![Entry::from("bar"), Entry::from("baz")]
201b9ef3
SW
229 }]
230 );
231 assert_eq!(
232 read_rows(&b"foo\n\nbar\n"[..])
233 .flatten()
234 .collect::<Vec<_>>(),
235 vec![
236 RowInput {
237 label: String::from("foo"),
238 entries: vec![]
239 },
240 RowInput {
241 label: String::from("bar"),
242 entries: vec![]
243 }
244 ]
245 );
1f6bd845
SW
246 assert_eq!(
247 read_rows(&b"foo\n \nbar\n"[..])
248 .flatten()
249 .collect::<Vec<_>>(),
250 vec![
251 RowInput {
252 label: String::from("foo"),
253 entries: vec![]
254 },
255 RowInput {
256 label: String::from("bar"),
257 entries: vec![]
258 }
259 ]
260 );
261 assert_eq!(
262 read_rows(&b"foo \n bar \n"[..])
263 .flatten()
264 .collect::<Vec<_>>(),
265 vec![RowInput {
266 label: String::from("foo"),
e8657dff 267 entries: vec![Entry::from("bar")]
1f6bd845
SW
268 }]
269 );
201b9ef3
SW
270
271 let bad = read_rows(&b" foo"[..]).next().unwrap();
272 assert!(bad.is_err());
8110b492 273 assert!(format!("{bad:?}").contains("1: Entry with no header"));
201b9ef3
SW
274
275 let bad2 = read_rows(&b"foo\n\n bar"[..]).nth(1).unwrap();
276 assert!(bad2.is_err());
8110b492 277 assert!(format!("{bad2:?}").contains("3: Entry with no header"));
75bb888a 278 }
f272e502
SW
279
280 #[test]
281 fn test_column_counts() {
282 assert_eq!(
283 column_counts(
284 &read_rows(&b"foo\n bar\n baz\n"[..])
285 .collect::<Result<Vec<_>, _>>()
286 .unwrap()
287 ),
58b5f36d 288 vec![(1, String::from("bar")), (1, String::from("baz"))]
f272e502
SW
289 );
290 assert_eq!(
291 column_counts(
292 &read_rows(&b"foo\n bar\n baz\nquux\n baz"[..])
293 .collect::<Result<Vec<_>, _>>()
294 .unwrap()
295 ),
58b5f36d 296 vec![(1, String::from("bar")), (2, String::from("baz"))]
f272e502 297 );
397ef957
SW
298 assert_eq!(
299 column_counts(
300 &read_rows(&b"foo\n bar\n bar\n baz\n bar\nquux\n baz"[..])
301 .collect::<Result<Vec<_>, _>>()
302 .unwrap()
303 ),
58b5f36d 304 vec![(1, String::from("bar")), (2, String::from("baz"))]
397ef957 305 );
b8907770
SW
306 assert_eq!(
307 column_counts(
308 &read_rows(&b"foo\n bar: 1\n bar: 2\n baz\n bar\nquux\n baz"[..])
309 .collect::<Result<Vec<_>, _>>()
310 .unwrap()
311 ),
312 vec![(1, String::from("bar")), (2, String::from("baz"))]
313 );
f272e502 314 }
75bb888a 315}