1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-14 09:14:15 -04:00
v2fly/main/jsonem/jsonem.go

39 lines
861 B
Go
Raw Normal View History

package jsonem
import (
2019-12-14 09:24:32 -05:00
"io"
"v2ray.com/core"
"v2ray.com/core/common"
2019-12-14 10:29:54 -05:00
"v2ray.com/core/common/cmdarg"
2019-12-14 09:24:32 -05:00
"v2ray.com/core/infra/conf"
2019-02-10 13:04:11 -05:00
"v2ray.com/core/infra/conf/serial"
2019-12-15 20:33:41 -05:00
"v2ray.com/core/main/confloader"
)
func init() {
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{
Name: "JSON",
Extension: []string{"json"},
2019-12-14 10:29:54 -05:00
Loader: func(input interface{}) (*core.Config, error) {
switch v := input.(type) {
case cmdarg.Arg:
cf := &conf.Config{}
for _, arg := range v {
2019-12-14 10:44:10 -05:00
newError("Reading config: ", arg).AtInfo().WriteToLog()
2019-12-15 20:33:41 -05:00
r, err := confloader.LoadConfig(arg)
2019-12-14 10:29:54 -05:00
common.Must(err)
c, err := serial.DecodeJSONConfig(r)
common.Must(err)
cf.Override(c, arg)
}
return cf.Build()
case io.Reader:
return serial.LoadJSONConfig(v)
default:
return nil, newError("unknow type")
2019-12-14 09:24:32 -05:00
}
2019-12-14 10:29:54 -05:00
},
}))
2019-12-14 09:24:32 -05:00
}