v2ray-core/main/json/config_json.go

35 lines
772 B
Go
Raw Normal View History

package json
2018-09-30 21:08:41 +00:00
//go:generate errorgen
2016-10-15 22:46:30 +00:00
import (
"io"
"v2ray.com/core"
2018-02-12 10:40:42 +00:00
"v2ray.com/core/common"
2020-01-03 01:26:48 +00:00
"v2ray.com/core/common/cmdarg"
"v2ray.com/core/infra/conf/serial"
"v2ray.com/core/main/confloader"
)
func init() {
2018-02-14 22:57:40 +00:00
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:
r, err := confloader.LoadExtConfig(v)
if err != nil {
return nil, newError("failed to execute v2ctl to convert config file.").Base(err).AtWarning()
}
return core.LoadConfig("protobuf", "", r)
case io.Reader:
return serial.LoadJSONConfig(v)
default:
return nil, newError("unknow type")
2018-02-14 22:57:40 +00:00
}
},
2018-02-12 10:40:42 +00:00
}))
}