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); }
36 const FOOTER: &str = " </tbody>
41 #[derive(Debug, PartialEq, Eq, Hash)]
44 instance: Option<String>,
46 impl From<&str> for Entry {
47 fn from(value: &str) -> Entry {
48 match value.split_once(':') {
50 col: String::from(value),
53 Some((col, instance)) => Entry {
54 col: String::from(col.trim()),
55 instance: Some(String::from(instance.trim())),
61 #[derive(Debug, PartialEq, Eq)]
67 struct Reader<Input: Iterator<Item = Result<String, std::io::Error>>> {
68 input: std::iter::Enumerate<Input>,
69 row: Option<RowInput>,
71 impl<Input: Iterator<Item = Result<String, std::io::Error>>> Reader<Input> {
72 fn new(input: Input) -> Self {
74 input: input.enumerate(),
79 impl<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> {
86 .map(|(n, r)| (n, r.map(|line| String::from(line.trim_end()))))
88 None => return Ok(std::mem::take(&mut self.row)).transpose(),
89 Some((_, Err(e))) => return Some(Err(e)),
90 Some((_, Ok(line))) if line.is_empty() && self.row.is_some() => {
91 return Ok(std::mem::take(&mut self.row)).transpose()
93 Some((_, Ok(line))) if line.is_empty() => {}
94 Some((n, Ok(line))) if line.starts_with(' ') => match &mut self.row {
96 return Some(Err(std::io::Error::other(format!(
97 "{}: Entry with no header",
101 Some(ref mut row) => row.entries.push(Entry::from(line.trim())),
103 Some((_, Ok(line))) => {
104 let prev = std::mem::take(&mut self.row);
105 self.row = Some(RowInput {
110 return Ok(prev).transpose();
118 fn read_rows(input: impl std::io::Read) -> impl Iterator<Item = Result<RowInput, std::io::Error>> {
119 Reader::new(std::io::BufReader::new(input).lines())
122 fn column_counts(rows: &[RowInput]) -> Vec<(usize, String)> {
123 let mut counts: Vec<_> = rows
129 .collect::<HashSet<_>>()
132 .fold(HashMap::new(), |mut cs, col| {
133 cs.entry(String::from(col))
134 .and_modify(|n| *n += 1)
139 .map(|(col, n)| (n, col))
144 fn column_order(rows: &[RowInput]) -> Vec<String> {
151 fn render_instance(entry: &Entry) -> String {
152 match &entry.instance {
153 None => String::from("✓ "),
154 Some(instance) => String::from(instance) + " ",
158 fn render_cell(col: &str, row: &RowInput) -> String {
159 // TODO: Escape HTML special characters
160 let entries: Vec<&Entry> = row.entries.iter().filter(|e| e.col == col).collect();
161 let class = if entries.is_empty() { "" } else { "yes" };
162 let all_empty = entries.iter().all(|e| e.instance.is_none());
163 let contents = if entries.is_empty() || (all_empty && entries.len() == 1) {
165 } else if all_empty {
166 format!("{}", entries.len())
170 .map(|i| render_instance(i))
173 format!("<td class=\"{class}\">{}</td>", contents.trim())
176 fn render_row(columns: &[String], row: &RowInput) -> String {
177 // This is O(n^2) & doesn't need to be
178 // TODO: Escape HTML special characters
180 "<tr><th>{}</th>{}</tr>\n",
184 .map(|col| render_cell(col, row))
191 /// Will return `Err` if
192 /// * there's an i/o error while reading `input`
193 /// * the log has invalid syntax:
194 /// * an indented line with no preceding non-indented line
195 pub fn tablify(input: impl std::io::Read) -> Result<String, std::io::Error> {
196 let rows = read_rows(input).collect::<Result<Vec<_>, _>>()?;
197 let columns = column_order(&rows);
198 Ok(String::from(HEADER)
201 .map(|r| render_row(&columns, &r))
211 fn test_parse_entry() {
215 col: String::from("foo"),
220 Entry::from("foo:bar"),
222 col: String::from("foo"),
223 instance: Some(String::from("bar"))
227 Entry::from("foo: bar"),
229 col: String::from("foo"),
230 instance: Some(String::from("bar"))
236 fn test_read_rows() {
238 read_rows(&b"foo"[..]).flatten().collect::<Vec<_>>(),
240 label: String::from("foo"),
245 read_rows(&b"bar"[..]).flatten().collect::<Vec<_>>(),
247 label: String::from("bar"),
252 read_rows(&b"foo\nbar\n"[..]).flatten().collect::<Vec<_>>(),
255 label: String::from("foo"),
259 label: String::from("bar"),
265 read_rows(&b"foo\n bar\n"[..]).flatten().collect::<Vec<_>>(),
267 label: String::from("foo"),
268 entries: vec![Entry::from("bar")]
272 read_rows(&b"foo\n bar\n baz\n"[..])
274 .collect::<Vec<_>>(),
276 label: String::from("foo"),
277 entries: vec![Entry::from("bar"), Entry::from("baz")]
281 read_rows(&b"foo\n\nbar\n"[..])
283 .collect::<Vec<_>>(),
286 label: String::from("foo"),
290 label: String::from("bar"),
296 read_rows(&b"foo\n \nbar\n"[..])
298 .collect::<Vec<_>>(),
301 label: String::from("foo"),
305 label: String::from("bar"),
311 read_rows(&b"foo \n bar \n"[..])
313 .collect::<Vec<_>>(),
315 label: String::from("foo"),
316 entries: vec![Entry::from("bar")]
320 let bad = read_rows(&b" foo"[..]).next().unwrap();
321 assert!(bad.is_err());
322 assert!(format!("{bad:?}").contains("1: Entry with no header"));
324 let bad2 = read_rows(&b"foo\n\n bar"[..]).nth(1).unwrap();
325 assert!(bad2.is_err());
326 assert!(format!("{bad2:?}").contains("3: Entry with no header"));
330 fn test_column_counts() {
333 &read_rows(&b"foo\n bar\n baz\n"[..])
334 .collect::<Result<Vec<_>, _>>()
337 vec![(1, String::from("bar")), (1, String::from("baz"))]
341 &read_rows(&b"foo\n bar\n baz\nquux\n baz"[..])
342 .collect::<Result<Vec<_>, _>>()
345 vec![(1, String::from("bar")), (2, String::from("baz"))]
349 &read_rows(&b"foo\n bar\n bar\n baz\n bar\nquux\n baz"[..])
350 .collect::<Result<Vec<_>, _>>()
353 vec![(1, String::from("bar")), (2, String::from("baz"))]
357 &read_rows(&b"foo\n bar: 1\n bar: 2\n baz\n bar\nquux\n baz"[..])
358 .collect::<Result<Vec<_>, _>>()
361 vec![(1, String::from("bar")), (2, String::from("baz"))]
366 fn test_render_cell() {
371 label: String::from("nope"),
375 String::from("<td class=\"\"></td>")
381 label: String::from("nope"),
382 entries: vec![Entry::from("bar")]
385 String::from("<td class=\"\"></td>")
391 label: String::from("nope"),
392 entries: vec![Entry::from("foo")]
395 String::from("<td class=\"yes\"></td>")
401 label: String::from("nope"),
402 entries: vec![Entry::from("foo"), Entry::from("foo")]
405 String::from("<td class=\"yes\">2</td>")
411 label: String::from("nope"),
412 entries: vec![Entry::from("foo: 5"), Entry::from("foo: 10")]
415 String::from("<td class=\"yes\">5 10</td>")
421 label: String::from("nope"),
422 entries: vec![Entry::from("foo: 5"), Entry::from("foo")]
425 String::from("<td class=\"yes\">5 ✓</td>")