sing-box/option/json.go

64 lines
1.3 KiB
Go
Raw Normal View History

2022-07-02 17:57:04 +00:00
package option
import (
"bytes"
2022-07-02 19:42:57 +00:00
"github.com/goccy/go-json"
2022-07-03 11:43:27 +00:00
"github.com/sagernet/sing-box/common/badjson"
2022-07-02 17:57:04 +00:00
)
2022-07-03 11:43:27 +00:00
func ToMap(v any) (*badjson.JSONObject, error) {
inputContent, err := json.Marshal(v)
2022-07-02 17:57:04 +00:00
if err != nil {
return nil, err
}
2022-07-03 11:43:27 +00:00
var content badjson.JSONObject
err = content.UnmarshalJSON(inputContent)
2022-07-02 17:57:04 +00:00
if err != nil {
return nil, err
}
2022-07-02 19:42:57 +00:00
return &content, nil
2022-07-02 17:57:04 +00:00
}
2022-07-03 11:43:27 +00:00
func MergeObjects(objects ...any) (*badjson.JSONObject, error) {
var content badjson.JSONObject
2022-07-02 17:57:04 +00:00
for _, object := range objects {
objectMap, err := ToMap(object)
if err != nil {
return nil, err
}
2022-07-02 19:42:57 +00:00
content.PutAll(objectMap)
2022-07-02 17:57:04 +00:00
}
2022-07-02 19:42:57 +00:00
return &content, nil
2022-07-02 17:57:04 +00:00
}
func MarshallObjects(objects ...any) ([]byte, error) {
content, err := MergeObjects(objects...)
if err != nil {
return nil, err
}
return content.MarshalJSON()
}
func UnmarshallExcluded(inputContent []byte, parentObject any, object any) error {
parentContent, err := ToMap(parentObject)
if err != nil {
return err
}
2022-07-03 11:43:27 +00:00
var content badjson.JSONObject
err = content.UnmarshalJSON(inputContent)
if err != nil {
return err
}
2022-07-03 11:43:27 +00:00
for _, key := range parentContent.Keys() {
content.Remove(key)
}
inputContent, err = content.MarshalJSON()
if err != nil {
return err
}
decoder := json.NewDecoder(bytes.NewReader(inputContent))
decoder.DisallowUnknownFields()
return decoder.Decode(object)
2022-07-02 17:57:04 +00:00
}