1 use std::borrow::ToOwned;
2 use std::collections::HashMap;
5 use std::iter::Iterator;
8 pub column_threshold: usize,
11 const HEADER: &str = r#"<!DOCTYPE html>
14 <meta charset="utf-8">
15 <meta name="viewport" content="width=device-width, initial-scale=1">
17 td { text-align: center; }
18 /* h/t https://wabain.github.io/2019/10/13/css-rotated-table-header.html */
19 th, td { white-space: nowrap; }
20 th { text-align: left; font-weight: normal; }
21 th.spacer_row { height: .3em; }
22 table { border-collapse: collapse }
23 tr.key > th { height: 10em; vertical-align: bottom; line-height: 1 }
24 tr.key > th > div { width: 1em; }
25 tr.key > th > div > div { width: 5em; transform-origin: bottom left; transform: translateX(1em) rotate(-65deg) }
26 td { border: thin solid gray; }
27 td.leftover { text-align: left; border: none; padding-left: .4em; }
28 td.yes { border: thin solid gray; background-color: #ddd; }
29 /* h/t https://stackoverflow.com/questions/5687035/css-bolding-some-text-without-changing-its-containers-size/46452396#46452396 */
30 .highlight { text-shadow: -0.06ex 0 black, 0.06ex 0 black; }
33 function highlight(id) { const e = document.getElementById(id); if (e) { e.classList.add( "highlight"); } }
34 function clear_highlight(id) { const e = document.getElementById(id); if (e) { e.classList.remove("highlight"); } }
35 function h2(a, b) { highlight(a); highlight(b); }
36 function ch2(a, b) { clear_highlight(a); clear_highlight(b); }
43 const FOOTER: &str = " </tbody>
48 #[derive(PartialEq, Eq, Debug)]
49 pub struct HTML(String);
51 fn escape(value: &str) -> HTML {
52 let mut escaped: String = String::new();
53 for c in value.chars() {
55 '>' => escaped.push_str(">"),
56 '<' => escaped.push_str("<"),
57 '\'' => escaped.push_str("'"),
58 '"' => escaped.push_str("""),
59 '&' => escaped.push_str("&"),
60 ok_c => escaped.push(ok_c),
66 impl From<&str> for HTML {
67 fn from(value: &str) -> HTML {
68 HTML(String::from(value))
71 impl FromIterator<HTML> for HTML {
72 fn from_iter<T>(iter: T) -> HTML
74 T: IntoIterator<Item = HTML>,
76 HTML(iter.into_iter().map(|html| html.0).collect::<String>())
79 impl std::fmt::Display for HTML {
80 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
81 write!(f, "{}", self.0)
85 #[derive(Debug, PartialEq, Eq)]
89 Entry(&'a str, Option<&'a str>),
91 impl<'a> From<&'a str> for InputLine<'a> {
92 fn from(value: &'a str) -> InputLine<'a> {
93 let trimmed = value.trim_end();
94 if trimmed.is_empty() {
96 } else if !trimmed.starts_with(' ') {
97 InputLine::RowHeader(value.trim())
99 match value.split_once(':') {
100 None => InputLine::Entry(value.trim(), None),
101 Some((col, instance)) => InputLine::Entry(col.trim(), Some(instance.trim())),
107 #[derive(Debug, PartialEq, Eq)]
110 entries: HashMap<String, Vec<Option<String>>>,
113 #[derive(Debug, PartialEq, Eq)]
119 struct Reader<Input: Iterator<Item = Result<String, std::io::Error>>> {
120 input: std::iter::Enumerate<Input>,
123 impl<Input: Iterator<Item = Result<String, std::io::Error>>> Reader<Input> {
124 fn new(input: Input) -> Self {
126 input: input.enumerate(),
131 impl<Input: Iterator<Item = Result<String, std::io::Error>>> Iterator for Reader<Input> {
132 type Item = Result<Rowlike, std::io::Error>;
133 fn next(&mut self) -> Option<Self::Item> {
135 match self.input.next() {
136 None => return Ok(std::mem::take(&mut self.row).map(Rowlike::Row)).transpose(),
137 Some((_, Err(e))) => return Some(Err(e)),
138 Some((n, Ok(line))) => match InputLine::from(line.as_ref()) {
139 InputLine::Blank if self.row.is_some() => {
140 return Ok(std::mem::take(&mut self.row).map(Rowlike::Row)).transpose()
142 InputLine::Blank => return Some(Ok(Rowlike::Spacer)),
143 InputLine::Entry(col, instance) => match &mut self.row {
145 return Some(Err(std::io::Error::other(format!(
146 "{}: Entry with no header",
150 Some(ref mut row) => {
152 .entry(col.to_owned())
153 .and_modify(|is| is.push(instance.map(ToOwned::to_owned)))
154 .or_insert_with(|| vec![instance.map(ToOwned::to_owned)]);
157 InputLine::RowHeader(row) => {
158 let prev = std::mem::take(&mut self.row);
159 self.row = Some(Row {
160 label: row.to_owned(),
161 entries: HashMap::new(),
164 return Ok(prev.map(Rowlike::Row)).transpose();
173 fn read_rows(input: impl std::io::Read) -> Result<Vec<Rowlike>, std::io::Error> {
174 Reader::new(std::io::BufReader::new(input).lines()).collect::<Result<Vec<_>, _>>()
177 fn column_counts(rows: &[Rowlike]) -> Vec<(usize, String)> {
178 let empty = HashMap::new();
179 let mut counts: Vec<_> = rows
181 .flat_map(|rl| match rl {
182 Rowlike::Row(r) => r.entries.keys(),
183 Rowlike::Spacer => empty.keys(),
185 .fold(HashMap::new(), |mut cs, col| {
186 cs.entry(col.to_owned())
187 .and_modify(|n| *n += 1)
192 .map(|(col, n)| (n, col))
194 counts.sort_unstable_by(|(an, acol), (bn, bcol)| bn.cmp(an).then(acol.cmp(bcol)));
197 fn column_order(config: &Config, rows: &[Rowlike]) -> Vec<String> {
200 .filter_map(|(n, col)| (n >= config.column_threshold).then_some(col))
204 fn render_one_instance(instance: &Option<String>) -> HTML {
206 None => HTML::from("✓"),
207 Some(instance) => HTML::escape(instance.as_ref()),
211 fn render_instances(instances: &[Option<String>]) -> HTML {
212 let all_empty = instances.iter().all(Option::is_none);
213 if all_empty && instances.len() == 1 {
215 } else if all_empty {
216 HTML(format!("{}", instances.len()))
221 .map(render_one_instance)
222 .map(|html| html.0) // Waiting for slice_concat_trait to stabilize
229 fn render_cell(col: &str, row: &mut Row) -> HTML {
230 let row_label = HTML::escape(row.label.as_ref());
231 let col_label = HTML::escape(col);
232 let instances: Option<&Vec<Option<String>>> = row.entries.get(col);
233 let class = HTML::from(if instances.is_none() { "" } else { "yes" });
234 let contents = match instances {
235 None => HTML::from(""),
236 Some(is) => render_instances(is),
238 row.entries.remove(col);
240 r#"<td class="{class}" onmouseover="h2('{row_label}','{col_label}')" onmouseout="ch2('{row_label}','{col_label}')">{contents}</td>"#
244 fn render_leftover(notcol: &str, instances: &[Option<String>]) -> HTML {
245 let label = HTML::escape(notcol);
246 let rest = render_instances(instances);
247 if rest == HTML::from("") {
248 HTML(format!("{label}"))
250 HTML(format!("{label}: {rest}"))
254 fn render_all_leftovers(row: &Row) -> HTML {
255 let mut order: Vec<_> = row.entries.keys().collect();
256 order.sort_unstable();
260 .map(|notcol| render_leftover(notcol, row.entries.get(notcol).expect("Key vanished?!")))
261 .map(|html| html.0) // Waiting for slice_concat_trait to stabilize
267 fn render_row(columns: &[String], rowlike: &mut Rowlike) -> HTML {
269 Rowlike::Spacer => HTML::from("<tr><th class=\"spacer_row\"></th></tr>\n"),
270 Rowlike::Row(row) => {
271 let row_label = HTML::escape(row.label.as_ref());
274 .map(|col| render_cell(col, row))
276 let leftovers = render_all_leftovers(row);
278 "<tr><th id=\"{row_label}\">{row_label}</th>{cells}<td class=\"leftover\" onmouseover=\"highlight('{row_label}')\" onmouseout=\"clear_highlight('{row_label}')\">{leftovers}</td></tr>\n"
284 fn render_column_headers(columns: &[String]) -> HTML {
286 String::from(r#"<tr class="key"><th></th>"#)
287 + &columns.iter().fold(String::new(), |mut acc, col| {
288 let col_header = HTML::escape(col.as_ref());
291 r#"<th id="{col_header}"><div><div>{col_header}</div></div></th>"#
302 /// Will return `Err` if
303 /// * there's an i/o error while reading `input`
304 /// * the log has invalid syntax:
305 /// * an indented line with no preceding non-indented line
306 pub fn tablify(config: &Config, input: impl std::io::Read) -> Result<HTML, std::io::Error> {
307 let rows = read_rows(input)?;
308 let columns = column_order(config, &rows);
310 "{HEADER}{}{}{FOOTER}",
311 render_column_headers(&columns),
313 .map(|mut r| render_row(&columns, &mut r))
323 fn test_parse_line() {
324 assert_eq!(InputLine::from(""), InputLine::Blank);
325 assert_eq!(InputLine::from(" "), InputLine::Blank);
326 assert_eq!(InputLine::from("foo"), InputLine::RowHeader("foo"));
327 assert_eq!(InputLine::from("foo "), InputLine::RowHeader("foo"));
328 assert_eq!(InputLine::from(" foo"), InputLine::Entry("foo", None));
330 InputLine::from(" foo:bar"),
331 InputLine::Entry("foo", Some("bar"))
334 InputLine::from(" foo: bar"),
335 InputLine::Entry("foo", Some("bar"))
338 InputLine::from(" foo: bar "),
339 InputLine::Entry("foo", Some("bar"))
342 InputLine::from(" foo: bar "),
343 InputLine::Entry("foo", Some("bar"))
346 InputLine::from(" foo : bar "),
347 InputLine::Entry("foo", Some("bar"))
352 fn test_read_rows() {
354 read_rows(&b"foo"[..]).unwrap(),
355 vec![Rowlike::Row(Row {
356 label: "foo".to_owned(),
357 entries: HashMap::new(),
361 read_rows(&b"bar"[..]).unwrap(),
362 vec![Rowlike::Row(Row {
363 label: "bar".to_owned(),
364 entries: HashMap::new(),
368 read_rows(&b"foo\nbar\n"[..]).unwrap(),
371 label: "foo".to_owned(),
372 entries: HashMap::new(),
375 label: "bar".to_owned(),
376 entries: HashMap::new(),
381 read_rows(&b"foo\n bar\n"[..]).unwrap(),
382 vec![Rowlike::Row(Row {
383 label: "foo".to_owned(),
384 entries: HashMap::from([("bar".to_owned(), vec![None])]),
388 read_rows(&b"foo\n bar\n baz\n"[..]).unwrap(),
389 vec![Rowlike::Row(Row {
390 label: "foo".to_owned(),
391 entries: HashMap::from([
392 ("bar".to_owned(), vec![None]),
393 ("baz".to_owned(), vec![None])
398 read_rows(&b"foo\n\nbar\n"[..]).unwrap(),
401 label: "foo".to_owned(),
402 entries: HashMap::new(),
405 label: "bar".to_owned(),
406 entries: HashMap::new(),
411 read_rows(&b"foo\n\n\nbar\n"[..]).unwrap(),
414 label: "foo".to_owned(),
415 entries: HashMap::new(),
419 label: "bar".to_owned(),
420 entries: HashMap::new(),
425 read_rows(&b"foo\n \nbar\n"[..]).unwrap(),
428 label: "foo".to_owned(),
429 entries: HashMap::new(),
432 label: "bar".to_owned(),
433 entries: HashMap::new(),
438 read_rows(&b"foo \n bar \n"[..]).unwrap(),
439 vec![Rowlike::Row(Row {
440 label: "foo".to_owned(),
441 entries: HashMap::from([("bar".to_owned(), vec![None])]),
445 let bad = read_rows(&b" foo"[..]);
446 assert!(bad.is_err());
447 assert!(format!("{bad:?}").contains("1: Entry with no header"));
449 let bad2 = read_rows(&b"foo\n\n bar"[..]);
450 assert!(bad2.is_err());
451 assert!(format!("{bad2:?}").contains("3: Entry with no header"));
455 fn test_column_counts() {
457 column_counts(&read_rows(&b"foo\n bar\n baz\n"[..]).unwrap()),
458 vec![(1, String::from("bar")), (1, String::from("baz"))]
461 column_counts(&read_rows(&b"foo\n bar\n baz\nquux\n baz"[..]).unwrap()),
462 vec![(2, String::from("baz")), (1, String::from("bar"))]
465 column_counts(&read_rows(&b"foo\n bar\n bar\n baz\n bar\nquux\n baz"[..]).unwrap()),
466 vec![(2, String::from("baz")), (1, String::from("bar"))]
470 &read_rows(&b"foo\n bar: 1\n bar: 2\n baz\n bar\nquux\n baz"[..]).unwrap()
472 vec![(2, String::from("baz")), (1, String::from("bar"))]
477 fn test_render_cell() {
482 label: "nope".to_owned(),
483 entries: HashMap::new(),
487 r#"<td class="" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td>"#
494 label: "nope".to_owned(),
495 entries: HashMap::from([("bar".to_owned(), vec![None])]),
499 r#"<td class="" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td>"#
506 label: "nope".to_owned(),
507 entries: HashMap::from([("foo".to_owned(), vec![None])]),
511 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td>"#
518 label: "nope".to_owned(),
519 entries: HashMap::from([("foo".to_owned(), vec![None, None])]),
523 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')">2</td>"#
530 label: "nope".to_owned(),
531 entries: HashMap::from([(
533 vec![Some("5".to_owned()), Some("10".to_owned())]
538 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')">5 10</td>"#
545 label: "nope".to_owned(),
546 entries: HashMap::from([("foo".to_owned(), vec![Some("5".to_owned()), None])]),
550 r#"<td class="yes" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')">5 ✓</td>"#
557 label: "nope".to_owned(),
558 entries: HashMap::from([("heart".to_owned(), vec![Some("<3".to_owned())])]),
562 r#"<td class="yes" onmouseover="h2('nope','heart')" onmouseout="ch2('nope','heart')"><3</td>"#
569 label: "bob's".to_owned(),
570 entries: HashMap::from([("foo".to_owned(), vec![None])]),
574 r#"<td class="yes" onmouseover="h2('bob's','foo')" onmouseout="ch2('bob's','foo')"></td>"#
578 label: "nope".to_owned(),
579 entries: HashMap::from([
580 ("foo".to_owned(), vec![None]),
581 ("baz".to_owned(), vec![None]),
584 assert_eq!(r.entries.len(), 2);
585 render_cell("foo", &mut r);
586 assert_eq!(r.entries.len(), 1);
587 render_cell("bar", &mut r);
588 assert_eq!(r.entries.len(), 1);
589 render_cell("baz", &mut r);
590 assert_eq!(r.entries.len(), 0);
594 fn test_render_leftovers() {
596 render_all_leftovers(&Row {
597 label: "nope".to_owned(),
598 entries: HashMap::from([("foo".to_owned(), vec![None])]),
603 render_all_leftovers(&Row {
604 label: "nope".to_owned(),
605 entries: HashMap::from([
606 ("foo".to_owned(), vec![None]),
607 ("bar".to_owned(), vec![None])
610 HTML::from("bar, foo")
613 render_all_leftovers(&Row {
614 label: "nope".to_owned(),
615 entries: HashMap::from([
616 ("foo".to_owned(), vec![None]),
617 ("bar".to_owned(), vec![None, None])
620 HTML::from("bar: 2, foo")
625 fn test_render_row() {
629 &mut Rowlike::Row(Row {
630 label: "nope".to_owned(),
631 entries: HashMap::from([("bar".to_owned(), vec![None])]),
635 r#"<tr><th id="nope">nope</th><td class="" onmouseover="h2('nope','foo')" onmouseout="ch2('nope','foo')"></td><td class="leftover" onmouseover="highlight('nope')" onmouseout="clear_highlight('nope')">bar</td></tr>