| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- 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
- }
|