bbgo_origin/pkg/config/loader.go

166 lines
3.6 KiB
Go
Raw Normal View History

2020-10-20 06:32:22 +00:00
package config
import (
"encoding/json"
"io/ioutil"
"reflect"
"github.com/pkg/errors"
"gopkg.in/yaml.v3"
"github.com/c9s/bbgo/pkg/bbgo"
)
type SingleExchangeStrategyConfig struct {
Mounts []string
Strategy bbgo.SingleExchangeStrategy
}
2020-10-20 06:32:22 +00:00
type Config struct {
ExchangeStrategies []SingleExchangeStrategyConfig
CrossExchangeStrategies []bbgo.CrossExchangeStrategy
2020-10-20 06:32:22 +00:00
}
type Stash map[string]interface{}
func loadStash(configFile string) (Stash, error) {
config, err := ioutil.ReadFile(configFile)
if err != nil {
return nil, err
}
stash := make(Stash)
if err := yaml.Unmarshal(config, stash); err != nil {
return nil, err
}
return stash, err
}
func Load(configFile string) (*Config, error) {
var config Config
stash, err := loadStash(configFile)
if err != nil {
return nil, err
}
strategies, err := loadExchangeStrategies(stash)
if err != nil {
return nil, err
}
config.ExchangeStrategies = strategies
crossExchangeStrategies, err := loadCrossExchangeStrategies(stash)
if err != nil {
return nil, err
}
config.CrossExchangeStrategies = crossExchangeStrategies
2020-10-20 06:32:22 +00:00
return &config, nil
}
func loadCrossExchangeStrategies(stash Stash) (strategies []bbgo.CrossExchangeStrategy, err error) {
exchangeStrategiesConf, ok := stash["crossExchangeStrategies"]
2020-10-20 06:32:22 +00:00
if !ok {
return strategies, nil
2020-10-20 06:32:22 +00:00
}
configList, ok := exchangeStrategiesConf.([]interface{})
2020-10-20 06:32:22 +00:00
if !ok {
return nil, errors.New("expecting list in crossExchangeStrategies")
2020-10-20 06:32:22 +00:00
}
for _, entry := range configList {
configStash, ok := entry.(Stash)
2020-10-20 06:32:22 +00:00
if !ok {
return nil, errors.Errorf("strategy config should be a map, given: %T %+v", entry, entry)
2020-10-20 06:32:22 +00:00
}
for id, conf := range configStash {
// look up the real struct type
if st, ok := bbgo.LoadedExchangeStrategies[id]; ok {
val, err := reUnmarshal(conf, st)
if err != nil {
return nil, err
}
strategies = append(strategies, val.(bbgo.CrossExchangeStrategy))
}
}
2020-10-20 06:32:22 +00:00
}
return strategies, nil
}
func loadExchangeStrategies(stash Stash) (strategies []SingleExchangeStrategyConfig, err error) {
exchangeStrategiesConf, ok := stash["exchangeStrategies"]
if !ok {
return strategies, nil
2020-10-22 08:04:37 +00:00
// return nil, errors.New("exchangeStrategies is not defined")
}
configList, ok := exchangeStrategiesConf.([]interface{})
if !ok {
return nil, errors.New("expecting list in exchangeStrategies")
}
for _, entry := range configList {
configStash, ok := entry.(Stash)
if !ok {
return nil, errors.Errorf("strategy config should be a map, given: %T %+v", entry, entry)
}
var mounts []string
if val, ok := configStash["on"]; ok {
if values, ok := val.([]string); ok {
mounts = append(mounts, values...)
} else if str, ok := val.(string); ok {
mounts = append(mounts, str)
}
}
for id, conf := range configStash {
// look up the real struct type
if st, ok := bbgo.LoadedExchangeStrategies[id]; ok {
val, err := reUnmarshal(conf, st)
if err != nil {
return nil, err
}
strategies = append(strategies, SingleExchangeStrategyConfig{
Mounts: mounts,
Strategy: val.(bbgo.SingleExchangeStrategy),
})
2020-10-20 06:32:22 +00:00
}
}
}
return strategies, nil
}
func reUnmarshal(conf interface{}, tpe interface{}) (interface{}, error) {
// get the type "*Strategy"
rt := reflect.TypeOf(tpe)
// allocate new object from the given type
val := reflect.New(rt)
// now we have &(*Strategy) -> **Strategy
valRef := val.Interface()
plain, err := json.Marshal(conf)
if err != nil {
return nil, err
}
if err := json.Unmarshal(plain, valRef); err != nil {
return nil, errors.Wrapf(err, "json parsing error, given payload: %s", plain)
}
return val.Elem().Interface(), nil
}