mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 20:19:19 +02:00
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
|
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)
|
||
|
common.Must(err)
|
||
|
c, err := serial.DecodeTOMLConfig(r)
|
||
|
common.Must(err)
|
||
|
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")
|
||
|
}
|
||
|
},
|
||
|
}))
|
||
|
}
|