v2ray-core/main/json/config_json.go

29 lines
651 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"
2018-11-18 18:36:36 +00:00
"v2ray.com/core/common/buf"
2018-04-08 21:22:55 +00:00
"v2ray.com/core/common/platform/ctlcmd"
)
func init() {
2018-02-14 22:57:40 +00:00
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{
Name: "JSON",
Extension: []string{"json"},
Loader: func(input io.Reader) (*core.Config, error) {
2018-04-08 21:22:55 +00:00
jsonContent, err := ctlcmd.Run([]string{"config"}, input)
2018-02-14 22:57:40 +00:00
if err != nil {
return nil, newError("failed to execute v2ctl to convert config file.").Base(err).AtWarning()
}
2018-11-18 18:36:36 +00:00
return core.LoadConfig("protobuf", "", &buf.MultiBufferContainer{
MultiBuffer: jsonContent,
})
2018-02-14 22:57:40 +00:00
},
2018-02-12 10:40:42 +00:00
}))
}