1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-08 14:24:36 -04:00
v2fly/main/json/config_json.go

35 lines
808 B
Go
Raw Normal View History

package json
//go:generate go run v2ray.com/core/common/errors/errorgen
2016-10-15 18:46:30 -04:00
import (
"io"
"v2ray.com/core"
2018-02-12 05:40:42 -05:00
"v2ray.com/core/common"
2020-01-02 20:26:48 -05:00
"v2ray.com/core/common/cmdarg"
"v2ray.com/core/infra/conf/serial"
"v2ray.com/core/main/confloader"
)
func init() {
2018-02-14 17:57:40 -05:00
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{
Name: "JSON",
Extension: []string{"json"},
2020-01-02 20:26:48 -05: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 17:57:40 -05:00
}
},
2018-02-12 05:40:42 -05:00
}))
}