1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-04 13:05:24 +00:00
v2fly/main/jsonem/jsonem.go

39 lines
861 B
Go
Raw Normal View History

package jsonem
import (
2020-01-03 01:26:48 +00:00
"io"
"v2ray.com/core"
"v2ray.com/core/common"
2020-01-03 01:26:48 +00:00
"v2ray.com/core/common/cmdarg"
"v2ray.com/core/infra/conf"
2019-02-10 18:04:11 +00:00
"v2ray.com/core/infra/conf/serial"
2020-01-03 01:26:48 +00:00
"v2ray.com/core/main/confloader"
)
func init() {
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{
Name: "JSON",
Extension: []string{"json"},
2020-01-03 01:26:48 +00:00
Loader: func(input interface{}) (*core.Config, error) {
switch v := input.(type) {
case cmdarg.Arg:
cf := &conf.Config{}
for _, arg := range v {
newError("Reading config: ", arg).AtInfo().WriteToLog()
r, err := confloader.LoadConfig(arg)
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 15:29:54 +00:00
}))
2019-12-14 14:24:32 +00:00
}