mirror of https://github.com/goccy/go-json.git
Merge pull request #265 from peterlimg/master
Fix encode issue for embed struct with tags
This commit is contained in:
commit
a1780c18a6
|
@ -191,6 +191,59 @@ func Test_Marshal(t *testing.T) {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
t.Run("embedded with tag", func(t *testing.T) {
|
||||||
|
type T struct {
|
||||||
|
A string `json:"a"`
|
||||||
|
}
|
||||||
|
type U struct {
|
||||||
|
*T `json:"t"`
|
||||||
|
B string `json:"b"`
|
||||||
|
}
|
||||||
|
type T2 struct {
|
||||||
|
A string `json:"a,omitempty"`
|
||||||
|
}
|
||||||
|
type U2 struct {
|
||||||
|
*T2 `json:"t,omitempty"`
|
||||||
|
B string `json:"b,omitempty"`
|
||||||
|
}
|
||||||
|
t.Run("exists field", func(t *testing.T) {
|
||||||
|
bytes, err := json.Marshal(&U{
|
||||||
|
T: &T{
|
||||||
|
A: "aaa",
|
||||||
|
},
|
||||||
|
B: "bbb",
|
||||||
|
})
|
||||||
|
assertErr(t, err)
|
||||||
|
assertEq(t, "embedded", `{"t":{"a":"aaa"},"b":"bbb"}`, string(bytes))
|
||||||
|
t.Run("omitempty", func(t *testing.T) {
|
||||||
|
bytes, err := json.Marshal(&U2{
|
||||||
|
T2: &T2{
|
||||||
|
A: "aaa",
|
||||||
|
},
|
||||||
|
B: "bbb",
|
||||||
|
})
|
||||||
|
assertErr(t, err)
|
||||||
|
assertEq(t, "embedded", `{"t":{"a":"aaa"},"b":"bbb"}`, string(bytes))
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("none field", func(t *testing.T) {
|
||||||
|
bytes, err := json.Marshal(&U{
|
||||||
|
B: "bbb",
|
||||||
|
})
|
||||||
|
assertErr(t, err)
|
||||||
|
assertEq(t, "embedded", `{"t":null,"b":"bbb"}`, string(bytes))
|
||||||
|
t.Run("omitempty", func(t *testing.T) {
|
||||||
|
bytes, err := json.Marshal(&U2{
|
||||||
|
B: "bbb",
|
||||||
|
})
|
||||||
|
assertErr(t, err)
|
||||||
|
assertEq(t, "embedded", `{"b":"bbb"}`, string(bytes))
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
t.Run("omitempty", func(t *testing.T) {
|
t.Run("omitempty", func(t *testing.T) {
|
||||||
type T struct {
|
type T struct {
|
||||||
A int `json:",omitempty"`
|
A int `json:",omitempty"`
|
||||||
|
|
|
@ -578,8 +578,10 @@ func Run(ctx *encoder.RuntimeContext, b []byte, codeSet *encoder.OpcodeSet) ([]b
|
||||||
if code.Flags&encoder.AnonymousHeadFlags == 0 {
|
if code.Flags&encoder.AnonymousHeadFlags == 0 {
|
||||||
b = appendStructHead(ctx, b)
|
b = appendStructHead(ctx, b)
|
||||||
}
|
}
|
||||||
if (code.Flags&encoder.AnonymousKeyFlags) == 0 && len(code.Key) > 0 {
|
if len(code.Key) > 0 {
|
||||||
b = appendStructKey(ctx, code, b)
|
if (code.Flags&encoder.IsTaggedKeyFlags) != 0 || code.Flags&encoder.AnonymousKeyFlags == 0 {
|
||||||
|
b = appendStructKey(ctx, code, b)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
p += uintptr(code.Offset)
|
p += uintptr(code.Offset)
|
||||||
code = code.Next
|
code = code.Next
|
||||||
|
|
|
@ -170,6 +170,7 @@ RETRY:
|
||||||
s.buf = append(s.buf[:s.cursor-1], s.buf[s.cursor:]...)
|
s.buf = append(s.buf[:s.cursor-1], s.buf[s.cursor:]...)
|
||||||
s.length--
|
s.length--
|
||||||
s.cursor--
|
s.cursor--
|
||||||
|
p = s.bufptr()
|
||||||
return p, nil
|
return p, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1417,7 +1417,7 @@ func compileStruct(ctx *compileContext, isPtr bool) (*Opcode, error) {
|
||||||
valueCode = code
|
valueCode = code
|
||||||
}
|
}
|
||||||
|
|
||||||
if field.Anonymous {
|
if field.Anonymous && !tag.IsTaggedKey {
|
||||||
tagKey := ""
|
tagKey := ""
|
||||||
if tag.IsTaggedKey {
|
if tag.IsTaggedKey {
|
||||||
tagKey = tag.Key
|
tagKey = tag.Key
|
||||||
|
@ -1425,6 +1425,7 @@ func compileStruct(ctx *compileContext, isPtr bool) (*Opcode, error) {
|
||||||
for k, v := range anonymousStructFieldPairMap(tags, tagKey, valueCode) {
|
for k, v := range anonymousStructFieldPairMap(tags, tagKey, valueCode) {
|
||||||
anonymousFields[k] = append(anonymousFields[k], v...)
|
anonymousFields[k] = append(anonymousFields[k], v...)
|
||||||
}
|
}
|
||||||
|
|
||||||
valueCode.decIndent()
|
valueCode.decIndent()
|
||||||
|
|
||||||
// fix issue144
|
// fix issue144
|
||||||
|
|
|
@ -578,8 +578,10 @@ func Run(ctx *encoder.RuntimeContext, b []byte, codeSet *encoder.OpcodeSet) ([]b
|
||||||
if code.Flags&encoder.AnonymousHeadFlags == 0 {
|
if code.Flags&encoder.AnonymousHeadFlags == 0 {
|
||||||
b = appendStructHead(ctx, b)
|
b = appendStructHead(ctx, b)
|
||||||
}
|
}
|
||||||
if (code.Flags&encoder.AnonymousKeyFlags) == 0 && len(code.Key) > 0 {
|
if len(code.Key) > 0 {
|
||||||
b = appendStructKey(ctx, code, b)
|
if (code.Flags&encoder.IsTaggedKeyFlags) != 0 || code.Flags&encoder.AnonymousKeyFlags == 0 {
|
||||||
|
b = appendStructKey(ctx, code, b)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
p += uintptr(code.Offset)
|
p += uintptr(code.Offset)
|
||||||
code = code.Next
|
code = code.Next
|
||||||
|
|
|
@ -578,8 +578,10 @@ func Run(ctx *encoder.RuntimeContext, b []byte, codeSet *encoder.OpcodeSet) ([]b
|
||||||
if code.Flags&encoder.AnonymousHeadFlags == 0 {
|
if code.Flags&encoder.AnonymousHeadFlags == 0 {
|
||||||
b = appendStructHead(ctx, b)
|
b = appendStructHead(ctx, b)
|
||||||
}
|
}
|
||||||
if (code.Flags&encoder.AnonymousKeyFlags) == 0 && len(code.Key) > 0 {
|
if len(code.Key) > 0 {
|
||||||
b = appendStructKey(ctx, code, b)
|
if (code.Flags&encoder.IsTaggedKeyFlags) != 0 || code.Flags&encoder.AnonymousKeyFlags == 0 {
|
||||||
|
b = appendStructKey(ctx, code, b)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
p += uintptr(code.Offset)
|
p += uintptr(code.Offset)
|
||||||
code = code.Next
|
code = code.Next
|
||||||
|
|
|
@ -578,8 +578,10 @@ func Run(ctx *encoder.RuntimeContext, b []byte, codeSet *encoder.OpcodeSet) ([]b
|
||||||
if code.Flags&encoder.AnonymousHeadFlags == 0 {
|
if code.Flags&encoder.AnonymousHeadFlags == 0 {
|
||||||
b = appendStructHead(ctx, b)
|
b = appendStructHead(ctx, b)
|
||||||
}
|
}
|
||||||
if (code.Flags&encoder.AnonymousKeyFlags) == 0 && len(code.Key) > 0 {
|
if len(code.Key) > 0 {
|
||||||
b = appendStructKey(ctx, code, b)
|
if (code.Flags&encoder.IsTaggedKeyFlags) != 0 || code.Flags&encoder.AnonymousKeyFlags == 0 {
|
||||||
|
b = appendStructKey(ctx, code, b)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
p += uintptr(code.Offset)
|
p += uintptr(code.Offset)
|
||||||
code = code.Next
|
code = code.Next
|
||||||
|
|
|
@ -578,8 +578,10 @@ func Run(ctx *encoder.RuntimeContext, b []byte, codeSet *encoder.OpcodeSet) ([]b
|
||||||
if code.Flags&encoder.AnonymousHeadFlags == 0 {
|
if code.Flags&encoder.AnonymousHeadFlags == 0 {
|
||||||
b = appendStructHead(ctx, b)
|
b = appendStructHead(ctx, b)
|
||||||
}
|
}
|
||||||
if (code.Flags&encoder.AnonymousKeyFlags) == 0 && len(code.Key) > 0 {
|
if len(code.Key) > 0 {
|
||||||
b = appendStructKey(ctx, code, b)
|
if (code.Flags&encoder.IsTaggedKeyFlags) != 0 || code.Flags&encoder.AnonymousKeyFlags == 0 {
|
||||||
|
b = appendStructKey(ctx, code, b)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
p += uintptr(code.Offset)
|
p += uintptr(code.Offset)
|
||||||
code = code.Next
|
code = code.Next
|
||||||
|
|
Loading…
Reference in New Issue