1
0
mirror of https://github.com/json-iterator/go.git synced 2024-11-24 08:22:14 +02:00
json-iterator/feature_iter_object.go

146 lines
2.9 KiB
Go
Raw Normal View History

package jsoniter
import "fmt"
func (iter *Iterator) ReadObject() (ret string) {
c := iter.nextToken()
switch c {
case 'n':
2017-01-18 17:33:40 +02:00
iter.skipFixedBytes(3)
return "" // null
case '{':
c = iter.nextToken()
2017-01-20 06:56:49 +02:00
if c == '"' {
iter.unreadByte()
2017-01-20 06:40:52 +02:00
return string(iter.readObjectFieldAsBytes())
}
2017-01-20 06:56:49 +02:00
if c == '}' {
return "" // end of object
}
iter.reportError("ReadObject", `expect " after {`)
return
case ',':
2017-01-20 06:40:52 +02:00
return string(iter.readObjectFieldAsBytes())
case '}':
return "" // end of object
default:
iter.reportError("ReadObject", fmt.Sprintf(`expect { or , or } or n, but found %s`, string([]byte{c})))
return
}
}
2017-02-08 07:46:28 +02:00
func (iter *Iterator) readFieldHash() int32 {
2017-02-09 07:35:58 +02:00
hash := int64(0x811c9dc5)
2017-02-08 07:46:28 +02:00
c := iter.nextToken()
if c == '"' {
for {
for i := iter.head; i < iter.tail; i++ {
// require ascii string and no escape
b := iter.buf[i]
if b == '"' {
iter.head = i+1
c = iter.nextToken()
if c != ':' {
iter.reportError("readFieldHash", `expect :, but found ` + string([]byte{c}))
}
return int32(hash)
}
2017-02-09 07:50:06 +02:00
hash ^= int64(b)
2017-02-08 07:46:28 +02:00
hash *= 0x1000193
}
if !iter.loadMore() {
iter.reportError("readFieldHash", `incomplete field name`)
return 0
}
}
}
iter.reportError("readFieldHash", `expect ", but found ` + string([]byte{c}))
return 0
}
func calcHash(str string) int32 {
2017-02-09 07:35:58 +02:00
hash := int64(0x811c9dc5)
2017-02-08 07:46:28 +02:00
for _, b := range str {
2017-02-09 07:50:06 +02:00
hash ^= int64(b)
2017-02-08 07:46:28 +02:00
hash *= 0x1000193
}
return int32(hash)
}
2017-01-20 06:56:49 +02:00
func (iter *Iterator) ReadObjectCB(callback func(*Iterator, string) bool) bool {
c := iter.nextToken()
if c == '{' {
c = iter.nextToken()
if c == '"' {
iter.unreadByte()
field := string(iter.readObjectFieldAsBytes())
if !callback(iter, field) {
return false
}
2017-01-20 07:54:51 +02:00
for iter.nextToken() == ',' {
2017-01-20 06:56:49 +02:00
field := string(iter.readObjectFieldAsBytes())
if !callback(iter, field) {
return false
}
}
return true
}
if c == '}' {
return true
}
iter.reportError("ReadObjectCB", `expect " after }`)
return false
}
if c == 'n' {
iter.skipFixedBytes(3)
return true // null
}
iter.reportError("ReadObjectCB", `expect { or n`)
return false
}
func (iter *Iterator) readObjectStart() bool {
c := iter.nextToken()
if c == '{' {
c = iter.nextToken()
if c == '}' {
return false
}
iter.unreadByte()
return true
}
iter.reportError("readObjectStart", "expect { ")
return false
}
2017-01-20 06:40:52 +02:00
func (iter *Iterator) readObjectFieldAsBytes() (ret []byte) {
str := iter.ReadStringAsSlice()
if iter.skipWhitespacesWithoutLoadMore() {
2017-01-20 06:40:52 +02:00
if ret == nil {
ret = make([]byte, len(str))
copy(ret, str)
}
if !iter.loadMore() {
return
}
}
if iter.buf[iter.head] != ':' {
2017-01-20 06:40:52 +02:00
iter.reportError("readObjectFieldAsBytes", "expect : after object field")
return
}
iter.head++
if iter.skipWhitespacesWithoutLoadMore() {
2017-01-20 06:40:52 +02:00
if ret == nil {
ret = make([]byte, len(str))
copy(ret, str)
}
if !iter.loadMore() {
return
}
}
2017-01-20 06:40:52 +02:00
if ret == nil {
return str
}
return ret
}