-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
35eeaa5
commit c0272e6
Showing
3 changed files
with
123 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module github.com/vbauerster/mpb/_examples/progressAsWriter | ||
|
||
go 1.17 | ||
|
||
require github.com/vbauerster/mpb/v8 v8.0.0 | ||
|
||
require ( | ||
github.com/VividCortex/ewma v1.2.0 // indirect | ||
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect | ||
github.com/mattn/go-runewidth v0.0.13 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"math/rand" | ||
"sync" | ||
"time" | ||
|
||
"github.com/vbauerster/mpb/v8" | ||
"github.com/vbauerster/mpb/v8/decor" | ||
) | ||
|
||
func main() { | ||
total, numBars := 100, 2 | ||
var wg sync.WaitGroup | ||
wg.Add(numBars) | ||
done := make(chan struct{}) | ||
p := mpb.New( | ||
mpb.WithWidth(64), | ||
mpb.WithWaitGroup(&wg), | ||
mpb.WithShutdownNotifier(done), | ||
) | ||
|
||
log.SetOutput(p) | ||
|
||
for i := 0; i < numBars; i++ { | ||
name := fmt.Sprintf("Bar#%d:", i) | ||
bar := p.AddBar(int64(total), | ||
mpb.PrependDecorators( | ||
decor.Name(name), | ||
decor.Percentage(decor.WCSyncSpace), | ||
), | ||
mpb.AppendDecorators( | ||
decor.OnComplete( | ||
decor.EwmaETA(decor.ET_STYLE_GO, 60, decor.WCSyncWidth), "done", | ||
), | ||
), | ||
) | ||
// simulating some work | ||
go func() { | ||
defer wg.Done() | ||
rng := rand.New(rand.NewSource(time.Now().UnixNano())) | ||
max := 100 * time.Millisecond | ||
for i := 0; i < total; i++ { | ||
// start variable is solely for EWMA calculation | ||
// EWMA's unit of measure is an iteration's duration | ||
start := time.Now() | ||
time.Sleep(time.Duration(rng.Intn(10)+1) * max / 10) | ||
bar.Increment() | ||
// we need to call DecoratorEwmaUpdate to fulfill ewma decorator's contract | ||
bar.DecoratorEwmaUpdate(time.Since(start)) | ||
} | ||
log.Println(name, "done") | ||
}() | ||
} | ||
|
||
var qwg sync.WaitGroup | ||
qwg.Add(1) | ||
go func() { | ||
quit: | ||
for { | ||
select { | ||
case <-done: | ||
// after done, underlying io.Writer returns mpb.DoneError | ||
// so following isn't printed | ||
log.Println("all done") | ||
break quit | ||
default: | ||
log.Println("waiting for done") | ||
time.Sleep(100 * time.Millisecond) | ||
} | ||
} | ||
qwg.Done() | ||
}() | ||
|
||
p.Wait() | ||
qwg.Wait() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters