1 use std::borrow::ToOwned;
2 use std::collections::HashMap;
5 use std::iter::Iterator;
9 const HEADER: &str = r#"<!DOCTYPE html>
12 <meta charset="utf-8">
13 <meta name="viewport" content="width=device-width, initial-scale=1">
15 td { text-align: center; }
16 /* h/t https://wabain.github.io/2019/10/13/css-rotated-table-header.html */
17 th, td { white-space: nowrap; }
18 th { text-align: left; font-weight: normal; }
19 table { border-collapse: collapse }
20 tr.key > th { height: 10em; vertical-align: bottom; line-height: 1 }
21 tr.key > th > div { width: 1em; }
22 tr.key > th > div > div { width: 5em; transform-origin: bottom left; transform: translateX(1em) rotate(-65deg) }
23 td { border: thin solid gray; }
24 td.yes { border: thin solid gray; background-color: #ddd; }
25 /* h/t https://stackoverflow.com/questions/5687035/css-bolding-some-text-without-changing-its-containers-size/46452396#46452396 */
26 .highlight { text-shadow: -0.06ex 0 black, 0.06ex 0 black; }
29 function highlight(id) { const e = document.getElementById(id); if (e) { e.classList.add( "highlight"); } }
30 function clear_highlight(id) { const e = document.getElementById(id); if (e) { e.classList.remove("highlight"); } }
31 function h2(a, b) { highlight(a); highlight(b); }
32 function ch2(a, b) { clear_highlight(a); clear_highlight(b); }
39 const FOOTER: &str = " </tbody>
44 #[derive(PartialEq, Eq, Debug)]
45 pub struct HTML(String);
47 fn escape(value: &str) -> HTML {
48 let mut escaped: String = String::new();
49 for c in value.chars() {
51 '>' => escaped.push_str(">"),
52 '<' => escaped.push_str("<"),
53 '\'' => escaped.push_str("'"),
54 '"' => escaped.push_str("""),
55 '&' => escaped.push_str("&"),
56 ok_c => escaped.push(ok_c),
62 impl From<&str> for HTML {
63 fn from(value: &str) -> HTML {
64 HTML(String::from(value))
67 impl FromIterator<HTML> for HTML {
68 fn from_iter<T>(iter: T) -> HTML
70 T: IntoIterator<Item = HTML>,
72 HTML(iter.into_iter().map(|html| html.0).collect::<String>())
75 impl std::fmt::Display for HTML {
76 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
77 write!(f, "{}", self.0)
81 #[derive(Debug, PartialEq, Eq)]
85 Entry(&'a str, Option<&'a str>),
87 impl<'a> From<&'a str> for InputLine<'a> {
88 fn from(value: &'a str) -> InputLine<'a> {
89 let trimmed = value.trim_end();
90 if trimmed.is_empty() {
92 } else if !trimmed.starts_with(' ') {
93 InputLine::RowHeader(value.trim())
95 match value.split_once(':') {
96 None => InputLine::Entry(value.trim(), None),
97 Some((col, instance)) => InputLine::Entry(col.trim(), Some(instance.trim())),
103 #[derive(Debug, PartialEq, Eq)]
106 entries: HashMap<String, Vec<Option<String>>>,
109 struct Reader<Input: Iterator<Item = Result<String, std::io::Error>>> {
110 input: std::iter::Enumerate<Input>,
113 impl<Input: Iterator<Item = Result<String, std::io::Error>>> Reader<Input> {
114 fn new(input: Input) -> Self {
116 input: input.enumerate(),
121 impl<Input: Iterator<Item = Result<String, std::io::Error>>> Iterator for Reader<Input> {
122 type Item = Result<Row, std::io::Error>;
123 fn next(&mut self) -> Option<Self::Item> {
125 match self.input.next() {
126 None => return Ok(std::mem::take(&mut self.row)).transpose(),
127 Some((_, Err(e))) => return Some(Err(e)),
128 Some((n, Ok(line))) => match InputLine::from(line.as_ref()) {
129 InputLine::Blank if self.row.is_some() => {
130 return Ok(std::mem::take(&mut self.row)).transpose()
132 InputLine::Blank => {}
133 InputLine::Entry(col, instance) => match &mut self.row {
135 return Some(Err(std::io::Error::other(format!(
136 "{}: Entry with no header",
140 Some(ref mut row) => {
142 .entry(col.to_owned())
143 .and_modify(|is| is.push(instance.map(ToOwned::to_owned)))
144 .or_insert_with(|| vec![instance.map(ToOwned::to_owned)]);
147 InputLine::RowHeader(row) => {
148 let prev = std::mem::take(&mut self.row);
149 self.row = Some(Row {
150 label: row.to_owned(),
151 entries: HashMap::new(),
154 return Ok(prev).transpose();
163 fn read_rows(input: impl std::io::Read) -> impl Iterator<Item = Result<Row, std::io::Error>> {
164 Reader::new(std::io::BufReader::new(input).lines())
167 fn column_counts(rows: &[Row]) -> Vec<(usize, String)> {
168 let mut counts: Vec<_> = rows
170 .flat_map(|r| r.entries.keys())
171 .fold(HashMap::new(), |mut cs, col| {
172 cs.entry(col.to_owned())
173 .and_modify(|n| *n += 1)
178 .map(|(col, n)| (n, col))
180 counts.sort_unstable_by(|(an, acol), (bn, bcol)| bn.cmp(an).then(acol.cmp(bcol)));
183 fn column_order(rows: &[Row]) -> Vec<String> {
190 fn render_one_instance(instance: &Option<String>) -> HTML {
192 None => HTML::from("✓"),
193 Some(instance) => HTML::escape(instance.as_ref()),
197 fn render_instances(instances: &[Option<String>]) -> HTML {
198 let all_empty = instances.iter().all(Option::is_none);
199 if all_empty && instances.len() == 1 {
201 } else if all_empty {
202 HTML(format!("{}", instances.len()))
207 .map(render_one_instance)
208 .map(|html| html.0) // Waiting for slice_concat_trait to stabilize
215 fn render_cell(col: &str, row: &mut Row) -> HTML {
216 let row_label = HTML::escape(row.label.as_ref());
217 let col_label = HTML::escape(col);
218 let instances: Option<&Vec<Option<String>>> = row.entries.get(col);
219 let class = HTML::from(if instances.is_none() { "" } else { "yes" });
220 let contents = match instances {
221 None => HTML::from(""),
222 Some(is) => render_instances(is),
224 row.entries.remove(col);
226 r#"<td class="{class}" onmouseover="h2('{row_label}','{col_label}')" onmouseout="ch2('{row_label}','{col_label}')">{contents}</td>"#
230 fn render_row(columns: &[String], row: &mut Row) -> HTML {
231 let row_label = HTML::escape(row.label.as_ref());
234 .map(|col| render_cell(col, row))
237 "<tr><th id=\"{row_label}\">{row_label}</th>{cells}</tr>\n"
241 fn render_column_headers(columns: &[String]) -> HTML {
243 String::from(r#"<tr class="key"><th></th>"#)
244 + &columns.iter().fold(String::new(), |mut acc, col| {
245 let col_header = HTML::escape(col.as_ref());
248 r#"<th id="{col_header}"><div><div>{col_header}</div></div></th>"#
259 /// Will return `Err` if
260 /// * there's an i/o error while reading `input`
261 /// * the log has invalid syntax:
262 /// * an indented line with no preceding non-indented line
263 pub fn tablify(config: &Config, input: impl std::io::Read) -> Result<HTML, std::io::Error> {
264 let rows = read_rows(input).collect::<Result<Vec<_>, _>>()?;
265 let columns = column_order(&rows);
267 "{HEADER}{}{}{FOOTER}",
268 render_column_headers(&columns),
270 .map(|mut r| render_row(&columns, &mut r))
280 fn test_parse_line() {
281 assert_eq!(InputLine::from(""), InputLine::Blank);
282 assert_eq!(InputLine::from(" "), InputLine::Blank);
283 assert_eq!(InputLine::from("foo"), InputLine::RowHeader("foo"));
284 assert_eq!(InputLine::from("foo "), InputLine::RowHeader("foo"));
285 assert_eq!(InputLine::from(" foo"), InputLine::Entry("foo", None));
287 InputLine::from(" foo:bar"),
288 InputLine::Entry("foo", Some("bar"))
291 InputLine::from(" foo: bar"),
292 InputLine::Entry("foo", Some("bar"))
295 InputLine::from(" foo: bar "),
296 InputLine::Entry("foo", Some("bar"))
299 InputLine::from(" foo: bar "),
300 InputLine::Entry("foo", Some("bar"))
303 InputLine::from(" foo : bar "),
304 InputLine::Entry("foo", Some("bar"))
309 fn test_read_rows() {
311 read_rows(&b"foo"[..]).flatten().collect::<Vec<_>>(),
313 label: "foo".to_owned(),
314 entries: HashMap::new(),
318 read_rows(&b"bar"[..]).flatten().collect::<Vec<_>>(),
320 label: "bar".to_owned(),
321 entries: HashMap::new(),
325 read_rows(&b"foo\nbar\n"[..]).flatten().collect::<Vec<_>>(),
328 label: "foo".to_owned(),
329 entries: HashMap::new(),
332 label: "bar".to_owned(),
333 entries: HashMap::new(),
338 read_rows(&b"foo\n bar\n"[..]).flatten().collect::<Vec<_>>(),
340 label: "foo".to_owned(),
341 entries: HashMap::from([("bar".to_owned(), vec![None])]),
345 read_rows(&b"foo\n bar\n baz\n"[..])
347 .collect::<Vec<_>>(),
349 label: "foo".to_owned(),
350 entries: HashMap::from([
351 ("bar".to_owned(), vec![None]),
352 ("baz".to_owned(), vec![None])
357 read_rows(&b"foo\n\nbar\n"[..])
359 .collect::<Vec<_>>(),
362 label: "foo".to_owned(),
363 entries: HashMap::new(),
366 label: "bar".to_owned(),
367 entries: HashMap::new(),
372 read_rows(&b"foo\n \nbar\n"[..])
374 .collect::<Vec<_>>(),
377 label: "foo".to_owned(),
378 entries: HashMap::new(),
381 label: "bar".to_owned(),
382 entries: HashMap::new(),
387 read_rows(&b"foo \n bar \n"[..])
389 .collect::<Vec<_>>(),
391 label: "foo".to_owned(),
392 entries: HashMap::from([("bar".to_owned(), vec![None])]),
396 let bad = read_rows(&b" foo"[..]).next().unwrap();
397 assert!(bad.is_err());
398 assert!(format!("{bad:?}").contains("1: Entry with no header"));
400 let bad2 = read_rows(&b"foo\n\n bar"[..]).nth(1).unwrap();
401 assert!(bad2.is_err());
402 assert!(format!("{bad2:?}").contains("3: Entry with no header"));
406 fn test_column_counts() {
409 &read_rows(&b"foo\n bar\n baz\n"[..])
410 .collect::<Result<Vec<_>, _>>()
413 vec![(1, String::from("bar")), (1, String::from("baz"))]
417 &read_rows(&b"foo\n bar\n baz\nquux\n baz"[..])
418 .collect::<Result<Vec<_>, _>>()
421 vec![(2, String::from("baz")), (1, String::from("bar"))]
425 &read_rows(&b"foo\n bar\n bar\n baz\n bar\nquux\n baz"[..])
426 .collect::<Result<Vec<_>, _>>()
429 vec![(2, String::from("baz")), (1, String::from("bar"))]
433 &read_rows(&b"foo\n bar: 1\n bar: 2\n baz\n bar\nquux\n baz"[..])
434 .collect::<Result<Vec<_>, _>>()
437 vec![(2, String::from("baz")), (1, String::from("bar"))]
442 fn test_render_cell() {
447 label: "nope".to_owned(),
448 entries: HashMap::new(),
452 r#"<td class="" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td>"#
459 label: "nope".to_owned(),
460 entries: HashMap::from([("bar".to_owned(), vec![None])]),
464 r#"<td class="" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td>"#
471 label: "nope".to_owned(),
472 entries: HashMap::from([("foo".to_owned(), vec![None])]),
476 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td>"#
483 label: "nope".to_owned(),
484 entries: HashMap::from([("foo".to_owned(), vec![None, None])]),
488 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')">2</td>"#
495 label: "nope".to_owned(),
496 entries: HashMap::from([(
498 vec![Some("5".to_owned()), Some("10".to_owned())]
503 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')">5 10</td>"#
510 label: "nope".to_owned(),
511 entries: HashMap::from([("foo".to_owned(), vec![Some("5".to_owned()), None])]),
515 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')">5 ✓</td>"#
522 label: "nope".to_owned(),
523 entries: HashMap::from([("heart".to_owned(), vec![Some("<3".to_owned())])]),
527 r#"<td class="yes" onmouseover="h2('nope','heart')" onmouseout="ch2('nope','heart')"><3</td>"#
534 label: "bob's".to_owned(),
535 entries: HashMap::from([("foo".to_owned(), vec![None])]),
539 r#"<td class="yes" onmouseover="h2('bob's','foo')" onmouseout="ch2('bob's','foo')"></td>"#
543 label: "nope".to_owned(),
544 entries: HashMap::from([
545 ("foo".to_owned(), vec![None]),
546 ("baz".to_owned(), vec![None]),
549 assert_eq!(r.entries.len(), 2);
550 render_cell("foo", &mut r);
551 assert_eq!(r.entries.len(), 1);
552 render_cell("bar", &mut r);
553 assert_eq!(r.entries.len(), 1);
554 render_cell("baz", &mut r);
555 assert_eq!(r.entries.len(), 0);
559 fn test_render_row() {
564 label: "nope".to_owned(),
565 entries: HashMap::from([("bar".to_owned(), vec![None])]),
569 r#"<tr><th id="nope">nope</th><td class="" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td></tr>