mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
41 lines
958 B
Go
41 lines
958 B
Go
package bbgo
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/c9s/bbgo/pkg/service"
|
|
)
|
|
|
|
const IsolationContextKey = "bbgo"
|
|
|
|
var defaultIsolation = NewIsolation()
|
|
|
|
type Isolation struct {
|
|
gracefulShutdown GracefulShutdown
|
|
persistenceServiceFacade *service.PersistenceServiceFacade
|
|
}
|
|
|
|
func NewIsolation() *Isolation {
|
|
return &Isolation{
|
|
gracefulShutdown: GracefulShutdown{},
|
|
persistenceServiceFacade: DefaultPersistenceServiceFacade,
|
|
}
|
|
}
|
|
|
|
func NewIsolationFromContext(ctx context.Context) *Isolation {
|
|
isolatedContext, ok := ctx.Value(IsolationContextKey).(*Isolation)
|
|
if ok {
|
|
return isolatedContext
|
|
}
|
|
|
|
return defaultIsolation
|
|
}
|
|
|
|
func NewContextWithIsolation(parent context.Context, isolation *Isolation) context.Context {
|
|
return context.WithValue(parent, IsolationContextKey, isolation)
|
|
}
|
|
|
|
func NewContextWithDefaultIsolation(parent context.Context) context.Context {
|
|
return context.WithValue(parent, IsolationContextKey, defaultIsolation)
|
|
}
|