|
| 1 | +struct Row |
| 2 | + id |
| 3 | + names::Vector{String} |
| 4 | + values::Vector{String} |
| 5 | +end |
| 6 | + |
| 7 | +struct TableMonitor |
| 8 | + sticky_messages::StickyMessages |
| 9 | + io::IO |
| 10 | + rows::Vector{Row} |
| 11 | + flushed::Vector{Bool} |
| 12 | +end |
| 13 | + |
| 14 | +TableMonitor(sticky_messages::StickyMessages, io::IO = sticky_messages.io) = |
| 15 | + TableMonitor(sticky_messages, io, [], []) |
| 16 | + |
| 17 | +function tablelines( |
| 18 | + table::TableMonitor, |
| 19 | + oldrows = nothing, |
| 20 | + tobeflushed = (); |
| 21 | + bottom_line = false, |
| 22 | +) |
| 23 | + data = permutedims(mapreduce(row -> row.values, vcat, table.rows)) |
| 24 | + highlighters = () |
| 25 | + if oldrows !== nothing |
| 26 | + data = vcat(data, permutedims(mapreduce(row -> row.values, vcat, oldrows))) |
| 27 | + right = cumsum(Int[length(row.values) for row in oldrows]) |
| 28 | + left = insert!(right[1:end-1], 1, 0) |
| 29 | + # Dim unchanged rows: |
| 30 | + highlighters = Highlighter( |
| 31 | + (data, i, j) -> i == 2 && !any(k -> left[k] < j <= right[k], tobeflushed); |
| 32 | + foreground = :dark_gray, |
| 33 | + ) |
| 34 | + end |
| 35 | + text = sprint(context = table.io) do io |
| 36 | + pretty_table( |
| 37 | + io, |
| 38 | + data, |
| 39 | + mapreduce(row -> row.names, vcat, table.rows), |
| 40 | + PrettyTableFormat(top_line = false, bottom_line = bottom_line); |
| 41 | + highlighters = highlighters, |
| 42 | + ) |
| 43 | + end |
| 44 | + return split(text, "\n") |
| 45 | +end |
| 46 | + |
| 47 | +function draw!(table::TableMonitor, oldrows = nothing, tobeflushed = ()) |
| 48 | + lines = tablelines(table, oldrows, tobeflushed) |
| 49 | + formatted = join(reverse!(lines[1:3]), "\n") # row, hline, header |
| 50 | + if oldrows !== nothing |
| 51 | + print(table.io, '\n', lines[4]) |
| 52 | + end |
| 53 | + push!(table.sticky_messages, _tablelabel => formatted; first = true) |
| 54 | +end |
| 55 | + |
| 56 | +const _tablelabel = gensym("TableMonitor") |
| 57 | + |
| 58 | +Base.push!(table::TableMonitor, (id, namedtuple)::Pair{<:Any,<:NamedTuple}) = push!( |
| 59 | + table, |
| 60 | + Row(id, collect(string.(keys(namedtuple))), collect(string.(values(namedtuple)))), |
| 61 | +) |
| 62 | + |
| 63 | +function Base.push!(table::TableMonitor, row::Row) |
| 64 | + idx = findfirst(x -> x.id == row.id, table.rows) |
| 65 | + if idx !== nothing |
| 66 | + if table.flushed[idx] |
| 67 | + tobeflushed = () |
| 68 | + oldrows = nothing |
| 69 | + table.flushed[idx] = false |
| 70 | + else |
| 71 | + tobeflushed = findall(!, table.flushed) |
| 72 | + oldrows = copy(table.rows) |
| 73 | + table.flushed .= [i != idx for i in 1:length(table.rows)] |
| 74 | + end |
| 75 | + table.rows[idx] = row |
| 76 | + draw!(table, oldrows, tobeflushed) |
| 77 | + else |
| 78 | + push!(table.flushed, false) |
| 79 | + push!(table.rows, row) |
| 80 | + draw!(table) |
| 81 | + end |
| 82 | + return table |
| 83 | +end |
| 84 | + |
| 85 | +function flush_table!(table::TableMonitor) |
| 86 | + pop!(table.sticky_messages, _tablelabel) |
| 87 | + |
| 88 | + lines = tablelines(table; bottom_line = true)[1:end-1] |
| 89 | + bottom = pop!(lines) |
| 90 | + for line in reverse!(lines) |
| 91 | + print(table.io, '\n', line) |
| 92 | + end |
| 93 | + print(table.io, '\n', bottom) |
| 94 | + |
| 95 | + fill!(table.flushed, true) |
| 96 | +end |
| 97 | + |
| 98 | +function Base.pop!(table::TableMonitor, id) |
| 99 | + idx = findfirst(x -> x.id == id, table.rows) |
| 100 | + idx === nothing && return |
| 101 | + |
| 102 | + if !table.flushed[idx] |
| 103 | + flush_table!(table) |
| 104 | + end |
| 105 | + |
| 106 | + deleteat!(table.flushed, idx) |
| 107 | + return deleteat!(table.rows, idx) |
| 108 | +end |
0 commit comments