mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
59 lines
1.5 KiB
Go
59 lines
1.5 KiB
Go
package bbgo
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// BootstrapEnvironmentLightweight bootstrap the environment in lightweight mode
|
|
// - no database configuration
|
|
// - no notification
|
|
func BootstrapEnvironmentLightweight(ctx context.Context, environ *Environment, userConfig *Config) error {
|
|
if err := environ.ConfigureExchangeSessions(userConfig); err != nil {
|
|
return errors.Wrap(err, "exchange session configure error")
|
|
}
|
|
|
|
if userConfig.Logging != nil {
|
|
environ.SetLogging(userConfig.Logging)
|
|
}
|
|
|
|
if userConfig.Persistence != nil {
|
|
if err := ConfigurePersistence(ctx, userConfig.Persistence); err != nil {
|
|
return errors.Wrap(err, "persistence configure error")
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func BootstrapEnvironment(ctx context.Context, environ *Environment, userConfig *Config) error {
|
|
if err := environ.ConfigureDatabase(ctx); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := environ.ConfigureExchangeSessions(userConfig); err != nil {
|
|
return errors.Wrap(err, "exchange session configure error")
|
|
}
|
|
|
|
if userConfig.Logging != nil {
|
|
environ.SetLogging(userConfig.Logging)
|
|
}
|
|
|
|
if userConfig.Persistence != nil {
|
|
if err := ConfigurePersistence(ctx, userConfig.Persistence); err != nil {
|
|
return errors.Wrap(err, "persistence configure error")
|
|
}
|
|
}
|
|
|
|
if err := environ.ConfigureNotificationSystem(userConfig); err != nil {
|
|
return errors.Wrap(err, "notification configure error")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func BootstrapBacktestEnvironment(ctx context.Context, environ *Environment) error {
|
|
return environ.ConfigureDatabase(ctx)
|
|
}
|