-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogressBar.go
161 lines (140 loc) · 4.53 KB
/
progressBar.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package main
import (
"time"
"github.com/vbauerster/mpb/v8"
"github.com/vbauerster/mpb/v8/decor"
)
func (j *Job) newProgressWithCtx() *mpb.Progress {
return mpb.NewWithContext(
j.ctx,
RefreshRate,
)
}
// newWritingBar 写入进度条
func (j *Job) newWritingBar() *mpb.Bar {
bar := j.progress.New(int64(j.size),
BarStyleMain,
mpb.PrependDecorators(
decor.OnComplete(decor.Name("Writing: "), "Written: "),
decor.OnComplete(decor.CountersKibiByte("% .2f / % .2f"), FormatBytes(j.size)),
decor.OnComplete(decor.NewPercentage(" [%.1f]"), ""),
),
)
bar.SetPriority(0)
return bar
}
// newTotalBar 总下载进度条
func (j *Job) newTotalBar() *mpb.Bar {
bar := j.progress.New(int64(len(j.Blocks)),
BarStyleMain,
mpb.PrependDecorators(
Spinner,
ETA,
),
)
bar.SetPriority(1)
return bar
}
// newThreadBar 线程进度条
func (j *Job) newThreadBar(block *Block) *mpb.Bar {
bar := j.progress.New(int64(block.end-block.start+1),
BarStyleSecondary,
mpb.AppendDecorators(
decor.NewPercentage("%.1f"),
),
mpb.BarRemoveOnComplete(),
)
bar.SetPriority(2 + block.index)
return bar
}
// newUnknownSizeBar 未知文件大小进度条
func (j *Job) newUnknownSizeBar() *mpb.Bar {
bar := j.progress.New(0,
BarStyleMain,
mpb.PrependDecorators(
Spinner,
),
)
return bar
}
var RefreshRate = mpb.WithRefreshRate(100 * time.Millisecond)
var BarStyleMain = mpb.BarStyle().Lbound("⡇").Filler("⣿").Rbound("⢸").Tip("⡇", "⣇", "⡧", "⡗", "⡏").Padding("+")
var BarStyleSecondary = mpb.BarStyle().Lbound("[").Filler("=").Rbound("]").Tip(">").Padding(" ")
var Spinner = decor.OnComplete(SpinnerProgress, SpinnerComplete)
var ETA = decor.OnComplete(decor.AverageETA(decor.ET_STYLE_GO, decor.WC{C: decor.DextraSpace}), "DONE") // with Bar.EwmaIncrement
var SpinnerComplete = "⣏⣹"
var SpinnerProgress = decor.Spinner(Spinners)
var Spinners = []string{
`⠁⠀`,
`⠈⠁`, `⠀⠙`, `⠀⢸`, `⢀⣰`, `⣄⣠`,
`⣇⣀`, `⣏⡁`, `⣏⠙`, `⡏⢹`, `⢏⣹`,
`⣏⣹`,
`⣏⣩`, `⣏⡙`, `⡏⠹`, `⠋⢹`, `⠈⣹`,
`⢀⣸`, `⣀⣠`, `⣄⡀`, `⡆⠀`, `⠃⠀`,
`⠈⠀`,
`⠀⠉`, `⠀⠸`, `⠀⣰`, `⣀⣠`, `⣆⣀`,
`⣏⡀`, `⣏⠉`, `⡏⠹`, `⠏⣹`, `⣋⣹`,
`⣏⣹`,
`⣏⣙`, `⣏⠹`, `⠏⢹`, `⠉⣹`, `⢀⣹`,
`⣀⣰`, `⣄⣀`, `⣆⠀`, `⠇⠀`, `⠉⠀`,
`⠀⠁`,
`⠀⠘`, `⠀⢰`, `⢀⣠`, `⣄⣀`, `⣇⡀`,
`⣏⠁`, `⡏⠙`, `⠏⢹`, `⢋⣹`, `⣍⣹`,
`⣏⣹`,
`⣏⡹`, `⡏⢹`, `⠋⣹`, `⢈⣹`, `⣀⣸`,
`⣄⣠`, `⣆⡀`, `⡇⠀`, `⠋⠀`, `⠈⠁`,
`⠀⠈`,
`⠀⠰`, `⠀⣠`, `⣀⣀`, `⣆⡀`, `⣏⠀`,
`⡏⠉`, `⠏⠹`, `⠋⣹`, `⣉⣹`, `⣎⣹`,
`⣏⣹`,
`⣏⢹`, `⠏⣹`, `⢉⣹`, `⣀⣹`, `⣄⣰`,
`⣆⣀`, `⣇⠀`, `⠏⠀`, `⠉⠁`, `⠀⠉`,
`⠀⠐`,
`⠀⢠`, `⢀⣀`, `⣄⡀`, `⣇⠀`, `⡏⠁`,
`⠏⠙`, `⠋⢹`, `⢉⣹`, `⣌⣹`, `⣇⣹`,
`⣏⣹`,
`⡏⣹`, `⢋⣹`, `⣈⣹`, `⣄⣸`, `⣆⣠`,
`⣇⡀`, `⡏⠀`, `⠋⠁`, `⠈⠉`, `⠀⠘`,
`⠀⠠`,
`⠀⣀`, `⣀⡀`, `⣆⠀`, `⡏⠀`, `⠏⠉`,
`⠋⠹`, `⠉⣹`, `⣈⣹`, `⣆⣹`, `⣏⣸`,
`⣏⣹`,
`⢏⣹`, `⣉⣹`, `⣄⣹`, `⣆⣰`, `⣇⣀`,
`⣏⠀`, `⠏⠁`, `⠉⠉`, `⠀⠙`, `⠀⠰`,
`⠀⢀`,
`⢀⡀`, `⣄⠀`, `⡇⠀`, `⠏⠁`, `⠋⠙`,
`⠉⢹`, `⢈⣹`, `⣄⣹`, `⣇⣸`, `⣏⣱`,
`⣏⣹`,
`⣋⣹`, `⣌⣹`, `⣆⣸`, `⣇⣠`, `⣏⡀`,
`⡏⠁`, `⠋⠉`, `⠈⠙`, `⠀⠸`, `⠀⢠`,
`⠀⡀`,
`⣀⠀`, `⡆⠀`, `⠏⠀`, `⠋⠉`, `⠉⠹`,
`⠈⣹`, `⣀⣹`, `⣆⣸`, `⣏⣰`, `⣏⣩`,
`⣏⣹`,
`⣍⣹`, `⣆⣹`, `⣇⣰`, `⣏⣀`, `⣏⠁`,
`⠏⠉`, `⠉⠙`, `⠀⠹`, `⠀⢰`, `⠀⣀`,
`⢀⠀`,
`⡄⠀`, `⠇⠀`, `⠋⠁`, `⠉⠙`, `⠈⢹`,
`⢀⣹`, `⣄⣸`, `⣇⣰`, `⣏⣡`, `⣏⣙`,
`⣏⣹`,
`⣎⣹`, `⣇⣸`, `⣏⣠`, `⣏⡁`, `⡏⠉`,
`⠋⠙`, `⠈⠹`, `⠀⢸`, `⠀⣠`, `⢀⡀`,
`⡀⠀`,
`⠆⠀`, `⠋⠀`, `⠉⠉`, `⠈⠹`, `⠀⣹`,
`⣀⣸`, `⣆⣰`, `⣏⣠`, `⣏⣉`, `⣏⡹`,
`⣏⣹`,
`⣇⣹`, `⣏⣰`, `⣏⣁`, `⣏⠉`, `⠏⠙`,
`⠉⠹`, `⠀⢹`, `⠀⣰`, `⢀⣀`, `⣀⠀`,
`⠄⠀`,
`⠃⠀`, `⠉⠁`, `⠈⠙`, `⠀⢹`, `⢀⣸`,
`⣄⣰`, `⣇⣠`, `⣏⣁`, `⣏⡙`, `⣏⢹`,
`⣏⣹`,
`⣏⣸`, `⣏⣡`, `⣏⡉`, `⡏⠙`, `⠋⠹`,
`⠈⢹`, `⠀⣸`, `⢀⣠`, `⣀⡀`, `⡄⠀`,
`⠂⠀`,
`⠉⠀`, `⠈⠉`, `⠀⠹`, `⠀⣸`, `⣀⣰`,
`⣆⣠`, `⣏⣀`, `⣏⡉`, `⣏⠹`, `⡏⣹`,
`⣏⣹`,
`⣏⣱`, `⣏⣉`, `⣏⠙`, `⠏⠹`, `⠉⢹`,
`⠀⣹`, `⢀⣰`, `⣀⣀`, `⣄⠀`, `⠆⠀`,
}