2020-04-29 18:31:50 +03:00
|
|
|
package json
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"reflect"
|
2020-12-29 19:29:29 +03:00
|
|
|
"strings"
|
2020-04-29 18:31:50 +03:00
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileHead(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
typ := ctx.typ
|
2020-08-18 07:36:36 +03:00
|
|
|
switch {
|
|
|
|
case typ.Implements(marshalJSONType):
|
2020-08-30 11:32:26 +03:00
|
|
|
return e.compileMarshalJSON(ctx)
|
2020-08-18 07:36:36 +03:00
|
|
|
case rtype_ptrTo(typ).Implements(marshalJSONType):
|
2020-08-30 11:32:26 +03:00
|
|
|
return e.compileMarshalJSONPtr(ctx)
|
2020-08-18 07:36:36 +03:00
|
|
|
case typ.Implements(marshalTextType):
|
2020-08-30 11:32:26 +03:00
|
|
|
return e.compileMarshalText(ctx)
|
2020-08-18 07:36:36 +03:00
|
|
|
case rtype_ptrTo(typ).Implements(marshalTextType):
|
2020-08-30 11:32:26 +03:00
|
|
|
return e.compileMarshalTextPtr(ctx)
|
2020-05-04 12:39:17 +03:00
|
|
|
}
|
2020-08-18 18:32:45 +03:00
|
|
|
isPtr := false
|
2020-12-07 04:49:00 +03:00
|
|
|
orgType := typ
|
2020-05-04 12:39:17 +03:00
|
|
|
if typ.Kind() == reflect.Ptr {
|
|
|
|
typ = typ.Elem()
|
2020-08-18 18:32:45 +03:00
|
|
|
isPtr = true
|
2020-05-04 12:39:17 +03:00
|
|
|
}
|
2020-08-08 12:53:01 +03:00
|
|
|
if typ.Kind() == reflect.Map {
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileMap(ctx.withType(typ), isPtr)
|
2020-08-18 18:32:45 +03:00
|
|
|
} else if typ.Kind() == reflect.Struct {
|
2020-12-29 19:29:29 +03:00
|
|
|
code, err := e.compileStruct(ctx.withType(typ), isPtr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-01-09 07:55:34 +03:00
|
|
|
e.convertHeadOnlyCode(code, isPtr)
|
2020-12-29 19:29:29 +03:00
|
|
|
e.optimizeStructEnd(code)
|
2021-01-15 10:25:00 +03:00
|
|
|
e.linkRecursiveCode(code)
|
2020-12-29 19:29:29 +03:00
|
|
|
return code, nil
|
2020-12-07 04:49:00 +03:00
|
|
|
} else if isPtr && typ.Implements(marshalTextType) {
|
|
|
|
typ = orgType
|
|
|
|
} else if isPtr && typ.Implements(marshalJSONType) {
|
|
|
|
typ = orgType
|
2020-08-08 12:53:01 +03:00
|
|
|
}
|
2020-12-29 19:29:29 +03:00
|
|
|
code, err := e.compile(ctx.withType(typ))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-01-09 07:55:34 +03:00
|
|
|
e.convertHeadOnlyCode(code, isPtr)
|
2020-12-29 19:29:29 +03:00
|
|
|
e.optimizeStructEnd(code)
|
2021-01-15 10:25:00 +03:00
|
|
|
e.linkRecursiveCode(code)
|
2020-12-29 19:29:29 +03:00
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
2021-01-15 10:25:00 +03:00
|
|
|
func (e *Encoder) linkRecursiveCode(c *opcode) {
|
|
|
|
for code := c; code.op != opEnd && code.op != opStructFieldRecursiveEnd; {
|
|
|
|
switch code.op {
|
|
|
|
case opStructFieldRecursive,
|
|
|
|
opStructFieldPtrAnonymousHeadRecursive,
|
|
|
|
opStructFieldAnonymousHeadRecursive:
|
|
|
|
if code.jmp.linked {
|
|
|
|
code = code.next
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
code.jmp.code = copyOpcode(code.jmp.code)
|
|
|
|
c := code.jmp.code
|
|
|
|
c.end.next = newEndOp(&encodeCompileContext{})
|
|
|
|
c.op = c.op.ptrHeadToHead()
|
|
|
|
|
|
|
|
beforeLastCode := c.end
|
|
|
|
lastCode := beforeLastCode.next
|
|
|
|
|
|
|
|
lastCode.idx = beforeLastCode.idx + uintptrSize
|
|
|
|
lastCode.elemIdx = lastCode.idx + uintptrSize
|
|
|
|
|
|
|
|
// extend length to alloc slot for elemIdx
|
|
|
|
totalLength := uintptr(code.totalLength() + 1)
|
|
|
|
nextTotalLength := uintptr(c.totalLength() + 1)
|
|
|
|
|
|
|
|
c.end.next.op = opStructFieldRecursiveEnd
|
|
|
|
|
|
|
|
code.jmp.curLen = totalLength
|
|
|
|
code.jmp.nextLen = nextTotalLength
|
|
|
|
code.jmp.linked = true
|
|
|
|
|
|
|
|
e.linkRecursiveCode(code.jmp.code)
|
|
|
|
code = code.next
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch code.op.codeType() {
|
|
|
|
case codeArrayElem, codeSliceElem, codeMapKey:
|
|
|
|
code = code.end
|
|
|
|
default:
|
|
|
|
code = code.next
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-29 19:29:29 +03:00
|
|
|
func (e *Encoder) optimizeStructEnd(c *opcode) {
|
|
|
|
for code := c; code.op != opEnd; {
|
|
|
|
if code.op == opStructFieldRecursive {
|
|
|
|
// ignore if exists recursive operation
|
|
|
|
return
|
|
|
|
}
|
|
|
|
switch code.op.codeType() {
|
|
|
|
case codeArrayElem, codeSliceElem, codeMapKey:
|
|
|
|
code = code.end
|
|
|
|
default:
|
|
|
|
code = code.next
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for code := c; code.op != opEnd; {
|
|
|
|
switch code.op.codeType() {
|
|
|
|
case codeArrayElem, codeSliceElem, codeMapKey:
|
|
|
|
code = code.end
|
|
|
|
case codeStructEnd:
|
|
|
|
switch code.op {
|
|
|
|
case opStructEnd:
|
|
|
|
prev := code.prevField
|
|
|
|
if strings.Contains(prev.op.String(), "Head") {
|
|
|
|
// not exists field
|
|
|
|
code = code.next
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if prev.op != prev.op.fieldToEnd() {
|
|
|
|
prev.op = prev.op.fieldToEnd()
|
|
|
|
prev.next = code.next
|
|
|
|
}
|
|
|
|
code = code.next
|
|
|
|
default:
|
|
|
|
code = code.next
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
code = code.next
|
|
|
|
}
|
|
|
|
}
|
2020-05-04 12:39:17 +03:00
|
|
|
}
|
|
|
|
|
2021-01-09 07:55:34 +03:00
|
|
|
func (e *Encoder) convertHeadOnlyCode(c *opcode, isPtrHead bool) {
|
|
|
|
if c.nextField == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if c.nextField.op.codeType() != codeStructEnd {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
switch c.op {
|
|
|
|
case opStructFieldHead:
|
|
|
|
e.convertHeadOnlyCode(c.next, false)
|
|
|
|
if !strings.Contains(c.next.op.String(), "Only") {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.op = opStructFieldHeadOnly
|
|
|
|
case opStructFieldHeadOmitEmpty:
|
2021-01-13 18:02:58 +03:00
|
|
|
e.convertHeadOnlyCode(c.next, false)
|
|
|
|
if !strings.Contains(c.next.op.String(), "Only") {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.op = opStructFieldHeadOmitEmptyOnly
|
|
|
|
case opStructFieldHeadStringTag:
|
|
|
|
e.convertHeadOnlyCode(c.next, false)
|
|
|
|
if !strings.Contains(c.next.op.String(), "Only") {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.op = opStructFieldHeadStringTagOnly
|
2021-01-09 07:55:34 +03:00
|
|
|
case opStructFieldPtrHead:
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.Contains(c.op.String(), "Marshal") {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if strings.Contains(c.op.String(), "Slice") {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if strings.Contains(c.op.String(), "Map") {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
isPtrOp := strings.Contains(c.op.String(), "Ptr")
|
|
|
|
if isPtrOp && !isPtrHead {
|
|
|
|
c.op = c.op.headToOnlyHead()
|
|
|
|
} else if !isPtrOp && isPtrHead {
|
|
|
|
c.op = c.op.headToPtrHead().headToOnlyHead()
|
|
|
|
} else if isPtrOp && isPtrHead {
|
|
|
|
c.op = c.op.headToPtrHead().headToOnlyHead()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-20 11:58:28 +03:00
|
|
|
func (e *Encoder) implementsMarshaler(typ *rtype) bool {
|
|
|
|
switch {
|
|
|
|
case typ.Implements(marshalJSONType):
|
|
|
|
return true
|
|
|
|
case rtype_ptrTo(typ).Implements(marshalJSONType):
|
|
|
|
return true
|
|
|
|
case typ.Implements(marshalTextType):
|
|
|
|
return true
|
|
|
|
case rtype_ptrTo(typ).Implements(marshalTextType):
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compile(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
typ := ctx.typ
|
2020-08-18 07:36:36 +03:00
|
|
|
switch {
|
|
|
|
case typ.Implements(marshalJSONType):
|
2020-08-30 11:32:26 +03:00
|
|
|
return e.compileMarshalJSON(ctx)
|
2020-08-18 07:36:36 +03:00
|
|
|
case rtype_ptrTo(typ).Implements(marshalJSONType):
|
2020-08-30 11:32:26 +03:00
|
|
|
return e.compileMarshalJSONPtr(ctx)
|
2020-08-18 07:36:36 +03:00
|
|
|
case typ.Implements(marshalTextType):
|
2020-08-30 11:32:26 +03:00
|
|
|
return e.compileMarshalText(ctx)
|
2020-08-18 07:36:36 +03:00
|
|
|
case rtype_ptrTo(typ).Implements(marshalTextType):
|
2020-08-30 11:32:26 +03:00
|
|
|
return e.compileMarshalTextPtr(ctx)
|
2020-05-04 12:39:17 +03:00
|
|
|
}
|
2020-04-29 18:31:50 +03:00
|
|
|
switch typ.Kind() {
|
|
|
|
case reflect.Ptr:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compilePtr(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Slice:
|
2020-08-20 11:58:28 +03:00
|
|
|
elem := typ.Elem()
|
|
|
|
if !e.implementsMarshaler(elem) && elem.Kind() == reflect.Uint8 {
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileBytes(ctx)
|
2020-08-19 04:34:11 +03:00
|
|
|
}
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileSlice(ctx)
|
2020-04-30 07:39:47 +03:00
|
|
|
case reflect.Array:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileArray(ctx)
|
2020-04-30 07:39:47 +03:00
|
|
|
case reflect.Map:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileMap(ctx, true)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Struct:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileStruct(ctx, false)
|
2020-08-12 10:54:15 +03:00
|
|
|
case reflect.Interface:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileInterface(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Int:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileInt(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Int8:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileInt8(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Int16:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileInt16(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Int32:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileInt32(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Int64:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileInt64(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Uint:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileUint(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Uint8:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileUint8(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Uint16:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileUint16(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Uint32:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileUint32(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Uint64:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileUint64(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Uintptr:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileUint(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Float32:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileFloat32(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Float64:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileFloat64(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.String:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileString(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
case reflect.Bool:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileBool(ctx)
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
2020-05-08 19:07:33 +03:00
|
|
|
return nil, &UnsupportedTypeError{Type: rtype2type(typ)}
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileKey(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
typ := ctx.typ
|
2020-08-20 11:47:38 +03:00
|
|
|
switch {
|
|
|
|
case rtype_ptrTo(typ).Implements(marshalJSONType):
|
2020-08-30 11:32:26 +03:00
|
|
|
return e.compileMarshalJSONPtr(ctx)
|
2020-08-20 11:47:38 +03:00
|
|
|
case rtype_ptrTo(typ).Implements(marshalTextType):
|
2020-08-30 11:32:26 +03:00
|
|
|
return e.compileMarshalTextPtr(ctx)
|
2020-08-20 11:47:38 +03:00
|
|
|
}
|
|
|
|
switch typ.Kind() {
|
|
|
|
case reflect.Ptr:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compilePtr(ctx)
|
2020-08-20 11:47:38 +03:00
|
|
|
case reflect.Interface:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileInterface(ctx)
|
2020-08-20 11:47:38 +03:00
|
|
|
case reflect.String:
|
2020-08-29 09:11:31 +03:00
|
|
|
return e.compileString(ctx)
|
2020-12-12 12:09:46 +03:00
|
|
|
case reflect.Int:
|
|
|
|
return e.compileIntString(ctx)
|
|
|
|
case reflect.Int8:
|
|
|
|
return e.compileInt8String(ctx)
|
|
|
|
case reflect.Int16:
|
|
|
|
return e.compileInt16String(ctx)
|
|
|
|
case reflect.Int32:
|
|
|
|
return e.compileInt32String(ctx)
|
|
|
|
case reflect.Int64:
|
|
|
|
return e.compileInt64String(ctx)
|
|
|
|
case reflect.Uint:
|
|
|
|
return e.compileUintString(ctx)
|
|
|
|
case reflect.Uint8:
|
|
|
|
return e.compileUint8String(ctx)
|
|
|
|
case reflect.Uint16:
|
|
|
|
return e.compileUint16String(ctx)
|
|
|
|
case reflect.Uint32:
|
|
|
|
return e.compileUint32String(ctx)
|
|
|
|
case reflect.Uint64:
|
|
|
|
return e.compileUint64String(ctx)
|
2020-12-15 06:29:19 +03:00
|
|
|
case reflect.Uintptr:
|
|
|
|
return e.compileUintString(ctx)
|
2020-08-20 11:47:38 +03:00
|
|
|
}
|
|
|
|
return nil, &UnsupportedTypeError{Type: rtype2type(typ)}
|
|
|
|
}
|
|
|
|
|
2020-08-30 11:32:26 +03:00
|
|
|
func (e *Encoder) compilePtr(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
ptrOpcodeIndex := ctx.opcodeIndex
|
2020-12-06 13:59:39 +03:00
|
|
|
ptrIndex := ctx.ptrIndex
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
code, err := e.compile(ctx.withType(ctx.typ.Elem()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-15 11:41:38 +03:00
|
|
|
ptrHeadOp := code.op.headToPtrHead()
|
|
|
|
if code.op != ptrHeadOp {
|
|
|
|
code.op = ptrHeadOp
|
2020-08-30 11:32:26 +03:00
|
|
|
code.decOpcodeIndex()
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.decIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-30 05:56:56 +03:00
|
|
|
}
|
2020-08-30 11:32:26 +03:00
|
|
|
c := ctx.context()
|
|
|
|
c.opcodeIndex = ptrOpcodeIndex
|
2020-12-06 13:59:39 +03:00
|
|
|
c.ptrIndex = ptrIndex
|
2020-08-30 11:32:26 +03:00
|
|
|
return newOpCodeWithNext(c, opPtr, code), nil
|
2020-04-30 05:56:56 +03:00
|
|
|
}
|
|
|
|
|
2020-08-30 11:32:26 +03:00
|
|
|
func (e *Encoder) compileMarshalJSON(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opMarshalJSON)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileMarshalJSONPtr(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx.withType(rtype_ptrTo(ctx.typ)), opMarshalJSON)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileMarshalText(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opMarshalText)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileMarshalTextPtr(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx.withType(rtype_ptrTo(ctx.typ)), opMarshalText)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileInt(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opInt)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileInt8(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opInt8)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileInt16(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opInt16)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileInt32(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opInt32)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileInt64(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opInt64)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileUint(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opUint)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileUint8(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opUint8)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileUint16(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opUint16)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileUint32(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opUint32)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileUint64(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opUint64)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-12-12 12:09:46 +03:00
|
|
|
func (e *Encoder) compileIntString(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opIntString)
|
|
|
|
ctx.incIndex()
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileInt8String(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opInt8String)
|
|
|
|
ctx.incIndex()
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileInt16String(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opInt16String)
|
|
|
|
ctx.incIndex()
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileInt32String(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opInt32String)
|
|
|
|
ctx.incIndex()
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileInt64String(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opInt64String)
|
|
|
|
ctx.incIndex()
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileUintString(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opUintString)
|
|
|
|
ctx.incIndex()
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileUint8String(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opUint8String)
|
|
|
|
ctx.incIndex()
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileUint16String(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opUint16String)
|
|
|
|
ctx.incIndex()
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileUint32String(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opUint32String)
|
|
|
|
ctx.incIndex()
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) compileUint64String(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
code := newOpCode(ctx, opUint64String)
|
|
|
|
ctx.incIndex()
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileFloat32(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opFloat32)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileFloat64(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opFloat64)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileString(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opString)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileBool(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opBool)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileBytes(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-30 11:32:26 +03:00
|
|
|
code := newOpCode(ctx, opBytes)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-08-19 04:34:11 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileInterface(ctx *encodeCompileContext) (*opcode, error) {
|
2020-08-31 15:59:22 +03:00
|
|
|
code := newInterfaceCode(ctx)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
return code, nil
|
2020-04-30 07:39:47 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileSlice(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
ctx.root = false
|
|
|
|
elem := ctx.typ.Elem()
|
2020-04-29 18:31:50 +03:00
|
|
|
size := elem.Size()
|
2020-05-02 17:35:41 +03:00
|
|
|
|
2020-08-30 11:32:26 +03:00
|
|
|
header := newSliceHeaderCode(ctx)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
|
2020-08-29 09:35:03 +03:00
|
|
|
code, err := e.compile(ctx.withType(ctx.typ.Elem()).incIndent())
|
2020-04-29 18:31:50 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-04-29 19:44:48 +03:00
|
|
|
// header => opcode => elem => end
|
|
|
|
// ^ |
|
|
|
|
// |________|
|
2020-04-29 18:31:50 +03:00
|
|
|
|
2020-09-01 16:26:26 +03:00
|
|
|
elemCode := newSliceElemCode(ctx, header, size)
|
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
|
2020-08-29 09:35:03 +03:00
|
|
|
end := newOpCode(ctx, opSliceEnd)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-04-30 07:39:47 +03:00
|
|
|
|
|
|
|
header.elem = elemCode
|
|
|
|
header.end = end
|
|
|
|
header.next = code
|
|
|
|
code.beforeLastCode().next = (*opcode)(unsafe.Pointer(elemCode))
|
|
|
|
elemCode.next = code
|
|
|
|
elemCode.end = end
|
|
|
|
return (*opcode)(unsafe.Pointer(header)), nil
|
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileArray(ctx *encodeCompileContext) (*opcode, error) {
|
|
|
|
ctx.root = false
|
|
|
|
typ := ctx.typ
|
2020-04-30 07:39:47 +03:00
|
|
|
elem := typ.Elem()
|
|
|
|
alen := typ.Len()
|
|
|
|
size := elem.Size()
|
2020-05-02 17:35:41 +03:00
|
|
|
|
2020-08-30 11:32:26 +03:00
|
|
|
header := newArrayHeaderCode(ctx, alen)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
|
2020-08-29 09:35:03 +03:00
|
|
|
code, err := e.compile(ctx.withType(elem).incIndent())
|
2020-04-30 07:39:47 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// header => opcode => elem => end
|
|
|
|
// ^ |
|
|
|
|
// |________|
|
|
|
|
|
2020-09-01 16:26:26 +03:00
|
|
|
elemCode := newArrayElemCode(ctx, header, alen, size)
|
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
|
2020-08-29 09:35:03 +03:00
|
|
|
end := newOpCode(ctx, opArrayEnd)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-05-02 17:35:41 +03:00
|
|
|
|
2020-04-29 19:44:48 +03:00
|
|
|
header.elem = elemCode
|
|
|
|
header.end = end
|
|
|
|
header.next = code
|
2020-04-29 18:31:50 +03:00
|
|
|
code.beforeLastCode().next = (*opcode)(unsafe.Pointer(elemCode))
|
|
|
|
elemCode.next = code
|
|
|
|
elemCode.end = end
|
2020-04-30 07:39:47 +03:00
|
|
|
return (*opcode)(unsafe.Pointer(header)), nil
|
|
|
|
}
|
|
|
|
|
2020-04-30 07:52:24 +03:00
|
|
|
//go:linkname mapiterinit reflect.mapiterinit
|
|
|
|
//go:noescape
|
|
|
|
func mapiterinit(mapType *rtype, m unsafe.Pointer) unsafe.Pointer
|
|
|
|
|
|
|
|
//go:linkname mapiterkey reflect.mapiterkey
|
|
|
|
//go:noescape
|
|
|
|
func mapiterkey(it unsafe.Pointer) unsafe.Pointer
|
|
|
|
|
|
|
|
//go:linkname mapiternext reflect.mapiternext
|
|
|
|
//go:noescape
|
|
|
|
func mapiternext(it unsafe.Pointer)
|
|
|
|
|
|
|
|
//go:linkname maplen reflect.maplen
|
|
|
|
//go:noescape
|
|
|
|
func maplen(m unsafe.Pointer) int
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileMap(ctx *encodeCompileContext, withLoad bool) (*opcode, error) {
|
2020-04-30 07:39:47 +03:00
|
|
|
// header => code => value => code => key => code => value => code => end
|
|
|
|
// ^ |
|
|
|
|
// |_______________________|
|
2020-08-29 09:35:03 +03:00
|
|
|
ctx = ctx.incIndent()
|
2020-08-30 11:32:26 +03:00
|
|
|
header := newMapHeaderCode(ctx, withLoad)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
typ := ctx.typ
|
|
|
|
keyType := ctx.typ.Key()
|
|
|
|
keyCode, err := e.compileKey(ctx.withType(keyType))
|
2020-04-30 07:39:47 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-30 11:32:26 +03:00
|
|
|
|
2020-09-01 16:26:26 +03:00
|
|
|
value := newMapValueCode(ctx, header)
|
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
|
2020-04-30 07:39:47 +03:00
|
|
|
valueType := typ.Elem()
|
2020-08-29 09:11:31 +03:00
|
|
|
valueCode, err := e.compile(ctx.withType(valueType))
|
2020-04-30 07:39:47 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-02 17:35:41 +03:00
|
|
|
|
2020-09-01 16:26:26 +03:00
|
|
|
key := newMapKeyCode(ctx, header)
|
|
|
|
ctx.incIndex()
|
2020-05-02 17:35:41 +03:00
|
|
|
|
2020-08-29 09:35:03 +03:00
|
|
|
ctx = ctx.decIndent()
|
2020-05-02 17:35:41 +03:00
|
|
|
|
2020-08-31 15:59:22 +03:00
|
|
|
header.mapKey = key
|
|
|
|
header.mapValue = value
|
2020-09-16 08:51:37 +03:00
|
|
|
|
|
|
|
end := newMapEndCode(ctx, header)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-05-02 17:35:41 +03:00
|
|
|
|
2020-04-30 07:39:47 +03:00
|
|
|
header.next = keyCode
|
|
|
|
keyCode.beforeLastCode().next = (*opcode)(unsafe.Pointer(value))
|
|
|
|
value.next = valueCode
|
|
|
|
valueCode.beforeLastCode().next = (*opcode)(unsafe.Pointer(key))
|
|
|
|
key.next = keyCode
|
|
|
|
|
|
|
|
header.end = end
|
|
|
|
key.end = end
|
2020-09-16 08:51:37 +03:00
|
|
|
value.end = end
|
2020-04-30 07:39:47 +03:00
|
|
|
|
2020-04-29 18:31:50 +03:00
|
|
|
return (*opcode)(unsafe.Pointer(header)), nil
|
|
|
|
}
|
|
|
|
|
2020-12-23 07:13:34 +03:00
|
|
|
func (e *Encoder) typeToHeaderType(ctx *encodeCompileContext, code *opcode) opType {
|
|
|
|
switch code.op {
|
|
|
|
case opPtr:
|
|
|
|
ptrNum := 1
|
|
|
|
c := code
|
|
|
|
ctx.decIndex()
|
|
|
|
for {
|
|
|
|
if code.next.op == opPtr {
|
|
|
|
ptrNum++
|
|
|
|
code = code.next
|
|
|
|
ctx.decIndex()
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
c.ptrNum = ptrNum
|
|
|
|
if ptrNum > 1 {
|
|
|
|
switch code.next.op {
|
|
|
|
case opInt:
|
|
|
|
return opStructFieldHeadIntNPtr
|
|
|
|
case opInt8:
|
|
|
|
return opStructFieldHeadInt8NPtr
|
|
|
|
case opInt16:
|
|
|
|
return opStructFieldHeadInt16NPtr
|
|
|
|
case opInt32:
|
|
|
|
return opStructFieldHeadInt32NPtr
|
|
|
|
case opInt64:
|
|
|
|
return opStructFieldHeadInt64NPtr
|
|
|
|
case opUint:
|
|
|
|
return opStructFieldHeadUintNPtr
|
|
|
|
case opUint8:
|
|
|
|
return opStructFieldHeadUint8NPtr
|
|
|
|
case opUint16:
|
|
|
|
return opStructFieldHeadUint16NPtr
|
|
|
|
case opUint32:
|
|
|
|
return opStructFieldHeadUint32NPtr
|
|
|
|
case opUint64:
|
|
|
|
return opStructFieldHeadUint64NPtr
|
|
|
|
case opFloat32:
|
|
|
|
return opStructFieldHeadFloat32NPtr
|
|
|
|
case opFloat64:
|
|
|
|
return opStructFieldHeadFloat64NPtr
|
|
|
|
case opString:
|
|
|
|
return opStructFieldHeadStringNPtr
|
|
|
|
case opBool:
|
|
|
|
return opStructFieldHeadBoolNPtr
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch code.next.op {
|
|
|
|
case opInt:
|
|
|
|
return opStructFieldHeadIntPtr
|
|
|
|
case opInt8:
|
|
|
|
return opStructFieldHeadInt8Ptr
|
|
|
|
case opInt16:
|
|
|
|
return opStructFieldHeadInt16Ptr
|
|
|
|
case opInt32:
|
|
|
|
return opStructFieldHeadInt32Ptr
|
|
|
|
case opInt64:
|
|
|
|
return opStructFieldHeadInt64Ptr
|
|
|
|
case opUint:
|
|
|
|
return opStructFieldHeadUintPtr
|
|
|
|
case opUint8:
|
|
|
|
return opStructFieldHeadUint8Ptr
|
|
|
|
case opUint16:
|
|
|
|
return opStructFieldHeadUint16Ptr
|
|
|
|
case opUint32:
|
|
|
|
return opStructFieldHeadUint32Ptr
|
|
|
|
case opUint64:
|
|
|
|
return opStructFieldHeadUint64Ptr
|
|
|
|
case opFloat32:
|
|
|
|
return opStructFieldHeadFloat32Ptr
|
|
|
|
case opFloat64:
|
|
|
|
return opStructFieldHeadFloat64Ptr
|
|
|
|
case opString:
|
|
|
|
return opStructFieldHeadStringPtr
|
|
|
|
case opBool:
|
|
|
|
return opStructFieldHeadBoolPtr
|
|
|
|
}
|
|
|
|
}
|
2020-05-02 17:35:41 +03:00
|
|
|
case opInt:
|
|
|
|
return opStructFieldHeadInt
|
|
|
|
case opInt8:
|
|
|
|
return opStructFieldHeadInt8
|
|
|
|
case opInt16:
|
|
|
|
return opStructFieldHeadInt16
|
|
|
|
case opInt32:
|
|
|
|
return opStructFieldHeadInt32
|
|
|
|
case opInt64:
|
|
|
|
return opStructFieldHeadInt64
|
|
|
|
case opUint:
|
|
|
|
return opStructFieldHeadUint
|
|
|
|
case opUint8:
|
|
|
|
return opStructFieldHeadUint8
|
|
|
|
case opUint16:
|
|
|
|
return opStructFieldHeadUint16
|
|
|
|
case opUint32:
|
|
|
|
return opStructFieldHeadUint32
|
|
|
|
case opUint64:
|
|
|
|
return opStructFieldHeadUint64
|
|
|
|
case opFloat32:
|
|
|
|
return opStructFieldHeadFloat32
|
|
|
|
case opFloat64:
|
|
|
|
return opStructFieldHeadFloat64
|
|
|
|
case opString:
|
|
|
|
return opStructFieldHeadString
|
|
|
|
case opBool:
|
|
|
|
return opStructFieldHeadBool
|
2020-09-16 12:15:47 +03:00
|
|
|
case opMapHead:
|
2020-08-23 19:50:18 +03:00
|
|
|
return opStructFieldHeadMap
|
2020-09-16 12:15:47 +03:00
|
|
|
case opMapHeadLoad:
|
2020-08-23 19:50:18 +03:00
|
|
|
return opStructFieldHeadMapLoad
|
|
|
|
case opArrayHead:
|
|
|
|
return opStructFieldHeadArray
|
|
|
|
case opSliceHead:
|
|
|
|
return opStructFieldHeadSlice
|
|
|
|
case opStructFieldHead:
|
|
|
|
return opStructFieldHeadStruct
|
2020-08-18 18:32:45 +03:00
|
|
|
case opMarshalJSON:
|
|
|
|
return opStructFieldHeadMarshalJSON
|
|
|
|
case opMarshalText:
|
|
|
|
return opStructFieldHeadMarshalText
|
2020-05-02 17:35:41 +03:00
|
|
|
}
|
|
|
|
return opStructFieldHead
|
|
|
|
}
|
|
|
|
|
2020-12-23 07:13:34 +03:00
|
|
|
func (e *Encoder) typeToFieldType(ctx *encodeCompileContext, code *opcode) opType {
|
2020-09-17 15:50:27 +03:00
|
|
|
switch code.op {
|
|
|
|
case opPtr:
|
2020-12-23 07:13:34 +03:00
|
|
|
ptrNum := 1
|
|
|
|
ctx.decIndex()
|
|
|
|
c := code
|
|
|
|
for {
|
|
|
|
if code.next.op == opPtr {
|
|
|
|
ptrNum++
|
|
|
|
code = code.next
|
|
|
|
ctx.decIndex()
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
c.ptrNum = ptrNum
|
|
|
|
if ptrNum > 1 {
|
|
|
|
switch code.next.op {
|
|
|
|
case opInt:
|
|
|
|
return opStructFieldIntNPtr
|
|
|
|
case opInt8:
|
|
|
|
return opStructFieldInt8NPtr
|
|
|
|
case opInt16:
|
|
|
|
return opStructFieldInt16NPtr
|
|
|
|
case opInt32:
|
|
|
|
return opStructFieldInt32NPtr
|
|
|
|
case opInt64:
|
|
|
|
return opStructFieldInt64NPtr
|
|
|
|
case opUint:
|
|
|
|
return opStructFieldUintNPtr
|
|
|
|
case opUint8:
|
|
|
|
return opStructFieldUint8NPtr
|
|
|
|
case opUint16:
|
|
|
|
return opStructFieldUint16NPtr
|
|
|
|
case opUint32:
|
|
|
|
return opStructFieldUint32NPtr
|
|
|
|
case opUint64:
|
|
|
|
return opStructFieldUint64NPtr
|
|
|
|
case opFloat32:
|
|
|
|
return opStructFieldFloat32NPtr
|
|
|
|
case opFloat64:
|
|
|
|
return opStructFieldFloat64NPtr
|
|
|
|
case opString:
|
|
|
|
return opStructFieldStringNPtr
|
|
|
|
case opBool:
|
|
|
|
return opStructFieldBoolNPtr
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch code.next.op {
|
|
|
|
case opInt:
|
|
|
|
return opStructFieldIntPtr
|
|
|
|
case opInt8:
|
|
|
|
return opStructFieldInt8Ptr
|
|
|
|
case opInt16:
|
|
|
|
return opStructFieldInt16Ptr
|
|
|
|
case opInt32:
|
|
|
|
return opStructFieldInt32Ptr
|
|
|
|
case opInt64:
|
|
|
|
return opStructFieldInt64Ptr
|
|
|
|
case opUint:
|
|
|
|
return opStructFieldUintPtr
|
|
|
|
case opUint8:
|
|
|
|
return opStructFieldUint8Ptr
|
|
|
|
case opUint16:
|
|
|
|
return opStructFieldUint16Ptr
|
|
|
|
case opUint32:
|
|
|
|
return opStructFieldUint32Ptr
|
|
|
|
case opUint64:
|
|
|
|
return opStructFieldUint64Ptr
|
|
|
|
case opFloat32:
|
|
|
|
return opStructFieldFloat32Ptr
|
|
|
|
case opFloat64:
|
|
|
|
return opStructFieldFloat64Ptr
|
|
|
|
case opString:
|
|
|
|
return opStructFieldStringPtr
|
|
|
|
case opBool:
|
|
|
|
return opStructFieldBoolPtr
|
|
|
|
}
|
2020-09-17 15:50:27 +03:00
|
|
|
}
|
2020-05-02 17:35:41 +03:00
|
|
|
case opInt:
|
|
|
|
return opStructFieldInt
|
|
|
|
case opInt8:
|
|
|
|
return opStructFieldInt8
|
|
|
|
case opInt16:
|
|
|
|
return opStructFieldInt16
|
|
|
|
case opInt32:
|
|
|
|
return opStructFieldInt32
|
|
|
|
case opInt64:
|
|
|
|
return opStructFieldInt64
|
|
|
|
case opUint:
|
|
|
|
return opStructFieldUint
|
|
|
|
case opUint8:
|
|
|
|
return opStructFieldUint8
|
|
|
|
case opUint16:
|
|
|
|
return opStructFieldUint16
|
|
|
|
case opUint32:
|
|
|
|
return opStructFieldUint32
|
|
|
|
case opUint64:
|
|
|
|
return opStructFieldUint64
|
|
|
|
case opFloat32:
|
|
|
|
return opStructFieldFloat32
|
|
|
|
case opFloat64:
|
|
|
|
return opStructFieldFloat64
|
|
|
|
case opString:
|
|
|
|
return opStructFieldString
|
|
|
|
case opBool:
|
|
|
|
return opStructFieldBool
|
2020-09-16 12:15:47 +03:00
|
|
|
case opMapHead:
|
2020-08-23 19:50:18 +03:00
|
|
|
return opStructFieldMap
|
2020-09-16 12:15:47 +03:00
|
|
|
case opMapHeadLoad:
|
2020-08-23 19:50:18 +03:00
|
|
|
return opStructFieldMapLoad
|
|
|
|
case opArrayHead:
|
|
|
|
return opStructFieldArray
|
|
|
|
case opSliceHead:
|
|
|
|
return opStructFieldSlice
|
|
|
|
case opStructFieldHead:
|
|
|
|
return opStructFieldStruct
|
2020-08-18 18:32:45 +03:00
|
|
|
case opMarshalJSON:
|
|
|
|
return opStructFieldMarshalJSON
|
|
|
|
case opMarshalText:
|
|
|
|
return opStructFieldMarshalText
|
2020-05-02 17:35:41 +03:00
|
|
|
}
|
|
|
|
return opStructField
|
|
|
|
}
|
|
|
|
|
2020-12-25 11:03:56 +03:00
|
|
|
func (e *Encoder) optimizeStructHeader(ctx *encodeCompileContext, code *opcode, tag *structTag) opType {
|
2020-12-23 07:13:34 +03:00
|
|
|
headType := e.typeToHeaderType(ctx, code)
|
2020-08-19 13:56:02 +03:00
|
|
|
switch {
|
|
|
|
case tag.isOmitEmpty:
|
2020-08-15 11:41:38 +03:00
|
|
|
headType = headType.headToOmitEmptyHead()
|
2020-08-19 13:56:02 +03:00
|
|
|
case tag.isString:
|
|
|
|
headType = headType.headToStringTagHead()
|
2020-08-15 11:41:38 +03:00
|
|
|
}
|
|
|
|
return headType
|
|
|
|
}
|
|
|
|
|
2020-12-25 11:03:56 +03:00
|
|
|
func (e *Encoder) optimizeStructField(ctx *encodeCompileContext, code *opcode, tag *structTag) opType {
|
2020-12-23 07:13:34 +03:00
|
|
|
fieldType := e.typeToFieldType(ctx, code)
|
2020-08-19 13:56:02 +03:00
|
|
|
switch {
|
|
|
|
case tag.isOmitEmpty:
|
2020-08-15 11:41:38 +03:00
|
|
|
fieldType = fieldType.fieldToOmitEmptyField()
|
2020-08-19 13:56:02 +03:00
|
|
|
case tag.isString:
|
|
|
|
fieldType = fieldType.fieldToStringTagField()
|
2020-08-15 11:41:38 +03:00
|
|
|
}
|
|
|
|
return fieldType
|
|
|
|
}
|
|
|
|
|
2020-08-31 15:59:22 +03:00
|
|
|
func (e *Encoder) recursiveCode(ctx *encodeCompileContext, jmp *compiledCode) *opcode {
|
|
|
|
code := newRecursiveCode(ctx, jmp)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-31 15:59:22 +03:00
|
|
|
return code
|
2020-08-14 16:44:09 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compiledCode(ctx *encodeCompileContext) *opcode {
|
|
|
|
typ := ctx.typ
|
2020-08-12 12:42:29 +03:00
|
|
|
typeptr := uintptr(unsafe.Pointer(typ))
|
2020-12-24 21:53:48 +03:00
|
|
|
if compiledCode, exists := ctx.structTypeToCompiledCode[typeptr]; exists {
|
|
|
|
return e.recursiveCode(ctx, compiledCode)
|
2020-08-14 16:44:09 +03:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-08-31 15:59:22 +03:00
|
|
|
func (e *Encoder) structHeader(ctx *encodeCompileContext, fieldCode *opcode, valueCode *opcode, tag *structTag) *opcode {
|
2020-08-14 16:44:09 +03:00
|
|
|
fieldCode.indent--
|
2020-12-25 11:03:56 +03:00
|
|
|
op := e.optimizeStructHeader(ctx, valueCode, tag)
|
2020-08-14 16:44:09 +03:00
|
|
|
fieldCode.op = op
|
2020-12-23 07:13:34 +03:00
|
|
|
fieldCode.ptrNum = valueCode.ptrNum
|
2020-08-14 16:44:09 +03:00
|
|
|
switch op {
|
|
|
|
case opStructFieldHead,
|
2020-08-23 19:50:18 +03:00
|
|
|
opStructFieldHeadSlice,
|
|
|
|
opStructFieldHeadArray,
|
|
|
|
opStructFieldHeadMap,
|
|
|
|
opStructFieldHeadMapLoad,
|
|
|
|
opStructFieldHeadStruct,
|
2020-08-14 16:44:09 +03:00
|
|
|
opStructFieldHeadOmitEmpty,
|
2020-08-23 19:50:18 +03:00
|
|
|
opStructFieldHeadOmitEmptySlice,
|
|
|
|
opStructFieldHeadOmitEmptyArray,
|
|
|
|
opStructFieldHeadOmitEmptyMap,
|
|
|
|
opStructFieldHeadOmitEmptyMapLoad,
|
|
|
|
opStructFieldHeadOmitEmptyStruct,
|
2020-12-25 11:03:56 +03:00
|
|
|
opStructFieldHeadStringTag:
|
2020-08-14 16:44:09 +03:00
|
|
|
return valueCode.beforeLastCode()
|
|
|
|
}
|
2020-08-30 11:32:26 +03:00
|
|
|
ctx.decOpcodeIndex()
|
2020-08-14 16:44:09 +03:00
|
|
|
return (*opcode)(unsafe.Pointer(fieldCode))
|
|
|
|
}
|
|
|
|
|
2020-08-31 15:59:22 +03:00
|
|
|
func (e *Encoder) structField(ctx *encodeCompileContext, fieldCode *opcode, valueCode *opcode, tag *structTag) *opcode {
|
2020-08-14 16:44:09 +03:00
|
|
|
code := (*opcode)(unsafe.Pointer(fieldCode))
|
2020-12-25 11:03:56 +03:00
|
|
|
op := e.optimizeStructField(ctx, valueCode, tag)
|
2020-08-14 16:44:09 +03:00
|
|
|
fieldCode.op = op
|
2020-12-23 07:13:34 +03:00
|
|
|
fieldCode.ptrNum = valueCode.ptrNum
|
2020-08-14 16:44:09 +03:00
|
|
|
switch op {
|
|
|
|
case opStructField,
|
2020-08-23 19:50:18 +03:00
|
|
|
opStructFieldSlice,
|
|
|
|
opStructFieldArray,
|
|
|
|
opStructFieldMap,
|
|
|
|
opStructFieldMapLoad,
|
|
|
|
opStructFieldStruct,
|
2020-08-14 16:44:09 +03:00
|
|
|
opStructFieldOmitEmpty,
|
2020-08-23 19:50:18 +03:00
|
|
|
opStructFieldOmitEmptySlice,
|
|
|
|
opStructFieldOmitEmptyArray,
|
|
|
|
opStructFieldOmitEmptyMap,
|
|
|
|
opStructFieldOmitEmptyMapLoad,
|
|
|
|
opStructFieldOmitEmptyStruct,
|
2020-12-25 11:03:56 +03:00
|
|
|
opStructFieldStringTag:
|
2020-08-14 16:44:09 +03:00
|
|
|
return valueCode.beforeLastCode()
|
|
|
|
}
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.decIndex()
|
2020-08-14 16:44:09 +03:00
|
|
|
return code
|
|
|
|
}
|
2020-08-22 06:58:34 +03:00
|
|
|
|
2020-08-31 15:59:22 +03:00
|
|
|
func (e *Encoder) isNotExistsField(head *opcode) bool {
|
2020-08-22 06:58:34 +03:00
|
|
|
if head == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if head.op != opStructFieldAnonymousHead {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if head.next == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if head.nextField == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if head.nextField.op != opStructAnonymousEnd {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if head.next.op == opStructAnonymousEnd {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if head.next.op.codeType() != codeStructField {
|
|
|
|
return false
|
|
|
|
}
|
2020-08-31 15:59:22 +03:00
|
|
|
return e.isNotExistsField(head.next)
|
2020-08-22 06:58:34 +03:00
|
|
|
}
|
|
|
|
|
2020-08-31 15:59:22 +03:00
|
|
|
func (e *Encoder) optimizeAnonymousFields(head *opcode) {
|
2020-08-22 06:58:34 +03:00
|
|
|
code := head
|
2020-08-31 15:59:22 +03:00
|
|
|
var prev *opcode
|
2020-11-16 15:28:33 +03:00
|
|
|
removedFields := map[*opcode]struct{}{}
|
2020-08-22 06:58:34 +03:00
|
|
|
for {
|
2020-12-25 11:03:56 +03:00
|
|
|
if code.op == opStructEnd {
|
2020-08-22 06:58:34 +03:00
|
|
|
break
|
|
|
|
}
|
2020-12-25 11:03:56 +03:00
|
|
|
if code.op == opStructField {
|
2020-08-22 06:58:34 +03:00
|
|
|
codeType := code.next.op.codeType()
|
|
|
|
if codeType == codeStructField {
|
2020-08-31 15:59:22 +03:00
|
|
|
if e.isNotExistsField(code.next) {
|
2020-08-22 06:58:34 +03:00
|
|
|
code.next = code.nextField
|
2020-08-30 21:14:37 +03:00
|
|
|
diff := code.next.displayIdx - code.displayIdx
|
2020-08-30 11:32:26 +03:00
|
|
|
for i := 0; i < diff; i++ {
|
|
|
|
code.next.decOpcodeIndex()
|
|
|
|
}
|
2020-11-16 15:28:33 +03:00
|
|
|
linkPrevToNextField(code, removedFields)
|
2020-08-22 06:58:34 +03:00
|
|
|
code = prev
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
prev = code
|
2020-08-31 15:59:22 +03:00
|
|
|
code = code.nextField
|
2020-08-22 06:58:34 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type structFieldPair struct {
|
2020-08-31 15:59:22 +03:00
|
|
|
prevField *opcode
|
|
|
|
curField *opcode
|
2020-08-22 09:40:18 +03:00
|
|
|
isTaggedKey bool
|
|
|
|
linked bool
|
|
|
|
}
|
|
|
|
|
2020-11-16 15:28:33 +03:00
|
|
|
func (e *Encoder) anonymousStructFieldPairMap(typ *rtype, tags structTags, named string, valueCode *opcode) map[string][]structFieldPair {
|
2020-08-22 09:40:18 +03:00
|
|
|
anonymousFields := map[string][]structFieldPair{}
|
|
|
|
f := valueCode
|
2020-08-31 15:59:22 +03:00
|
|
|
var prevAnonymousField *opcode
|
2020-11-16 15:28:33 +03:00
|
|
|
removedFields := map[*opcode]struct{}{}
|
2020-08-22 09:40:18 +03:00
|
|
|
for {
|
|
|
|
existsKey := tags.existsKey(f.displayKey)
|
|
|
|
op := f.op.headToAnonymousHead()
|
2020-11-16 15:28:33 +03:00
|
|
|
if existsKey && (f.next.op == opStructFieldPtrAnonymousHeadRecursive || f.next.op == opStructFieldAnonymousHeadRecursive) {
|
|
|
|
// through
|
|
|
|
} else if op != f.op {
|
2020-08-22 09:40:18 +03:00
|
|
|
if existsKey {
|
|
|
|
f.op = opStructFieldAnonymousHead
|
2020-11-16 15:28:33 +03:00
|
|
|
} else if named == "" {
|
2020-08-22 09:40:18 +03:00
|
|
|
f.op = op
|
|
|
|
}
|
2020-11-16 15:28:33 +03:00
|
|
|
} else if named == "" && f.op == opStructEnd {
|
2020-08-22 09:40:18 +03:00
|
|
|
f.op = opStructAnonymousEnd
|
|
|
|
} else if existsKey {
|
2020-08-30 21:14:37 +03:00
|
|
|
diff := f.nextField.displayIdx - f.displayIdx
|
2020-08-30 11:32:26 +03:00
|
|
|
for i := 0; i < diff; i++ {
|
|
|
|
f.nextField.decOpcodeIndex()
|
|
|
|
}
|
2020-11-16 15:28:33 +03:00
|
|
|
linkPrevToNextField(f, removedFields)
|
2020-08-22 09:40:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if f.displayKey == "" {
|
|
|
|
if f.nextField == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
prevAnonymousField = f
|
2020-08-31 15:59:22 +03:00
|
|
|
f = f.nextField
|
2020-08-22 09:40:18 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-11-16 15:28:33 +03:00
|
|
|
key := fmt.Sprintf("%s.%s", named, f.displayKey)
|
|
|
|
anonymousFields[key] = append(anonymousFields[key], structFieldPair{
|
2020-08-22 09:40:18 +03:00
|
|
|
prevField: prevAnonymousField,
|
|
|
|
curField: f,
|
|
|
|
isTaggedKey: f.isTaggedKey,
|
|
|
|
})
|
|
|
|
if f.next != nil && f.nextField != f.next && f.next.op.codeType() == codeStructField {
|
2020-11-16 15:28:33 +03:00
|
|
|
for k, v := range e.anonymousStructFieldPairMap(typ, tags, named, f.next) {
|
2020-08-22 09:40:18 +03:00
|
|
|
anonymousFields[k] = append(anonymousFields[k], v...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if f.nextField == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
prevAnonymousField = f
|
2020-08-31 15:59:22 +03:00
|
|
|
f = f.nextField
|
2020-08-22 09:40:18 +03:00
|
|
|
}
|
|
|
|
return anonymousFields
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Encoder) optimizeConflictAnonymousFields(anonymousFields map[string][]structFieldPair) {
|
2020-11-16 15:28:33 +03:00
|
|
|
removedFields := map[*opcode]struct{}{}
|
2020-08-22 09:40:18 +03:00
|
|
|
for _, fieldPairs := range anonymousFields {
|
|
|
|
if len(fieldPairs) == 1 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// conflict anonymous fields
|
|
|
|
taggedPairs := []structFieldPair{}
|
|
|
|
for _, fieldPair := range fieldPairs {
|
|
|
|
if fieldPair.isTaggedKey {
|
|
|
|
taggedPairs = append(taggedPairs, fieldPair)
|
|
|
|
} else {
|
|
|
|
if !fieldPair.linked {
|
|
|
|
if fieldPair.prevField == nil {
|
|
|
|
// head operation
|
|
|
|
fieldPair.curField.op = opStructFieldAnonymousHead
|
|
|
|
} else {
|
2020-08-30 21:14:37 +03:00
|
|
|
diff := fieldPair.curField.nextField.displayIdx - fieldPair.curField.displayIdx
|
2020-08-30 11:32:26 +03:00
|
|
|
for i := 0; i < diff; i++ {
|
|
|
|
fieldPair.curField.nextField.decOpcodeIndex()
|
|
|
|
}
|
2020-11-16 15:28:33 +03:00
|
|
|
removedFields[fieldPair.curField] = struct{}{}
|
|
|
|
linkPrevToNextField(fieldPair.curField, removedFields)
|
2020-08-22 09:40:18 +03:00
|
|
|
}
|
|
|
|
fieldPair.linked = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(taggedPairs) > 1 {
|
|
|
|
for _, fieldPair := range taggedPairs {
|
|
|
|
if !fieldPair.linked {
|
|
|
|
if fieldPair.prevField == nil {
|
|
|
|
// head operation
|
|
|
|
fieldPair.curField.op = opStructFieldAnonymousHead
|
|
|
|
} else {
|
2020-08-30 21:14:37 +03:00
|
|
|
diff := fieldPair.curField.nextField.displayIdx - fieldPair.curField.displayIdx
|
2020-11-16 15:28:33 +03:00
|
|
|
removedFields[fieldPair.curField] = struct{}{}
|
2020-08-30 11:32:26 +03:00
|
|
|
for i := 0; i < diff; i++ {
|
|
|
|
fieldPair.curField.nextField.decOpcodeIndex()
|
|
|
|
}
|
2020-11-16 15:28:33 +03:00
|
|
|
linkPrevToNextField(fieldPair.curField, removedFields)
|
2020-08-22 09:40:18 +03:00
|
|
|
}
|
|
|
|
fieldPair.linked = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for _, fieldPair := range taggedPairs {
|
|
|
|
fieldPair.curField.isTaggedKey = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-22 06:58:34 +03:00
|
|
|
}
|
|
|
|
|
2020-08-29 09:11:31 +03:00
|
|
|
func (e *Encoder) compileStruct(ctx *encodeCompileContext, isPtr bool) (*opcode, error) {
|
|
|
|
ctx.root = false
|
|
|
|
if code := e.compiledCode(ctx); code != nil {
|
2020-08-14 16:44:09 +03:00
|
|
|
return code, nil
|
|
|
|
}
|
2020-08-29 09:11:31 +03:00
|
|
|
typ := ctx.typ
|
2020-08-14 16:44:09 +03:00
|
|
|
typeptr := uintptr(unsafe.Pointer(typ))
|
2020-08-12 12:42:29 +03:00
|
|
|
compiled := &compiledCode{}
|
2020-12-24 21:53:48 +03:00
|
|
|
ctx.structTypeToCompiledCode[typeptr] = compiled
|
2020-04-30 05:56:56 +03:00
|
|
|
// header => code => structField => code => end
|
|
|
|
// ^ |
|
|
|
|
// |__________|
|
2020-04-29 18:31:50 +03:00
|
|
|
fieldNum := typ.NumField()
|
|
|
|
fieldIdx := 0
|
2020-04-29 19:44:48 +03:00
|
|
|
var (
|
2020-08-31 15:59:22 +03:00
|
|
|
head *opcode
|
2020-04-29 19:44:48 +03:00
|
|
|
code *opcode
|
2020-08-31 15:59:22 +03:00
|
|
|
prevField *opcode
|
2020-04-29 19:44:48 +03:00
|
|
|
)
|
2020-08-29 09:35:03 +03:00
|
|
|
ctx = ctx.incIndent()
|
2020-08-22 06:58:34 +03:00
|
|
|
tags := structTags{}
|
2020-08-22 09:40:18 +03:00
|
|
|
anonymousFields := map[string][]structFieldPair{}
|
2020-04-29 18:31:50 +03:00
|
|
|
for i := 0; i < fieldNum; i++ {
|
|
|
|
field := typ.Field(i)
|
2020-08-20 06:38:50 +03:00
|
|
|
if isIgnoredStructField(field) {
|
2020-04-29 18:31:50 +03:00
|
|
|
continue
|
|
|
|
}
|
2020-08-22 06:58:34 +03:00
|
|
|
tags = append(tags, structTagFromField(field))
|
|
|
|
}
|
|
|
|
for i, tag := range tags {
|
|
|
|
field := tag.field
|
2020-04-29 18:31:50 +03:00
|
|
|
fieldType := type2rtype(field.Type)
|
2020-08-18 18:32:45 +03:00
|
|
|
if isPtr && i == 0 {
|
|
|
|
// head field of pointer structure at top level
|
|
|
|
// if field type is pointer and implements MarshalJSON or MarshalText,
|
|
|
|
// it need to operation of dereference of pointer.
|
|
|
|
if field.Type.Kind() == reflect.Ptr &&
|
|
|
|
(field.Type.Implements(marshalJSONType) || field.Type.Implements(marshalTextType)) {
|
|
|
|
fieldType = rtype_ptrTo(fieldType)
|
|
|
|
}
|
|
|
|
}
|
2020-08-30 11:32:26 +03:00
|
|
|
fieldOpcodeIndex := ctx.opcodeIndex
|
2020-09-01 16:26:26 +03:00
|
|
|
fieldPtrIndex := ctx.ptrIndex
|
|
|
|
ctx.incIndex()
|
2020-08-29 09:11:31 +03:00
|
|
|
valueCode, err := e.compile(ctx.withType(fieldType))
|
2020-04-29 18:31:50 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-30 11:32:26 +03:00
|
|
|
|
2020-08-15 11:41:38 +03:00
|
|
|
if field.Anonymous {
|
2020-11-16 15:28:33 +03:00
|
|
|
if valueCode.op == opPtr && valueCode.next.op == opStructFieldRecursive {
|
|
|
|
valueCode = valueCode.next
|
|
|
|
valueCode.decOpcodeIndex()
|
|
|
|
ctx.decIndex()
|
|
|
|
valueCode.op = opStructFieldPtrHeadRecursive
|
|
|
|
}
|
|
|
|
tagKey := ""
|
|
|
|
if tag.isTaggedKey {
|
|
|
|
tagKey = tag.key
|
|
|
|
}
|
|
|
|
for k, v := range e.anonymousStructFieldPairMap(typ, tags, tagKey, valueCode) {
|
2020-08-22 09:40:18 +03:00
|
|
|
anonymousFields[k] = append(anonymousFields[k], v...)
|
2020-08-15 11:41:38 +03:00
|
|
|
}
|
|
|
|
}
|
2020-08-19 13:56:02 +03:00
|
|
|
key := fmt.Sprintf(`"%s":`, tag.key)
|
2020-12-24 21:53:48 +03:00
|
|
|
escapedKey := fmt.Sprintf(`%s:`, string(encodeEscapedString([]byte{}, tag.key)))
|
2020-08-31 15:59:22 +03:00
|
|
|
fieldCode := &opcode{
|
|
|
|
typ: valueCode.typ,
|
|
|
|
displayIdx: fieldOpcodeIndex,
|
2020-09-01 16:26:26 +03:00
|
|
|
idx: opcodeOffset(fieldPtrIndex),
|
2020-08-31 15:59:22 +03:00
|
|
|
next: valueCode,
|
|
|
|
indent: ctx.indent,
|
2020-08-15 11:41:38 +03:00
|
|
|
anonymousKey: field.Anonymous,
|
|
|
|
key: []byte(key),
|
2020-09-16 19:26:39 +03:00
|
|
|
escapedKey: []byte(escapedKey),
|
2020-08-22 09:40:18 +03:00
|
|
|
isTaggedKey: tag.isTaggedKey,
|
2020-08-22 06:58:34 +03:00
|
|
|
displayKey: tag.key,
|
2020-08-15 11:41:38 +03:00
|
|
|
offset: field.Offset,
|
2020-04-30 05:56:56 +03:00
|
|
|
}
|
2020-04-29 18:31:50 +03:00
|
|
|
if fieldIdx == 0 {
|
2020-09-01 16:26:26 +03:00
|
|
|
fieldCode.headIdx = fieldCode.idx
|
2020-08-30 11:32:26 +03:00
|
|
|
code = e.structHeader(ctx, fieldCode, valueCode, tag)
|
2020-04-29 19:44:48 +03:00
|
|
|
head = fieldCode
|
2020-04-29 18:31:50 +03:00
|
|
|
prevField = fieldCode
|
|
|
|
} else {
|
2020-09-01 16:26:26 +03:00
|
|
|
fieldCode.headIdx = head.headIdx
|
|
|
|
code.next = fieldCode
|
2020-08-30 11:32:26 +03:00
|
|
|
code = e.structField(ctx, fieldCode, valueCode, tag)
|
2020-09-01 16:26:26 +03:00
|
|
|
prevField.nextField = fieldCode
|
2020-11-16 15:28:33 +03:00
|
|
|
fieldCode.prevField = prevField
|
2020-04-29 18:31:50 +03:00
|
|
|
prevField = fieldCode
|
|
|
|
}
|
|
|
|
fieldIdx++
|
|
|
|
}
|
2020-08-29 09:35:03 +03:00
|
|
|
ctx = ctx.decIndent()
|
2020-05-01 07:12:01 +03:00
|
|
|
|
2020-08-31 15:59:22 +03:00
|
|
|
structEndCode := &opcode{
|
|
|
|
op: opStructEnd,
|
|
|
|
typ: nil,
|
|
|
|
indent: ctx.indent,
|
|
|
|
next: newEndOp(ctx),
|
|
|
|
}
|
2020-05-01 07:12:01 +03:00
|
|
|
|
|
|
|
// no struct field
|
|
|
|
if head == nil {
|
2020-08-31 15:59:22 +03:00
|
|
|
head = &opcode{
|
|
|
|
op: opStructFieldHead,
|
|
|
|
typ: typ,
|
|
|
|
displayIdx: ctx.opcodeIndex,
|
2020-09-01 16:26:26 +03:00
|
|
|
idx: opcodeOffset(ctx.ptrIndex),
|
|
|
|
headIdx: opcodeOffset(ctx.ptrIndex),
|
2020-08-31 15:59:22 +03:00
|
|
|
indent: ctx.indent,
|
|
|
|
nextField: structEndCode,
|
2020-05-01 07:12:01 +03:00
|
|
|
}
|
2020-11-16 15:28:33 +03:00
|
|
|
structEndCode.prevField = head
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-31 15:59:22 +03:00
|
|
|
code = head
|
2020-05-01 07:12:01 +03:00
|
|
|
}
|
2020-08-30 11:32:26 +03:00
|
|
|
|
2020-08-30 21:14:37 +03:00
|
|
|
structEndCode.displayIdx = ctx.opcodeIndex
|
2020-09-01 17:23:07 +03:00
|
|
|
structEndCode.idx = opcodeOffset(ctx.ptrIndex)
|
2020-09-01 16:26:26 +03:00
|
|
|
ctx.incIndex()
|
2020-08-30 11:32:26 +03:00
|
|
|
|
|
|
|
if prevField != nil && prevField.nextField == nil {
|
|
|
|
prevField.nextField = structEndCode
|
2020-11-16 15:28:33 +03:00
|
|
|
structEndCode.prevField = prevField
|
2020-08-30 11:32:26 +03:00
|
|
|
}
|
|
|
|
|
2020-04-29 19:44:48 +03:00
|
|
|
head.end = structEndCode
|
2020-04-29 18:31:50 +03:00
|
|
|
code.next = structEndCode
|
2020-08-22 09:40:18 +03:00
|
|
|
e.optimizeConflictAnonymousFields(anonymousFields)
|
2020-08-22 06:58:34 +03:00
|
|
|
e.optimizeAnonymousFields(head)
|
2020-08-12 12:42:29 +03:00
|
|
|
ret := (*opcode)(unsafe.Pointer(head))
|
|
|
|
compiled.code = ret
|
2020-08-15 15:13:08 +03:00
|
|
|
|
2020-12-24 21:53:48 +03:00
|
|
|
delete(ctx.structTypeToCompiledCode, typeptr)
|
2020-08-15 15:13:08 +03:00
|
|
|
|
2020-08-12 12:42:29 +03:00
|
|
|
return ret, nil
|
2020-04-29 18:31:50 +03:00
|
|
|
}
|