Codebase list golang-github-vbauerster-mpb / 5e71dad _examples / panic / main.go
5e71dad

Tree @5e71dad (Download .tar.gz)

main.go @5e71dadraw · history · blame

package main

import (
	"fmt"
	"os"
	"sync"
	"time"

	"github.com/vbauerster/mpb/v4"
	"github.com/vbauerster/mpb/v4/decor"
)

func main() {
	var wg sync.WaitGroup
	p := mpb.New(mpb.WithWaitGroup(&wg), mpb.WithDebugOutput(os.Stderr))

	wantPanic := "Some really long panic panic panic panic panic panic panic, really it is very long"
	numBars := 3
	wg.Add(numBars)

	for i := 0; i < numBars; i++ {
		name := fmt.Sprintf("b#%02d:", i)
		bar := p.AddBar(100, mpb.BarID(i), mpb.PrependDecorators(panicDecorator(name, wantPanic)))

		go func() {
			defer wg.Done()
			for i := 0; i < 100; i++ {
				time.Sleep(50 * time.Millisecond)
				bar.Increment()
			}
		}()
	}

	p.Wait()
}

func panicDecorator(name, panicMsg string) decor.Decorator {
	d := &decorator{
		msg:      name,
		panicMsg: panicMsg,
	}
	d.Init()
	return d
}

type decorator struct {
	decor.WC
	msg      string
	panicMsg string
}

func (d *decorator) Decor(st *decor.Statistics) string {
	if st.ID == 1 && st.Current >= 42 {
		panic(d.panicMsg)
	}
	return d.FormatMsg(d.msg)
}