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
|
@ -1,32 +1,42 @@
|
|||
package badjson
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
"github.com/sagernet/sing/common/json"
|
||||
)
|
||||
|
||||
func MarshallObjects(objects ...any) ([]byte, error) {
|
||||
return MarshallObjectsContext(context.Background(), objects...)
|
||||
}
|
||||
|
||||
func MarshallObjectsContext(ctx context.Context, objects ...any) ([]byte, error) {
|
||||
if len(objects) == 1 {
|
||||
return json.Marshal(objects[0])
|
||||
}
|
||||
var content JSONObject
|
||||
for _, object := range objects {
|
||||
objectMap, err := newJSONObject(object)
|
||||
objectMap, err := newJSONObject(ctx, object)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
content.PutAll(objectMap)
|
||||
}
|
||||
return content.MarshalJSON()
|
||||
return content.MarshalJSONContext(ctx)
|
||||
}
|
||||
|
||||
func UnmarshallExcluded(inputContent []byte, parentObject any, object any) error {
|
||||
parentContent, err := newJSONObject(parentObject)
|
||||
return UnmarshallExcludedContext(context.Background(), inputContent, parentObject, object)
|
||||
}
|
||||
|
||||
func UnmarshallExcludedContext(ctx context.Context, inputContent []byte, parentObject any, object any) error {
|
||||
parentContent, err := newJSONObject(ctx, parentObject)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
var content JSONObject
|
||||
err = content.UnmarshalJSON(inputContent)
|
||||
err = content.UnmarshalJSONContext(ctx, inputContent)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
@ -39,20 +49,20 @@ func UnmarshallExcluded(inputContent []byte, parentObject any, object any) error
|
|||
}
|
||||
return E.New("unexpected key: ", content.Keys()[0])
|
||||
}
|
||||
inputContent, err = content.MarshalJSON()
|
||||
inputContent, err = content.MarshalJSONContext(ctx)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return json.UnmarshalDisallowUnknownFields(inputContent, object)
|
||||
return json.UnmarshalContextDisallowUnknownFields(ctx, inputContent, object)
|
||||
}
|
||||
|
||||
func newJSONObject(object any) (*JSONObject, error) {
|
||||
inputContent, err := json.Marshal(object)
|
||||
func newJSONObject(ctx context.Context, object any) (*JSONObject, error) {
|
||||
inputContent, err := json.MarshalContext(ctx, object)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
var content JSONObject
|
||||
err = content.UnmarshalJSON(inputContent)
|
||||
err = content.UnmarshalJSONContext(ctx, inputContent)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue