Xray-core/main/toml/toml.go

49 lines
1.3 KiB
Go
Raw Normal View History

2020-12-24 19:11:32 +00:00
package toml
import (
"io"
"github.com/xtls/xray-core/common"
"github.com/xtls/xray-core/common/cmdarg"
"github.com/xtls/xray-core/core"
"github.com/xtls/xray-core/infra/conf"
"github.com/xtls/xray-core/infra/conf/serial"
"github.com/xtls/xray-core/main/confloader"
)
func init() {
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{
Name: "TOML",
Extension: []string{"toml"},
Loader: func(input interface{}) (*core.Config, error) {
switch v := input.(type) {
case cmdarg.Arg:
cf := &conf.Config{}
for i, arg := range v {
newError("Reading config: ", arg).AtInfo().WriteToLog()
r, err := confloader.LoadConfig(arg)
2020-12-25 10:53:17 +00:00
if err != nil {
return nil, newError("failed to read config: ", arg).Base(err)
}
2020-12-24 19:11:32 +00:00
c, err := serial.DecodeTOMLConfig(r)
2020-12-25 10:53:17 +00:00
if err != nil {
return nil, newError("failed to decode config: ", arg).Base(err)
}
2020-12-24 19:11:32 +00:00
if i == 0 {
// This ensure even if the muti-json parser do not support a setting,
// It is still respected automatically for the first configure file
*cf = *c
continue
}
cf.Override(c, arg)
}
return cf.Build()
case io.Reader:
return serial.LoadTOMLConfig(v)
default:
return nil, newError("unknow type")
}
},
}))
}