mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
70 lines
1.7 KiB
Go
70 lines
1.7 KiB
Go
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(ctx, object)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
content.PutAll(objectMap)
|
|
}
|
|
return content.MarshalJSONContext(ctx)
|
|
}
|
|
|
|
func UnmarshallExcluded(inputContent []byte, parentObject any, object any) error {
|
|
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.UnmarshalJSONContext(ctx, inputContent)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, key := range parentContent.Keys() {
|
|
content.Remove(key)
|
|
}
|
|
if object == nil {
|
|
if content.IsEmpty() {
|
|
return nil
|
|
}
|
|
return E.New("unexpected key: ", content.Keys()[0])
|
|
}
|
|
inputContent, err = content.MarshalJSONContext(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return json.UnmarshalContextDisallowUnknownFields(ctx, inputContent, 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.UnmarshalJSONContext(ctx, inputContent)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &content, nil
|
|
}
|