mirror of
https://github.com/ollama/ollama.git
synced 2025-05-10 18:06:33 +02:00
generate progress
This commit is contained in:
parent
1c0e092ead
commit
4dcf7a59b1
2 changed files with 37 additions and 1 deletions
|
@ -3,8 +3,12 @@ package progress
|
|||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"os"
|
||||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"golang.org/x/term"
|
||||
)
|
||||
|
||||
type State interface {
|
||||
|
@ -26,12 +30,34 @@ func NewProgress(w io.Writer) *Progress {
|
|||
return p
|
||||
}
|
||||
|
||||
func (p *Progress) Stop() {
|
||||
func (p *Progress) Stop() bool {
|
||||
if p.ticker != nil {
|
||||
p.ticker.Stop()
|
||||
p.ticker = nil
|
||||
p.render()
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
func (p *Progress) StopAndClear() bool {
|
||||
stopped := p.Stop()
|
||||
if stopped {
|
||||
termWidth, _, err := term.GetSize(int(os.Stderr.Fd()))
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
// clear the progress bar by:
|
||||
// 1. reset to beginning of line
|
||||
// 2. move up to the first line of the progress bar
|
||||
// 3. fill the terminal width with spaces
|
||||
// 4. reset to beginning of line
|
||||
fmt.Fprintf(p.w, "\r\033[%dA%s\r", p.pos, strings.Repeat(" ", termWidth))
|
||||
}
|
||||
|
||||
return stopped
|
||||
}
|
||||
|
||||
func (p *Progress) Add(key string, state State) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue