mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
57 lines
1.7 KiB
Go
57 lines
1.7 KiB
Go
package bbgo
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/c9s/bbgo/pkg/service"
|
|
)
|
|
|
|
const IsolationContextKey = "bbgo"
|
|
|
|
var defaultIsolation = NewDefaultIsolation()
|
|
|
|
type Isolation struct {
|
|
gracefulShutdown GracefulShutdown
|
|
persistenceServiceFacade *service.PersistenceServiceFacade
|
|
}
|
|
|
|
func NewDefaultIsolation() *Isolation {
|
|
return &Isolation{
|
|
gracefulShutdown: GracefulShutdown{},
|
|
persistenceServiceFacade: persistenceServiceFacade,
|
|
}
|
|
}
|
|
|
|
func NewIsolation(persistenceFacade *service.PersistenceServiceFacade) *Isolation {
|
|
return &Isolation{
|
|
gracefulShutdown: GracefulShutdown{},
|
|
persistenceServiceFacade: persistenceFacade,
|
|
}
|
|
}
|
|
|
|
func GetIsolationFromContext(ctx context.Context) *Isolation {
|
|
isolatedContext, ok := ctx.Value(IsolationContextKey).(*Isolation)
|
|
if ok {
|
|
return isolatedContext
|
|
}
|
|
|
|
return defaultIsolation
|
|
}
|
|
|
|
// NewTodoContextWithExistingIsolation creates a new context object with the existing isolation of the parent context.
|
|
func NewTodoContextWithExistingIsolation(parent context.Context) context.Context {
|
|
isolatedContext := GetIsolationFromContext(parent)
|
|
todo := context.WithValue(context.TODO(), IsolationContextKey, isolatedContext)
|
|
return todo
|
|
}
|
|
|
|
// NewContextWithIsolation creates a new context from the parent context with a custom isolation
|
|
func NewContextWithIsolation(parent context.Context, isolation *Isolation) context.Context {
|
|
return context.WithValue(parent, IsolationContextKey, isolation)
|
|
}
|
|
|
|
// NewContextWithDefaultIsolation creates a new context from the parent context with a default isolation
|
|
func NewContextWithDefaultIsolation(parent context.Context) context.Context {
|
|
return context.WithValue(parent, IsolationContextKey, defaultIsolation)
|
|
}
|