1 use std::collections::{HashMap, HashSet};
3 use std::iter::Iterator;
5 const HEADER: &str = "<!DOCTYPE html>
8 <meta charset=\"utf-8\">
9 <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
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; }
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); }
37 const FOOTER: &str = " </tbody>
42 #[derive(Debug, PartialEq, Eq, Hash)]
45 instance: Option<String>,
47 impl From<&str> for Entry {
48 fn from(value: &str) -> Entry {
49 match value.split_once(':') {
51 col: String::from(value),
54 Some((col, instance)) => Entry {
55 col: String::from(col.trim()),
56 instance: Some(String::from(instance.trim())),
62 #[derive(Debug, PartialEq, Eq)]
68 struct Reader<Input: Iterator<Item = Result<String, std::io::Error>>> {
69 input: std::iter::Enumerate<Input>,
70 row: Option<RowInput>,
72 impl<Input: Iterator<Item = Result<String, std::io::Error>>> Reader<Input> {
73 fn new(input: Input) -> Self {
75 input: input.enumerate(),
80 impl<Input: Iterator<Item = Result<String, std::io::Error>>> Iterator for Reader<Input> {
81 type Item = Result<RowInput, std::io::Error>;
82 fn next(&mut self) -> Option<Self::Item> {
87 .map(|(n, r)| (n, r.map(|line| String::from(line.trim_end()))))
89 None => return Ok(std::mem::take(&mut self.row)).transpose(),
90 Some((_, Err(e))) => return Some(Err(e)),
91 Some((_, Ok(line))) if line.is_empty() && self.row.is_some() => {
92 return Ok(std::mem::take(&mut self.row)).transpose()
94 Some((_, Ok(line))) if line.is_empty() => {}
95 Some((n, Ok(line))) if line.starts_with(' ') => match &mut self.row {
97 return Some(Err(std::io::Error::other(format!(
98 "{}: Entry with no header",
102 Some(ref mut row) => row.entries.push(Entry::from(line.trim())),
104 Some((_, Ok(line))) => {
105 let prev = std::mem::take(&mut self.row);
106 self.row = Some(RowInput {
111 return Ok(prev).transpose();
119 fn read_rows(input: impl std::io::Read) -> impl Iterator<Item = Result<RowInput, std::io::Error>> {
120 Reader::new(std::io::BufReader::new(input).lines())
123 fn column_counts(rows: &[RowInput]) -> Vec<(usize, String)> {
124 let mut counts: Vec<_> = rows
130 .collect::<HashSet<_>>()
133 .fold(HashMap::new(), |mut cs, col| {
134 cs.entry(String::from(col))
135 .and_modify(|n| *n += 1)
140 .map(|(col, n)| (n, col))
145 fn column_order(rows: &[RowInput]) -> Vec<String> {
152 fn render_instance(entry: &Entry) -> String {
153 match &entry.instance {
154 None => String::from("✓ "),
155 Some(instance) => String::from(instance) + " ",
159 fn render_cell(col: &str, row: &RowInput) -> String {
160 // TODO: Escape HTML special characters
161 let entries: Vec<&Entry> = row.entries.iter().filter(|e| e.col == col).collect();
162 let class = if entries.is_empty() { "" } else { "yes" };
163 let all_empty = entries.iter().all(|e| e.instance.is_none());
164 let contents = if entries.is_empty() || (all_empty && entries.len() == 1) {
166 } else if all_empty {
167 format!("{}", entries.len())
171 .map(|i| render_instance(i))
174 format!("<td class=\"{class}\">{}</td>", contents.trim())
177 fn render_row(columns: &[String], row: &RowInput) -> String {
178 // This is O(n^2) & doesn't need to be
179 // TODO: Escape HTML special characters
181 "<tr><th>{}</th>{}</tr>\n",
185 .map(|col| render_cell(col, row))
190 fn render_column_headers(columns: &[String]) -> String {
191 // TODO: Escape HTML special characters
192 String::from("<th></th>")
195 .map(|c| format!("<th>{c}</th>"))
202 /// Will return `Err` if
203 /// * there's an i/o error while reading `input`
204 /// * the log has invalid syntax:
205 /// * an indented line with no preceding non-indented line
206 pub fn tablify(input: impl std::io::Read) -> Result<String, std::io::Error> {
207 let rows = read_rows(input).collect::<Result<Vec<_>, _>>()?;
208 let columns = column_order(&rows);
209 Ok(String::from(HEADER)
210 + &render_column_headers(&columns)
213 .map(|r| render_row(&columns, &r))
223 fn test_parse_entry() {
227 col: String::from("foo"),
232 Entry::from("foo:bar"),
234 col: String::from("foo"),
235 instance: Some(String::from("bar"))
239 Entry::from("foo: bar"),
241 col: String::from("foo"),
242 instance: Some(String::from("bar"))
248 fn test_read_rows() {
250 read_rows(&b"foo"[..]).flatten().collect::<Vec<_>>(),
252 label: String::from("foo"),
257 read_rows(&b"bar"[..]).flatten().collect::<Vec<_>>(),
259 label: String::from("bar"),
264 read_rows(&b"foo\nbar\n"[..]).flatten().collect::<Vec<_>>(),
267 label: String::from("foo"),
271 label: String::from("bar"),
277 read_rows(&b"foo\n bar\n"[..]).flatten().collect::<Vec<_>>(),
279 label: String::from("foo"),
280 entries: vec![Entry::from("bar")]
284 read_rows(&b"foo\n bar\n baz\n"[..])
286 .collect::<Vec<_>>(),
288 label: String::from("foo"),
289 entries: vec![Entry::from("bar"), Entry::from("baz")]
293 read_rows(&b"foo\n\nbar\n"[..])
295 .collect::<Vec<_>>(),
298 label: String::from("foo"),
302 label: String::from("bar"),
308 read_rows(&b"foo\n \nbar\n"[..])
310 .collect::<Vec<_>>(),
313 label: String::from("foo"),
317 label: String::from("bar"),
323 read_rows(&b"foo \n bar \n"[..])
325 .collect::<Vec<_>>(),
327 label: String::from("foo"),
328 entries: vec![Entry::from("bar")]
332 let bad = read_rows(&b" foo"[..]).next().unwrap();
333 assert!(bad.is_err());
334 assert!(format!("{bad:?}").contains("1: Entry with no header"));
336 let bad2 = read_rows(&b"foo\n\n bar"[..]).nth(1).unwrap();
337 assert!(bad2.is_err());
338 assert!(format!("{bad2:?}").contains("3: Entry with no header"));
342 fn test_column_counts() {
345 &read_rows(&b"foo\n bar\n baz\n"[..])
346 .collect::<Result<Vec<_>, _>>()
349 vec![(1, String::from("bar")), (1, String::from("baz"))]
353 &read_rows(&b"foo\n bar\n baz\nquux\n baz"[..])
354 .collect::<Result<Vec<_>, _>>()
357 vec![(1, String::from("bar")), (2, String::from("baz"))]
361 &read_rows(&b"foo\n bar\n bar\n baz\n bar\nquux\n baz"[..])
362 .collect::<Result<Vec<_>, _>>()
365 vec![(1, String::from("bar")), (2, String::from("baz"))]
369 &read_rows(&b"foo\n bar: 1\n bar: 2\n baz\n bar\nquux\n baz"[..])
370 .collect::<Result<Vec<_>, _>>()
373 vec![(1, String::from("bar")), (2, String::from("baz"))]
378 fn test_render_cell() {
383 label: String::from("nope"),
387 String::from("<td class=\"\"></td>")
393 label: String::from("nope"),
394 entries: vec![Entry::from("bar")]
397 String::from("<td class=\"\"></td>")
403 label: String::from("nope"),
404 entries: vec![Entry::from("foo")]
407 String::from("<td class=\"yes\"></td>")
413 label: String::from("nope"),
414 entries: vec![Entry::from("foo"), Entry::from("foo")]
417 String::from("<td class=\"yes\">2</td>")
423 label: String::from("nope"),
424 entries: vec![Entry::from("foo: 5"), Entry::from("foo: 10")]
427 String::from("<td class=\"yes\">5 10</td>")
433 label: String::from("nope"),
434 entries: vec![Entry::from("foo: 5"), Entry::from("foo")]
437 String::from("<td class=\"yes\">5 ✓</td>")