mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
72 lines
1.4 KiB
Go
72 lines
1.4 KiB
Go
|
package serial
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"encoding/json"
|
||
|
"io"
|
||
|
|
||
|
"v2ray.com/core"
|
||
|
"v2ray.com/core/common/errors"
|
||
|
"v2ray.com/core/infra/conf"
|
||
|
json_reader "v2ray.com/core/infra/conf/json"
|
||
|
)
|
||
|
|
||
|
type offset struct {
|
||
|
line int
|
||
|
char int
|
||
|
}
|
||
|
|
||
|
func findOffset(b []byte, o int) *offset {
|
||
|
if o >= len(b) || o < 0 {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
line := 1
|
||
|
char := 0
|
||
|
for i, x := range b {
|
||
|
if i == o {
|
||
|
break
|
||
|
}
|
||
|
if x == '\n' {
|
||
|
line++
|
||
|
char = 0
|
||
|
} else {
|
||
|
char++
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return &offset{line: line, char: char}
|
||
|
}
|
||
|
|
||
|
func LoadJSONConfig(reader io.Reader) (*core.Config, error) {
|
||
|
jsonConfig := &conf.Config{}
|
||
|
|
||
|
jsonContent := bytes.NewBuffer(make([]byte, 0, 10240))
|
||
|
jsonReader := io.TeeReader(&json_reader.Reader{
|
||
|
Reader: reader,
|
||
|
}, jsonContent)
|
||
|
decoder := json.NewDecoder(jsonReader)
|
||
|
|
||
|
if err := decoder.Decode(jsonConfig); err != nil {
|
||
|
var pos *offset
|
||
|
cause := errors.Cause(err)
|
||
|
switch tErr := cause.(type) {
|
||
|
case *json.SyntaxError:
|
||
|
pos = findOffset(jsonContent.Bytes(), int(tErr.Offset))
|
||
|
case *json.UnmarshalTypeError:
|
||
|
pos = findOffset(jsonContent.Bytes(), int(tErr.Offset))
|
||
|
}
|
||
|
if pos != nil {
|
||
|
return nil, newError("failed to read config file at line ", pos.line, " char ", pos.char).Base(err)
|
||
|
}
|
||
|
return nil, newError("failed to read config file").Base(err)
|
||
|
}
|
||
|
|
||
|
pbConfig, err := jsonConfig.Build()
|
||
|
if err != nil {
|
||
|
return nil, newError("failed to parse json config").Base(err)
|
||
|
}
|
||
|
|
||
|
return pbConfig, nil
|
||
|
}
|