go-json/decode_array.go

50 lines
1.0 KiB
Go
Raw Normal View History

2020-04-25 13:55:05 +03:00
package json
type arrayDecoder struct {
elemType *rtype
size uintptr
valueDecoder decoder
alen int
}
func newArrayDecoder(dec decoder, elemType *rtype, alen int) *arrayDecoder {
return &arrayDecoder{
valueDecoder: dec,
elemType: elemType,
size: elemType.Size(),
alen: alen,
}
}
2020-05-23 06:51:09 +03:00
func (d *arrayDecoder) decode(buf []byte, cursor int64, p uintptr) (int64, error) {
buflen := int64(len(buf))
2020-04-25 13:55:05 +03:00
for ; cursor < buflen; cursor++ {
switch buf[cursor] {
case ' ', '\n', '\t', '\r':
continue
case '[':
idx := 0
for {
2020-05-06 20:37:29 +03:00
cursor++
c, err := d.valueDecoder.decode(buf, cursor, p+uintptr(idx)*d.size)
if err != nil {
return 0, err
2020-04-25 13:55:05 +03:00
}
2020-05-06 20:37:29 +03:00
cursor = c
cursor = skipWhiteSpace(buf, cursor)
2020-04-25 13:55:05 +03:00
switch buf[cursor] {
case ']':
2020-05-06 20:37:29 +03:00
cursor++
return cursor, nil
2020-04-25 13:55:05 +03:00
case ',':
idx++
continue
default:
2020-05-23 06:51:09 +03:00
return 0, errInvalidCharacter(buf[cursor], "array", cursor)
2020-04-25 13:55:05 +03:00
}
}
}
}
2020-05-23 06:51:09 +03:00
return 0, errUnexpectedEndOfJSON("array", cursor)
2020-04-25 13:55:05 +03:00
}