Remove go-json

This commit is contained in:
世界 2022-07-26 13:53:25 +08:00
parent 75508bccb5
commit 0347a7c038
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 14 additions and 40 deletions

View file

@ -2,6 +2,7 @@ package badjson
import (
"bytes"
"reflect"
"github.com/sagernet/sing-box/common/json"
E "github.com/sagernet/sing/common/exceptions"
@ -36,11 +37,15 @@ func (a *JSONArray[T]) UnmarshalJSON(content []byte) error {
func (a *JSONArray[T]) decodeJSON(decoder *json.Decoder) error {
for decoder.More() {
var item T
err := decoder.Decode(&item)
value, err := decodeJSON(decoder)
if err != nil {
return err
}
item, ok := value.(T)
if !ok {
var defValue T
return E.New("can't cast ", value, " to ", reflect.TypeOf(defValue))
}
*a = append(*a, item)
}
return nil