123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155 |
- /*
- * Copyright 2021 ByteDance Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package decoder
- import (
- `encoding/json`
- `fmt`
- `reflect`
- `sort`
- `strconv`
- `strings`
- `unsafe`
- `github.com/bytedance/sonic/internal/caching`
- `github.com/bytedance/sonic/internal/resolver`
- `github.com/bytedance/sonic/internal/rt`
- `github.com/bytedance/sonic/option`
- )
- type _Op uint8
- const (
- _OP_any _Op = iota + 1
- _OP_dyn
- _OP_str
- _OP_bin
- _OP_bool
- _OP_num
- _OP_i8
- _OP_i16
- _OP_i32
- _OP_i64
- _OP_u8
- _OP_u16
- _OP_u32
- _OP_u64
- _OP_f32
- _OP_f64
- _OP_unquote
- _OP_nil_1
- _OP_nil_2
- _OP_nil_3
- _OP_deref
- _OP_index
- _OP_is_null
- _OP_is_null_quote
- _OP_map_init
- _OP_map_key_i8
- _OP_map_key_i16
- _OP_map_key_i32
- _OP_map_key_i64
- _OP_map_key_u8
- _OP_map_key_u16
- _OP_map_key_u32
- _OP_map_key_u64
- _OP_map_key_f32
- _OP_map_key_f64
- _OP_map_key_str
- _OP_map_key_utext
- _OP_map_key_utext_p
- _OP_array_skip
- _OP_array_clear
- _OP_array_clear_p
- _OP_slice_init
- _OP_slice_append
- _OP_object_skip
- _OP_object_next
- _OP_struct_field
- _OP_unmarshal
- _OP_unmarshal_p
- _OP_unmarshal_text
- _OP_unmarshal_text_p
- _OP_lspace
- _OP_match_char
- _OP_check_char
- _OP_load
- _OP_save
- _OP_drop
- _OP_drop_2
- _OP_recurse
- _OP_goto
- _OP_switch
- _OP_check_char_0
- _OP_dismatch_err
- _OP_go_skip
- _OP_add
- _OP_check_empty
- _OP_debug
- )
- const (
- _INT_SIZE = 32 << (^uint(0) >> 63)
- _PTR_SIZE = 32 << (^uintptr(0) >> 63)
- _PTR_BYTE = unsafe.Sizeof(uintptr(0))
- )
- const (
- _MAX_ILBUF = 100000 // cutoff at 100k of IL instructions
- _MAX_FIELDS = 50 // cutoff at 50 fields struct
- )
- var _OpNames = [256]string {
- _OP_any : "any",
- _OP_dyn : "dyn",
- _OP_str : "str",
- _OP_bin : "bin",
- _OP_bool : "bool",
- _OP_num : "num",
- _OP_i8 : "i8",
- _OP_i16 : "i16",
- _OP_i32 : "i32",
- _OP_i64 : "i64",
- _OP_u8 : "u8",
- _OP_u16 : "u16",
- _OP_u32 : "u32",
- _OP_u64 : "u64",
- _OP_f32 : "f32",
- _OP_f64 : "f64",
- _OP_unquote : "unquote",
- _OP_nil_1 : "nil_1",
- _OP_nil_2 : "nil_2",
- _OP_nil_3 : "nil_3",
- _OP_deref : "deref",
- _OP_index : "index",
- _OP_is_null : "is_null",
- _OP_is_null_quote : "is_null_quote",
- _OP_map_init : "map_init",
- _OP_map_key_i8 : "map_key_i8",
- _OP_map_key_i16 : "map_key_i16",
- _OP_map_key_i32 : "map_key_i32",
- _OP_map_key_i64 : "map_key_i64",
- _OP_map_key_u8 : "map_key_u8",
- _OP_map_key_u16 : "map_key_u16",
- _OP_map_key_u32 : "map_key_u32",
- _OP_map_key_u64 : "map_key_u64",
- _OP_map_key_f32 : "map_key_f32",
- _OP_map_key_f64 : "map_key_f64",
- _OP_map_key_str : "map_key_str",
- _OP_map_key_utext : "map_key_utext",
- _OP_map_key_utext_p : "map_key_utext_p",
- _OP_array_skip : "array_skip",
- _OP_slice_init : "slice_init",
- _OP_slice_append : "slice_append",
- _OP_object_skip : "object_skip",
- _OP_object_next : "object_next",
- _OP_struct_field : "struct_field",
- _OP_unmarshal : "unmarshal",
- _OP_unmarshal_p : "unmarshal_p",
- _OP_unmarshal_text : "unmarshal_text",
- _OP_unmarshal_text_p : "unmarshal_text_p",
- _OP_lspace : "lspace",
- _OP_match_char : "match_char",
- _OP_check_char : "check_char",
- _OP_load : "load",
- _OP_save : "save",
- _OP_drop : "drop",
- _OP_drop_2 : "drop_2",
- _OP_recurse : "recurse",
- _OP_goto : "goto",
- _OP_switch : "switch",
- _OP_check_char_0 : "check_char_0",
- _OP_dismatch_err : "dismatch_err",
- _OP_add : "add",
- _OP_go_skip : "go_skip",
- _OP_check_empty : "check_empty",
- _OP_debug : "debug",
- }
- func (self _Op) String() string {
- if ret := _OpNames[self]; ret != "" {
- return ret
- } else {
- return "<invalid>"
- }
- }
- func _OP_int() _Op {
- switch _INT_SIZE {
- case 32: return _OP_i32
- case 64: return _OP_i64
- default: panic("unsupported int size")
- }
- }
- func _OP_uint() _Op {
- switch _INT_SIZE {
- case 32: return _OP_u32
- case 64: return _OP_u64
- default: panic("unsupported uint size")
- }
- }
- func _OP_uintptr() _Op {
- switch _PTR_SIZE {
- case 32: return _OP_u32
- case 64: return _OP_u64
- default: panic("unsupported pointer size")
- }
- }
- func _OP_map_key_int() _Op {
- switch _INT_SIZE {
- case 32: return _OP_map_key_i32
- case 64: return _OP_map_key_i64
- default: panic("unsupported int size")
- }
- }
- func _OP_map_key_uint() _Op {
- switch _INT_SIZE {
- case 32: return _OP_map_key_u32
- case 64: return _OP_map_key_u64
- default: panic("unsupported uint size")
- }
- }
- func _OP_map_key_uintptr() _Op {
- switch _PTR_SIZE {
- case 32: return _OP_map_key_u32
- case 64: return _OP_map_key_u64
- default: panic("unsupported pointer size")
- }
- }
- type _Instr struct {
- u uint64 // union {op: 8, vb: 8, vi: 48}, iv maybe int or len([]int)
- p unsafe.Pointer // maybe GoSlice.Data, *GoType or *caching.FieldMap
- }
- func packOp(op _Op) uint64 {
- return uint64(op) << 56
- }
- func newInsOp(op _Op) _Instr {
- return _Instr{u: packOp(op)}
- }
- func newInsVi(op _Op, vi int) _Instr {
- return _Instr{u: packOp(op) | rt.PackInt(vi)}
- }
- func newInsVb(op _Op, vb byte) _Instr {
- return _Instr{u: packOp(op) | (uint64(vb) << 48)}
- }
- func newInsVs(op _Op, vs []int) _Instr {
- return _Instr {
- u: packOp(op) | rt.PackInt(len(vs)),
- p: (*rt.GoSlice)(unsafe.Pointer(&vs)).Ptr,
- }
- }
- func newInsVt(op _Op, vt reflect.Type) _Instr {
- return _Instr {
- u: packOp(op),
- p: unsafe.Pointer(rt.UnpackType(vt)),
- }
- }
- func newInsVf(op _Op, vf *caching.FieldMap) _Instr {
- return _Instr {
- u: packOp(op),
- p: unsafe.Pointer(vf),
- }
- }
- func (self _Instr) op() _Op {
- return _Op(self.u >> 56)
- }
- func (self _Instr) vi() int {
- return rt.UnpackInt(self.u)
- }
- func (self _Instr) vb() byte {
- return byte(self.u >> 48)
- }
- func (self _Instr) vs() (v []int) {
- (*rt.GoSlice)(unsafe.Pointer(&v)).Ptr = self.p
- (*rt.GoSlice)(unsafe.Pointer(&v)).Cap = self.vi()
- (*rt.GoSlice)(unsafe.Pointer(&v)).Len = self.vi()
- return
- }
- func (self _Instr) vf() *caching.FieldMap {
- return (*caching.FieldMap)(self.p)
- }
- func (self _Instr) vk() reflect.Kind {
- return (*rt.GoType)(self.p).Kind()
- }
- func (self _Instr) vt() reflect.Type {
- return (*rt.GoType)(self.p).Pack()
- }
- func (self _Instr) i64() int64 {
- return int64(self.vi())
- }
- func (self _Instr) vlen() int {
- return int((*rt.GoType)(self.p).Size)
- }
- func (self _Instr) isBranch() bool {
- switch self.op() {
- case _OP_goto : fallthrough
- case _OP_switch : fallthrough
- case _OP_is_null : fallthrough
- case _OP_is_null_quote : fallthrough
- case _OP_check_char : return true
- default : return false
- }
- }
- func (self _Instr) disassemble() string {
- switch self.op() {
- case _OP_dyn : fallthrough
- case _OP_deref : fallthrough
- case _OP_map_key_i8 : fallthrough
- case _OP_map_key_i16 : fallthrough
- case _OP_map_key_i32 : fallthrough
- case _OP_map_key_i64 : fallthrough
- case _OP_map_key_u8 : fallthrough
- case _OP_map_key_u16 : fallthrough
- case _OP_map_key_u32 : fallthrough
- case _OP_map_key_u64 : fallthrough
- case _OP_map_key_f32 : fallthrough
- case _OP_map_key_f64 : fallthrough
- case _OP_map_key_str : fallthrough
- case _OP_map_key_utext : fallthrough
- case _OP_map_key_utext_p : fallthrough
- case _OP_slice_init : fallthrough
- case _OP_slice_append : fallthrough
- case _OP_unmarshal : fallthrough
- case _OP_unmarshal_p : fallthrough
- case _OP_unmarshal_text : fallthrough
- case _OP_unmarshal_text_p : fallthrough
- case _OP_recurse : return fmt.Sprintf("%-18s%s", self.op(), self.vt())
- case _OP_goto : fallthrough
- case _OP_is_null_quote : fallthrough
- case _OP_is_null : return fmt.Sprintf("%-18sL_%d", self.op(), self.vi())
- case _OP_index : fallthrough
- case _OP_array_clear : fallthrough
- case _OP_array_clear_p : return fmt.Sprintf("%-18s%d", self.op(), self.vi())
- case _OP_switch : return fmt.Sprintf("%-18s%s", self.op(), self.formatSwitchLabels())
- case _OP_struct_field : return fmt.Sprintf("%-18s%s", self.op(), self.formatStructFields())
- case _OP_match_char : return fmt.Sprintf("%-18s%s", self.op(), strconv.QuoteRune(rune(self.vb())))
- case _OP_check_char : return fmt.Sprintf("%-18sL_%d, %s", self.op(), self.vi(), strconv.QuoteRune(rune(self.vb())))
- default : return self.op().String()
- }
- }
- func (self _Instr) formatSwitchLabels() string {
- var i int
- var v int
- var m []string
- /* format each label */
- for i, v = range self.vs() {
- m = append(m, fmt.Sprintf("%d=L_%d", i, v))
- }
- /* join them with "," */
- return strings.Join(m, ", ")
- }
- func (self _Instr) formatStructFields() string {
- var i uint64
- var r []string
- var m []struct{i int; n string}
- /* extract all the fields */
- for i = 0; i < self.vf().N; i++ {
- if v := self.vf().At(i); v.Hash != 0 {
- m = append(m, struct{i int; n string}{i: v.ID, n: v.Name})
- }
- }
- /* sort by field name */
- sort.Slice(m, func(i, j int) bool {
- return m[i].n < m[j].n
- })
- /* format each field */
- for _, v := range m {
- r = append(r, fmt.Sprintf("%s=%d", v.n, v.i))
- }
- /* join them with "," */
- return strings.Join(r, ", ")
- }
- type (
- _Program []_Instr
- )
- func (self _Program) pc() int {
- return len(self)
- }
- func (self _Program) tag(n int) {
- if n >= _MaxStack {
- panic("type nesting too deep")
- }
- }
- func (self _Program) pin(i int) {
- v := &self[i]
- v.u &= 0xffff000000000000
- v.u |= rt.PackInt(self.pc())
- }
- func (self _Program) rel(v []int) {
- for _, i := range v {
- self.pin(i)
- }
- }
- func (self *_Program) add(op _Op) {
- *self = append(*self, newInsOp(op))
- }
- func (self *_Program) int(op _Op, vi int) {
- *self = append(*self, newInsVi(op, vi))
- }
- func (self *_Program) chr(op _Op, vb byte) {
- *self = append(*self, newInsVb(op, vb))
- }
- func (self *_Program) tab(op _Op, vs []int) {
- *self = append(*self, newInsVs(op, vs))
- }
- func (self *_Program) rtt(op _Op, vt reflect.Type) {
- *self = append(*self, newInsVt(op, vt))
- }
- func (self *_Program) fmv(op _Op, vf *caching.FieldMap) {
- *self = append(*self, newInsVf(op, vf))
- }
- func (self _Program) disassemble() string {
- nb := len(self)
- tab := make([]bool, nb + 1)
- ret := make([]string, 0, nb + 1)
- /* prescan to get all the labels */
- for _, ins := range self {
- if ins.isBranch() {
- if ins.op() != _OP_switch {
- tab[ins.vi()] = true
- } else {
- for _, v := range ins.vs() {
- tab[v] = true
- }
- }
- }
- }
- /* disassemble each instruction */
- for i, ins := range self {
- if !tab[i] {
- ret = append(ret, "\t" + ins.disassemble())
- } else {
- ret = append(ret, fmt.Sprintf("L_%d:\n\t%s", i, ins.disassemble()))
- }
- }
- /* add the last label, if needed */
- if tab[nb] {
- ret = append(ret, fmt.Sprintf("L_%d:", nb))
- }
- /* add an "end" indicator, and join all the strings */
- return strings.Join(append(ret, "\tend"), "\n")
- }
- type _Compiler struct {
- opts option.CompileOptions
- tab map[reflect.Type]bool
- rec map[reflect.Type]bool
- }
- func newCompiler() *_Compiler {
- return &_Compiler {
- opts: option.DefaultCompileOptions(),
- tab: map[reflect.Type]bool{},
- rec: map[reflect.Type]bool{},
- }
- }
- func (self *_Compiler) apply(opts option.CompileOptions) *_Compiler {
- self.opts = opts
- return self
- }
- func (self *_Compiler) rescue(ep *error) {
- if val := recover(); val != nil {
- if err, ok := val.(error); ok {
- *ep = err
- } else {
- panic(val)
- }
- }
- }
- func (self *_Compiler) compile(vt reflect.Type) (ret _Program, err error) {
- defer self.rescue(&err)
- self.compileOne(&ret, 0, vt)
- return
- }
- func (self *_Compiler) compileOne(p *_Program, sp int, vt reflect.Type) {
- /* check for recursive nesting */
- ok := self.tab[vt]
- if ok {
- p.rtt(_OP_recurse, vt)
- return
- }
- pt := reflect.PtrTo(vt)
- /* check for `json.Unmarshaler` with pointer receiver */
- if pt.Implements(jsonUnmarshalerType) {
- p.rtt(_OP_unmarshal_p, pt)
- return
- }
- /* check for `json.Unmarshaler` */
- if vt.Implements(jsonUnmarshalerType) {
- p.add(_OP_lspace)
- self.compileUnmarshalJson(p, vt)
- return
- }
- /* check for `encoding.TextMarshaler` with pointer receiver */
- if pt.Implements(encodingTextUnmarshalerType) {
- p.add(_OP_lspace)
- self.compileUnmarshalTextPtr(p, pt)
- return
- }
- /* check for `encoding.TextUnmarshaler` */
- if vt.Implements(encodingTextUnmarshalerType) {
- p.add(_OP_lspace)
- self.compileUnmarshalText(p, vt)
- return
- }
- /* enter the recursion */
- p.add(_OP_lspace)
- self.tab[vt] = true
- self.compileOps(p, sp, vt)
- delete(self.tab, vt)
- }
- func (self *_Compiler) compileOps(p *_Program, sp int, vt reflect.Type) {
- switch vt.Kind() {
- case reflect.Bool : self.compilePrimitive (vt, p, _OP_bool)
- case reflect.Int : self.compilePrimitive (vt, p, _OP_int())
- case reflect.Int8 : self.compilePrimitive (vt, p, _OP_i8)
- case reflect.Int16 : self.compilePrimitive (vt, p, _OP_i16)
- case reflect.Int32 : self.compilePrimitive (vt, p, _OP_i32)
- case reflect.Int64 : self.compilePrimitive (vt, p, _OP_i64)
- case reflect.Uint : self.compilePrimitive (vt, p, _OP_uint())
- case reflect.Uint8 : self.compilePrimitive (vt, p, _OP_u8)
- case reflect.Uint16 : self.compilePrimitive (vt, p, _OP_u16)
- case reflect.Uint32 : self.compilePrimitive (vt, p, _OP_u32)
- case reflect.Uint64 : self.compilePrimitive (vt, p, _OP_u64)
- case reflect.Uintptr : self.compilePrimitive (vt, p, _OP_uintptr())
- case reflect.Float32 : self.compilePrimitive (vt, p, _OP_f32)
- case reflect.Float64 : self.compilePrimitive (vt, p, _OP_f64)
- case reflect.String : self.compileString (p, vt)
- case reflect.Array : self.compileArray (p, sp, vt)
- case reflect.Interface : self.compileInterface (p, vt)
- case reflect.Map : self.compileMap (p, sp, vt)
- case reflect.Ptr : self.compilePtr (p, sp, vt)
- case reflect.Slice : self.compileSlice (p, sp, vt)
- case reflect.Struct : self.compileStruct (p, sp, vt)
- default : panic (&json.UnmarshalTypeError{Type: vt})
- }
- }
- func (self *_Compiler) compileMap(p *_Program, sp int, vt reflect.Type) {
- if reflect.PtrTo(vt.Key()).Implements(encodingTextUnmarshalerType) {
- self.compileMapOp(p, sp, vt, _OP_map_key_utext_p)
- } else if vt.Key().Implements(encodingTextUnmarshalerType) {
- self.compileMapOp(p, sp, vt, _OP_map_key_utext)
- } else {
- self.compileMapUt(p, sp, vt)
- }
- }
- func (self *_Compiler) compileMapUt(p *_Program, sp int, vt reflect.Type) {
- switch vt.Key().Kind() {
- case reflect.Int : self.compileMapOp(p, sp, vt, _OP_map_key_int())
- case reflect.Int8 : self.compileMapOp(p, sp, vt, _OP_map_key_i8)
- case reflect.Int16 : self.compileMapOp(p, sp, vt, _OP_map_key_i16)
- case reflect.Int32 : self.compileMapOp(p, sp, vt, _OP_map_key_i32)
- case reflect.Int64 : self.compileMapOp(p, sp, vt, _OP_map_key_i64)
- case reflect.Uint : self.compileMapOp(p, sp, vt, _OP_map_key_uint())
- case reflect.Uint8 : self.compileMapOp(p, sp, vt, _OP_map_key_u8)
- case reflect.Uint16 : self.compileMapOp(p, sp, vt, _OP_map_key_u16)
- case reflect.Uint32 : self.compileMapOp(p, sp, vt, _OP_map_key_u32)
- case reflect.Uint64 : self.compileMapOp(p, sp, vt, _OP_map_key_u64)
- case reflect.Uintptr : self.compileMapOp(p, sp, vt, _OP_map_key_uintptr())
- case reflect.Float32 : self.compileMapOp(p, sp, vt, _OP_map_key_f32)
- case reflect.Float64 : self.compileMapOp(p, sp, vt, _OP_map_key_f64)
- case reflect.String : self.compileMapOp(p, sp, vt, _OP_map_key_str)
- default : panic(&json.UnmarshalTypeError{Type: vt})
- }
- }
- func (self *_Compiler) compileMapOp(p *_Program, sp int, vt reflect.Type, op _Op) {
- i := p.pc()
- p.add(_OP_is_null)
- p.tag(sp + 1)
- skip := self.checkIfSkip(p, vt, '{')
- p.add(_OP_save)
- p.add(_OP_map_init)
- p.add(_OP_save)
- p.add(_OP_lspace)
- j := p.pc()
- p.chr(_OP_check_char, '}')
- p.chr(_OP_match_char, '"')
- skip2 := p.pc()
- p.rtt(op, vt)
- /* match the value separator */
- p.add(_OP_lspace)
- p.chr(_OP_match_char, ':')
- self.compileOne(p, sp + 2, vt.Elem())
- p.pin(skip2)
- p.add(_OP_load)
- k0 := p.pc()
- p.add(_OP_lspace)
- k1 := p.pc()
- p.chr(_OP_check_char, '}')
- p.chr(_OP_match_char, ',')
- p.add(_OP_lspace)
- p.chr(_OP_match_char, '"')
- skip3 := p.pc()
- p.rtt(op, vt)
- /* match the value separator */
- p.add(_OP_lspace)
- p.chr(_OP_match_char, ':')
- self.compileOne(p, sp + 2, vt.Elem())
- p.pin(skip3)
- p.add(_OP_load)
- p.int(_OP_goto, k0)
- p.pin(j)
- p.pin(k1)
- p.add(_OP_drop_2)
- x := p.pc()
- p.add(_OP_goto)
- p.pin(i)
- p.add(_OP_nil_1)
- p.pin(skip)
- p.pin(x)
- }
- func (self *_Compiler) compilePtr(p *_Program, sp int, et reflect.Type) {
- i := p.pc()
- p.add(_OP_is_null)
- /* dereference all the way down */
- for et.Kind() == reflect.Ptr {
- if et.Implements(jsonUnmarshalerType) {
- p.rtt(_OP_unmarshal_p, et)
- return
- }
- if et.Implements(encodingTextUnmarshalerType) {
- p.add(_OP_lspace)
- self.compileUnmarshalTextPtr(p, et)
- return
- }
- et = et.Elem()
- p.rtt(_OP_deref, et)
- }
- /* check for recursive nesting */
- ok := self.tab[et]
- if ok {
- p.rtt(_OP_recurse, et)
- } else {
- /* enter the recursion */
- p.add(_OP_lspace)
- self.tab[et] = true
-
- /* not inline the pointer type
- * recursing the defined pointer type's elem will casue issue379.
- */
- self.compileOps(p, sp, et)
- }
- delete(self.tab, et)
- j := p.pc()
- p.add(_OP_goto)
- p.pin(i)
- p.add(_OP_nil_1)
- p.pin(j)
- }
- func (self *_Compiler) compileArray(p *_Program, sp int, vt reflect.Type) {
- x := p.pc()
- p.add(_OP_is_null)
- p.tag(sp)
- skip := self.checkIfSkip(p, vt, '[')
-
- p.add(_OP_save)
- p.add(_OP_lspace)
- v := []int{p.pc()}
- p.chr(_OP_check_char, ']')
- /* decode every item */
- for i := 1; i <= vt.Len(); i++ {
- self.compileOne(p, sp + 1, vt.Elem())
- p.add(_OP_load)
- p.int(_OP_index, i * int(vt.Elem().Size()))
- p.add(_OP_lspace)
- v = append(v, p.pc())
- p.chr(_OP_check_char, ']')
- p.chr(_OP_match_char, ',')
- }
- /* drop rest of the array */
- p.add(_OP_array_skip)
- w := p.pc()
- p.add(_OP_goto)
- p.rel(v)
- /* check for pointer data */
- if rt.UnpackType(vt.Elem()).PtrData == 0 {
- p.int(_OP_array_clear, int(vt.Size()))
- } else {
- p.int(_OP_array_clear_p, int(vt.Size()))
- }
- /* restore the stack */
- p.pin(w)
- p.add(_OP_drop)
- p.pin(skip)
- p.pin(x)
- }
- func (self *_Compiler) compileSlice(p *_Program, sp int, vt reflect.Type) {
- if vt.Elem().Kind() == byteType.Kind() {
- self.compileSliceBin(p, sp, vt)
- } else {
- self.compileSliceList(p, sp, vt)
- }
- }
- func (self *_Compiler) compileSliceBin(p *_Program, sp int, vt reflect.Type) {
- i := p.pc()
- p.add(_OP_is_null)
- j := p.pc()
- p.chr(_OP_check_char, '[')
- skip := self.checkIfSkip(p, vt, '"')
- k := p.pc()
- p.chr(_OP_check_char, '"')
- p.add(_OP_bin)
- x := p.pc()
- p.add(_OP_goto)
- p.pin(j)
- self.compileSliceBody(p, sp, vt.Elem())
- y := p.pc()
- p.add(_OP_goto)
- p.pin(i)
- p.pin(k)
- p.add(_OP_nil_3)
- p.pin(x)
- p.pin(skip)
- p.pin(y)
- }
- func (self *_Compiler) compileSliceList(p *_Program, sp int, vt reflect.Type) {
- i := p.pc()
- p.add(_OP_is_null)
- p.tag(sp)
- skip := self.checkIfSkip(p, vt, '[')
- self.compileSliceBody(p, sp, vt.Elem())
- x := p.pc()
- p.add(_OP_goto)
- p.pin(i)
- p.add(_OP_nil_3)
- p.pin(x)
- p.pin(skip)
- }
- func (self *_Compiler) compileSliceBody(p *_Program, sp int, et reflect.Type) {
- p.add(_OP_lspace)
- j := p.pc()
- p.chr(_OP_check_empty, ']')
- p.rtt(_OP_slice_init, et)
- p.add(_OP_save)
- p.rtt(_OP_slice_append, et)
- self.compileOne(p, sp + 1, et)
- p.add(_OP_load)
- k0 := p.pc()
- p.add(_OP_lspace)
- k1 := p.pc()
- p.chr(_OP_check_char, ']')
- p.chr(_OP_match_char, ',')
- p.rtt(_OP_slice_append, et)
- self.compileOne(p, sp + 1, et)
- p.add(_OP_load)
- p.int(_OP_goto, k0)
- p.pin(k1)
- p.add(_OP_drop)
- p.pin(j)
- }
- func (self *_Compiler) compileString(p *_Program, vt reflect.Type) {
- if vt == jsonNumberType {
- self.compilePrimitive(vt, p, _OP_num)
- } else {
- self.compileStringBody(vt, p)
- }
- }
- func (self *_Compiler) compileStringBody(vt reflect.Type, p *_Program) {
- i := p.pc()
- p.add(_OP_is_null)
- skip := self.checkIfSkip(p, vt, '"')
- p.add(_OP_str)
- p.pin(i)
- p.pin(skip)
- }
- func (self *_Compiler) compileStruct(p *_Program, sp int, vt reflect.Type) {
- if sp >= self.opts.MaxInlineDepth || p.pc() >= _MAX_ILBUF || (sp > 0 && vt.NumField() >= _MAX_FIELDS) {
- p.rtt(_OP_recurse, vt)
- if self.opts.RecursiveDepth > 0 {
- self.rec[vt] = true
- }
- } else {
- self.compileStructBody(p, sp, vt)
- }
- }
- func (self *_Compiler) compileStructBody(p *_Program, sp int, vt reflect.Type) {
- fv := resolver.ResolveStruct(vt)
- fm, sw := caching.CreateFieldMap(len(fv)), make([]int, len(fv))
- /* start of object */
- p.tag(sp)
- n := p.pc()
- p.add(_OP_is_null)
- skip := self.checkIfSkip(p, vt, '{')
-
- p.add(_OP_save)
- p.add(_OP_lspace)
- x := p.pc()
- p.chr(_OP_check_char, '}')
- p.chr(_OP_match_char, '"')
- p.fmv(_OP_struct_field, fm)
- p.add(_OP_lspace)
- p.chr(_OP_match_char, ':')
- p.tab(_OP_switch, sw)
- p.add(_OP_object_next)
- y0 := p.pc()
- p.add(_OP_lspace)
- y1 := p.pc()
- p.chr(_OP_check_char, '}')
- p.chr(_OP_match_char, ',')
- /* special case of an empty struct */
- if len(fv) == 0 {
- p.add(_OP_object_skip)
- goto end_of_object
- }
- /* match the remaining fields */
- p.add(_OP_lspace)
- p.chr(_OP_match_char, '"')
- p.fmv(_OP_struct_field, fm)
- p.add(_OP_lspace)
- p.chr(_OP_match_char, ':')
- p.tab(_OP_switch, sw)
- p.add(_OP_object_next)
- p.int(_OP_goto, y0)
- /* process each field */
- for i, f := range fv {
- sw[i] = p.pc()
- fm.Set(f.Name, i)
- /* index to the field */
- for _, o := range f.Path {
- if p.int(_OP_index, int(o.Size)); o.Kind == resolver.F_deref {
- p.rtt(_OP_deref, o.Type)
- }
- }
- /* check for "stringnize" option */
- if (f.Opts & resolver.F_stringize) == 0 {
- self.compileOne(p, sp + 1, f.Type)
- } else {
- self.compileStructFieldStr(p, sp + 1, f.Type)
- }
- /* load the state, and try next field */
- p.add(_OP_load)
- p.int(_OP_goto, y0)
- }
- end_of_object:
- p.pin(x)
- p.pin(y1)
- p.add(_OP_drop)
- p.pin(n)
- p.pin(skip)
- }
- func (self *_Compiler) compileStructFieldStr(p *_Program, sp int, vt reflect.Type) {
- n1 := -1
- ft := vt
- sv := false
- /* dereference the pointer if needed */
- if ft.Kind() == reflect.Ptr {
- ft = ft.Elem()
- }
- /* check if it can be stringized */
- switch ft.Kind() {
- case reflect.Bool : sv = true
- case reflect.Int : sv = true
- case reflect.Int8 : sv = true
- case reflect.Int16 : sv = true
- case reflect.Int32 : sv = true
- case reflect.Int64 : sv = true
- case reflect.Uint : sv = true
- case reflect.Uint8 : sv = true
- case reflect.Uint16 : sv = true
- case reflect.Uint32 : sv = true
- case reflect.Uint64 : sv = true
- case reflect.Uintptr : sv = true
- case reflect.Float32 : sv = true
- case reflect.Float64 : sv = true
- case reflect.String : sv = true
- }
- /* if it's not, ignore the "string" and follow the regular path */
- if !sv {
- self.compileOne(p, sp, vt)
- return
- }
- /* remove the leading space, and match the leading quote */
- vk := vt.Kind()
- p.add(_OP_lspace)
- n0 := p.pc()
- p.add(_OP_is_null)
-
- skip := self.checkIfSkip(p, stringType, '"')
- /* also check for inner "null" */
- n1 = p.pc()
- p.add(_OP_is_null_quote)
- /* dereference the pointer only when it is not null */
- if vk == reflect.Ptr {
- vt = vt.Elem()
- p.rtt(_OP_deref, vt)
- }
- n2 := p.pc()
- p.chr(_OP_check_char_0, '"')
- /* string opcode selector */
- _OP_string := func() _Op {
- if ft == jsonNumberType {
- return _OP_num
- } else {
- return _OP_unquote
- }
- }
- /* compile for each type */
- switch vt.Kind() {
- case reflect.Bool : p.add(_OP_bool)
- case reflect.Int : p.add(_OP_int())
- case reflect.Int8 : p.add(_OP_i8)
- case reflect.Int16 : p.add(_OP_i16)
- case reflect.Int32 : p.add(_OP_i32)
- case reflect.Int64 : p.add(_OP_i64)
- case reflect.Uint : p.add(_OP_uint())
- case reflect.Uint8 : p.add(_OP_u8)
- case reflect.Uint16 : p.add(_OP_u16)
- case reflect.Uint32 : p.add(_OP_u32)
- case reflect.Uint64 : p.add(_OP_u64)
- case reflect.Uintptr : p.add(_OP_uintptr())
- case reflect.Float32 : p.add(_OP_f32)
- case reflect.Float64 : p.add(_OP_f64)
- case reflect.String : p.add(_OP_string())
- default : panic("not reachable")
- }
- /* the closing quote is not needed when parsing a pure string */
- if vt == jsonNumberType || vt.Kind() != reflect.String {
- p.chr(_OP_match_char, '"')
- }
- /* pin the `is_null_quote` jump location */
- if n1 != -1 && vk != reflect.Ptr {
- p.pin(n1)
- }
- /* "null" but not a pointer, act as if the field is not present */
- if vk != reflect.Ptr {
- pc2 := p.pc()
- p.add(_OP_goto)
- p.pin(n2)
- p.rtt(_OP_dismatch_err, vt)
- p.int(_OP_add, 1)
- p.pin(pc2)
- p.pin(n0)
- return
- }
- /* the "null" case of the pointer */
- pc := p.pc()
- p.add(_OP_goto)
- p.pin(n0) // `is_null` jump location
- p.pin(n1) // `is_null_quote` jump location
- p.add(_OP_nil_1)
- pc2 := p.pc()
- p.add(_OP_goto)
- p.pin(n2)
- p.rtt(_OP_dismatch_err, vt)
- p.int(_OP_add, 1)
- p.pin(pc)
- p.pin(pc2)
- p.pin(skip)
- }
- func (self *_Compiler) compileInterface(p *_Program, vt reflect.Type) {
- i := p.pc()
- p.add(_OP_is_null)
- /* check for empty interface */
- if vt.NumMethod() == 0 {
- p.add(_OP_any)
- } else {
- p.rtt(_OP_dyn, vt)
- }
- /* finish the OpCode */
- j := p.pc()
- p.add(_OP_goto)
- p.pin(i)
- p.add(_OP_nil_2)
- p.pin(j)
- }
- func (self *_Compiler) compilePrimitive(vt reflect.Type, p *_Program, op _Op) {
- i := p.pc()
- p.add(_OP_is_null)
- // skip := self.checkPrimitive(p, vt)
- p.add(op)
- p.pin(i)
- // p.pin(skip)
- }
- func (self *_Compiler) compileUnmarshalEnd(p *_Program, vt reflect.Type, i int) {
- j := p.pc()
- k := vt.Kind()
- /* not a pointer */
- if k != reflect.Ptr {
- p.pin(i)
- return
- }
- /* it seems that in Go JSON library, "null" takes priority over any kind of unmarshaler */
- p.add(_OP_goto)
- p.pin(i)
- p.add(_OP_nil_1)
- p.pin(j)
- }
- func (self *_Compiler) compileUnmarshalJson(p *_Program, vt reflect.Type) {
- i := p.pc()
- v := _OP_unmarshal
- p.add(_OP_is_null)
- /* check for dynamic interface */
- if vt.Kind() == reflect.Interface {
- v = _OP_dyn
- }
- /* call the unmarshaler */
- p.rtt(v, vt)
- self.compileUnmarshalEnd(p, vt, i)
- }
- func (self *_Compiler) compileUnmarshalText(p *_Program, vt reflect.Type) {
- i := p.pc()
- v := _OP_unmarshal_text
- p.add(_OP_is_null)
- /* check for dynamic interface */
- if vt.Kind() == reflect.Interface {
- v = _OP_dyn
- } else {
- p.chr(_OP_match_char, '"')
- }
- /* call the unmarshaler */
- p.rtt(v, vt)
- self.compileUnmarshalEnd(p, vt, i)
- }
- func (self *_Compiler) compileUnmarshalTextPtr(p *_Program, vt reflect.Type) {
- i := p.pc()
- p.add(_OP_is_null)
- p.chr(_OP_match_char, '"')
- p.rtt(_OP_unmarshal_text_p, vt)
- p.pin(i)
- }
- func (self *_Compiler) checkIfSkip(p *_Program, vt reflect.Type, c byte) int {
- j := p.pc()
- p.chr(_OP_check_char_0, c)
- p.rtt(_OP_dismatch_err, vt)
- s := p.pc()
- p.add(_OP_go_skip)
- p.pin(j)
- p.int(_OP_add, 1)
- return s
- }
|