summaryrefslogtreecommitdiff
path: root/vendor/github.com/vbauerster/mpb/v4/decor/elapsed.go
blob: ac287314391aefd61de6f6b463383294a44832f7 (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
package decor

import (
	"time"
)

// Elapsed decorator. It's wrapper of NewElapsed.
//
//	`style` one of [ET_STYLE_GO|ET_STYLE_HHMMSS|ET_STYLE_HHMM|ET_STYLE_MMSS]
//
//	`wcc` optional WC config
func Elapsed(style TimeStyle, wcc ...WC) Decorator {
	return NewElapsed(style, time.Now(), wcc...)
}

// NewElapsed returns elapsed time decorator.
//
//	`style` one of [ET_STYLE_GO|ET_STYLE_HHMMSS|ET_STYLE_HHMM|ET_STYLE_MMSS]
//
//	`startTime` start time
//
//	`wcc` optional WC config
func NewElapsed(style TimeStyle, startTime time.Time, wcc ...WC) Decorator {
	var wc WC
	for _, widthConf := range wcc {
		wc = widthConf
	}
	d := &elapsedDecorator{
		WC:        wc.Init(),
		startTime: startTime,
		producer:  chooseTimeProducer(style),
	}
	return d
}

type elapsedDecorator struct {
	WC
	startTime time.Time
	producer  func(time.Duration) string
	msg       string
}

func (d *elapsedDecorator) Decor(st *Statistics) string {
	if !st.Completed {
		d.msg = d.producer(time.Since(d.startTime))
	}
	return d.FormatMsg(d.msg)
}