go-json/decode_string.go

70 lines
1.5 KiB
Go
Raw Normal View History

2020-04-23 19:39:20 +03:00
package json
import (
"errors"
"unsafe"
)
type stringDecoder struct {
}
func newStringDecoder() *stringDecoder {
return &stringDecoder{}
}
2020-05-06 20:37:29 +03:00
func (d *stringDecoder) decode(buf []byte, cursor int, p uintptr) (int, error) {
bytes, c, err := d.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
2020-04-23 19:39:20 +03:00
*(*string)(unsafe.Pointer(p)) = *(*string)(unsafe.Pointer(&bytes))
2020-05-06 20:37:29 +03:00
return cursor, nil
2020-04-23 19:39:20 +03:00
}
2020-05-06 20:37:29 +03:00
func (d *stringDecoder) decodeByte(buf []byte, cursor int) ([]byte, int, error) {
2020-05-07 07:51:17 +03:00
for {
switch buf[cursor] {
case ' ', '\n', '\t', '\r':
cursor++
case '"':
cursor++
start := cursor
for {
switch buf[cursor] {
case '\\':
cursor++
case '"':
literal := buf[start:cursor]
cursor++
return literal, cursor, nil
case '\000':
return nil, 0, errors.New("unexpected error string")
}
2020-05-07 07:46:32 +03:00
cursor++
2020-04-26 08:59:45 +03:00
}
2020-05-07 07:51:17 +03:00
return nil, 0, errors.New("unexpected error string")
case 'n':
buflen := len(buf)
if cursor+3 >= buflen {
return nil, 0, errors.New("unexpected error. invalid bool character")
}
if buf[cursor+1] != 'u' {
return nil, 0, errors.New("unexpected error. invalid bool character")
}
if buf[cursor+2] != 'l' {
return nil, 0, errors.New("unexpected error. invalid bool character")
}
if buf[cursor+3] != 'l' {
return nil, 0, errors.New("unexpected error. invalid bool character")
}
cursor += 5
return []byte{'n', 'u', 'l', 'l'}, cursor, nil
2020-05-07 08:21:29 +03:00
default:
goto ERROR
2020-04-23 19:39:20 +03:00
}
}
2020-05-07 08:21:29 +03:00
ERROR:
2020-05-06 20:37:29 +03:00
return nil, 0, errors.New("unexpected error key delimiter")
2020-04-23 19:39:20 +03:00
}