blob: 68d986f7b31102afa3275386a6c5a5897bcc9947 (
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
|
// Copyright (C) 2022-2023 Luke Shumaker <lukeshu@lukeshu.com>
//
// SPDX-License-Identifier: GPL-2.0-or-later
package textui
import (
"context"
"fmt"
"sync/atomic"
"time"
"github.com/datawire/dlib/dlog"
)
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 atomic.Value // Value[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 p.cur.Swap(val) == nil {
go p.run()
}
}
func (p *Progress[T]) Done() {
p.cancel()
<-p.done
}
func (p *Progress[T]) flush(force bool) {
//nolint:forcetypeassert // It wasn't worth it to me (yet?) to make a typed wrapper around atomic.Value.
cur := p.cur.Load().(T)
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)
}
}
}
|