mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
badjson: Add context marshaler/unmarshaler
This commit is contained in:
parent
a4eb7fa900
commit
c80c8f907c
13 changed files with 285 additions and 60 deletions
|
@ -2,6 +2,7 @@ package json
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
"context"
|
||||
"errors"
|
||||
"strings"
|
||||
|
||||
|
@ -10,7 +11,11 @@ import (
|
|||
)
|
||||
|
||||
func UnmarshalExtended[T any](content []byte) (T, error) {
|
||||
decoder := NewDecoder(NewCommentFilter(bytes.NewReader(content)))
|
||||
return UnmarshalExtendedContext[T](context.Background(), content)
|
||||
}
|
||||
|
||||
func UnmarshalExtendedContext[T any](ctx context.Context, content []byte) (T, error) {
|
||||
decoder := NewDecoderContext(ctx, NewCommentFilter(bytes.NewReader(content)))
|
||||
var value T
|
||||
err := decoder.Decode(&value)
|
||||
if err == nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue