|
@@ -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) {
|