sing-box/option/config.go

47 lines
1.4 KiB
Go
Raw Normal View History

2022-07-02 06:07:50 +00:00
package option
import (
"bytes"
2022-07-07 13:47:21 +00:00
"strings"
2022-07-02 17:57:04 +00:00
2022-07-07 13:47:21 +00:00
E "github.com/sagernet/sing/common/exceptions"
"github.com/sagernet/sing/common/json"
)
type _Options struct {
2023-03-13 02:58:29 +00:00
Schema string `json:"$schema,omitempty"`
2023-02-28 11:02:27 +00:00
Log *LogOptions `json:"log,omitempty"`
DNS *DNSOptions `json:"dns,omitempty"`
NTP *NTPOptions `json:"ntp,omitempty"`
Inbounds []Inbound `json:"inbounds,omitempty"`
Outbounds []Outbound `json:"outbounds,omitempty"`
Route *RouteOptions `json:"route,omitempty"`
Experimental *ExperimentalOptions `json:"experimental,omitempty"`
2022-07-02 06:07:50 +00:00
}
type Options _Options
func (o *Options) UnmarshalJSON(content []byte) error {
2022-09-07 14:55:57 +00:00
decoder := json.NewDecoder(json.NewCommentFilter(bytes.NewReader(content)))
decoder.DisallowUnknownFields()
2022-07-07 13:47:21 +00:00
err := decoder.Decode((*_Options)(o))
if err == nil {
return nil
}
if syntaxError, isSyntaxError := err.(*json.SyntaxError); isSyntaxError {
prefix := string(content[:syntaxError.Offset])
row := strings.Count(prefix, "\n") + 1
column := len(prefix) - strings.LastIndex(prefix, "\n") - 1
return E.Extend(syntaxError, "row ", row, ", column ", column)
}
return err
}
2022-07-19 14:16:49 +00:00
type LogOptions struct {
2022-07-04 08:45:32 +00:00
Disabled bool `json:"disabled,omitempty"`
Level string `json:"level,omitempty"`
Output string `json:"output,omitempty"`
Timestamp bool `json:"timestamp,omitempty"`
DisableColor bool `json:"-"`
2022-07-02 06:07:50 +00:00
}