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"`
|
|
|
|
}
|
|
|
|
|
2022-06-21 04:31:42 +00:00
|
|
|
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 {
|
2022-06-21 04:31:42 +00:00
|
|
|
Executor *ExecutorConfig `json:"executor" yaml:"executor"`
|
2022-06-21 03:51:20 +00:00
|
|
|
MaxThread int `yaml:"maxThread,omitempty"`
|
|
|
|
Matrix []SelectorConfig `yaml:"matrix"`
|
2022-05-19 09:27:59 +00:00
|
|
|
}
|
|
|
|
|
2022-06-21 04:31:42 +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
|
|
|
|
}
|
|
|
|
|
2022-06-21 04:31:42 +00:00
|
|
|
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-06-21 03:51:20 +00:00
|
|
|
}
|
|
|
|
|
2022-05-19 09:27:59 +00:00
|
|
|
return &optConfig, nil
|
|
|
|
}
|