2021-11-19 12:10:42 +03:00
|
|
|
package encoder
|
|
|
|
|
|
|
|
import (
|
2021-11-22 07:20:03 +03:00
|
|
|
"fmt"
|
2021-11-19 12:10:42 +03:00
|
|
|
"reflect"
|
2021-11-22 07:20:03 +03:00
|
|
|
"unsafe"
|
2021-11-19 12:10:42 +03:00
|
|
|
|
|
|
|
"github.com/goccy/go-json/internal/errors"
|
|
|
|
"github.com/goccy/go-json/internal/runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Code interface {
|
|
|
|
Type() CodeType2
|
2021-11-22 07:20:03 +03:00
|
|
|
ToOpcode(*compileContext) Opcodes
|
|
|
|
}
|
|
|
|
|
2021-11-23 07:53:08 +03:00
|
|
|
type AnonymousCode interface {
|
|
|
|
ToAnonymousOpcode(*compileContext) Opcodes
|
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
type Opcodes []*Opcode
|
|
|
|
|
|
|
|
func (o Opcodes) First() *Opcode {
|
|
|
|
if len(o) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return o[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o Opcodes) Last() *Opcode {
|
|
|
|
if len(o) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return o[len(o)-1]
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type CodeType2 int
|
|
|
|
|
|
|
|
const (
|
|
|
|
CodeTypeInterface CodeType2 = iota
|
|
|
|
CodeTypePtr
|
2021-11-19 14:22:02 +03:00
|
|
|
CodeTypeInt
|
|
|
|
CodeTypeUint
|
|
|
|
CodeTypeFloat
|
|
|
|
CodeTypeString
|
|
|
|
CodeTypeBool
|
|
|
|
CodeTypeStruct
|
|
|
|
CodeTypeMap
|
|
|
|
CodeTypeSlice
|
|
|
|
CodeTypeArray
|
|
|
|
CodeTypeBytes
|
|
|
|
CodeTypeMarshalJSON
|
|
|
|
CodeTypeMarshalText
|
2021-11-22 07:20:03 +03:00
|
|
|
CodeTypeRecursive
|
2021-11-19 12:10:42 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type IntCode struct {
|
|
|
|
typ *runtime.Type
|
|
|
|
bitSize uint8
|
|
|
|
isString bool
|
2021-11-19 14:22:02 +03:00
|
|
|
isPtr bool
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func (c *IntCode) Type() CodeType2 {
|
|
|
|
return CodeTypeInt
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *IntCode) ToOpcode(ctx *compileContext) Opcodes {
|
|
|
|
var code *Opcode
|
|
|
|
switch {
|
|
|
|
case c.isPtr:
|
|
|
|
code = newOpCode(ctx, OpIntPtr)
|
|
|
|
case c.isString:
|
|
|
|
code = newOpCode(ctx, OpIntString)
|
|
|
|
default:
|
|
|
|
code = newOpCode(ctx, OpInt)
|
|
|
|
}
|
|
|
|
code.NumBitSize = c.bitSize
|
|
|
|
ctx.incIndex()
|
|
|
|
return Opcodes{code}
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type UintCode struct {
|
|
|
|
typ *runtime.Type
|
|
|
|
bitSize uint8
|
|
|
|
isString bool
|
2021-11-19 14:22:02 +03:00
|
|
|
isPtr bool
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func (c *UintCode) Type() CodeType2 {
|
|
|
|
return CodeTypeUint
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *UintCode) ToOpcode(ctx *compileContext) Opcodes {
|
|
|
|
var code *Opcode
|
|
|
|
switch {
|
|
|
|
case c.isPtr:
|
|
|
|
code = newOpCode(ctx, OpUintPtr)
|
|
|
|
case c.isString:
|
|
|
|
code = newOpCode(ctx, OpUintString)
|
|
|
|
default:
|
|
|
|
code = newOpCode(ctx, OpUint)
|
|
|
|
}
|
|
|
|
code.NumBitSize = c.bitSize
|
|
|
|
ctx.incIndex()
|
|
|
|
return Opcodes{code}
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type FloatCode struct {
|
|
|
|
typ *runtime.Type
|
|
|
|
bitSize uint8
|
|
|
|
isString bool
|
2021-11-19 14:22:02 +03:00
|
|
|
isPtr bool
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func (c *FloatCode) Type() CodeType2 {
|
|
|
|
return CodeTypeFloat
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *FloatCode) ToOpcode(ctx *compileContext) Opcodes {
|
|
|
|
var code *Opcode
|
|
|
|
switch {
|
|
|
|
case c.isPtr:
|
|
|
|
switch c.bitSize {
|
|
|
|
case 32:
|
|
|
|
code = newOpCode(ctx, OpFloat32Ptr)
|
|
|
|
default:
|
|
|
|
code = newOpCode(ctx, OpFloat64Ptr)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
switch c.bitSize {
|
|
|
|
case 32:
|
|
|
|
code = newOpCode(ctx, OpFloat32)
|
|
|
|
default:
|
|
|
|
code = newOpCode(ctx, OpFloat64)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.incIndex()
|
|
|
|
return Opcodes{code}
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type StringCode struct {
|
|
|
|
typ *runtime.Type
|
|
|
|
isString bool
|
2021-11-19 14:22:02 +03:00
|
|
|
isPtr bool
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func (c *StringCode) Type() CodeType2 {
|
|
|
|
return CodeTypeString
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *StringCode) ToOpcode(ctx *compileContext) Opcodes {
|
|
|
|
isJsonNumberType := c.typ == runtime.Type2RType(jsonNumberType)
|
|
|
|
var code *Opcode
|
|
|
|
if c.isPtr {
|
|
|
|
if isJsonNumberType {
|
|
|
|
code = newOpCode(ctx, OpNumberPtr)
|
|
|
|
} else {
|
|
|
|
code = newOpCode(ctx, OpStringPtr)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if isJsonNumberType {
|
|
|
|
code = newOpCode(ctx, OpNumber)
|
|
|
|
} else {
|
|
|
|
code = newOpCode(ctx, OpString)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.incIndex()
|
|
|
|
return Opcodes{code}
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type BoolCode struct {
|
|
|
|
typ *runtime.Type
|
|
|
|
isString bool
|
2021-11-19 14:22:02 +03:00
|
|
|
isPtr bool
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func (c *BoolCode) Type() CodeType2 {
|
|
|
|
return CodeTypeBool
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *BoolCode) ToOpcode(ctx *compileContext) Opcodes {
|
|
|
|
var code *Opcode
|
|
|
|
switch {
|
|
|
|
case c.isPtr:
|
|
|
|
code = newOpCode(ctx, OpBoolPtr)
|
|
|
|
default:
|
|
|
|
code = newOpCode(ctx, OpBool)
|
|
|
|
}
|
|
|
|
ctx.incIndex()
|
|
|
|
return Opcodes{code}
|
|
|
|
}
|
|
|
|
|
|
|
|
type BytesCode struct {
|
|
|
|
typ *runtime.Type
|
|
|
|
isPtr bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *BytesCode) Type() CodeType2 {
|
|
|
|
return CodeTypeBytes
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *BytesCode) ToOpcode(ctx *compileContext) Opcodes {
|
|
|
|
var code *Opcode
|
|
|
|
switch {
|
|
|
|
case c.isPtr:
|
|
|
|
code = newOpCode(ctx, OpBytesPtr)
|
|
|
|
default:
|
|
|
|
code = newOpCode(ctx, OpBytes)
|
|
|
|
}
|
|
|
|
ctx.incIndex()
|
|
|
|
return Opcodes{code}
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type SliceCode struct {
|
2021-11-22 07:20:03 +03:00
|
|
|
typ *runtime.Type
|
|
|
|
value Code
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func (c *SliceCode) Type() CodeType2 {
|
|
|
|
return CodeTypeSlice
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *SliceCode) ToOpcode(ctx *compileContext) Opcodes {
|
|
|
|
// header => opcode => elem => end
|
|
|
|
// ^ |
|
|
|
|
// |________|
|
|
|
|
size := c.typ.Elem().Size()
|
|
|
|
header := newSliceHeaderCode(ctx)
|
|
|
|
ctx.incIndex()
|
2021-11-25 07:10:01 +03:00
|
|
|
codes := c.value.ToOpcode(ctx.incIndent())
|
|
|
|
elemCode := newSliceElemCode(ctx.withType(c.typ.Elem()), header, size)
|
2021-11-22 07:20:03 +03:00
|
|
|
ctx.incIndex()
|
|
|
|
end := newOpCode(ctx, OpSliceEnd)
|
|
|
|
ctx.incIndex()
|
|
|
|
header.End = end
|
|
|
|
header.Next = codes.First()
|
|
|
|
codes.Last().Next = elemCode
|
|
|
|
elemCode.Next = codes.First()
|
|
|
|
elemCode.End = end
|
2021-11-24 07:32:58 +03:00
|
|
|
return append(append(Opcodes{header}, codes...), elemCode, end)
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type ArrayCode struct {
|
2021-11-22 07:20:03 +03:00
|
|
|
typ *runtime.Type
|
|
|
|
value Code
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func (c *ArrayCode) Type() CodeType2 {
|
|
|
|
return CodeTypeArray
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *ArrayCode) ToOpcode(ctx *compileContext) Opcodes {
|
|
|
|
// header => opcode => elem => end
|
|
|
|
// ^ |
|
|
|
|
// |________|
|
|
|
|
elem := c.typ.Elem()
|
|
|
|
alen := c.typ.Len()
|
|
|
|
size := elem.Size()
|
|
|
|
|
|
|
|
header := newArrayHeaderCode(ctx, alen)
|
|
|
|
ctx.incIndex()
|
|
|
|
|
2021-11-24 07:32:58 +03:00
|
|
|
codes := c.value.ToOpcode(ctx.incIndent())
|
2021-11-22 07:20:03 +03:00
|
|
|
|
2021-11-24 07:32:58 +03:00
|
|
|
elemCode := newArrayElemCode(ctx.withType(elem), header, alen, size)
|
2021-11-22 07:20:03 +03:00
|
|
|
ctx.incIndex()
|
|
|
|
|
|
|
|
end := newOpCode(ctx, OpArrayEnd)
|
|
|
|
ctx.incIndex()
|
|
|
|
|
|
|
|
header.End = end
|
|
|
|
header.Next = codes.First()
|
|
|
|
codes.Last().Next = elemCode
|
|
|
|
elemCode.Next = codes.First()
|
|
|
|
elemCode.End = end
|
2021-11-24 07:32:58 +03:00
|
|
|
|
|
|
|
return append(append(Opcodes{header}, codes...), elemCode, end)
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type MapCode struct {
|
2021-11-22 07:20:03 +03:00
|
|
|
typ *runtime.Type
|
|
|
|
key Code
|
|
|
|
value Code
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func (c *MapCode) Type() CodeType2 {
|
|
|
|
return CodeTypeMap
|
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *MapCode) ToOpcode(ctx *compileContext) Opcodes {
|
|
|
|
// header => code => value => code => key => code => value => code => end
|
|
|
|
// ^ |
|
|
|
|
// |_______________________|
|
|
|
|
header := newMapHeaderCode(ctx)
|
|
|
|
ctx.incIndex()
|
2021-11-19 12:10:42 +03:00
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
keyCodes := c.key.ToOpcode(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
value := newMapValueCode(ctx, header)
|
|
|
|
ctx.incIndex()
|
2021-11-25 07:10:01 +03:00
|
|
|
valueCodes := c.value.ToOpcode(ctx.incIndent())
|
2021-11-22 07:20:03 +03:00
|
|
|
|
|
|
|
key := newMapKeyCode(ctx, header)
|
|
|
|
ctx.incIndex()
|
2021-11-19 12:10:42 +03:00
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
end := newMapEndCode(ctx, header)
|
|
|
|
ctx.incIndex()
|
|
|
|
|
|
|
|
header.Next = keyCodes.First()
|
|
|
|
keyCodes.Last().Next = value
|
|
|
|
value.Next = valueCodes.First()
|
|
|
|
valueCodes.Last().Next = key
|
|
|
|
key.Next = keyCodes.First()
|
|
|
|
|
|
|
|
header.End = end
|
|
|
|
key.End = end
|
|
|
|
value.End = end
|
2021-11-24 07:32:58 +03:00
|
|
|
return append(append(append(append(append(Opcodes{header}, keyCodes...), value), valueCodes...), key), end)
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type StructCode struct {
|
|
|
|
typ *runtime.Type
|
|
|
|
isPtr bool
|
|
|
|
fields []*StructFieldCode
|
|
|
|
disableIndirectConversion bool
|
2021-11-22 07:20:03 +03:00
|
|
|
isIndirect bool
|
|
|
|
isRecursive bool
|
|
|
|
recursiveCodes Opcodes
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func (c *StructCode) Type() CodeType2 {
|
|
|
|
return CodeTypeStruct
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *StructCode) ToOpcode(ctx *compileContext) Opcodes {
|
|
|
|
// header => code => structField => code => end
|
|
|
|
// ^ |
|
|
|
|
// |__________|
|
|
|
|
if c.isRecursive {
|
2021-11-25 07:10:01 +03:00
|
|
|
recursive := newRecursiveCode(ctx, &CompiledCode{})
|
|
|
|
recursive.Type = c.typ
|
2021-11-22 07:20:03 +03:00
|
|
|
ctx.incIndex()
|
2021-11-25 07:10:01 +03:00
|
|
|
*ctx.recursiveCodes = append(*ctx.recursiveCodes, recursive)
|
2021-11-22 07:20:03 +03:00
|
|
|
return Opcodes{recursive}
|
|
|
|
}
|
|
|
|
codes := Opcodes{}
|
|
|
|
var prevField *Opcode
|
2021-11-23 07:53:08 +03:00
|
|
|
ctx = ctx.incIndent()
|
2021-11-22 07:20:03 +03:00
|
|
|
for idx, field := range c.fields {
|
|
|
|
isFirstField := idx == 0
|
|
|
|
isEndField := idx == len(c.fields)-1
|
|
|
|
fieldCodes := field.ToOpcode(ctx, isFirstField, isEndField)
|
|
|
|
for _, code := range fieldCodes {
|
|
|
|
if c.isIndirect {
|
|
|
|
code.Flags |= IndirectFlags
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(codes) > 0 {
|
|
|
|
codes.Last().Next = fieldCodes.First()
|
2021-11-23 07:53:08 +03:00
|
|
|
fieldCodes.First().Idx = codes.First().Idx
|
|
|
|
}
|
|
|
|
if prevField != nil {
|
|
|
|
prevField.NextField = fieldCodes.First()
|
|
|
|
}
|
|
|
|
if isEndField {
|
|
|
|
if len(codes) > 0 {
|
|
|
|
codes.First().End = fieldCodes.Last()
|
2021-11-24 07:32:58 +03:00
|
|
|
} else if field.isAnonymous {
|
|
|
|
fieldCodes.First().End = fieldCodes.Last()
|
|
|
|
//fieldCodes.First().Next.End = fieldCodes.Last()
|
|
|
|
fieldCodes.First().Next.NextField = fieldCodes.Last()
|
2021-11-23 07:53:08 +03:00
|
|
|
} else {
|
|
|
|
fieldCodes.First().End = fieldCodes.Last()
|
|
|
|
}
|
|
|
|
}
|
2021-11-24 07:32:58 +03:00
|
|
|
if field.isAnonymous {
|
|
|
|
// fieldCodes.First() is StructHead operation.
|
|
|
|
// StructHead's next operation is truely head operation.
|
|
|
|
prevField = fieldCodes.First().Next
|
|
|
|
} else {
|
|
|
|
prevField = fieldCodes.First()
|
|
|
|
}
|
2021-11-23 07:53:08 +03:00
|
|
|
codes = append(codes, fieldCodes...)
|
|
|
|
}
|
2021-11-25 07:10:01 +03:00
|
|
|
if len(codes) == 0 {
|
|
|
|
end := &Opcode{
|
|
|
|
Op: OpStructEnd,
|
|
|
|
Idx: opcodeOffset(ctx.ptrIndex),
|
|
|
|
DisplayIdx: ctx.opcodeIndex,
|
|
|
|
Indent: ctx.indent,
|
|
|
|
}
|
|
|
|
head := &Opcode{
|
|
|
|
Op: OpStructHead,
|
|
|
|
Idx: opcodeOffset(ctx.ptrIndex),
|
|
|
|
NextField: end,
|
|
|
|
Type: c.typ,
|
|
|
|
DisplayIdx: ctx.opcodeIndex,
|
|
|
|
Indent: ctx.indent,
|
|
|
|
}
|
|
|
|
codes = append(codes, head, end)
|
|
|
|
end.PrevField = head
|
|
|
|
ctx.incIndex()
|
2021-11-23 07:53:08 +03:00
|
|
|
}
|
2021-11-25 07:10:01 +03:00
|
|
|
ctx = ctx.decIndent()
|
|
|
|
ctx.structTypeToCodes[uintptr(unsafe.Pointer(c.typ))] = codes
|
2021-11-23 07:53:08 +03:00
|
|
|
return codes
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StructCode) ToAnonymousOpcode(ctx *compileContext) Opcodes {
|
|
|
|
// header => code => structField => code => end
|
|
|
|
// ^ |
|
|
|
|
// |__________|
|
|
|
|
if c.isRecursive {
|
2021-11-25 07:10:01 +03:00
|
|
|
recursive := newRecursiveCode(ctx, &CompiledCode{})
|
|
|
|
recursive.Type = c.typ
|
2021-11-23 07:53:08 +03:00
|
|
|
ctx.incIndex()
|
2021-11-25 07:10:01 +03:00
|
|
|
*ctx.recursiveCodes = append(*ctx.recursiveCodes, recursive)
|
2021-11-23 07:53:08 +03:00
|
|
|
return Opcodes{recursive}
|
|
|
|
}
|
|
|
|
codes := Opcodes{}
|
|
|
|
var prevField *Opcode
|
|
|
|
for idx, field := range c.fields {
|
|
|
|
isFirstField := idx == 0
|
|
|
|
isEndField := idx == len(c.fields)-1
|
|
|
|
fieldCodes := field.ToAnonymousOpcode(ctx, isFirstField, isEndField)
|
|
|
|
for _, code := range fieldCodes {
|
|
|
|
if c.isIndirect {
|
|
|
|
code.Flags |= IndirectFlags
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(codes) > 0 {
|
|
|
|
codes.Last().Next = fieldCodes.First()
|
|
|
|
fieldCodes.First().Idx = codes.First().Idx
|
2021-11-22 07:20:03 +03:00
|
|
|
}
|
|
|
|
if prevField != nil {
|
|
|
|
prevField.NextField = fieldCodes.First()
|
|
|
|
}
|
2021-11-23 07:53:08 +03:00
|
|
|
if isEndField {
|
|
|
|
if len(codes) > 0 {
|
|
|
|
codes.First().End = fieldCodes.Last()
|
|
|
|
} else {
|
|
|
|
fieldCodes.First().End = fieldCodes.Last()
|
|
|
|
}
|
|
|
|
}
|
2021-11-22 07:20:03 +03:00
|
|
|
prevField = fieldCodes.First()
|
|
|
|
codes = append(codes, fieldCodes...)
|
|
|
|
}
|
|
|
|
return codes
|
|
|
|
}
|
|
|
|
|
2021-11-25 07:10:01 +03:00
|
|
|
func linkRecursiveCode2(ctx *compileContext) {
|
|
|
|
for _, recursive := range *ctx.recursiveCodes {
|
|
|
|
typeptr := uintptr(unsafe.Pointer(recursive.Type))
|
|
|
|
codes := ctx.structTypeToCodes[typeptr]
|
|
|
|
compiled := recursive.Jmp
|
|
|
|
compiled.Code = copyOpcode(codes.First())
|
|
|
|
code := compiled.Code
|
|
|
|
code.End.Next = newEndOp(&compileContext{})
|
|
|
|
code.Op = code.Op.PtrHeadToHead()
|
2021-11-22 07:20:03 +03:00
|
|
|
|
2021-11-25 07:10:01 +03:00
|
|
|
beforeLastCode := code.End
|
|
|
|
lastCode := beforeLastCode.Next
|
2021-11-22 07:20:03 +03:00
|
|
|
|
2021-11-25 07:10:01 +03:00
|
|
|
lastCode.Idx = beforeLastCode.Idx + uintptrSize
|
|
|
|
lastCode.ElemIdx = lastCode.Idx + uintptrSize
|
|
|
|
lastCode.Length = lastCode.Idx + 2*uintptrSize
|
|
|
|
code.End.Next.Op = OpRecursiveEnd
|
2021-11-22 07:20:03 +03:00
|
|
|
|
2021-11-25 07:10:01 +03:00
|
|
|
// extend length to alloc slot for elemIdx + length
|
|
|
|
totalLength := uintptr(recursive.TotalLength()) + 3
|
|
|
|
nextTotalLength := uintptr(codes.First().TotalLength()) + 3
|
2021-11-22 07:20:03 +03:00
|
|
|
|
2021-11-25 07:10:01 +03:00
|
|
|
compiled.CurLen = totalLength
|
|
|
|
compiled.NextLen = nextTotalLength
|
|
|
|
compiled.Linked = true
|
|
|
|
}
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-20 11:00:52 +03:00
|
|
|
func (c *StructCode) removeFieldsByTags(tags runtime.StructTags) {
|
|
|
|
fields := make([]*StructFieldCode, 0, len(c.fields))
|
|
|
|
for _, field := range c.fields {
|
|
|
|
if field.isAnonymous {
|
|
|
|
structCode := field.getAnonymousStruct()
|
2021-11-22 07:20:03 +03:00
|
|
|
if structCode != nil && !structCode.isRecursive {
|
2021-11-20 11:00:52 +03:00
|
|
|
structCode.removeFieldsByTags(tags)
|
|
|
|
if len(structCode.fields) > 0 {
|
|
|
|
fields = append(fields, field)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if tags.ExistsKey(field.key) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fields = append(fields, field)
|
|
|
|
}
|
|
|
|
c.fields = fields
|
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *StructCode) enableIndirect() {
|
|
|
|
if c.isIndirect {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.isIndirect = true
|
|
|
|
if len(c.fields) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
structCode := c.fields[0].getStruct()
|
|
|
|
if structCode == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
structCode.enableIndirect()
|
|
|
|
}
|
|
|
|
|
2021-11-19 12:10:42 +03:00
|
|
|
type StructFieldCode struct {
|
|
|
|
typ *runtime.Type
|
|
|
|
key string
|
2021-11-22 07:20:03 +03:00
|
|
|
tag *runtime.StructTag
|
2021-11-19 12:10:42 +03:00
|
|
|
value Code
|
|
|
|
offset uintptr
|
|
|
|
isAnonymous bool
|
|
|
|
isTaggedKey bool
|
|
|
|
isNilableType bool
|
|
|
|
isNilCheck bool
|
|
|
|
isAddrForMarshaler bool
|
|
|
|
isNextOpPtrType bool
|
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *StructFieldCode) getStruct() *StructCode {
|
|
|
|
value := c.value
|
|
|
|
ptr, ok := value.(*PtrCode)
|
|
|
|
if ok {
|
|
|
|
value = ptr.value
|
|
|
|
}
|
|
|
|
structCode, ok := value.(*StructCode)
|
|
|
|
if ok {
|
|
|
|
return structCode
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-20 11:00:52 +03:00
|
|
|
func (c *StructFieldCode) getAnonymousStruct() *StructCode {
|
|
|
|
if !c.isAnonymous {
|
|
|
|
return nil
|
|
|
|
}
|
2021-11-22 07:20:03 +03:00
|
|
|
return c.getStruct()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StructFieldCode) ToOpcode(ctx *compileContext, isFirstField, isEndField bool) Opcodes {
|
|
|
|
var key string
|
|
|
|
if ctx.escapeKey {
|
|
|
|
rctx := &RuntimeContext{Option: &Option{Flag: HTMLEscapeOption}}
|
|
|
|
key = fmt.Sprintf(`%s:`, string(AppendString(rctx, []byte{}, c.key)))
|
|
|
|
} else {
|
|
|
|
key = fmt.Sprintf(`"%s":`, c.key)
|
|
|
|
}
|
2021-11-24 07:32:58 +03:00
|
|
|
flags := c.flags()
|
2021-11-22 07:20:03 +03:00
|
|
|
if c.isAnonymous {
|
|
|
|
flags |= AnonymousKeyFlags
|
|
|
|
}
|
|
|
|
field := &Opcode{
|
|
|
|
Idx: opcodeOffset(ctx.ptrIndex),
|
|
|
|
Flags: flags,
|
|
|
|
Key: key,
|
|
|
|
Offset: uint32(c.offset),
|
|
|
|
Type: c.typ,
|
|
|
|
DisplayIdx: ctx.opcodeIndex,
|
|
|
|
Indent: ctx.indent,
|
|
|
|
DisplayKey: c.key,
|
|
|
|
}
|
|
|
|
ctx.incIndex()
|
2021-11-23 07:53:08 +03:00
|
|
|
var codes Opcodes
|
|
|
|
if c.isAnonymous {
|
2021-11-25 07:10:01 +03:00
|
|
|
codes = c.value.(AnonymousCode).ToAnonymousOpcode(ctx.withType(c.typ))
|
2021-11-23 07:53:08 +03:00
|
|
|
} else {
|
2021-11-25 07:10:01 +03:00
|
|
|
codes = c.value.ToOpcode(ctx.withType(c.typ))
|
2021-11-23 07:53:08 +03:00
|
|
|
}
|
2021-11-22 07:20:03 +03:00
|
|
|
if isFirstField {
|
|
|
|
op := optimizeStructHeader(codes.First(), c.tag)
|
|
|
|
field.Op = op
|
|
|
|
field.NumBitSize = codes.First().NumBitSize
|
|
|
|
field.PtrNum = codes.First().PtrNum
|
|
|
|
fieldCodes := Opcodes{field}
|
|
|
|
if op.IsMultipleOpHead() {
|
|
|
|
field.Next = codes.First()
|
|
|
|
fieldCodes = append(fieldCodes, codes...)
|
|
|
|
} else {
|
|
|
|
ctx.decIndex()
|
|
|
|
}
|
2021-11-23 07:53:08 +03:00
|
|
|
if isEndField {
|
2021-11-22 07:20:03 +03:00
|
|
|
end := &Opcode{
|
|
|
|
Op: OpStructEnd,
|
|
|
|
Idx: opcodeOffset(ctx.ptrIndex),
|
|
|
|
DisplayIdx: ctx.opcodeIndex,
|
|
|
|
Indent: ctx.indent,
|
|
|
|
}
|
|
|
|
fieldCodes.Last().Next = end
|
2021-11-23 07:53:08 +03:00
|
|
|
fieldCodes.First().NextField = end
|
2021-11-22 07:20:03 +03:00
|
|
|
fieldCodes = append(fieldCodes, end)
|
|
|
|
ctx.incIndex()
|
|
|
|
}
|
|
|
|
return fieldCodes
|
|
|
|
}
|
|
|
|
op := optimizeStructField(codes.First(), c.tag)
|
|
|
|
field.Op = op
|
|
|
|
field.NumBitSize = codes.First().NumBitSize
|
|
|
|
field.PtrNum = codes.First().PtrNum
|
|
|
|
|
|
|
|
fieldCodes := Opcodes{field}
|
|
|
|
if op.IsMultipleOpField() {
|
|
|
|
field.Next = codes.First()
|
|
|
|
fieldCodes = append(fieldCodes, codes...)
|
|
|
|
} else {
|
|
|
|
// optimize codes
|
|
|
|
ctx.decIndex()
|
|
|
|
}
|
|
|
|
if isEndField && !c.isAnonymous {
|
|
|
|
if isEnableStructEndOptimizationType(c.value.Type()) {
|
|
|
|
field.Op = field.Op.FieldToEnd()
|
|
|
|
} else {
|
|
|
|
end := &Opcode{
|
|
|
|
Op: OpStructEnd,
|
|
|
|
Idx: opcodeOffset(ctx.ptrIndex),
|
|
|
|
DisplayIdx: ctx.opcodeIndex,
|
|
|
|
Indent: ctx.indent,
|
|
|
|
}
|
|
|
|
fieldCodes.Last().Next = end
|
2021-11-23 07:53:08 +03:00
|
|
|
fieldCodes.First().NextField = end
|
2021-11-22 07:20:03 +03:00
|
|
|
fieldCodes = append(fieldCodes, end)
|
|
|
|
ctx.incIndex()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fieldCodes
|
|
|
|
}
|
|
|
|
|
2021-11-24 07:32:58 +03:00
|
|
|
func (c *StructFieldCode) flags() OpFlags {
|
2021-11-23 07:53:08 +03:00
|
|
|
var flags OpFlags
|
|
|
|
if c.isTaggedKey {
|
|
|
|
flags |= IsTaggedKeyFlags
|
|
|
|
}
|
|
|
|
if c.isNilableType {
|
|
|
|
flags |= IsNilableTypeFlags
|
|
|
|
}
|
|
|
|
if c.isNilCheck {
|
|
|
|
flags |= NilCheckFlags
|
|
|
|
}
|
|
|
|
if c.isAddrForMarshaler {
|
|
|
|
flags |= AddrForMarshalerFlags
|
|
|
|
}
|
|
|
|
if c.isNextOpPtrType {
|
|
|
|
flags |= IsNextOpPtrTypeFlags
|
|
|
|
}
|
2021-11-24 07:32:58 +03:00
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StructFieldCode) ToAnonymousOpcode(ctx *compileContext, isFirstField, isEndField bool) Opcodes {
|
|
|
|
var key string
|
|
|
|
if ctx.escapeKey {
|
|
|
|
rctx := &RuntimeContext{Option: &Option{Flag: HTMLEscapeOption}}
|
|
|
|
key = fmt.Sprintf(`%s:`, string(AppendString(rctx, []byte{}, c.key)))
|
|
|
|
} else {
|
|
|
|
key = fmt.Sprintf(`"%s":`, c.key)
|
|
|
|
}
|
|
|
|
flags := c.flags()
|
|
|
|
flags |= AnonymousHeadFlags
|
|
|
|
flags |= AnonymousKeyFlags
|
2021-11-23 07:53:08 +03:00
|
|
|
field := &Opcode{
|
|
|
|
Idx: opcodeOffset(ctx.ptrIndex),
|
|
|
|
Flags: flags,
|
|
|
|
Key: key,
|
|
|
|
Offset: uint32(c.offset),
|
|
|
|
Type: c.typ,
|
|
|
|
DisplayIdx: ctx.opcodeIndex,
|
|
|
|
Indent: ctx.indent,
|
|
|
|
DisplayKey: c.key,
|
|
|
|
}
|
|
|
|
ctx.incIndex()
|
|
|
|
var codes Opcodes
|
|
|
|
if c.isAnonymous {
|
2021-11-25 07:10:01 +03:00
|
|
|
codes = c.value.(AnonymousCode).ToAnonymousOpcode(ctx.withType(c.typ))
|
2021-11-23 07:53:08 +03:00
|
|
|
} else {
|
2021-11-25 07:10:01 +03:00
|
|
|
codes = c.value.ToOpcode(ctx.withType(c.typ))
|
2021-11-23 07:53:08 +03:00
|
|
|
}
|
|
|
|
if isFirstField {
|
|
|
|
op := optimizeStructHeader(codes.First(), c.tag)
|
|
|
|
field.Op = op
|
|
|
|
field.NumBitSize = codes.First().NumBitSize
|
|
|
|
field.PtrNum = codes.First().PtrNum
|
|
|
|
fieldCodes := Opcodes{field}
|
|
|
|
if op.IsMultipleOpHead() {
|
|
|
|
field.Next = codes.First()
|
|
|
|
fieldCodes = append(fieldCodes, codes...)
|
|
|
|
} else {
|
|
|
|
ctx.decIndex()
|
|
|
|
}
|
|
|
|
return fieldCodes
|
|
|
|
}
|
|
|
|
op := optimizeStructField(codes.First(), c.tag)
|
|
|
|
field.Op = op
|
|
|
|
field.NumBitSize = codes.First().NumBitSize
|
|
|
|
field.PtrNum = codes.First().PtrNum
|
|
|
|
|
|
|
|
fieldCodes := Opcodes{field}
|
|
|
|
if op.IsMultipleOpField() {
|
|
|
|
field.Next = codes.First()
|
|
|
|
fieldCodes = append(fieldCodes, codes...)
|
|
|
|
} else {
|
|
|
|
// optimize codes
|
|
|
|
ctx.decIndex()
|
|
|
|
}
|
|
|
|
return fieldCodes
|
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func isEnableStructEndOptimizationType(typ CodeType2) bool {
|
|
|
|
switch typ {
|
|
|
|
case CodeTypeInt, CodeTypeUint, CodeTypeFloat, CodeTypeString, CodeTypeBool:
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
2021-11-20 11:00:52 +03:00
|
|
|
}
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 12:10:42 +03:00
|
|
|
type InterfaceCode struct {
|
2021-11-19 14:22:02 +03:00
|
|
|
typ *runtime.Type
|
|
|
|
isPtr bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *InterfaceCode) Type() CodeType2 {
|
|
|
|
return CodeTypeInterface
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *InterfaceCode) ToOpcode(ctx *compileContext) Opcodes {
|
|
|
|
var code *Opcode
|
|
|
|
switch {
|
|
|
|
case c.isPtr:
|
|
|
|
code = newOpCode(ctx, OpInterfacePtr)
|
|
|
|
default:
|
|
|
|
code = newOpCode(ctx, OpInterface)
|
|
|
|
}
|
|
|
|
ctx.incIndex()
|
|
|
|
return Opcodes{code}
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
type MarshalJSONCode struct {
|
|
|
|
typ *runtime.Type
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *MarshalJSONCode) Type() CodeType2 {
|
|
|
|
return CodeTypeMarshalJSON
|
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *MarshalJSONCode) ToOpcode(ctx *compileContext) Opcodes {
|
2021-11-25 07:10:01 +03:00
|
|
|
code := newOpCode(ctx.withType(c.typ), OpMarshalJSON)
|
2021-11-22 07:20:03 +03:00
|
|
|
typ := c.typ
|
|
|
|
if isPtrMarshalJSONType(typ) {
|
|
|
|
code.Flags |= AddrForMarshalerFlags
|
|
|
|
}
|
|
|
|
if typ.Implements(marshalJSONContextType) || runtime.PtrTo(typ).Implements(marshalJSONContextType) {
|
|
|
|
code.Flags |= MarshalerContextFlags
|
|
|
|
}
|
|
|
|
if isNilableType(typ) {
|
|
|
|
code.Flags |= IsNilableTypeFlags
|
|
|
|
} else {
|
|
|
|
code.Flags &= ^IsNilableTypeFlags
|
|
|
|
}
|
|
|
|
ctx.incIndex()
|
|
|
|
return Opcodes{code}
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type MarshalTextCode struct {
|
|
|
|
typ *runtime.Type
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *MarshalTextCode) Type() CodeType2 {
|
|
|
|
return CodeTypeMarshalText
|
|
|
|
}
|
2021-11-19 12:10:42 +03:00
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *MarshalTextCode) ToOpcode(ctx *compileContext) Opcodes {
|
2021-11-25 07:10:01 +03:00
|
|
|
code := newOpCode(ctx.withType(c.typ), OpMarshalText)
|
2021-11-22 07:20:03 +03:00
|
|
|
typ := c.typ
|
|
|
|
if !typ.Implements(marshalTextType) && runtime.PtrTo(typ).Implements(marshalTextType) {
|
|
|
|
code.Flags |= AddrForMarshalerFlags
|
|
|
|
}
|
|
|
|
if isNilableType(typ) {
|
|
|
|
code.Flags |= IsNilableTypeFlags
|
|
|
|
} else {
|
|
|
|
code.Flags &= ^IsNilableTypeFlags
|
|
|
|
}
|
|
|
|
ctx.incIndex()
|
|
|
|
return Opcodes{code}
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type PtrCode struct {
|
2021-11-22 07:20:03 +03:00
|
|
|
typ *runtime.Type
|
|
|
|
value Code
|
|
|
|
ptrNum uint8
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func (c *PtrCode) Type() CodeType2 {
|
|
|
|
return CodeTypePtr
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func (c *PtrCode) ToOpcode(ctx *compileContext) Opcodes {
|
2021-11-25 07:10:01 +03:00
|
|
|
codes := c.value.ToOpcode(ctx.withType(c.typ.Elem()))
|
2021-11-23 07:53:08 +03:00
|
|
|
codes.First().Op = convertPtrOp(codes.First())
|
|
|
|
codes.First().PtrNum = c.ptrNum
|
|
|
|
return codes
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *PtrCode) ToAnonymousOpcode(ctx *compileContext) Opcodes {
|
2021-11-25 07:10:01 +03:00
|
|
|
codes := c.value.(AnonymousCode).ToAnonymousOpcode(ctx.withType(c.typ.Elem()))
|
2021-11-23 07:53:08 +03:00
|
|
|
codes.First().Op = convertPtrOp(codes.First())
|
2021-11-22 07:20:03 +03:00
|
|
|
codes.First().PtrNum = c.ptrNum
|
|
|
|
return codes
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func type2code(ctx *compileContext) (Code, error) {
|
|
|
|
typ := ctx.typ
|
2021-11-19 12:10:42 +03:00
|
|
|
switch {
|
|
|
|
case implementsMarshalJSON(typ):
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileMarshalJSON2(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
case implementsMarshalText(typ):
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileMarshalText2(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
isPtr := false
|
|
|
|
orgType := typ
|
|
|
|
if typ.Kind() == reflect.Ptr {
|
|
|
|
typ = typ.Elem()
|
|
|
|
isPtr = true
|
|
|
|
}
|
|
|
|
switch {
|
|
|
|
case implementsMarshalJSON(typ):
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileMarshalJSON2(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
case implementsMarshalText(typ):
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileMarshalText2(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
switch typ.Kind() {
|
|
|
|
case reflect.Slice:
|
2021-11-19 14:22:02 +03:00
|
|
|
ctx := ctx.withType(typ)
|
2021-11-19 12:10:42 +03:00
|
|
|
elem := typ.Elem()
|
|
|
|
if elem.Kind() == reflect.Uint8 {
|
|
|
|
p := runtime.PtrTo(elem)
|
|
|
|
if !implementsMarshalJSONType(p) && !p.Implements(marshalTextType) {
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileBytes2(ctx, isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
}
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileSlice2(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Map:
|
|
|
|
if isPtr {
|
2021-11-19 14:22:02 +03:00
|
|
|
return compilePtr2(ctx.withType(runtime.PtrTo(typ)))
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileMap2(ctx.withType(typ))
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Struct:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileStruct2(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Int:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInt2(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Int8:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInt82(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Int16:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInt162(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Int32:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInt322(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Int64:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInt642(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Uint, reflect.Uintptr:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileUint2(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Uint8:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileUint82(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Uint16:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileUint162(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Uint32:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileUint322(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Uint64:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileUint642(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Float32:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileFloat322(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Float64:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileFloat642(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.String:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileString2(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Bool:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileBool2(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Interface:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInterface2(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
default:
|
|
|
|
if isPtr && typ.Implements(marshalTextType) {
|
|
|
|
typ = orgType
|
|
|
|
}
|
2021-11-19 14:22:02 +03:00
|
|
|
return type2codeWithPtr(ctx.withType(typ), isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func type2codeWithPtr(ctx *compileContext, isPtr bool) (Code, error) {
|
|
|
|
typ := ctx.typ
|
2021-11-19 12:10:42 +03:00
|
|
|
switch {
|
|
|
|
case implementsMarshalJSON(typ):
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileMarshalJSON2(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
case implementsMarshalText(typ):
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileMarshalText2(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
switch typ.Kind() {
|
|
|
|
case reflect.Ptr:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compilePtr2(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Slice:
|
|
|
|
elem := typ.Elem()
|
|
|
|
if elem.Kind() == reflect.Uint8 {
|
|
|
|
p := runtime.PtrTo(elem)
|
|
|
|
if !implementsMarshalJSONType(p) && !p.Implements(marshalTextType) {
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileBytes2(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
}
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileSlice2(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Array:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileArray2(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Map:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileMap2(ctx)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Struct:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileStruct2(ctx, isPtr)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Interface:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInterface2(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Int:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInt2(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Int8:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInt82(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Int16:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInt162(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Int32:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInt322(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Int64:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileInt642(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Uint:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileUint2(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Uint8:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileUint82(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Uint16:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileUint162(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Uint32:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileUint322(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Uint64:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileUint642(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Uintptr:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileUint2(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Float32:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileFloat322(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Float64:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileFloat642(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.String:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileString2(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
case reflect.Bool:
|
2021-11-19 14:22:02 +03:00
|
|
|
return compileBool2(ctx, false)
|
2021-11-19 12:10:42 +03:00
|
|
|
}
|
|
|
|
return nil, &errors.UnsupportedTypeError{Type: runtime.RType2Type(typ)}
|
|
|
|
}
|
2021-11-19 14:22:02 +03:00
|
|
|
|
|
|
|
func compileInt2(ctx *compileContext, isPtr bool) (*IntCode, error) {
|
|
|
|
return &IntCode{typ: ctx.typ, bitSize: intSize, isPtr: isPtr}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileInt82(ctx *compileContext, isPtr bool) (*IntCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &IntCode{typ: ctx.typ, bitSize: 8, isPtr: isPtr}, nil
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileInt162(ctx *compileContext, isPtr bool) (*IntCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &IntCode{typ: ctx.typ, bitSize: 16, isPtr: isPtr}, nil
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileInt322(ctx *compileContext, isPtr bool) (*IntCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &IntCode{typ: ctx.typ, bitSize: 32, isPtr: isPtr}, nil
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileInt642(ctx *compileContext, isPtr bool) (*IntCode, error) {
|
|
|
|
return &IntCode{typ: ctx.typ, bitSize: 64, isPtr: isPtr}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileUint2(ctx *compileContext, isPtr bool) (*UintCode, error) {
|
|
|
|
return &UintCode{typ: ctx.typ, bitSize: intSize, isPtr: isPtr}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileUint82(ctx *compileContext, isPtr bool) (*UintCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &UintCode{typ: ctx.typ, bitSize: 8, isPtr: isPtr}, nil
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileUint162(ctx *compileContext, isPtr bool) (*UintCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &UintCode{typ: ctx.typ, bitSize: 16, isPtr: isPtr}, nil
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileUint322(ctx *compileContext, isPtr bool) (*UintCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &UintCode{typ: ctx.typ, bitSize: 32, isPtr: isPtr}, nil
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileUint642(ctx *compileContext, isPtr bool) (*UintCode, error) {
|
|
|
|
return &UintCode{typ: ctx.typ, bitSize: 64, isPtr: isPtr}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileFloat322(ctx *compileContext, isPtr bool) (*FloatCode, error) {
|
|
|
|
return &FloatCode{typ: ctx.typ, bitSize: 32, isPtr: isPtr}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileFloat642(ctx *compileContext, isPtr bool) (*FloatCode, error) {
|
|
|
|
return &FloatCode{typ: ctx.typ, bitSize: 64, isPtr: isPtr}, nil
|
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:03 +03:00
|
|
|
func compileIntString2(ctx *compileContext) (*IntCode, error) {
|
|
|
|
return &IntCode{typ: ctx.typ, bitSize: intSize, isString: true}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileInt8String2(ctx *compileContext) (*IntCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &IntCode{typ: ctx.typ, bitSize: 8, isString: true}, nil
|
2021-11-22 07:20:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileInt16String2(ctx *compileContext) (*IntCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &IntCode{typ: ctx.typ, bitSize: 16, isString: true}, nil
|
2021-11-22 07:20:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileInt32String2(ctx *compileContext) (*IntCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &IntCode{typ: ctx.typ, bitSize: 32, isString: true}, nil
|
2021-11-22 07:20:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileInt64String2(ctx *compileContext) (*IntCode, error) {
|
|
|
|
return &IntCode{typ: ctx.typ, bitSize: 64, isString: true}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileUintString2(ctx *compileContext) (*UintCode, error) {
|
|
|
|
return &UintCode{typ: ctx.typ, bitSize: intSize, isString: true}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileUint8String2(ctx *compileContext) (*UintCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &UintCode{typ: ctx.typ, bitSize: 8, isString: true}, nil
|
2021-11-22 07:20:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileUint16String2(ctx *compileContext) (*UintCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &UintCode{typ: ctx.typ, bitSize: 16, isString: true}, nil
|
2021-11-22 07:20:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileUint32String2(ctx *compileContext) (*UintCode, error) {
|
2021-11-25 07:10:01 +03:00
|
|
|
return &UintCode{typ: ctx.typ, bitSize: 32, isString: true}, nil
|
2021-11-22 07:20:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileUint64String2(ctx *compileContext) (*UintCode, error) {
|
|
|
|
return &UintCode{typ: ctx.typ, bitSize: 64, isString: true}, nil
|
|
|
|
}
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
func compileString2(ctx *compileContext, isString bool) (*StringCode, error) {
|
|
|
|
return &StringCode{typ: ctx.typ, isString: isString}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileBool2(ctx *compileContext, isString bool) (*BoolCode, error) {
|
|
|
|
return &BoolCode{typ: ctx.typ, isString: isString}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileSlice2(ctx *compileContext) (*SliceCode, error) {
|
2021-11-22 07:20:03 +03:00
|
|
|
elem := ctx.typ.Elem()
|
|
|
|
code, err := compileListElem2(ctx.withType(elem))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if code.Type() == CodeTypeStruct {
|
|
|
|
structCode := code.(*StructCode)
|
|
|
|
structCode.enableIndirect()
|
|
|
|
}
|
|
|
|
return &SliceCode{typ: ctx.typ, value: code}, nil
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileArray2(ctx *compileContext) (*ArrayCode, error) {
|
2021-11-22 07:20:03 +03:00
|
|
|
typ := ctx.typ
|
|
|
|
elem := typ.Elem()
|
|
|
|
code, err := compileListElem2(ctx.withType(elem))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if code.Type() == CodeTypeStruct {
|
|
|
|
structCode := code.(*StructCode)
|
|
|
|
structCode.enableIndirect()
|
|
|
|
}
|
|
|
|
return &ArrayCode{typ: ctx.typ, value: code}, nil
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileMap2(ctx *compileContext) (*MapCode, error) {
|
2021-11-22 07:20:03 +03:00
|
|
|
typ := ctx.typ
|
|
|
|
keyCode, err := compileMapKey(ctx.withType(typ.Key()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
valueCode, err := compileMapValue2(ctx.withType(typ.Elem()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if valueCode.Type() == CodeTypeStruct {
|
|
|
|
structCode := valueCode.(*StructCode)
|
|
|
|
structCode.enableIndirect()
|
|
|
|
}
|
|
|
|
return &MapCode{typ: ctx.typ, key: keyCode, value: valueCode}, nil
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileBytes2(ctx *compileContext, isPtr bool) (*BytesCode, error) {
|
|
|
|
return &BytesCode{typ: ctx.typ, isPtr: isPtr}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileInterface2(ctx *compileContext, isPtr bool) (*InterfaceCode, error) {
|
|
|
|
return &InterfaceCode{typ: ctx.typ, isPtr: isPtr}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileMarshalJSON2(ctx *compileContext) (*MarshalJSONCode, error) {
|
|
|
|
return &MarshalJSONCode{typ: ctx.typ}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileMarshalText2(ctx *compileContext) (*MarshalTextCode, error) {
|
|
|
|
return &MarshalTextCode{typ: ctx.typ}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compilePtr2(ctx *compileContext) (*PtrCode, error) {
|
|
|
|
code, err := type2codeWithPtr(ctx.withType(ctx.typ.Elem()), true)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-11-22 07:20:03 +03:00
|
|
|
ptr, ok := code.(*PtrCode)
|
|
|
|
if ok {
|
|
|
|
return &PtrCode{typ: ctx.typ, value: ptr.value, ptrNum: ptr.ptrNum + 1}, nil
|
|
|
|
}
|
|
|
|
return &PtrCode{typ: ctx.typ, value: code, ptrNum: 1}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileListElem2(ctx *compileContext) (Code, error) {
|
|
|
|
typ := ctx.typ
|
|
|
|
switch {
|
|
|
|
case isPtrMarshalJSONType(typ):
|
|
|
|
return compileMarshalJSON2(ctx)
|
|
|
|
case !typ.Implements(marshalTextType) && runtime.PtrTo(typ).Implements(marshalTextType):
|
|
|
|
return compileMarshalText2(ctx)
|
|
|
|
case typ.Kind() == reflect.Map:
|
|
|
|
return compilePtr2(ctx.withType(runtime.PtrTo(typ)))
|
|
|
|
default:
|
|
|
|
code, err := type2codeWithPtr(ctx, false)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
ptr, ok := code.(*PtrCode)
|
|
|
|
if ok {
|
|
|
|
if ptr.value.Type() == CodeTypeMap {
|
|
|
|
ptr.ptrNum++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileMapKey(ctx *compileContext) (Code, error) {
|
|
|
|
typ := ctx.typ
|
|
|
|
switch {
|
|
|
|
case implementsMarshalJSON(typ):
|
|
|
|
return compileMarshalJSON2(ctx)
|
|
|
|
case implementsMarshalText(typ):
|
|
|
|
return compileMarshalText2(ctx)
|
|
|
|
}
|
|
|
|
switch typ.Kind() {
|
|
|
|
case reflect.Ptr:
|
|
|
|
return compilePtr2(ctx)
|
|
|
|
case reflect.String:
|
|
|
|
return compileString2(ctx, false)
|
|
|
|
case reflect.Int:
|
|
|
|
return compileIntString2(ctx)
|
|
|
|
case reflect.Int8:
|
|
|
|
return compileInt8String2(ctx)
|
|
|
|
case reflect.Int16:
|
|
|
|
return compileInt16String2(ctx)
|
|
|
|
case reflect.Int32:
|
|
|
|
return compileInt32String2(ctx)
|
|
|
|
case reflect.Int64:
|
|
|
|
return compileInt64String2(ctx)
|
|
|
|
case reflect.Uint:
|
|
|
|
return compileUintString2(ctx)
|
|
|
|
case reflect.Uint8:
|
|
|
|
return compileUint8String2(ctx)
|
|
|
|
case reflect.Uint16:
|
|
|
|
return compileUint16String2(ctx)
|
|
|
|
case reflect.Uint32:
|
|
|
|
return compileUint32String2(ctx)
|
|
|
|
case reflect.Uint64:
|
|
|
|
return compileUint64String2(ctx)
|
|
|
|
case reflect.Uintptr:
|
|
|
|
return compileUintString2(ctx)
|
|
|
|
}
|
|
|
|
return nil, &errors.UnsupportedTypeError{Type: runtime.RType2Type(typ)}
|
|
|
|
}
|
|
|
|
|
|
|
|
func compileMapValue2(ctx *compileContext) (Code, error) {
|
|
|
|
switch ctx.typ.Kind() {
|
|
|
|
case reflect.Map:
|
|
|
|
return compilePtr2(ctx.withType(runtime.PtrTo(ctx.typ)))
|
|
|
|
default:
|
|
|
|
code, err := type2codeWithPtr(ctx, false)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
ptr, ok := code.(*PtrCode)
|
|
|
|
if ok {
|
|
|
|
if ptr.value.Type() == CodeTypeMap {
|
|
|
|
ptr.ptrNum++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return code, nil
|
|
|
|
}
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func compileStruct2(ctx *compileContext, isPtr bool) (*StructCode, error) {
|
|
|
|
typ := ctx.typ
|
2021-11-22 07:20:03 +03:00
|
|
|
typeptr := uintptr(unsafe.Pointer(typ))
|
|
|
|
if code, exists := ctx.structTypeToCode[typeptr]; exists {
|
|
|
|
derefCode := *code
|
|
|
|
derefCode.isRecursive = true
|
|
|
|
return &derefCode, nil
|
|
|
|
}
|
|
|
|
indirect := runtime.IfaceIndir(typ)
|
|
|
|
code := &StructCode{typ: typ, isPtr: isPtr, isIndirect: indirect}
|
|
|
|
ctx.structTypeToCode[typeptr] = code
|
|
|
|
|
2021-11-19 14:22:02 +03:00
|
|
|
fieldNum := typ.NumField()
|
|
|
|
tags := typeToStructTags(typ)
|
|
|
|
fields := []*StructFieldCode{}
|
|
|
|
for i, tag := range tags {
|
|
|
|
isOnlyOneFirstField := i == 0 && fieldNum == 1
|
|
|
|
field, err := code.compileStructField(ctx, tag, isPtr, isOnlyOneFirstField)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if field.isAnonymous {
|
2021-11-20 11:00:52 +03:00
|
|
|
structCode := field.getAnonymousStruct()
|
|
|
|
if structCode != nil {
|
|
|
|
structCode.removeFieldsByTags(tags)
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
2021-11-22 07:20:03 +03:00
|
|
|
if isAssignableIndirect(field, isPtr) {
|
|
|
|
if indirect {
|
|
|
|
structCode.isIndirect = true
|
|
|
|
} else {
|
|
|
|
structCode.isIndirect = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
structCode := field.getStruct()
|
|
|
|
if structCode != nil {
|
|
|
|
if indirect {
|
|
|
|
// if parent is indirect type, set child indirect property to true
|
|
|
|
structCode.isIndirect = true
|
|
|
|
} else {
|
|
|
|
// if parent is not indirect type, set child indirect property to false.
|
|
|
|
// but if parent's indirect is false and isPtr is true, then indirect must be true.
|
|
|
|
// Do this only if indirectConversion is enabled at the end of compileStruct.
|
|
|
|
structCode.isIndirect = false
|
|
|
|
}
|
|
|
|
}
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
2021-11-20 11:00:52 +03:00
|
|
|
fields = append(fields, field)
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
2021-11-20 11:00:52 +03:00
|
|
|
fieldMap := getFieldMap(fields)
|
|
|
|
duplicatedFieldMap := getDuplicatedFieldMap(fieldMap)
|
|
|
|
code.fields = filteredDuplicatedFields(fields, duplicatedFieldMap)
|
2021-11-22 07:20:03 +03:00
|
|
|
if !code.disableIndirectConversion && !indirect && isPtr {
|
|
|
|
code.enableIndirect()
|
|
|
|
}
|
2021-11-23 07:53:08 +03:00
|
|
|
delete(ctx.structTypeToCode, typeptr)
|
2021-11-20 11:00:52 +03:00
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getFieldMap(fields []*StructFieldCode) map[string][]*StructFieldCode {
|
2021-11-19 14:22:02 +03:00
|
|
|
fieldMap := map[string][]*StructFieldCode{}
|
|
|
|
for _, field := range fields {
|
2021-11-20 11:00:52 +03:00
|
|
|
if field.isAnonymous {
|
|
|
|
structCode := field.getAnonymousStruct()
|
2021-11-22 07:20:03 +03:00
|
|
|
if structCode != nil && !structCode.isRecursive {
|
2021-11-20 11:00:52 +03:00
|
|
|
for k, v := range getFieldMap(structCode.fields) {
|
|
|
|
fieldMap[k] = append(fieldMap[k], v...)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
2021-11-19 14:22:02 +03:00
|
|
|
fieldMap[field.key] = append(fieldMap[field.key], field)
|
|
|
|
}
|
2021-11-20 11:00:52 +03:00
|
|
|
return fieldMap
|
|
|
|
}
|
|
|
|
|
|
|
|
func getDuplicatedFieldMap(fieldMap map[string][]*StructFieldCode) map[*StructFieldCode]struct{} {
|
|
|
|
duplicatedFieldMap := map[*StructFieldCode]struct{}{}
|
2021-11-19 14:22:02 +03:00
|
|
|
for _, fields := range fieldMap {
|
|
|
|
if len(fields) == 1 {
|
|
|
|
continue
|
|
|
|
}
|
2021-11-20 11:00:52 +03:00
|
|
|
if isTaggedKeyOnly(fields) {
|
|
|
|
for _, field := range fields {
|
|
|
|
if field.isTaggedKey {
|
|
|
|
continue
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
2021-11-20 11:00:52 +03:00
|
|
|
duplicatedFieldMap[field] = struct{}{}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for _, field := range fields {
|
|
|
|
duplicatedFieldMap[field] = struct{}{}
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-20 11:00:52 +03:00
|
|
|
return duplicatedFieldMap
|
|
|
|
}
|
|
|
|
|
|
|
|
func filteredDuplicatedFields(fields []*StructFieldCode, duplicatedFieldMap map[*StructFieldCode]struct{}) []*StructFieldCode {
|
2021-11-19 14:22:02 +03:00
|
|
|
filteredFields := make([]*StructFieldCode, 0, len(fields))
|
|
|
|
for _, field := range fields {
|
2021-11-20 11:00:52 +03:00
|
|
|
if field.isAnonymous {
|
|
|
|
structCode := field.getAnonymousStruct()
|
2021-11-22 07:20:03 +03:00
|
|
|
if structCode != nil && !structCode.isRecursive {
|
2021-11-20 11:00:52 +03:00
|
|
|
structCode.fields = filteredDuplicatedFields(structCode.fields, duplicatedFieldMap)
|
|
|
|
if len(structCode.fields) > 0 {
|
|
|
|
filteredFields = append(filteredFields, field)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if _, exists := duplicatedFieldMap[field]; exists {
|
2021-11-19 14:22:02 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
filteredFields = append(filteredFields, field)
|
|
|
|
}
|
2021-11-20 11:00:52 +03:00
|
|
|
return filteredFields
|
|
|
|
}
|
|
|
|
|
|
|
|
func isTaggedKeyOnly(fields []*StructFieldCode) bool {
|
|
|
|
var taggedKeyFieldCount int
|
|
|
|
for _, field := range fields {
|
|
|
|
if field.isTaggedKey {
|
|
|
|
taggedKeyFieldCount++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return taggedKeyFieldCount == 1
|
2021-11-19 14:22:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func typeToStructTags(typ *runtime.Type) runtime.StructTags {
|
|
|
|
tags := runtime.StructTags{}
|
|
|
|
fieldNum := typ.NumField()
|
|
|
|
for i := 0; i < fieldNum; i++ {
|
|
|
|
field := typ.Field(i)
|
|
|
|
if runtime.IsIgnoredStructField(field) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
tags = append(tags, runtime.StructTagFromField(field))
|
|
|
|
}
|
|
|
|
return tags
|
|
|
|
}
|
|
|
|
|
|
|
|
// *struct{ field T } => struct { field *T }
|
|
|
|
// func (*T) MarshalJSON() ([]byte, error)
|
|
|
|
func isMovePointerPositionFromHeadToFirstMarshalJSONFieldCase(typ *runtime.Type, isIndirectSpecialCase bool) bool {
|
|
|
|
return isIndirectSpecialCase && !isNilableType(typ) && isPtrMarshalJSONType(typ)
|
|
|
|
}
|
|
|
|
|
|
|
|
// *struct{ field T } => struct { field *T }
|
|
|
|
// func (*T) MarshalText() ([]byte, error)
|
|
|
|
func isMovePointerPositionFromHeadToFirstMarshalTextFieldCase(typ *runtime.Type, isIndirectSpecialCase bool) bool {
|
|
|
|
return isIndirectSpecialCase && !isNilableType(typ) && isPtrMarshalTextType(typ)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *StructCode) compileStructField(ctx *compileContext, tag *runtime.StructTag, isPtr, isOnlyOneFirstField bool) (*StructFieldCode, error) {
|
|
|
|
field := tag.Field
|
|
|
|
fieldType := runtime.Type2RType(field.Type)
|
|
|
|
isIndirectSpecialCase := isPtr && isOnlyOneFirstField
|
|
|
|
fieldCode := &StructFieldCode{
|
|
|
|
typ: fieldType,
|
|
|
|
key: tag.Key,
|
2021-11-22 07:20:03 +03:00
|
|
|
tag: tag,
|
2021-11-19 14:22:02 +03:00
|
|
|
offset: field.Offset,
|
|
|
|
isAnonymous: field.Anonymous && !tag.IsTaggedKey,
|
|
|
|
isTaggedKey: tag.IsTaggedKey,
|
|
|
|
isNilableType: isNilableType(fieldType),
|
|
|
|
isNilCheck: true,
|
|
|
|
}
|
|
|
|
switch {
|
|
|
|
case isMovePointerPositionFromHeadToFirstMarshalJSONFieldCase(fieldType, isIndirectSpecialCase):
|
|
|
|
code, err := compileMarshalJSON2(ctx.withType(fieldType))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
fieldCode.value = code
|
|
|
|
fieldCode.isAddrForMarshaler = true
|
|
|
|
fieldCode.isNilCheck = false
|
2021-11-22 07:20:03 +03:00
|
|
|
c.isIndirect = false
|
2021-11-19 14:22:02 +03:00
|
|
|
c.disableIndirectConversion = true
|
|
|
|
case isMovePointerPositionFromHeadToFirstMarshalTextFieldCase(fieldType, isIndirectSpecialCase):
|
|
|
|
code, err := compileMarshalText2(ctx.withType(fieldType))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
fieldCode.value = code
|
|
|
|
fieldCode.isAddrForMarshaler = true
|
|
|
|
fieldCode.isNilCheck = false
|
2021-11-22 07:20:03 +03:00
|
|
|
c.isIndirect = false
|
2021-11-19 14:22:02 +03:00
|
|
|
c.disableIndirectConversion = true
|
|
|
|
case isPtr && isPtrMarshalJSONType(fieldType):
|
|
|
|
// *struct{ field T }
|
|
|
|
// func (*T) MarshalJSON() ([]byte, error)
|
|
|
|
code, err := compileMarshalJSON2(ctx.withType(fieldType))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
fieldCode.value = code
|
|
|
|
fieldCode.isAddrForMarshaler = true
|
|
|
|
fieldCode.isNilCheck = false
|
|
|
|
case isPtr && isPtrMarshalTextType(fieldType):
|
|
|
|
// *struct{ field T }
|
|
|
|
// func (*T) MarshalText() ([]byte, error)
|
|
|
|
code, err := compileMarshalText2(ctx.withType(fieldType))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
fieldCode.value = code
|
|
|
|
fieldCode.isAddrForMarshaler = true
|
|
|
|
fieldCode.isNilCheck = false
|
|
|
|
default:
|
|
|
|
code, err := type2codeWithPtr(ctx.withType(fieldType), isPtr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
switch code.Type() {
|
|
|
|
case CodeTypePtr, CodeTypeInterface:
|
|
|
|
fieldCode.isNextOpPtrType = true
|
|
|
|
}
|
|
|
|
fieldCode.value = code
|
|
|
|
fieldCode.isNilCheck = false
|
|
|
|
}
|
|
|
|
return fieldCode, nil
|
|
|
|
}
|
2021-11-22 07:20:03 +03:00
|
|
|
|
|
|
|
func isAssignableIndirect(fieldCode *StructFieldCode, isPtr bool) bool {
|
|
|
|
if isPtr {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
codeType := fieldCode.value.Type()
|
|
|
|
if codeType == CodeTypeMarshalJSON {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if codeType == CodeTypeMarshalText {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|