go-json/decode_struct.go

74 lines
1.5 KiB
Go
Raw Normal View History

2020-04-23 19:39:20 +03:00
package json
import (
"unsafe"
)
type structFieldSet struct {
dec decoder
offset uintptr
}
type structDecoder struct {
fieldMap map[string]*structFieldSet
keyDecoder *stringDecoder
}
func newStructDecoder(fieldMap map[string]*structFieldSet) *structDecoder {
return &structDecoder{
fieldMap: fieldMap,
keyDecoder: newStringDecoder(),
}
}
2020-05-23 06:51:09 +03:00
func (d *structDecoder) decode(buf []byte, cursor int64, p uintptr) (int64, error) {
buflen := int64(len(buf))
2020-05-06 20:37:29 +03:00
cursor = skipWhiteSpace(buf, cursor)
2020-04-23 19:39:20 +03:00
if buf[cursor] != '{' {
2020-05-23 06:51:09 +03:00
return 0, errNotAtBeginningOfValue(cursor)
}
if buflen < 2 {
return 0, errUnexpectedEndOfJSON("object", cursor)
2020-04-23 19:39:20 +03:00
}
cursor++
for ; cursor < buflen; cursor++ {
2020-05-06 20:37:29 +03:00
key, c, err := d.keyDecoder.decodeByte(buf, cursor)
2020-04-23 19:39:20 +03:00
if err != nil {
2020-05-06 20:37:29 +03:00
return 0, err
2020-04-23 19:39:20 +03:00
}
2020-05-06 20:37:29 +03:00
cursor = c
cursor = skipWhiteSpace(buf, cursor)
2020-04-23 19:39:20 +03:00
if buf[cursor] != ':' {
2020-05-23 06:51:09 +03:00
return 0, errExpected("colon after object key", cursor)
2020-04-23 19:39:20 +03:00
}
cursor++
if cursor >= buflen {
2020-05-23 06:51:09 +03:00
return 0, errExpected("object value after colon", cursor)
2020-04-23 19:39:20 +03:00
}
k := *(*string)(unsafe.Pointer(&key))
field, exists := d.fieldMap[k]
if exists {
2020-05-06 20:37:29 +03:00
c, err := field.dec.decode(buf, cursor, p+field.offset)
if err != nil {
return 0, err
2020-04-23 19:39:20 +03:00
}
2020-05-06 20:37:29 +03:00
cursor = c
2020-04-23 19:39:20 +03:00
} else {
2020-05-08 14:22:57 +03:00
c, err := skipValue(buf, cursor)
2020-05-06 20:37:29 +03:00
if err != nil {
return 0, err
2020-04-23 19:39:20 +03:00
}
2020-05-06 20:37:29 +03:00
cursor = c
2020-04-23 19:39:20 +03:00
}
2020-05-06 20:37:29 +03:00
cursor = skipWhiteSpace(buf, cursor)
2020-04-23 19:39:20 +03:00
if buf[cursor] == '}' {
2020-05-06 20:37:29 +03:00
cursor++
return cursor, nil
2020-04-23 19:39:20 +03:00
}
if buf[cursor] != ',' {
2020-05-23 06:51:09 +03:00
return 0, errExpected("comma after object element", cursor)
2020-04-23 19:39:20 +03:00
}
}
2020-05-06 20:37:29 +03:00
return cursor, nil
2020-04-23 19:39:20 +03:00
}