go-json/decode_float.go

125 lines
2.3 KiB
Go
Raw Normal View History

2020-04-24 10:46:12 +03:00
package json
import (
"strconv"
"unsafe"
)
type floatDecoder struct {
op func(uintptr, float64)
}
func newFloatDecoder(op func(uintptr, float64)) *floatDecoder {
return &floatDecoder{op: op}
}
2020-07-30 16:41:53 +03:00
var floatTable = [256]bool{
'0': true,
'1': true,
'2': true,
'3': true,
'4': true,
'5': true,
'6': true,
'7': true,
'8': true,
'9': true,
'.': true,
'e': true,
'E': true,
2020-08-12 10:54:15 +03:00
'+': true,
2020-07-30 16:41:53 +03:00
}
func floatBytes(s *stream) []byte {
start := s.cursor
2020-07-31 11:10:03 +03:00
for {
s.cursor++
2020-07-30 16:41:53 +03:00
if floatTable[s.char()] {
continue
2020-07-31 11:10:03 +03:00
} else if s.char() == nul {
if s.read() {
2020-07-31 12:07:11 +03:00
s.cursor-- // for retry current character
2020-07-31 11:10:03 +03:00
continue
}
2020-07-30 16:41:53 +03:00
}
break
}
return s.buf[start:s.cursor]
}
2020-08-11 13:05:20 +03:00
func (d *floatDecoder) setDisallowUnknownFields(_ bool) {}
2020-07-30 16:41:53 +03:00
func (d *floatDecoder) decodeStreamByte(s *stream) ([]byte, error) {
for {
switch s.char() {
case ' ', '\n', '\t', '\r':
2020-07-31 11:10:03 +03:00
s.cursor++
2020-07-30 16:41:53 +03:00
continue
case '-', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
return floatBytes(s), nil
2020-07-31 11:10:03 +03:00
case nul:
if s.read() {
continue
}
goto ERROR
2020-07-30 16:41:53 +03:00
default:
2020-07-31 11:10:03 +03:00
goto ERROR
2020-07-30 16:41:53 +03:00
}
}
2020-07-31 11:10:03 +03:00
ERROR:
return nil, errUnexpectedEndOfJSON("float", s.totalOffset())
2020-07-30 16:41:53 +03:00
}
2020-05-23 06:51:09 +03:00
func (d *floatDecoder) decodeByte(buf []byte, cursor int64) ([]byte, int64, error) {
buflen := int64(len(buf))
2020-04-24 10:46:12 +03:00
for ; cursor < buflen; cursor++ {
switch buf[cursor] {
case ' ', '\n', '\t', '\r':
continue
case '-', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
start := cursor
cursor++
for ; cursor < buflen; cursor++ {
2020-08-12 10:54:15 +03:00
if floatTable[buf[cursor]] {
2020-04-24 10:46:12 +03:00
continue
}
break
}
2020-05-06 20:37:29 +03:00
num := buf[start:cursor]
return num, cursor, nil
2020-07-30 16:41:53 +03:00
default:
return nil, 0, errUnexpectedEndOfJSON("float", cursor)
2020-04-24 10:46:12 +03:00
}
}
2020-05-23 06:51:09 +03:00
return nil, 0, errUnexpectedEndOfJSON("float", cursor)
2020-04-24 10:46:12 +03:00
}
2020-07-30 16:41:53 +03:00
func (d *floatDecoder) decodeStream(s *stream, p uintptr) error {
bytes, err := d.decodeStreamByte(s)
if err != nil {
return err
}
str := *(*string)(unsafe.Pointer(&bytes))
f64, err := strconv.ParseFloat(str, 64)
if err != nil {
return err
}
d.op(p, f64)
return nil
}
2020-05-23 06:51:09 +03:00
func (d *floatDecoder) decode(buf []byte, cursor int64, p uintptr) (int64, error) {
2020-05-06 20:37:29 +03:00
bytes, c, err := d.decodeByte(buf, cursor)
2020-04-24 10:46:12 +03:00
if err != nil {
2020-05-06 20:37:29 +03:00
return 0, err
2020-04-24 10:46:12 +03:00
}
2020-05-06 20:37:29 +03:00
cursor = c
2020-04-24 10:46:12 +03:00
s := *(*string)(unsafe.Pointer(&bytes))
f64, err := strconv.ParseFloat(s, 64)
if err != nil {
2020-05-06 20:37:29 +03:00
return 0, err
2020-04-24 10:46:12 +03:00
}
d.op(p, f64)
2020-05-06 20:37:29 +03:00
return cursor, nil
2020-04-24 10:46:12 +03:00
}