mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
badjson: Improve omitempty
This commit is contained in:
parent
855077023e
commit
96628c4646
3 changed files with 32 additions and 2 deletions
|
@ -3,12 +3,25 @@ package badjson
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
||||||
|
"github.com/sagernet/sing/common"
|
||||||
E "github.com/sagernet/sing/common/exceptions"
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
"github.com/sagernet/sing/common/json"
|
"github.com/sagernet/sing/common/json"
|
||||||
)
|
)
|
||||||
|
|
||||||
type JSONArray []any
|
type JSONArray []any
|
||||||
|
|
||||||
|
func (a JSONArray) IsEmpty() bool {
|
||||||
|
if len(a) == 0 {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return common.All(a, func(it any) bool {
|
||||||
|
if valueInterface, valueMaybeEmpty := it.(isEmpty); valueMaybeEmpty && valueInterface.IsEmpty() {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func (a JSONArray) MarshalJSON() ([]byte, error) {
|
func (a JSONArray) MarshalJSON() ([]byte, error) {
|
||||||
return json.Marshal([]any(a))
|
return json.Marshal([]any(a))
|
||||||
}
|
}
|
||||||
|
|
5
common/json/badjson/empty.go
Normal file
5
common/json/badjson/empty.go
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
package badjson
|
||||||
|
|
||||||
|
type isEmpty interface {
|
||||||
|
IsEmpty() bool
|
||||||
|
}
|
|
@ -15,11 +15,23 @@ type JSONObject struct {
|
||||||
linkedhashmap.Map[string, any]
|
linkedhashmap.Map[string, any]
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m JSONObject) MarshalJSON() ([]byte, error) {
|
func (m *JSONObject) IsEmpty() bool {
|
||||||
|
if m.Size() == 0 {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return common.All(m.Entries(), func(it collections.MapEntry[string, any]) bool {
|
||||||
|
if valueInterface, valueMaybeEmpty := it.Value.(isEmpty); valueMaybeEmpty && valueInterface.IsEmpty() {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *JSONObject) MarshalJSON() ([]byte, error) {
|
||||||
buffer := new(bytes.Buffer)
|
buffer := new(bytes.Buffer)
|
||||||
buffer.WriteString("{")
|
buffer.WriteString("{")
|
||||||
items := common.Filter(m.Entries(), func(it collections.MapEntry[string, any]) bool {
|
items := common.Filter(m.Entries(), func(it collections.MapEntry[string, any]) bool {
|
||||||
if valueObject, valueIsJSONObject := it.Value.(*JSONObject); valueIsJSONObject && valueObject.IsEmpty() {
|
if valueInterface, valueMaybeEmpty := it.Value.(isEmpty); valueMaybeEmpty && valueInterface.IsEmpty() {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue