bbgo_origin/pkg/bbgo/graceful_shutdown.go

47 lines
1.1 KiB
Go
Raw Normal View History

package bbgo
import (
"context"
"sync"
"time"
"github.com/sirupsen/logrus"
)
2022-07-19 09:13:35 +00:00
type ShutdownHandler func(ctx context.Context, wg *sync.WaitGroup)
2022-10-02 11:34:52 +00:00
//go:generate callbackgen -type GracefulShutdown
type GracefulShutdown struct {
2022-07-19 09:13:35 +00:00
shutdownCallbacks []ShutdownHandler
}
// Shutdown is a blocking call to emit all shutdown callbacks at the same time.
2022-10-02 11:34:52 +00:00
func (g *GracefulShutdown) Shutdown(ctx context.Context) {
var wg sync.WaitGroup
wg.Add(len(g.shutdownCallbacks))
// for each shutdown callback, we give them 10 second
shtCtx, cancel := context.WithTimeout(ctx, 10*time.Second)
go g.EmitShutdown(shtCtx, &wg)
wg.Wait()
cancel()
}
2022-10-03 08:01:08 +00:00
func OnShutdown(ctx context.Context, f ShutdownHandler) {
isolatedContext := NewIsolationFromContext(ctx)
isolatedContext.gracefulShutdown.OnShutdown(f)
}
2022-10-03 08:01:08 +00:00
func Shutdown(ctx context.Context) {
logrus.Infof("shutting down...")
2022-10-03 08:01:08 +00:00
isolatedContext := NewIsolationFromContext(ctx)
todo := context.WithValue(context.TODO(), IsolationContextKey, isolatedContext)
timeoutCtx, cancel := context.WithTimeout(todo, 30*time.Second)
defaultIsolation.gracefulShutdown.Shutdown(timeoutCtx)
cancel()
}