mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
badjson: Add UnmarshalExtended
This commit is contained in:
parent
56b953e091
commit
edd320c3a8
1 changed files with 25 additions and 0 deletions
25
common/json/unmarshal.go
Normal file
25
common/json/unmarshal.go
Normal file
|
@ -0,0 +1,25 @@
|
|||
package json
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"strings"
|
||||
|
||||
"github.com/sagernet/sing/common"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
)
|
||||
|
||||
func UnmarshalExtended[T any](content []byte) (T, error) {
|
||||
decoder := NewDecoder(NewCommentFilter(bytes.NewReader(content)))
|
||||
var value T
|
||||
err := decoder.Decode(&value)
|
||||
if err == nil {
|
||||
return value, err
|
||||
}
|
||||
if syntaxError, isSyntaxError := err.(*SyntaxError); isSyntaxError {
|
||||
prefix := string(content[:syntaxError.Offset])
|
||||
row := strings.Count(prefix, "\n") + 1
|
||||
column := len(prefix) - strings.LastIndex(prefix, "\n") - 1
|
||||
return common.DefaultValue[T](), E.Extend(syntaxError, "row ", row, ", column ", column)
|
||||
}
|
||||
return common.DefaultValue[T](), err
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue