123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- package progress
- import (
- "fmt"
- "os"
- "strings"
- "time"
- "github.com/jmorganca/ollama/format"
- "golang.org/x/term"
- )
- type Bar struct {
- message string
- messageWidth int
- maxValue int64
- initialValue int64
- currentValue int64
- started time.Time
- stopped time.Time
- }
- func NewBar(message string, maxValue, initialValue int64) *Bar {
- return &Bar{
- message: message,
- messageWidth: -1,
- maxValue: maxValue,
- initialValue: initialValue,
- currentValue: initialValue,
- started: time.Now(),
- }
- }
- func (b *Bar) String() string {
- termWidth, _, err := term.GetSize(int(os.Stderr.Fd()))
- if err != nil {
- panic(err)
- }
- var pre, mid, suf strings.Builder
- if b.message != "" {
- message := strings.TrimSpace(b.message)
- if b.messageWidth > 0 && len(message) > b.messageWidth {
- message = message[:b.messageWidth]
- }
- fmt.Fprintf(&pre, "%s", message)
- if b.messageWidth-pre.Len() >= 0 {
- pre.WriteString(strings.Repeat(" ", b.messageWidth-pre.Len()))
- }
- pre.WriteString(" ")
- }
- fmt.Fprintf(&pre, "%.1f%% ", b.percent())
- fmt.Fprintf(&suf, "(%s/%s, %s/s, %s)",
- format.HumanBytes(b.currentValue),
- format.HumanBytes(b.maxValue),
- format.HumanBytes(int64(b.rate())),
- b.elapsed())
- mid.WriteString("[")
- // pad 3 for last = or > and "] "
- f := termWidth - pre.Len() - mid.Len() - suf.Len() - 3
- n := int(float64(f) * b.percent() / 100)
- if n > 0 {
- mid.WriteString(strings.Repeat("=", n))
- }
- if b.currentValue >= b.maxValue {
- mid.WriteString("=")
- } else {
- mid.WriteString(">")
- }
- if f-n > 0 {
- mid.WriteString(strings.Repeat(" ", f-n))
- }
- mid.WriteString("] ")
- return pre.String() + mid.String() + suf.String()
- }
- func (b *Bar) Set(value int64) {
- if value >= b.maxValue {
- value = b.maxValue
- b.stopped = time.Now()
- }
- b.currentValue = value
- }
- func (b *Bar) percent() float64 {
- if b.maxValue > 0 {
- return float64(b.currentValue) / float64(b.maxValue) * 100
- }
- return 0
- }
- func (b *Bar) rate() float64 {
- return (float64(b.currentValue) - float64(b.initialValue)) / b.elapsed().Seconds()
- }
- func (b *Bar) elapsed() time.Duration {
- stopped := b.stopped
- if stopped.IsZero() {
- stopped = time.Now()
- }
- return stopped.Sub(b.started).Round(time.Second)
- }
|