blob: 1a5e7d8955df81a0c0b3718be56fd1127ec8cfea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// Copyright (C) 2022-2023 Luke Shumaker <lukeshu@lukeshu.com>
//
// SPDX-License-Identifier: GPL-2.0-or-later
package textui
import (
"context"
"fmt"
"time"
"github.com/datawire/dlib/dlog"
"git.lukeshu.com/btrfs-progs-ng/lib/containers"
)
type Stats interface {
comparable
fmt.Stringer
}
type Progress[T Stats] struct {
ctx context.Context //nolint:containedctx // captured for separate goroutine
lvl dlog.LogLevel
interval time.Duration
cancel context.CancelFunc
done chan struct{}
cur containers.SyncValue[T]
oldStat T
oldLine string
}
func NewProgress[T Stats](ctx context.Context, lvl dlog.LogLevel, interval time.Duration) *Progress[T] {
ctx, cancel := context.WithCancel(ctx)
ret := &Progress[T]{
ctx: ctx,
lvl: lvl,
interval: interval,
cancel: cancel,
done: make(chan struct{}),
}
return ret
}
func (p *Progress[T]) Set(val T) {
if _, hadOld := p.cur.Swap(val); !hadOld {
go p.run()
}
}
func (p *Progress[T]) Done() {
p.cancel()
<-p.done
}
func (p *Progress[T]) flush(force bool) {
cur, ok := p.cur.Load()
if !ok {
panic("should not happen")
}
if !force && cur == p.oldStat {
return
}
defer func() { p.oldStat = cur }()
line := cur.String()
if !force && line == p.oldLine {
return
}
defer func() { p.oldLine = line }()
dlog.Log(p.ctx, p.lvl, line)
}
func (p *Progress[T]) run() {
p.flush(true)
ticker := time.NewTicker(p.interval)
for {
select {
case <-p.ctx.Done():
ticker.Stop()
p.flush(false)
close(p.done)
return
case <-ticker.C:
p.flush(false)
}
}
}
|