-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathprogress.go
More file actions
476 lines (426 loc) · 11 KB
/
progress.go
File metadata and controls
476 lines (426 loc) · 11 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
package mpb
import (
"bytes"
"cmp"
"context"
"fmt"
"io"
"iter"
"math"
"os"
"sync"
"time"
"github.com/vbauerster/mpb/v8/cwriter"
"github.com/vbauerster/mpb/v8/decor"
)
const defaultRefreshRate = 150 * time.Millisecond
const defaultHmQueueLength = 64
// ErrDone represents use after `(*Progress).Wait()` error.
var ErrDone = fmt.Errorf("%T instance can't be reused after %[1]T.Wait()", (*Progress)(nil))
// Progress represents a container that renders one or more progress bars.
type Progress struct {
pwg, bwg *sync.WaitGroup
operateState chan func(*pState)
interceptIO chan func(io.Writer)
done <-chan struct{}
ctx context.Context
cancel func()
}
type queueBar struct {
state *bState
bar *Bar
}
// pState holds bars in its priorityQueue, it gets passed to (*Progress).serve monitor goroutine.
type pState struct {
hm heapManager
renderReq chan time.Time
idCount int
popPriority int
// following are provided/overrode by user
hmQueueLen int
reqWidth int
refreshRate time.Duration
delayRC <-chan any
manualRC <-chan any
shutdownNotifier chan any
handOverBarHeap chan<- []*Bar
queueBars map[*Bar]*queueBar
output io.Writer
debugOut io.Writer
uwg *sync.WaitGroup
popCompleted bool
autoRefresh bool
rmOnComplete bool
}
// New creates new Progress container instance. It's not possible to
// reuse instance after `(*Progress).Wait` method has been called.
func New(options ...ContainerOption) *Progress {
return NewWithContext(context.Background(), options...)
}
// NewWithContext creates new Progress container instance with provided
// context. It's not possible to reuse instance after `(*Progress).Wait`
// method has been called.
func NewWithContext(ctx context.Context, options ...ContainerOption) *Progress {
if ctx == nil {
ctx = context.Background()
}
ctx, cancel := context.WithCancel(ctx)
s := &pState{
hmQueueLen: defaultHmQueueLength,
renderReq: make(chan time.Time),
popPriority: math.MinInt32,
refreshRate: defaultRefreshRate,
queueBars: make(map[*Bar]*queueBar),
output: os.Stdout,
debugOut: io.Discard,
}
for _, opt := range options {
if opt != nil {
opt(s)
}
}
if s.shutdownNotifier == nil {
s.shutdownNotifier = make(chan any)
}
s.hm = make(heapManager, s.hmQueueLen)
p := &Progress{
pwg: new(sync.WaitGroup),
bwg: new(sync.WaitGroup),
operateState: make(chan func(*pState)),
interceptIO: make(chan func(io.Writer)),
ctx: ctx,
cancel: cancel,
}
cw := cwriter.New(s.output)
switch {
case s.manualRC != nil:
done := make(chan struct{})
p.done = done
s.autoRefresh = false
go s.manualRefreshListener(ctx, done)
case s.autoRefresh || cw.IsTerminal():
done := make(chan struct{})
p.done = done
s.autoRefresh = true
go s.autoRefreshListener(ctx, done)
default:
p.done = ctx.Done()
s.autoRefresh = false
}
p.pwg.Add(2)
go s.hm.run(p.pwg, s.shutdownNotifier, s.handOverBarHeap)
go p.serve(s, cw)
return p
}
// AddBar creates a bar with default bar filler.
func (p *Progress) AddBar(total int64, options ...BarOption) *Bar {
return p.New(total, BarStyle(), options...)
}
// AddSpinner creates a bar with default spinner filler.
func (p *Progress) AddSpinner(total int64, options ...BarOption) *Bar {
return p.New(total, SpinnerStyle(), options...)
}
// New creates a bar by calling `Build` method on provided `BarFillerBuilder`.
func (p *Progress) New(total int64, builder BarFillerBuilder, options ...BarOption) *Bar {
if builder == nil {
return p.MustAdd(total, nil, options...)
}
return p.MustAdd(total, builder.Build(), options...)
}
// MustAdd creates a bar which renders itself by provided BarFiller.
// If `total <= 0` triggering complete event by increment methods is
// disabled. Panics if called after `(*Progress).Wait()`.
func (p *Progress) MustAdd(total int64, filler BarFiller, options ...BarOption) *Bar {
bar, err := p.Add(total, filler, options...)
if err != nil {
panic(err)
}
return bar
}
// Add creates a bar which renders itself by provided BarFiller.
// If `total <= 0` triggering complete event by increment methods
// is disabled. If called after `(*Progress).Wait()` then
// `(nil, ErrDone)` is returned.
func (p *Progress) Add(total int64, filler BarFiller, options ...BarOption) (*Bar, error) {
if filler == nil {
filler = NopStyle().Build()
} else if f, ok := filler.(BarFillerFunc); ok && f == nil {
filler = NopStyle().Build()
}
ch := make(chan *Bar, 1)
select {
case p.operateState <- func(ps *pState) {
p.bwg.Add(1)
bs := ps.makeBarState(total, filler, options...)
bar := p.makeBar(bs.priority)
if bs.waitBar != nil {
ps.queueBars[bs.waitBar] = &queueBar{bs, bar}
} else {
go bar.serve(bs)
ps.hm.push(bar, true)
}
ch <- bar
}:
return <-ch, nil
case <-p.done:
return nil, ErrDone
}
}
func (p *Progress) makeBar(priority int) *Bar {
ctx, cancel := context.WithCancel(p.ctx)
bar := &Bar{
priority: priority,
frameCh: make(chan *renderFrame, 1),
operateState: make(chan func(*bState)),
bsOk: make(chan struct{}),
container: p,
ctx: ctx,
cancel: cancel,
}
return bar
}
// blocks until iteration is done
func (p *Progress) iterateBars(yield func(*Bar) bool) (ok bool) {
seqCh := make(chan iter.Seq[*Bar], 1)
select {
case p.operateState <- func(s *pState) { s.hm.iter(seqCh) }:
for b := range <-seqCh {
if !yield(b) {
break
}
}
return true
case <-p.done:
return false
}
}
// UpdateBarPriority either immediately or lazy.
// With lazy flag order is updated after the next refresh cycle.
// If you don't care about laziness just use `(*Bar).SetPriority(int)`.
func (p *Progress) UpdateBarPriority(b *Bar, priority int, lazy bool) {
if b == nil {
return
}
select {
case p.operateState <- func(s *pState) { s.hm.fix(b, priority, lazy) }:
case <-p.done:
}
}
// Write is implementation of io.Writer.
// Writing to `*Progress` will print lines above a running bar.
// Writes aren't flushed immediately, but at next refresh cycle.
// If called after `(*Progress).Wait()` then `(0, ErrDone)` is returned.
func (p *Progress) Write(b []byte) (int, error) {
type result struct {
n int
err error
}
ch := make(chan result, 1)
select {
case p.interceptIO <- func(w io.Writer) {
n, err := w.Write(b)
ch <- result{n, err}
}:
res := <-ch
return res.n, res.err
case <-p.done:
return 0, ErrDone
}
}
// Wait waits for all bars to complete and finally shutdowns container. After
// this method has been called, there is no way to reuse `*Progress` instance.
func (p *Progress) Wait() {
p.bwg.Wait()
p.Shutdown()
}
// Shutdown cancels any running bar immediately and then shutdowns `*Progress`
// instance. Normally this method shouldn't be called unless you know what you
// are doing. Proper way to shutdown is to call `(*Progress).Wait()` instead.
func (p *Progress) Shutdown() {
p.cancel()
p.pwg.Wait()
}
func (p *Progress) serve(s *pState, cw *cwriter.Writer) {
defer func() {
if s.uwg != nil {
s.uwg.Wait() // wait for user wg
}
p.bwg.Wait()
close(s.hm)
close(s.shutdownNotifier)
p.pwg.Done()
}()
var dw *cwriter.Writer
if s.delayRC != nil {
dw = cwriter.New(io.Discard)
} else {
dw = cw
}
for {
select {
case <-s.delayRC:
dw = cw
s.delayRC = nil
case op := <-p.operateState:
op(s)
case fn := <-p.interceptIO:
fn(cw)
case <-s.renderReq:
err := s.render(dw)
if err != nil {
p.cancel()
// (*pState).(autoRefreshListener|manualRefreshListener) may block
// if not depleting s.renderReq
for {
select {
case <-s.renderReq:
case <-p.done:
_, _ = fmt.Fprintln(s.debugOut, err.Error())
return
}
}
}
case <-p.done:
if s.autoRefresh && s.rmOnComplete {
if err := s.render(cw); err != nil {
_, _ = fmt.Fprintln(s.debugOut, err.Error())
}
}
return
}
}
}
func (s *pState) autoRefreshListener(ctx context.Context, done chan struct{}) {
ticker := time.NewTicker(s.refreshRate)
defer ticker.Stop()
for {
select {
case t := <-ticker.C:
s.renderReq <- t
case <-ctx.Done():
close(done)
return
}
}
}
func (s *pState) manualRefreshListener(ctx context.Context, done chan struct{}) {
for {
select {
case x := <-s.manualRC:
if t, ok := x.(time.Time); ok {
s.renderReq <- t
} else {
s.renderReq <- time.Now()
}
case <-ctx.Done():
close(done)
return
}
}
}
func (s *pState) render(cw *cwriter.Writer) (err error) {
s.hm.sync()
var width, height int
if cw.IsTerminal() {
width, height, err = cw.GetTermSize()
if err != nil {
return err
}
} else {
width = cmp.Or(s.reqWidth, 80)
height = width
}
return s.flush(cw, height, s.hm.render(width))
}
func (s *pState) flush(cw *cwriter.Writer, height int, seq iter.Seq[*Bar]) error {
var total, popCount int
var rows [][]io.Reader
s.rmOnComplete = false
for b := range seq {
frame := <-b.frameCh
if frame.err != nil {
b.cancel()
s.hm.push(b, false)
return frame.err // b.frameCh is buffered it's ok to return here
}
var discarded int
for i := len(frame.rows) - 1; i >= 0; i-- {
if total < height {
total++
} else {
_, _ = io.Copy(io.Discard, frame.rows[i]) // Found IsInBounds
discarded++
}
}
rows = append(rows, frame.rows)
switch frame.shutdown {
case 1:
if qb, ok := s.queueBars[b]; ok {
delete(s.queueBars, b)
qb.bar.priority = b.priority
go qb.bar.serve(qb.state)
s.hm.push(qb.bar, true)
} else {
switch {
case s.popCompleted && !frame.noPop:
b.priority = s.popPriority
s.popPriority++
fallthrough
case !frame.rmOnComplete:
s.hm.push(b, false)
}
s.rmOnComplete = s.rmOnComplete || frame.rmOnComplete
}
b.cancel()
case 2:
if s.popCompleted && !frame.noPop {
popCount += len(frame.rows) - discarded
continue
}
fallthrough
default:
s.hm.push(b, false)
}
}
for i := len(rows) - 1; i >= 0; i-- {
for _, r := range rows[i] {
_, err := cw.ReadFrom(r)
if err != nil {
return err
}
}
}
return cw.Flush(total - popCount)
}
func (s *pState) makeBarState(total int64, filler BarFiller, options ...BarOption) *bState {
bs := &bState{
id: s.idCount,
priority: s.idCount,
reqWidth: s.reqWidth,
total: total,
filler: filler,
renderReq: s.renderReq,
triggerComplete: total > 0,
autoRefresh: s.autoRefresh,
}
bs.extender = func(_ decor.Statistics, rows ...io.Reader) ([]io.Reader, error) {
return rows, nil
}
for _, opt := range options {
if opt != nil {
opt(bs)
}
}
for _, group := range bs.decorGroups {
for _, d := range group {
if d, ok := unwrap(d).(decor.EwmaDecorator); ok {
bs.ewmaDecorators = append(bs.ewmaDecorators, d)
}
}
}
bs.buffers[0] = bytes.NewBuffer(make([]byte, 0, 256)) // filler
bs.buffers[1] = bytes.NewBuffer(make([]byte, 0, 128)) // prepend
bs.buffers[2] = bytes.NewBuffer(make([]byte, 0, 128)) // append
s.idCount++
return bs
}