go-json/decode_unmarshal_text.go

33 lines
659 B
Go
Raw Normal View History

2020-05-08 14:25:49 +03:00
package json
import (
"encoding"
"unsafe"
)
type unmarshalTextDecoder struct {
typ *rtype
}
func newUnmarshalTextDecoder(typ *rtype) *unmarshalTextDecoder {
return &unmarshalTextDecoder{typ: typ}
}
2020-05-23 06:51:09 +03:00
func (d *unmarshalTextDecoder) decode(buf []byte, cursor int64, p uintptr) (int64, error) {
2020-05-08 14:25:49 +03:00
cursor = skipWhiteSpace(buf, cursor)
start := cursor
end, err := skipValue(buf, cursor)
if err != nil {
return 0, err
}
src := buf[start:end]
v := *(*interface{})(unsafe.Pointer(&interfaceHeader{
typ: d.typ,
ptr: unsafe.Pointer(p),
}))
if err := v.(encoding.TextUnmarshaler).UnmarshalText(src); err != nil {
return 0, err
}
return end, nil
}