bbgo_origin/pkg/optimizer/config.go

70 lines
1.9 KiB
Go
Raw Normal View History

2022-05-19 09:27:59 +00:00
package optimizer
import (
"io/ioutil"
"gopkg.in/yaml.v3"
"github.com/c9s/bbgo/pkg/fixedpoint"
)
type SelectorConfig struct {
Type string `json:"type" yaml:"type"`
2022-05-19 17:42:32 +00:00
Label string `json:"label,omitempty" yaml:"label,omitempty"`
2022-05-19 09:27:59 +00:00
Path string `json:"path" yaml:"path"`
Values []string `json:"values,omitempty" yaml:"values,omitempty"`
Min fixedpoint.Value `json:"min,omitempty" yaml:"min,omitempty"`
Max fixedpoint.Value `json:"max,omitempty" yaml:"max,omitempty"`
Step fixedpoint.Value `json:"step,omitempty" yaml:"step,omitempty"`
}
type LocalExecutorConfig struct {
MaxNumberOfProcesses int `json:"maxNumberOfProcesses" yaml:"maxNumberOfProcesses"`
}
type ExecutorConfig struct {
Type string `json:"type" yaml:"type"`
LocalExecutorConfig *LocalExecutorConfig `json:"local" yaml:"local"`
}
2022-05-19 09:27:59 +00:00
type Config struct {
Executor *ExecutorConfig `json:"executor" yaml:"executor"`
MaxThread int `yaml:"maxThread,omitempty"`
Matrix []SelectorConfig `yaml:"matrix"`
2022-05-19 09:27:59 +00:00
}
var defaultExecutorConfig = &ExecutorConfig{
Type: "local",
LocalExecutorConfig: defaultLocalExecutorConfig,
}
var defaultLocalExecutorConfig = &LocalExecutorConfig{
MaxNumberOfProcesses: 10,
}
2022-05-19 09:27:59 +00:00
func LoadConfig(yamlConfigFileName string) (*Config, error) {
configYaml, err := ioutil.ReadFile(yamlConfigFileName)
if err != nil {
return nil, err
}
var optConfig Config
if err := yaml.Unmarshal(configYaml, &optConfig); err != nil {
return nil, err
}
if optConfig.Executor == nil {
optConfig.Executor = defaultExecutorConfig
}
if optConfig.Executor.Type == "" {
optConfig.Executor.Type = "local"
}
if optConfig.Executor.Type == "local" && optConfig.Executor.LocalExecutorConfig == nil {
optConfig.Executor.LocalExecutorConfig = defaultLocalExecutorConfig
}
2022-05-19 09:27:59 +00:00
return &optConfig, nil
}