-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpbar.go
82 lines (74 loc) · 2.1 KB
/
pbar.go
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
package PPM
import (
"fmt"
"time"
)
// 进度条
const outputEvery = 0.005
type Pbar struct {
startTime time.Time
total int
lastPrint int
now int
}
func (p *Pbar) Init(num int) {
p.total = num
p.startTime = time.Now()
p.lastPrint = 0
p.now = 0
}
var tttt = 0
func (p *Pbar) Step(now int, newline bool) {
p.now = now
if float64(now-p.lastPrint) >= outputEvery*float64(p.total) {
if p.lastPrint == 0 {
newline = true
}
p.lastPrint = now
if newline {
tttt++
fmt.Printf("\n%c progress: %3.1f%% (%3d/%3d), used %4.2fs, eta %4.2fs, speed %4.2f/s",
"|/-\\"[tttt&3],
float64(now)/float64(p.total)*100, now, p.total,
time.Now().Sub(p.startTime).Seconds(),
float64(p.total-now)*(time.Now().Sub(p.startTime).Seconds()/float64(now)),
float64(now)/time.Now().Sub(p.startTime).Seconds())
} else {
tttt++
fmt.Printf("\r%c progress: %3.1f%% (%3d/%3d), used %4.2fs, eta %4.2fs, speed %4.2f/s",
"|/-\\"[tttt&3],
float64(now)/float64(p.total)*100, now, p.total,
time.Now().Sub(p.startTime).Seconds(),
float64(p.total-now)*(time.Now().Sub(p.startTime).Seconds()/float64(now)),
float64(now)/time.Now().Sub(p.startTime).Seconds())
}
}
}
func (p *Pbar) Tick() {
p.now++
now := p.now
newline := false
if float64(now-p.lastPrint) >= outputEvery*float64(p.total) {
if p.lastPrint == 0 {
newline = true
}
p.lastPrint = now
if newline {
tttt++
fmt.Printf("\n%c progress: %3.1f%% (%3d/%3d), used %4.2fs, eta %4.2fs, speed %4.2f/s",
"|/-\\"[tttt&3],
float64(now)/float64(p.total)*100, now, p.total,
time.Now().Sub(p.startTime).Seconds(),
float64(p.total-now)*(time.Now().Sub(p.startTime).Seconds()/float64(now)),
float64(now)/time.Now().Sub(p.startTime).Seconds())
} else {
tttt++
fmt.Printf("\r%c progress: %3.1f%% (%3d/%3d), used %4.2fs, eta %4.2fs, speed %4.2f/s",
"|/-\\"[tttt&3],
float64(now)/float64(p.total)*100, now, p.total,
time.Now().Sub(p.startTime).Seconds(),
float64(p.total-now)*(time.Now().Sub(p.startTime).Seconds()/float64(now)),
float64(now)/time.Now().Sub(p.startTime).Seconds())
}
}
}