Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package progressbar
|
|
|
|
import "fmt"
|
|
|
|
// the progressbar indicates the current status and progress would be desired.
|
|
// ref: https://www.pixelstech.net/article/1596946473-A-simple-example-on-implementing-progress-bar-in-GoLang
|
|
|
|
type Bar struct {
|
|
percent int64 // progress percentage
|
|
cur int64 // current progress
|
|
start int64 // the init starting value for progress
|
|
total int64 // total value for progress
|
|
rate string // the actual progress bar to be printed
|
|
graph string // the fill value for progress bar
|
|
}
|
|
|
|
func (bar *Bar) NewOption(start, total int64) {
|
|
bar.cur = start
|
|
bar.start = start
|
|
bar.total = total
|
|
bar.graph = "█"
|
|
bar.percent = bar.getPercent()
|
|
}
|
|
|
|
func (bar *Bar) getPercent() int64 {
|
|
return int64(float32(bar.cur-bar.start) / float32(bar.total-bar.start) * 100)
|
|
}
|
|
|
|
func (bar *Bar) Play(cur int64) {
|
|
bar.cur = cur
|
|
last := bar.percent
|
|
bar.percent = bar.getPercent()
|
|
if bar.percent != last && bar.percent%2 == 0 {
|
|
bar.rate += bar.graph
|
|
}
|
|
fmt.Printf("\r[%-50s]%3d%% %8d/%d", bar.rate, bar.percent, bar.cur, bar.total)
|
|
}
|
|
|
|
func (bar *Bar) Finish() {
|
|
fmt.Println()
|
|
}
|