go-json/decode_bool.go

53 lines
1.3 KiB
Go
Raw Normal View History

2020-04-23 19:39:20 +03:00
package json
import (
"unsafe"
)
type boolDecoder struct{}
func newBoolDecoder() *boolDecoder {
return &boolDecoder{}
}
2020-05-23 06:51:09 +03:00
func (d *boolDecoder) 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
switch buf[cursor] {
case 't':
2020-05-06 20:37:29 +03:00
if cursor+3 >= buflen {
2020-05-23 06:51:09 +03:00
return 0, errUnexpectedEndOfJSON("bool(true)", cursor)
2020-04-23 19:39:20 +03:00
}
if buf[cursor+1] != 'r' {
2020-05-23 06:51:09 +03:00
return 0, errInvalidCharacter(buf[cursor+1], "bool(true)", cursor)
2020-04-23 19:39:20 +03:00
}
if buf[cursor+2] != 'u' {
2020-05-23 06:51:09 +03:00
return 0, errInvalidCharacter(buf[cursor+2], "bool(true)", cursor)
2020-04-23 19:39:20 +03:00
}
if buf[cursor+3] != 'e' {
2020-05-23 06:51:09 +03:00
return 0, errInvalidCharacter(buf[cursor+3], "bool(true)", cursor)
2020-04-23 19:39:20 +03:00
}
2020-05-06 20:37:29 +03:00
cursor += 4
2020-04-23 19:39:20 +03:00
*(*bool)(unsafe.Pointer(p)) = true
case 'f':
2020-05-06 20:37:29 +03:00
if cursor+4 >= buflen {
2020-05-23 06:51:09 +03:00
return 0, errUnexpectedEndOfJSON("bool(false)", cursor)
2020-04-23 19:39:20 +03:00
}
if buf[cursor+1] != 'a' {
2020-05-23 06:51:09 +03:00
return 0, errInvalidCharacter(buf[cursor+1], "bool(false)", cursor)
2020-04-23 19:39:20 +03:00
}
if buf[cursor+2] != 'l' {
2020-05-23 06:51:09 +03:00
return 0, errInvalidCharacter(buf[cursor+2], "bool(false)", cursor)
2020-04-23 19:39:20 +03:00
}
if buf[cursor+3] != 's' {
2020-05-23 06:51:09 +03:00
return 0, errInvalidCharacter(buf[cursor+3], "bool(false)", cursor)
2020-04-23 19:39:20 +03:00
}
if buf[cursor+4] != 'e' {
2020-05-23 06:51:09 +03:00
return 0, errInvalidCharacter(buf[cursor+4], "bool(false)", cursor)
2020-04-23 19:39:20 +03:00
}
2020-05-06 20:37:29 +03:00
cursor += 5
2020-04-23 19:39:20 +03:00
*(*bool)(unsafe.Pointer(p)) = false
}
2020-05-06 20:37:29 +03:00
return cursor, nil
2020-04-23 19:39:20 +03:00
}