You've already forked json-iterator
mirror of
https://github.com/json-iterator/go.git
synced 2025-06-15 22:50:24 +02:00
Compare commits
49 Commits
jsoniter-g
...
revert-55-
Author | SHA1 | Date | |
---|---|---|---|
787edc95b0 | |||
6e5817b773 | |||
7480e41836 | |||
9215b3c508 | |||
64e500f3c8 | |||
3307ce3ba2 | |||
6f50f15678 | |||
cee09816e3 | |||
cdbad22d22 | |||
b0c9f047e2 | |||
6bd13c2948 | |||
84ad508437 | |||
4f909776cf | |||
962c470806 | |||
46d443fbad | |||
2608d40f2a | |||
3cf822853f | |||
26708bccc9 | |||
d75b539bad | |||
cfffa29c8a | |||
925df245d3 | |||
962a8cd303 | |||
6509ba05df | |||
579dbf3c1d | |||
aa5181db67 | |||
67be6df2b1 | |||
0f5379494a | |||
d09e2419ba | |||
e1a71f6ba1 | |||
dcb78991c4 | |||
9e8238cdc6 | |||
a4e5abf492 | |||
3979955e69 | |||
5fd09f0e02 | |||
af4982b22c | |||
29dc1d407d | |||
5b27aaa62c | |||
106636a191 | |||
f50c4cfbbe | |||
87149ae489 | |||
c0a4ad72e1 | |||
404c0ee44b | |||
10c1506f87 | |||
9a43fe6468 | |||
95e03f2937 | |||
4406ed9e62 | |||
ff027701f5 | |||
c69b61f879 | |||
d97f5db769 |
10
.idea/libraries/Go_SDK.xml
generated
Normal file
10
.idea/libraries/Go_SDK.xml
generated
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<component name="libraryTable">
|
||||||
|
<library name="Go SDK">
|
||||||
|
<CLASSES>
|
||||||
|
<root url="file:///usr/local/go/src" />
|
||||||
|
</CLASSES>
|
||||||
|
<SOURCES>
|
||||||
|
<root url="file:///usr/local/go/src" />
|
||||||
|
</SOURCES>
|
||||||
|
</library>
|
||||||
|
</component>
|
17
README.md
17
README.md
@ -2,6 +2,23 @@
|
|||||||
|
|
||||||
jsoniter (json-iterator) is fast and flexible JSON parser available in [Java](https://github.com/json-iterator/java) and [Go](https://github.com/json-iterator/go)
|
jsoniter (json-iterator) is fast and flexible JSON parser available in [Java](https://github.com/json-iterator/java) and [Go](https://github.com/json-iterator/go)
|
||||||
|
|
||||||
|
# Benchmark
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Source code: https://github.com/json-iterator/go-benchmark/blob/master/src/github.com/json-iterator/go-benchmark/benchmark_medium_payload_test.go
|
||||||
|
|
||||||
|
Raw Result (easyjson requires static code generation)
|
||||||
|
|
||||||
|
| | ns/op | allocation bytes | allocation times |
|
||||||
|
| --- | --- | --- | --- |
|
||||||
|
| std decode | 35510 ns/op | 1960 B/op | 99 allocs/op |
|
||||||
|
| easyjson decode | 8499 ns/op | 160 B/op | 4 allocs/op |
|
||||||
|
| jsoniter decode | 5623 ns/op | 160 B/op | 3 allocs/op |
|
||||||
|
| std encode | 2213 ns/op | 712 B/op | 5 allocs/op |
|
||||||
|
| easyjson encode | 883 ns/op | 576 B/op | 3 allocs/op |
|
||||||
|
| jsoniter encode | 837 ns/op | 384 B/op | 4 allocs/op |
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
|
|
||||||
100% compatibility with standard lib
|
100% compatibility with standard lib
|
||||||
|
@ -1014,4 +1014,4 @@ func typeAndKind(v interface{}) (reflect.Type, reflect.Kind) {
|
|||||||
k = t.Kind()
|
k = t.Kind()
|
||||||
}
|
}
|
||||||
return t, k
|
return t, k
|
||||||
}
|
}
|
||||||
|
47
example_test.go
Normal file
47
example_test.go
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
package jsoniter_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"github.com/json-iterator/go"
|
||||||
|
)
|
||||||
|
|
||||||
|
func ExampleMarshal() {
|
||||||
|
type ColorGroup struct {
|
||||||
|
ID int
|
||||||
|
Name string
|
||||||
|
Colors []string
|
||||||
|
}
|
||||||
|
group := ColorGroup{
|
||||||
|
ID: 1,
|
||||||
|
Name: "Reds",
|
||||||
|
Colors: []string{"Crimson", "Red", "Ruby", "Maroon"},
|
||||||
|
}
|
||||||
|
b, err := jsoniter.Marshal(group)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("error:", err)
|
||||||
|
}
|
||||||
|
os.Stdout.Write(b)
|
||||||
|
// Output:
|
||||||
|
// {"ID":1,"Name":"Reds","Colors":["Crimson","Red","Ruby","Maroon"]}
|
||||||
|
}
|
||||||
|
|
||||||
|
func ExampleUnmarshal() {
|
||||||
|
var jsonBlob = []byte(`[
|
||||||
|
{"Name": "Platypus", "Order": "Monotremata"},
|
||||||
|
{"Name": "Quoll", "Order": "Dasyuromorphia"}
|
||||||
|
]`)
|
||||||
|
type Animal struct {
|
||||||
|
Name string
|
||||||
|
Order string
|
||||||
|
}
|
||||||
|
var animals []Animal
|
||||||
|
err := jsoniter.Unmarshal(jsonBlob, &animals)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("error:", err)
|
||||||
|
}
|
||||||
|
fmt.Printf("%+v", animals)
|
||||||
|
// Output:
|
||||||
|
// [{Name:Platypus Order:Monotremata} {Name:Quoll Order:Dasyuromorphia}]
|
||||||
|
}
|
@ -1,14 +1,37 @@
|
|||||||
|
// Package jsoniter implements encoding and decoding of JSON as defined in
|
||||||
|
// RFC 4627 and provides interfaces with identical syntax of standard lib encoding/json.
|
||||||
|
// Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter
|
||||||
|
// and variable type declarations (if any).
|
||||||
|
// jsoniter interfaces gives 100% compatibility with code using standard lib.
|
||||||
|
//
|
||||||
|
// "JSON and Go"
|
||||||
|
// (https://golang.org/doc/articles/json_and_go.html)
|
||||||
|
// gives a description of how Marshal/Unmarshal operate
|
||||||
|
// between arbitrary or predefined json objects and bytes,
|
||||||
|
// and it applies to jsoniter.Marshal/Unmarshal as well.
|
||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"io"
|
||||||
|
"reflect"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Unmarshal adapts to json/encoding APIs
|
// Unmarshal adapts to json/encoding Unmarshal API
|
||||||
|
//
|
||||||
|
// Unmarshal parses the JSON-encoded data and stores the result in the value pointed to by v.
|
||||||
|
// Refer to https://godoc.org/encoding/json#Unmarshal for more information
|
||||||
func Unmarshal(data []byte, v interface{}) error {
|
func Unmarshal(data []byte, v interface{}) error {
|
||||||
data = data[:lastNotSpacePos(data)]
|
data = data[:lastNotSpacePos(data)]
|
||||||
iter := ParseBytes(data)
|
iter := ParseBytes(data)
|
||||||
|
typ := reflect.TypeOf(v)
|
||||||
|
if typ.Kind() != reflect.Ptr {
|
||||||
|
// return non-pointer error
|
||||||
|
return errors.New("the second param must be ptr type")
|
||||||
|
}
|
||||||
iter.ReadVal(v)
|
iter.ReadVal(v)
|
||||||
if iter.head == iter.tail {
|
if iter.head == iter.tail {
|
||||||
iter.loadMore()
|
iter.loadMore()
|
||||||
@ -22,6 +45,7 @@ func Unmarshal(data []byte, v interface{}) error {
|
|||||||
return iter.Error
|
return iter.Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UnmarshalAny adapts to
|
||||||
func UnmarshalAny(data []byte) (Any, error) {
|
func UnmarshalAny(data []byte) (Any, error) {
|
||||||
data = data[:lastNotSpacePos(data)]
|
data = data[:lastNotSpacePos(data)]
|
||||||
iter := ParseBytes(data)
|
iter := ParseBytes(data)
|
||||||
@ -81,15 +105,17 @@ func UnmarshalAnyFromString(str string) (Any, error) {
|
|||||||
return nil, iter.Error
|
return nil, iter.Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Marshal adapts to json/encoding Marshal API
|
||||||
|
//
|
||||||
|
// Marshal returns the JSON encoding of v, adapts to json/encoding Marshal API
|
||||||
|
// Refer to https://godoc.org/encoding/json#Marshal for more information
|
||||||
func Marshal(v interface{}) ([]byte, error) {
|
func Marshal(v interface{}) ([]byte, error) {
|
||||||
buf := &bytes.Buffer{}
|
stream := NewStream(nil, 256)
|
||||||
stream := NewStream(buf, 512)
|
|
||||||
stream.WriteVal(v)
|
stream.WriteVal(v)
|
||||||
stream.Flush()
|
|
||||||
if stream.Error != nil {
|
if stream.Error != nil {
|
||||||
return nil, stream.Error
|
return nil, stream.Error
|
||||||
}
|
}
|
||||||
return buf.Bytes(), nil
|
return stream.Buffer(), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func MarshalToString(v interface{}) (string, error) {
|
func MarshalToString(v interface{}) (string, error) {
|
||||||
@ -100,11 +126,19 @@ func MarshalToString(v interface{}) (string, error) {
|
|||||||
return string(buf), nil
|
return string(buf), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewDecoder adapts to json/stream NewDecoder API.
|
||||||
|
//
|
||||||
|
// NewDecoder returns a new decoder that reads from r.
|
||||||
|
//
|
||||||
|
// Instead of a json/encoding Decoder, an AdaptedDecoder is returned
|
||||||
|
// Refer to https://godoc.org/encoding/json#NewDecoder for more information
|
||||||
func NewDecoder(reader io.Reader) *AdaptedDecoder {
|
func NewDecoder(reader io.Reader) *AdaptedDecoder {
|
||||||
iter := Parse(reader, 512)
|
iter := Parse(reader, 512)
|
||||||
return &AdaptedDecoder{iter}
|
return &AdaptedDecoder{iter}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AdaptedDecoder reads and decodes JSON values from an input stream.
|
||||||
|
// AdaptedDecoder provides identical APIs with json/stream Decoder (Token() and UseNumber() are in progress)
|
||||||
type AdaptedDecoder struct {
|
type AdaptedDecoder struct {
|
||||||
iter *Iterator
|
iter *Iterator
|
||||||
}
|
}
|
||||||
@ -127,6 +161,16 @@ func (adapter *AdaptedDecoder) Buffered() io.Reader {
|
|||||||
return bytes.NewReader(remaining)
|
return bytes.NewReader(remaining)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (decoder *AdaptedDecoder) UseNumber() {
|
||||||
|
RegisterTypeDecoder("interface {}", func(ptr unsafe.Pointer, iter *Iterator) {
|
||||||
|
if iter.WhatIsNext() == Number {
|
||||||
|
*((*interface{})(ptr)) = json.Number(iter.readNumberAsString())
|
||||||
|
} else {
|
||||||
|
*((*interface{})(ptr)) = iter.Read()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func NewEncoder(writer io.Writer) *AdaptedEncoder {
|
func NewEncoder(writer io.Writer) *AdaptedEncoder {
|
||||||
stream := NewStream(writer, 512)
|
stream := NewStream(writer, 512)
|
||||||
return &AdaptedEncoder{stream}
|
return &AdaptedEncoder{stream}
|
||||||
@ -143,5 +187,5 @@ func (adapter *AdaptedEncoder) Encode(val interface{}) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (adapter *AdaptedEncoder) SetIndent(prefix, indent string) {
|
func (adapter *AdaptedEncoder) SetIndent(prefix, indent string) {
|
||||||
// not implemented yet
|
adapter.stream.IndentionStep = len(indent)
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"unsafe"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
type arrayLazyAny struct {
|
type arrayLazyAny struct {
|
||||||
@ -44,7 +44,7 @@ func (any *arrayLazyAny) fillCacheUntil(target int) Any {
|
|||||||
return any.cache[target]
|
return any.cache[target]
|
||||||
}
|
}
|
||||||
iter := any.Parse()
|
iter := any.Parse()
|
||||||
if (len(any.remaining) == len(any.buf)) {
|
if len(any.remaining) == len(any.buf) {
|
||||||
iter.head++
|
iter.head++
|
||||||
c := iter.nextToken()
|
c := iter.nextToken()
|
||||||
if c != ']' {
|
if c != ']' {
|
||||||
@ -337,9 +337,9 @@ func (any *arrayLazyAny) GetInterface() interface{} {
|
|||||||
|
|
||||||
type arrayAny struct {
|
type arrayAny struct {
|
||||||
baseAny
|
baseAny
|
||||||
err error
|
err error
|
||||||
cache []Any
|
cache []Any
|
||||||
val reflect.Value
|
val reflect.Value
|
||||||
}
|
}
|
||||||
|
|
||||||
func wrapArray(val interface{}) *arrayAny {
|
func wrapArray(val interface{}) *arrayAny {
|
||||||
@ -536,4 +536,4 @@ func (any *arrayAny) WriteTo(stream *Stream) {
|
|||||||
func (any *arrayAny) GetInterface() interface{} {
|
func (any *arrayAny) GetInterface() interface{} {
|
||||||
any.fillCache()
|
any.fillCache()
|
||||||
return any.cache
|
return any.cache
|
||||||
}
|
}
|
||||||
|
@ -2,15 +2,15 @@ package jsoniter
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
"unsafe"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
type float64LazyAny struct {
|
type float64LazyAny struct {
|
||||||
baseAny
|
baseAny
|
||||||
buf []byte
|
buf []byte
|
||||||
iter *Iterator
|
iter *Iterator
|
||||||
err error
|
err error
|
||||||
cache float64
|
cache float64
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -163,4 +163,4 @@ func (any *floatAny) WriteTo(stream *Stream) {
|
|||||||
|
|
||||||
func (any *floatAny) GetInterface() interface{} {
|
func (any *floatAny) GetInterface() interface{} {
|
||||||
return any.val
|
return any.val
|
||||||
}
|
}
|
||||||
|
@ -67,4 +67,4 @@ func (any *int32Any) Parse() *Iterator {
|
|||||||
|
|
||||||
func (any *int32Any) GetInterface() interface{} {
|
func (any *int32Any) GetInterface() interface{} {
|
||||||
return any.val
|
return any.val
|
||||||
}
|
}
|
||||||
|
@ -2,8 +2,8 @@ package jsoniter
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
"unsafe"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
type int64LazyAny struct {
|
type int64LazyAny struct {
|
||||||
@ -163,4 +163,4 @@ func (any *int64Any) Parse() *Iterator {
|
|||||||
|
|
||||||
func (any *int64Any) GetInterface() interface{} {
|
func (any *int64Any) GetInterface() interface{} {
|
||||||
return any.val
|
return any.val
|
||||||
}
|
}
|
||||||
|
@ -62,4 +62,4 @@ func (any *nilAny) Parse() *Iterator {
|
|||||||
|
|
||||||
func (any *nilAny) GetInterface() interface{} {
|
func (any *nilAny) GetInterface() interface{} {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"unsafe"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
type objectLazyAny struct {
|
type objectLazyAny struct {
|
||||||
|
@ -5,7 +5,7 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
)
|
)
|
||||||
|
|
||||||
type stringLazyAny struct{
|
type stringLazyAny struct {
|
||||||
baseAny
|
baseAny
|
||||||
buf []byte
|
buf []byte
|
||||||
iter *Iterator
|
iter *Iterator
|
||||||
@ -136,9 +136,9 @@ func (any *stringLazyAny) GetInterface() interface{} {
|
|||||||
return any.cache
|
return any.cache
|
||||||
}
|
}
|
||||||
|
|
||||||
type stringAny struct{
|
type stringAny struct {
|
||||||
baseAny
|
baseAny
|
||||||
err error
|
err error
|
||||||
val string
|
val string
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -146,7 +146,6 @@ func (any *stringAny) Parse() *Iterator {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func (any *stringAny) ValueType() ValueType {
|
func (any *stringAny) ValueType() ValueType {
|
||||||
return String
|
return String
|
||||||
}
|
}
|
||||||
@ -228,4 +227,4 @@ func (any *stringAny) WriteTo(stream *Stream) {
|
|||||||
|
|
||||||
func (any *stringAny) GetInterface() interface{} {
|
func (any *stringAny) GetInterface() interface{} {
|
||||||
return any.val
|
return any.val
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"io"
|
||||||
"strconv"
|
"strconv"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
"io"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
type uint64LazyAny struct {
|
type uint64LazyAny struct {
|
||||||
baseAny
|
baseAny
|
||||||
buf []byte
|
buf []byte
|
||||||
@ -164,4 +163,4 @@ func (any *uint64Any) Parse() *Iterator {
|
|||||||
|
|
||||||
func (any *uint64Any) GetInterface() interface{} {
|
func (any *uint64Any) GetInterface() interface{} {
|
||||||
return any.val
|
return any.val
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
//
|
||||||
|
// Besides, jsoniter.Iterator provides a different set of interfaces
|
||||||
|
// iterating given bytes/string/reader
|
||||||
|
// and yielding parsed elements one by one.
|
||||||
|
// This set of interfaces reads input as required and gives
|
||||||
|
// better performance.
|
||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
@ -276,4 +282,3 @@ func (iter *Iterator) ReadBase64() (ret []byte) {
|
|||||||
}
|
}
|
||||||
return ret[:n]
|
return ret[:n]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,12 +18,11 @@ func (iter *Iterator) ReadArray() (ret bool) {
|
|||||||
case ',':
|
case ',':
|
||||||
return true
|
return true
|
||||||
default:
|
default:
|
||||||
iter.reportError("ReadArray", "expect [ or , or ] or n, but found: " + string([]byte{c}))
|
iter.reportError("ReadArray", "expect [ or , or ] or n, but found: "+string([]byte{c}))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func (iter *Iterator) ReadArrayCB(callback func(*Iterator) bool) (ret bool) {
|
func (iter *Iterator) ReadArrayCB(callback func(*Iterator) bool) (ret bool) {
|
||||||
c := iter.nextToken()
|
c := iter.nextToken()
|
||||||
if c == '[' {
|
if c == '[' {
|
||||||
@ -46,6 +45,6 @@ func (iter *Iterator) ReadArrayCB(callback func(*Iterator) bool) (ret bool) {
|
|||||||
iter.skipFixedBytes(3)
|
iter.skipFixedBytes(3)
|
||||||
return true // null
|
return true // null
|
||||||
}
|
}
|
||||||
iter.reportError("ReadArrayCB", "expect [ or n, but found: " + string([]byte{c}))
|
iter.reportError("ReadArrayCB", "expect [ or n, but found: "+string([]byte{c}))
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
@ -2,12 +2,13 @@ package jsoniter
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
|
"math/big"
|
||||||
"strconv"
|
"strconv"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
"math/big"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var floatDigits []int8
|
var floatDigits []int8
|
||||||
|
|
||||||
const invalidCharForNumber = int8(-1)
|
const invalidCharForNumber = int8(-1)
|
||||||
const endOfNumber = int8(-2)
|
const endOfNumber = int8(-2)
|
||||||
const dotInNumber = int8(-3)
|
const dotInNumber = int8(-3)
|
||||||
@ -75,7 +76,7 @@ func (iter *Iterator) readPositiveFloat32() (ret float32) {
|
|||||||
value := uint64(0)
|
value := uint64(0)
|
||||||
c := byte(' ')
|
c := byte(' ')
|
||||||
i := iter.head
|
i := iter.head
|
||||||
non_decimal_loop:
|
non_decimal_loop:
|
||||||
for ; i < iter.tail; i++ {
|
for ; i < iter.tail; i++ {
|
||||||
c = iter.buf[i]
|
c = iter.buf[i]
|
||||||
ind := floatDigits[c]
|
ind := floatDigits[c]
|
||||||
@ -91,14 +92,14 @@ func (iter *Iterator) readPositiveFloat32() (ret float32) {
|
|||||||
if value > uint64SafeToMultiple10 {
|
if value > uint64SafeToMultiple10 {
|
||||||
return iter.readFloat32SlowPath()
|
return iter.readFloat32SlowPath()
|
||||||
}
|
}
|
||||||
value = (value << 3) + (value << 1) + uint64(ind); // value = value * 10 + ind;
|
value = (value << 3) + (value << 1) + uint64(ind) // value = value * 10 + ind;
|
||||||
}
|
}
|
||||||
if c == '.' {
|
if c == '.' {
|
||||||
i++
|
i++
|
||||||
decimalPlaces := 0;
|
decimalPlaces := 0
|
||||||
for ; i < iter.tail; i++ {
|
for ; i < iter.tail; i++ {
|
||||||
c = iter.buf[i]
|
c = iter.buf[i]
|
||||||
ind := floatDigits[c];
|
ind := floatDigits[c]
|
||||||
switch ind {
|
switch ind {
|
||||||
case endOfNumber:
|
case endOfNumber:
|
||||||
if decimalPlaces > 0 && decimalPlaces < len(POW10) {
|
if decimalPlaces > 0 && decimalPlaces < len(POW10) {
|
||||||
@ -106,7 +107,7 @@ func (iter *Iterator) readPositiveFloat32() (ret float32) {
|
|||||||
return float32(float64(value) / float64(POW10[decimalPlaces]))
|
return float32(float64(value) / float64(POW10[decimalPlaces]))
|
||||||
}
|
}
|
||||||
// too many decimal places
|
// too many decimal places
|
||||||
return iter.readFloat32SlowPath()
|
return iter.readFloat32SlowPath()
|
||||||
case invalidCharForNumber:
|
case invalidCharForNumber:
|
||||||
fallthrough
|
fallthrough
|
||||||
case dotInNumber:
|
case dotInNumber:
|
||||||
@ -125,7 +126,7 @@ func (iter *Iterator) readPositiveFloat32() (ret float32) {
|
|||||||
func (iter *Iterator) readNumberAsString() (ret string) {
|
func (iter *Iterator) readNumberAsString() (ret string) {
|
||||||
strBuf := [16]byte{}
|
strBuf := [16]byte{}
|
||||||
str := strBuf[0:0]
|
str := strBuf[0:0]
|
||||||
load_loop:
|
load_loop:
|
||||||
for {
|
for {
|
||||||
for i := iter.head; i < iter.tail; i++ {
|
for i := iter.head; i < iter.tail; i++ {
|
||||||
c := iter.buf[i]
|
c := iter.buf[i]
|
||||||
@ -178,7 +179,7 @@ func (iter *Iterator) readPositiveFloat64() (ret float64) {
|
|||||||
value := uint64(0)
|
value := uint64(0)
|
||||||
c := byte(' ')
|
c := byte(' ')
|
||||||
i := iter.head
|
i := iter.head
|
||||||
non_decimal_loop:
|
non_decimal_loop:
|
||||||
for ; i < iter.tail; i++ {
|
for ; i < iter.tail; i++ {
|
||||||
c = iter.buf[i]
|
c = iter.buf[i]
|
||||||
ind := floatDigits[c]
|
ind := floatDigits[c]
|
||||||
@ -194,14 +195,14 @@ func (iter *Iterator) readPositiveFloat64() (ret float64) {
|
|||||||
if value > uint64SafeToMultiple10 {
|
if value > uint64SafeToMultiple10 {
|
||||||
return iter.readFloat64SlowPath()
|
return iter.readFloat64SlowPath()
|
||||||
}
|
}
|
||||||
value = (value << 3) + (value << 1) + uint64(ind); // value = value * 10 + ind;
|
value = (value << 3) + (value << 1) + uint64(ind) // value = value * 10 + ind;
|
||||||
}
|
}
|
||||||
if c == '.' {
|
if c == '.' {
|
||||||
i++
|
i++
|
||||||
decimalPlaces := 0;
|
decimalPlaces := 0
|
||||||
for ; i < iter.tail; i++ {
|
for ; i < iter.tail; i++ {
|
||||||
c = iter.buf[i]
|
c = iter.buf[i]
|
||||||
ind := floatDigits[c];
|
ind := floatDigits[c]
|
||||||
switch ind {
|
switch ind {
|
||||||
case endOfNumber:
|
case endOfNumber:
|
||||||
if decimalPlaces > 0 && decimalPlaces < len(POW10) {
|
if decimalPlaces > 0 && decimalPlaces < len(POW10) {
|
||||||
|
@ -6,8 +6,8 @@ import (
|
|||||||
|
|
||||||
var intDigits []int8
|
var intDigits []int8
|
||||||
|
|
||||||
const uint32SafeToMultiply10 = uint32(0xffffffff) / 10 - 1
|
const uint32SafeToMultiply10 = uint32(0xffffffff)/10 - 1
|
||||||
const uint64SafeToMultiple10 = uint64(0xffffffffffffffff) / 10 - 1
|
const uint64SafeToMultiple10 = uint64(0xffffffffffffffff)/10 - 1
|
||||||
const int64Max = uint64(0x7fffffffffffffff)
|
const int64Max = uint64(0x7fffffffffffffff)
|
||||||
const int32Max = uint32(0x7fffffff)
|
const int32Max = uint32(0x7fffffff)
|
||||||
const int16Max = uint32(0x7fff)
|
const int16Max = uint32(0x7fff)
|
||||||
@ -17,7 +17,7 @@ const uint8Max = uint32(0xffff)
|
|||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
intDigits = make([]int8, 256)
|
intDigits = make([]int8, 256)
|
||||||
for i := 0; i < len(floatDigits); i++ {
|
for i := 0; i < len(intDigits); i++ {
|
||||||
intDigits[i] = invalidCharForNumber
|
intDigits[i] = invalidCharForNumber
|
||||||
}
|
}
|
||||||
for i := int8('0'); i <= int8('9'); i++ {
|
for i := int8('0'); i <= int8('9'); i++ {
|
||||||
@ -37,15 +37,15 @@ func (iter *Iterator) ReadInt8() (ret int8) {
|
|||||||
c := iter.nextToken()
|
c := iter.nextToken()
|
||||||
if c == '-' {
|
if c == '-' {
|
||||||
val := iter.readUint32(iter.readByte())
|
val := iter.readUint32(iter.readByte())
|
||||||
if val > int8Max + 1 {
|
if val > int8Max+1 {
|
||||||
iter.reportError("ReadInt8", "overflow: " + strconv.FormatInt(int64(val), 10))
|
iter.reportError("ReadInt8", "overflow: "+strconv.FormatInt(int64(val), 10))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return -int8(val)
|
return -int8(val)
|
||||||
} else {
|
} else {
|
||||||
val := iter.readUint32(c)
|
val := iter.readUint32(c)
|
||||||
if val > int8Max {
|
if val > int8Max {
|
||||||
iter.reportError("ReadInt8", "overflow: " + strconv.FormatInt(int64(val), 10))
|
iter.reportError("ReadInt8", "overflow: "+strconv.FormatInt(int64(val), 10))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return int8(val)
|
return int8(val)
|
||||||
@ -55,7 +55,7 @@ func (iter *Iterator) ReadInt8() (ret int8) {
|
|||||||
func (iter *Iterator) ReadUint8() (ret uint8) {
|
func (iter *Iterator) ReadUint8() (ret uint8) {
|
||||||
val := iter.readUint32(iter.nextToken())
|
val := iter.readUint32(iter.nextToken())
|
||||||
if val > uint8Max {
|
if val > uint8Max {
|
||||||
iter.reportError("ReadUint8", "overflow: " + strconv.FormatInt(int64(val), 10))
|
iter.reportError("ReadUint8", "overflow: "+strconv.FormatInt(int64(val), 10))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return uint8(val)
|
return uint8(val)
|
||||||
@ -65,15 +65,15 @@ func (iter *Iterator) ReadInt16() (ret int16) {
|
|||||||
c := iter.nextToken()
|
c := iter.nextToken()
|
||||||
if c == '-' {
|
if c == '-' {
|
||||||
val := iter.readUint32(iter.readByte())
|
val := iter.readUint32(iter.readByte())
|
||||||
if val > int16Max + 1 {
|
if val > int16Max+1 {
|
||||||
iter.reportError("ReadInt16", "overflow: " + strconv.FormatInt(int64(val), 10))
|
iter.reportError("ReadInt16", "overflow: "+strconv.FormatInt(int64(val), 10))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return -int16(val)
|
return -int16(val)
|
||||||
} else {
|
} else {
|
||||||
val := iter.readUint32(c)
|
val := iter.readUint32(c)
|
||||||
if val > int16Max {
|
if val > int16Max {
|
||||||
iter.reportError("ReadInt16", "overflow: " + strconv.FormatInt(int64(val), 10))
|
iter.reportError("ReadInt16", "overflow: "+strconv.FormatInt(int64(val), 10))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return int16(val)
|
return int16(val)
|
||||||
@ -83,7 +83,7 @@ func (iter *Iterator) ReadInt16() (ret int16) {
|
|||||||
func (iter *Iterator) ReadUint16() (ret uint16) {
|
func (iter *Iterator) ReadUint16() (ret uint16) {
|
||||||
val := iter.readUint32(iter.nextToken())
|
val := iter.readUint32(iter.nextToken())
|
||||||
if val > uint16Max {
|
if val > uint16Max {
|
||||||
iter.reportError("ReadUint16", "overflow: " + strconv.FormatInt(int64(val), 10))
|
iter.reportError("ReadUint16", "overflow: "+strconv.FormatInt(int64(val), 10))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return uint16(val)
|
return uint16(val)
|
||||||
@ -93,15 +93,15 @@ func (iter *Iterator) ReadInt32() (ret int32) {
|
|||||||
c := iter.nextToken()
|
c := iter.nextToken()
|
||||||
if c == '-' {
|
if c == '-' {
|
||||||
val := iter.readUint32(iter.readByte())
|
val := iter.readUint32(iter.readByte())
|
||||||
if val > int32Max + 1 {
|
if val > int32Max+1 {
|
||||||
iter.reportError("ReadInt32", "overflow: " + strconv.FormatInt(int64(val), 10))
|
iter.reportError("ReadInt32", "overflow: "+strconv.FormatInt(int64(val), 10))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return -int32(val)
|
return -int32(val)
|
||||||
} else {
|
} else {
|
||||||
val := iter.readUint32(c)
|
val := iter.readUint32(c)
|
||||||
if val > int32Max {
|
if val > int32Max {
|
||||||
iter.reportError("ReadInt32", "overflow: " + strconv.FormatInt(int64(val), 10))
|
iter.reportError("ReadInt32", "overflow: "+strconv.FormatInt(int64(val), 10))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return int32(val)
|
return int32(val)
|
||||||
@ -118,11 +118,11 @@ func (iter *Iterator) readUint32(c byte) (ret uint32) {
|
|||||||
return 0 // single zero
|
return 0 // single zero
|
||||||
}
|
}
|
||||||
if ind == invalidCharForNumber {
|
if ind == invalidCharForNumber {
|
||||||
iter.reportError("readUint32", "unexpected character: " + string([]byte{byte(ind)}))
|
iter.reportError("readUint32", "unexpected character: "+string([]byte{byte(ind)}))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
value := uint32(ind)
|
value := uint32(ind)
|
||||||
if iter.tail - iter.head > 10 {
|
if iter.tail-iter.head > 10 {
|
||||||
i := iter.head
|
i := iter.head
|
||||||
ind2 := intDigits[iter.buf[i]]
|
ind2 := intDigits[iter.buf[i]]
|
||||||
if ind2 == invalidCharForNumber {
|
if ind2 == invalidCharForNumber {
|
||||||
@ -133,7 +133,7 @@ func (iter *Iterator) readUint32(c byte) (ret uint32) {
|
|||||||
ind3 := intDigits[iter.buf[i]]
|
ind3 := intDigits[iter.buf[i]]
|
||||||
if ind3 == invalidCharForNumber {
|
if ind3 == invalidCharForNumber {
|
||||||
iter.head = i
|
iter.head = i
|
||||||
return value * 10 + uint32(ind2)
|
return value*10 + uint32(ind2)
|
||||||
}
|
}
|
||||||
//iter.head = i + 1
|
//iter.head = i + 1
|
||||||
//value = value * 100 + uint32(ind2) * 10 + uint32(ind3)
|
//value = value * 100 + uint32(ind2) * 10 + uint32(ind3)
|
||||||
@ -141,35 +141,35 @@ func (iter *Iterator) readUint32(c byte) (ret uint32) {
|
|||||||
ind4 := intDigits[iter.buf[i]]
|
ind4 := intDigits[iter.buf[i]]
|
||||||
if ind4 == invalidCharForNumber {
|
if ind4 == invalidCharForNumber {
|
||||||
iter.head = i
|
iter.head = i
|
||||||
return value * 100 + uint32(ind2) * 10 + uint32(ind3)
|
return value*100 + uint32(ind2)*10 + uint32(ind3)
|
||||||
}
|
}
|
||||||
i++
|
i++
|
||||||
ind5 := intDigits[iter.buf[i]]
|
ind5 := intDigits[iter.buf[i]]
|
||||||
if ind5 == invalidCharForNumber {
|
if ind5 == invalidCharForNumber {
|
||||||
iter.head = i
|
iter.head = i
|
||||||
return value * 1000 + uint32(ind2) * 100 + uint32(ind3) * 10 + uint32(ind4)
|
return value*1000 + uint32(ind2)*100 + uint32(ind3)*10 + uint32(ind4)
|
||||||
}
|
}
|
||||||
i++
|
i++
|
||||||
ind6 := intDigits[iter.buf[i]]
|
ind6 := intDigits[iter.buf[i]]
|
||||||
if ind6 == invalidCharForNumber {
|
if ind6 == invalidCharForNumber {
|
||||||
iter.head = i
|
iter.head = i
|
||||||
return value * 10000 + uint32(ind2) * 1000 + uint32(ind3) * 100 + uint32(ind4) * 10 + uint32(ind5)
|
return value*10000 + uint32(ind2)*1000 + uint32(ind3)*100 + uint32(ind4)*10 + uint32(ind5)
|
||||||
}
|
}
|
||||||
i++
|
i++
|
||||||
ind7 := intDigits[iter.buf[i]]
|
ind7 := intDigits[iter.buf[i]]
|
||||||
if ind7 == invalidCharForNumber {
|
if ind7 == invalidCharForNumber {
|
||||||
iter.head = i
|
iter.head = i
|
||||||
return value * 100000 + uint32(ind2) * 10000 + uint32(ind3) * 1000 + uint32(ind4) * 100 + uint32(ind5) * 10 + uint32(ind6)
|
return value*100000 + uint32(ind2)*10000 + uint32(ind3)*1000 + uint32(ind4)*100 + uint32(ind5)*10 + uint32(ind6)
|
||||||
}
|
}
|
||||||
i++
|
i++
|
||||||
ind8 := intDigits[iter.buf[i]]
|
ind8 := intDigits[iter.buf[i]]
|
||||||
if ind8 == invalidCharForNumber {
|
if ind8 == invalidCharForNumber {
|
||||||
iter.head = i
|
iter.head = i
|
||||||
return value * 1000000 + uint32(ind2) * 100000 + uint32(ind3) * 10000 + uint32(ind4) * 1000 + uint32(ind5) * 100 + uint32(ind6) * 10 + uint32(ind7)
|
return value*1000000 + uint32(ind2)*100000 + uint32(ind3)*10000 + uint32(ind4)*1000 + uint32(ind5)*100 + uint32(ind6)*10 + uint32(ind7)
|
||||||
}
|
}
|
||||||
i++
|
i++
|
||||||
ind9 := intDigits[iter.buf[i]]
|
ind9 := intDigits[iter.buf[i]]
|
||||||
value = value * 10000000 + uint32(ind2) * 1000000 + uint32(ind3) * 100000 + uint32(ind4) * 10000 + uint32(ind5) * 1000 + uint32(ind6) * 100 + uint32(ind7) * 10 + uint32(ind8)
|
value = value*10000000 + uint32(ind2)*1000000 + uint32(ind3)*100000 + uint32(ind4)*10000 + uint32(ind5)*1000 + uint32(ind6)*100 + uint32(ind7)*10 + uint32(ind8)
|
||||||
iter.head = i
|
iter.head = i
|
||||||
if ind9 == invalidCharForNumber {
|
if ind9 == invalidCharForNumber {
|
||||||
return value
|
return value
|
||||||
@ -194,7 +194,7 @@ func (iter *Iterator) readUint32(c byte) (ret uint32) {
|
|||||||
}
|
}
|
||||||
value = (value << 3) + (value << 1) + uint32(ind)
|
value = (value << 3) + (value << 1) + uint32(ind)
|
||||||
}
|
}
|
||||||
if (!iter.loadMore()) {
|
if !iter.loadMore() {
|
||||||
return value
|
return value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -204,15 +204,15 @@ func (iter *Iterator) ReadInt64() (ret int64) {
|
|||||||
c := iter.nextToken()
|
c := iter.nextToken()
|
||||||
if c == '-' {
|
if c == '-' {
|
||||||
val := iter.readUint64(iter.readByte())
|
val := iter.readUint64(iter.readByte())
|
||||||
if val > int64Max + 1 {
|
if val > int64Max+1 {
|
||||||
iter.reportError("ReadInt64", "overflow: " + strconv.FormatUint(uint64(val), 10))
|
iter.reportError("ReadInt64", "overflow: "+strconv.FormatUint(uint64(val), 10))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return -int64(val)
|
return -int64(val)
|
||||||
} else {
|
} else {
|
||||||
val := iter.readUint64(c)
|
val := iter.readUint64(c)
|
||||||
if val > int64Max {
|
if val > int64Max {
|
||||||
iter.reportError("ReadInt64", "overflow: " + strconv.FormatUint(uint64(val), 10))
|
iter.reportError("ReadInt64", "overflow: "+strconv.FormatUint(uint64(val), 10))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
return int64(val)
|
return int64(val)
|
||||||
@ -229,7 +229,7 @@ func (iter *Iterator) readUint64(c byte) (ret uint64) {
|
|||||||
return 0 // single zero
|
return 0 // single zero
|
||||||
}
|
}
|
||||||
if ind == invalidCharForNumber {
|
if ind == invalidCharForNumber {
|
||||||
iter.reportError("readUint64", "unexpected character: " + string([]byte{byte(ind)}))
|
iter.reportError("readUint64", "unexpected character: "+string([]byte{byte(ind)}))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
value := uint64(ind)
|
value := uint64(ind)
|
||||||
@ -252,7 +252,7 @@ func (iter *Iterator) readUint64(c byte) (ret uint64) {
|
|||||||
}
|
}
|
||||||
value = (value << 3) + (value << 1) + uint64(ind)
|
value = (value << 3) + (value << 1) + uint64(ind)
|
||||||
}
|
}
|
||||||
if (!iter.loadMore()) {
|
if !iter.loadMore() {
|
||||||
return value
|
return value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,10 +44,10 @@ func (iter *Iterator) readFieldHash() int32 {
|
|||||||
b += 'a' - 'A'
|
b += 'a' - 'A'
|
||||||
}
|
}
|
||||||
if b == '"' {
|
if b == '"' {
|
||||||
iter.head = i+1
|
iter.head = i + 1
|
||||||
c = iter.nextToken()
|
c = iter.nextToken()
|
||||||
if c != ':' {
|
if c != ':' {
|
||||||
iter.reportError("readFieldHash", `expect :, but found ` + string([]byte{c}))
|
iter.reportError("readFieldHash", `expect :, but found `+string([]byte{c}))
|
||||||
}
|
}
|
||||||
return int32(hash)
|
return int32(hash)
|
||||||
}
|
}
|
||||||
@ -60,7 +60,7 @@ func (iter *Iterator) readFieldHash() int32 {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
iter.reportError("readFieldHash", `expect ", but found ` + string([]byte{c}))
|
iter.reportError("readFieldHash", `expect ", but found `+string([]byte{c}))
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -84,7 +84,7 @@ func (iter *Iterator) ReadObjectCB(callback func(*Iterator, string) bool) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
for iter.nextToken() == ',' {
|
for iter.nextToken() == ',' {
|
||||||
field := string(iter.readObjectFieldAsBytes())
|
field = string(iter.readObjectFieldAsBytes())
|
||||||
if !callback(iter, field) {
|
if !callback(iter, field) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
@ -105,6 +105,46 @@ func (iter *Iterator) ReadObjectCB(callback func(*Iterator, string) bool) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (iter *Iterator) ReadMapCB(callback func(*Iterator, string) bool) bool {
|
||||||
|
c := iter.nextToken()
|
||||||
|
if c == '{' {
|
||||||
|
c = iter.nextToken()
|
||||||
|
if c == '"' {
|
||||||
|
iter.unreadByte()
|
||||||
|
field := iter.ReadString()
|
||||||
|
if iter.nextToken() != ':' {
|
||||||
|
iter.reportError("ReadMapCB", "expect : after object field")
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
if !callback(iter, field) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
for iter.nextToken() == ',' {
|
||||||
|
field = iter.ReadString()
|
||||||
|
if iter.nextToken() != ':' {
|
||||||
|
iter.reportError("ReadMapCB", "expect : after object field")
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
if !callback(iter, field) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
if c == '}' {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
iter.reportError("ReadMapCB", `expect " after }`)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
if c == 'n' {
|
||||||
|
iter.skipFixedBytes(3)
|
||||||
|
return true // null
|
||||||
|
}
|
||||||
|
iter.reportError("ReadMapCB", `expect { or n`)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
func (iter *Iterator) readObjectStart() bool {
|
func (iter *Iterator) readObjectStart() bool {
|
||||||
c := iter.nextToken()
|
c := iter.nextToken()
|
||||||
if c == '{' {
|
if c == '{' {
|
||||||
|
@ -29,7 +29,6 @@ func (iter *Iterator) ReadBool() (ret bool) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func (iter *Iterator) SkipAndReturnBytes() []byte {
|
func (iter *Iterator) SkipAndReturnBytes() []byte {
|
||||||
if iter.reader != nil {
|
if iter.reader != nil {
|
||||||
panic("reader input does not support this api")
|
panic("reader input does not support this api")
|
||||||
@ -40,7 +39,6 @@ func (iter *Iterator) SkipAndReturnBytes() []byte {
|
|||||||
return iter.buf[before:after]
|
return iter.buf[before:after]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Skip skips a json object and positions to relatively the next json object
|
// Skip skips a json object and positions to relatively the next json object
|
||||||
func (iter *Iterator) Skip() {
|
func (iter *Iterator) Skip() {
|
||||||
c := iter.nextToken()
|
c := iter.nextToken()
|
||||||
@ -204,15 +202,15 @@ func (iter *Iterator) skipUntilBreak() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (iter *Iterator) skipFixedBytes(n int) {
|
func (iter *Iterator) skipFixedBytes(n int) {
|
||||||
iter.head += n;
|
iter.head += n
|
||||||
if (iter.head >= iter.tail) {
|
if iter.head >= iter.tail {
|
||||||
more := iter.head - iter.tail;
|
more := iter.head - iter.tail
|
||||||
if !iter.loadMore() {
|
if !iter.loadMore() {
|
||||||
if more > 0 {
|
if more > 0 {
|
||||||
iter.reportError("skipFixedBytes", "unexpected end");
|
iter.reportError("skipFixedBytes", "unexpected end")
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
iter.head += more;
|
iter.head += more
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
func (iter *Iterator) ReadString() (ret string) {
|
func (iter *Iterator) ReadString() (ret string) {
|
||||||
c := iter.nextToken()
|
c := iter.nextToken()
|
||||||
if c == '"' {
|
if c == '"' {
|
||||||
for i := iter.head ; i < iter.tail; i++ {
|
for i := iter.head; i < iter.tail; i++ {
|
||||||
c := iter.buf[i]
|
c := iter.buf[i]
|
||||||
if c == '"' {
|
if c == '"' {
|
||||||
ret = string(iter.buf[iter.head:i])
|
ret = string(iter.buf[iter.head:i])
|
||||||
@ -92,6 +92,7 @@ func (iter *Iterator) readStringSlowPath() (ret string) {
|
|||||||
str = append(str, c)
|
str = append(str, c)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
iter.reportError("ReadString", "unexpected end of input")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -103,13 +104,13 @@ func (iter *Iterator) ReadStringAsSlice() (ret []byte) {
|
|||||||
// for: field name, base64, number
|
// for: field name, base64, number
|
||||||
if iter.buf[i] == '"' {
|
if iter.buf[i] == '"' {
|
||||||
// fast path: reuse the underlying buffer
|
// fast path: reuse the underlying buffer
|
||||||
ret = iter.buf[iter.head : i]
|
ret = iter.buf[iter.head:i]
|
||||||
iter.head = i + 1
|
iter.head = i + 1
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
readLen := iter.tail - iter.head
|
readLen := iter.tail - iter.head
|
||||||
copied := make([]byte, readLen, readLen * 2)
|
copied := make([]byte, readLen, readLen*2)
|
||||||
copy(copied, iter.buf[iter.head:iter.tail])
|
copy(copied, iter.buf[iter.head:iter.tail])
|
||||||
iter.head = iter.tail
|
iter.head = iter.tail
|
||||||
for iter.Error == nil {
|
for iter.Error == nil {
|
||||||
@ -132,11 +133,11 @@ func (iter *Iterator) readU4() (ret rune) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
if c >= '0' && c <= '9' {
|
if c >= '0' && c <= '9' {
|
||||||
ret = ret * 16 + rune(c - '0')
|
ret = ret*16 + rune(c-'0')
|
||||||
} else if c >= 'a' && c <= 'f' {
|
} else if c >= 'a' && c <= 'f' {
|
||||||
ret = ret * 16 + rune(c - 'a' + 10)
|
ret = ret*16 + rune(c-'a'+10)
|
||||||
} else if c >= 'A' && c <= 'F' {
|
} else if c >= 'A' && c <= 'F' {
|
||||||
ret = ret * 16 + rune(c - 'A' + 10)
|
ret = ret*16 + rune(c-'A'+10)
|
||||||
} else {
|
} else {
|
||||||
iter.reportError("readU4", "expects 0~9 or a~f")
|
iter.reportError("readU4", "expects 0~9 or a~f")
|
||||||
return
|
return
|
||||||
@ -158,14 +159,14 @@ const (
|
|||||||
mask3 = 0x0F // 0000 1111
|
mask3 = 0x0F // 0000 1111
|
||||||
mask4 = 0x07 // 0000 0111
|
mask4 = 0x07 // 0000 0111
|
||||||
|
|
||||||
rune1Max = 1 << 7 - 1
|
rune1Max = 1<<7 - 1
|
||||||
rune2Max = 1 << 11 - 1
|
rune2Max = 1<<11 - 1
|
||||||
rune3Max = 1 << 16 - 1
|
rune3Max = 1<<16 - 1
|
||||||
|
|
||||||
surrogateMin = 0xD800
|
surrogateMin = 0xD800
|
||||||
surrogateMax = 0xDFFF
|
surrogateMax = 0xDFFF
|
||||||
|
|
||||||
maxRune = '\U0010FFFF' // Maximum valid Unicode code point.
|
maxRune = '\U0010FFFF' // Maximum valid Unicode code point.
|
||||||
runeError = '\uFFFD' // the "error" Rune or "Unicode replacement character"
|
runeError = '\uFFFD' // the "error" Rune or "Unicode replacement character"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -176,22 +177,22 @@ func appendRune(p []byte, r rune) []byte {
|
|||||||
p = append(p, byte(r))
|
p = append(p, byte(r))
|
||||||
return p
|
return p
|
||||||
case i <= rune2Max:
|
case i <= rune2Max:
|
||||||
p = append(p, t2 | byte(r >> 6))
|
p = append(p, t2|byte(r>>6))
|
||||||
p = append(p, tx | byte(r) & maskx)
|
p = append(p, tx|byte(r)&maskx)
|
||||||
return p
|
return p
|
||||||
case i > maxRune, surrogateMin <= i && i <= surrogateMax:
|
case i > maxRune, surrogateMin <= i && i <= surrogateMax:
|
||||||
r = runeError
|
r = runeError
|
||||||
fallthrough
|
fallthrough
|
||||||
case i <= rune3Max:
|
case i <= rune3Max:
|
||||||
p = append(p, t3 | byte(r >> 12))
|
p = append(p, t3|byte(r>>12))
|
||||||
p = append(p, tx | byte(r >> 6) & maskx)
|
p = append(p, tx|byte(r>>6)&maskx)
|
||||||
p = append(p, tx | byte(r) & maskx)
|
p = append(p, tx|byte(r)&maskx)
|
||||||
return p
|
return p
|
||||||
default:
|
default:
|
||||||
p = append(p, t4 | byte(r >> 18))
|
p = append(p, t4|byte(r>>18))
|
||||||
p = append(p, tx | byte(r >> 12) & maskx)
|
p = append(p, tx|byte(r>>12)&maskx)
|
||||||
p = append(p, tx | byte(r >> 6) & maskx)
|
p = append(p, tx|byte(r>>6)&maskx)
|
||||||
p = append(p, tx | byte(r) & maskx)
|
p = append(p, tx|byte(r)&maskx)
|
||||||
return p
|
return p
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,26 +1,31 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding"
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
"encoding/json"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
/*
|
// Decoder is an internal type registered to cache as needed.
|
||||||
Reflection on type to create decoders, which is then cached
|
// Don't confuse jsoniter.Decoder with json.Decoder.
|
||||||
Reflection on value is avoided as we can, as the reflect.Value itself will allocate, with following exceptions
|
// For json.Decoder's adapter, refer to jsoniter.AdapterDecoder(todo link).
|
||||||
1. create instance of new value, for example *int will need a int to be allocated
|
//
|
||||||
2. append to slice, if the existing cap is not enough, allocate will be done using Reflect.New
|
// Reflection on type to create decoders, which is then cached
|
||||||
3. assignment to map, both key and value will be reflect.Value
|
// Reflection on value is avoided as we can, as the reflect.Value itself will allocate, with following exceptions
|
||||||
For a simple struct binding, it will be reflect.Value free and allocation free
|
// 1. create instance of new value, for example *int will need a int to be allocated
|
||||||
*/
|
// 2. append to slice, if the existing cap is not enough, allocate will be done using Reflect.New
|
||||||
|
// 3. assignment to map, both key and value will be reflect.Value
|
||||||
|
// For a simple struct binding, it will be reflect.Value free and allocation free
|
||||||
type Decoder interface {
|
type Decoder interface {
|
||||||
decode(ptr unsafe.Pointer, iter *Iterator)
|
decode(ptr unsafe.Pointer, iter *Iterator)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Encoder is an internal type registered to cache as needed.
|
||||||
|
// Don't confuse jsoniter.Encoder with json.Encoder.
|
||||||
|
// For json.Encoder's adapter, refer to jsoniter.AdapterEncoder(todo godoc link).
|
||||||
type Encoder interface {
|
type Encoder interface {
|
||||||
isEmpty(ptr unsafe.Pointer) bool
|
isEmpty(ptr unsafe.Pointer) bool
|
||||||
encode(ptr unsafe.Pointer, stream *Stream)
|
encode(ptr unsafe.Pointer, stream *Stream)
|
||||||
@ -77,6 +82,7 @@ var jsonRawMessageType reflect.Type
|
|||||||
var anyType reflect.Type
|
var anyType reflect.Type
|
||||||
var marshalerType reflect.Type
|
var marshalerType reflect.Type
|
||||||
var unmarshalerType reflect.Type
|
var unmarshalerType reflect.Type
|
||||||
|
var textUnmarshalerType reflect.Type
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
typeDecoders = map[string]Decoder{}
|
typeDecoders = map[string]Decoder{}
|
||||||
@ -91,6 +97,7 @@ func init() {
|
|||||||
anyType = reflect.TypeOf((*Any)(nil)).Elem()
|
anyType = reflect.TypeOf((*Any)(nil)).Elem()
|
||||||
marshalerType = reflect.TypeOf((*json.Marshaler)(nil)).Elem()
|
marshalerType = reflect.TypeOf((*json.Marshaler)(nil)).Elem()
|
||||||
unmarshalerType = reflect.TypeOf((*json.Unmarshaler)(nil)).Elem()
|
unmarshalerType = reflect.TypeOf((*json.Unmarshaler)(nil)).Elem()
|
||||||
|
textUnmarshalerType = reflect.TypeOf((*encoding.TextUnmarshaler)(nil)).Elem()
|
||||||
}
|
}
|
||||||
|
|
||||||
func addDecoderToCache(cacheKey reflect.Type, decoder Decoder) {
|
func addDecoderToCache(cacheKey reflect.Type, decoder Decoder) {
|
||||||
@ -156,15 +163,18 @@ func RegisterExtension(extension ExtensionFunc) {
|
|||||||
extensions = append(extensions, extension)
|
extensions = append(extensions, extension)
|
||||||
}
|
}
|
||||||
|
|
||||||
// CleanDecoders cleans decoders registered
|
// CleanDecoders cleans decoders registered or cached
|
||||||
func CleanDecoders() {
|
func CleanDecoders() {
|
||||||
typeDecoders = map[string]Decoder{}
|
typeDecoders = map[string]Decoder{}
|
||||||
fieldDecoders = map[string]Decoder{}
|
fieldDecoders = map[string]Decoder{}
|
||||||
|
atomic.StorePointer(&DECODERS, unsafe.Pointer(&map[string]Decoder{}))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CleanEncoders cleans encoders registered or cached
|
||||||
func CleanEncoders() {
|
func CleanEncoders() {
|
||||||
typeEncoders = map[string]Encoder{}
|
typeEncoders = map[string]Encoder{}
|
||||||
fieldEncoders = map[string]Encoder{}
|
fieldEncoders = map[string]Encoder{}
|
||||||
|
atomic.StorePointer(&ENCODERS, unsafe.Pointer(&map[string]Encoder{}))
|
||||||
}
|
}
|
||||||
|
|
||||||
type optionalDecoder struct {
|
type optionalDecoder struct {
|
||||||
@ -274,7 +284,6 @@ func (iter *Iterator) ReadVal(obj interface{}) {
|
|||||||
cachedDecoder.decode(e.word, iter)
|
cachedDecoder.decode(e.word, iter)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func (stream *Stream) WriteVal(val interface{}) {
|
func (stream *Stream) WriteVal(val interface{}) {
|
||||||
if nil == val {
|
if nil == val {
|
||||||
stream.WriteNil()
|
stream.WriteNil()
|
||||||
@ -320,7 +329,7 @@ func decoderOfType(typ reflect.Type) (Decoder, error) {
|
|||||||
if typ.Kind() == reflect.Ptr {
|
if typ.Kind() == reflect.Ptr {
|
||||||
typeDecoder := typeDecoders[typ.Elem().String()]
|
typeDecoder := typeDecoders[typ.Elem().String()]
|
||||||
if typeDecoder != nil {
|
if typeDecoder != nil {
|
||||||
return &optionalDecoder{typ.Elem(),typeDecoder}, nil
|
return &optionalDecoder{typ.Elem(), typeDecoder}, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cacheKey := typ
|
cacheKey := typ
|
||||||
@ -337,6 +346,9 @@ func decoderOfType(typ reflect.Type) (Decoder, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func createDecoderOfType(typ reflect.Type) (Decoder, error) {
|
func createDecoderOfType(typ reflect.Type) (Decoder, error) {
|
||||||
|
if typ.String() == "[]uint8" {
|
||||||
|
return &base64Codec{}, nil
|
||||||
|
}
|
||||||
if typ.AssignableTo(jsonRawMessageType) {
|
if typ.AssignableTo(jsonRawMessageType) {
|
||||||
return &jsonRawMessageCodec{}, nil
|
return &jsonRawMessageCodec{}, nil
|
||||||
}
|
}
|
||||||
@ -424,6 +436,9 @@ func encoderOfType(typ reflect.Type) (Encoder, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func createEncoderOfType(typ reflect.Type) (Encoder, error) {
|
func createEncoderOfType(typ reflect.Type) (Encoder, error) {
|
||||||
|
if typ.String() == "[]uint8" {
|
||||||
|
return &base64Codec{}, nil
|
||||||
|
}
|
||||||
if typ.AssignableTo(jsonRawMessageType) {
|
if typ.AssignableTo(jsonRawMessageType) {
|
||||||
return &jsonRawMessageCodec{}, nil
|
return &jsonRawMessageCodec{}, nil
|
||||||
}
|
}
|
||||||
@ -501,7 +516,7 @@ func encoderOfOptional(typ reflect.Type) (Encoder, error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return &optionalEncoder{ decoder}, nil
|
return &optionalEncoder{decoder}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func decoderOfMap(typ reflect.Type) (Decoder, error) {
|
func decoderOfMap(typ reflect.Type) (Decoder, error) {
|
||||||
@ -510,7 +525,7 @@ func decoderOfMap(typ reflect.Type) (Decoder, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
mapInterface := reflect.New(typ).Interface()
|
mapInterface := reflect.New(typ).Interface()
|
||||||
return &mapDecoder{typ, typ.Elem(), decoder, extractInterface(mapInterface)}, nil
|
return &mapDecoder{typ, typ.Key(), typ.Elem(), decoder, extractInterface(mapInterface)}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func extractInterface(val interface{}) emptyInterface {
|
func extractInterface(val interface{}) emptyInterface {
|
||||||
@ -524,9 +539,5 @@ func encoderOfMap(typ reflect.Type) (Encoder, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
mapInterface := reflect.New(typ).Elem().Interface()
|
mapInterface := reflect.New(typ).Elem().Interface()
|
||||||
if elemType.Kind() == reflect.Interface && elemType.NumMethod() == 0 {
|
return &mapEncoder{typ, elemType, encoder, *((*emptyInterface)(unsafe.Pointer(&mapInterface)))}, nil
|
||||||
return &mapInterfaceEncoder{typ, elemType, encoder, *((*emptyInterface)(unsafe.Pointer(&mapInterface)))}, nil
|
|
||||||
} else {
|
|
||||||
return &mapEncoder{typ, elemType, encoder, *((*emptyInterface)(unsafe.Pointer(&mapInterface)))}, nil
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"unsafe"
|
|
||||||
"reflect"
|
|
||||||
"io"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"reflect"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
func decoderOfSlice(typ reflect.Type) (Decoder, error) {
|
func decoderOfSlice(typ reflect.Type) (Decoder, error) {
|
||||||
@ -21,7 +21,7 @@ func encoderOfSlice(typ reflect.Type) (Encoder, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
if typ.Elem().Kind() == reflect.Map {
|
if typ.Elem().Kind() == reflect.Map {
|
||||||
encoder = &optionalEncoder{ encoder}
|
encoder = &optionalEncoder{encoder}
|
||||||
}
|
}
|
||||||
return &sliceEncoder{typ, typ.Elem(), encoder}, nil
|
return &sliceEncoder{typ, typ.Elem(), encoder}, nil
|
||||||
}
|
}
|
||||||
@ -88,30 +88,30 @@ func (decoder *sliceDecoder) doDecode(ptr unsafe.Pointer, iter *Iterator) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
offset := uintptr(0)
|
offset := uintptr(0)
|
||||||
decoder.elemDecoder.decode(unsafe.Pointer(uintptr(slice.Data) + offset), iter)
|
decoder.elemDecoder.decode(unsafe.Pointer(uintptr(slice.Data)+offset), iter)
|
||||||
if !iter.ReadArray() {
|
if !iter.ReadArray() {
|
||||||
slice.Len = 1
|
slice.Len = 1
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
offset += decoder.elemType.Size()
|
offset += decoder.elemType.Size()
|
||||||
decoder.elemDecoder.decode(unsafe.Pointer(uintptr(slice.Data) + offset), iter)
|
decoder.elemDecoder.decode(unsafe.Pointer(uintptr(slice.Data)+offset), iter)
|
||||||
if !iter.ReadArray() {
|
if !iter.ReadArray() {
|
||||||
slice.Len = 2
|
slice.Len = 2
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
offset += decoder.elemType.Size()
|
offset += decoder.elemType.Size()
|
||||||
decoder.elemDecoder.decode(unsafe.Pointer(uintptr(slice.Data) + offset), iter)
|
decoder.elemDecoder.decode(unsafe.Pointer(uintptr(slice.Data)+offset), iter)
|
||||||
if !iter.ReadArray() {
|
if !iter.ReadArray() {
|
||||||
slice.Len = 3
|
slice.Len = 3
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
offset += decoder.elemType.Size()
|
offset += decoder.elemType.Size()
|
||||||
decoder.elemDecoder.decode(unsafe.Pointer(uintptr(slice.Data) + offset), iter)
|
decoder.elemDecoder.decode(unsafe.Pointer(uintptr(slice.Data)+offset), iter)
|
||||||
slice.Len = 4
|
slice.Len = 4
|
||||||
for iter.ReadArray() {
|
for iter.ReadArray() {
|
||||||
growOne(slice, decoder.sliceType, decoder.elemType)
|
growOne(slice, decoder.sliceType, decoder.elemType)
|
||||||
offset += decoder.elemType.Size()
|
offset += decoder.elemType.Size()
|
||||||
decoder.elemDecoder.decode(unsafe.Pointer(uintptr(slice.Data) + offset), iter)
|
decoder.elemDecoder.decode(unsafe.Pointer(uintptr(slice.Data)+offset), iter)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -155,4 +155,4 @@ func reuseSlice(slice *sliceHeader, sliceType reflect.Type, expectedCap int) {
|
|||||||
dst := unsafe.Pointer(reflect.MakeSlice(sliceType, 0, expectedCap).Pointer())
|
dst := unsafe.Pointer(reflect.MakeSlice(sliceType, 0, expectedCap).Pointer())
|
||||||
slice.Cap = expectedCap
|
slice.Cap = expectedCap
|
||||||
slice.Data = dst
|
slice.Data = dst
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,16 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"unsafe"
|
"encoding"
|
||||||
|
"encoding/json"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"strconv"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
type mapDecoder struct {
|
type mapDecoder struct {
|
||||||
mapType reflect.Type
|
mapType reflect.Type
|
||||||
|
keyType reflect.Type
|
||||||
elemType reflect.Type
|
elemType reflect.Type
|
||||||
elemDecoder Decoder
|
elemDecoder Decoder
|
||||||
mapInterface emptyInterface
|
mapInterface emptyInterface
|
||||||
@ -21,12 +25,47 @@ func (decoder *mapDecoder) decode(ptr unsafe.Pointer, iter *Iterator) {
|
|||||||
if realVal.IsNil() {
|
if realVal.IsNil() {
|
||||||
realVal.Set(reflect.MakeMap(realVal.Type()))
|
realVal.Set(reflect.MakeMap(realVal.Type()))
|
||||||
}
|
}
|
||||||
for field := iter.ReadObject(); field != ""; field = iter.ReadObject() {
|
iter.ReadMapCB(func(iter *Iterator, keyStr string) bool {
|
||||||
elem := reflect.New(decoder.elemType)
|
elem := reflect.New(decoder.elemType)
|
||||||
decoder.elemDecoder.decode(unsafe.Pointer(elem.Pointer()), iter)
|
decoder.elemDecoder.decode(unsafe.Pointer(elem.Pointer()), iter)
|
||||||
// to put into map, we have to use reflection
|
// to put into map, we have to use reflection
|
||||||
realVal.SetMapIndex(reflect.ValueOf(string([]byte(field))), elem.Elem())
|
keyType := decoder.keyType
|
||||||
}
|
switch {
|
||||||
|
case keyType.Kind() == reflect.String:
|
||||||
|
realVal.SetMapIndex(reflect.ValueOf(keyStr), elem.Elem())
|
||||||
|
return true
|
||||||
|
case keyType.Implements(textUnmarshalerType):
|
||||||
|
textUnmarshaler := reflect.New(keyType.Elem()).Interface().(encoding.TextUnmarshaler)
|
||||||
|
err := textUnmarshaler.UnmarshalText([]byte(keyStr))
|
||||||
|
if err != nil {
|
||||||
|
iter.reportError("read map key as TextUnmarshaler", err.Error())
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
realVal.SetMapIndex(reflect.ValueOf(textUnmarshaler), elem.Elem())
|
||||||
|
return true
|
||||||
|
default:
|
||||||
|
switch keyType.Kind() {
|
||||||
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
||||||
|
n, err := strconv.ParseInt(keyStr, 10, 64)
|
||||||
|
if err != nil || reflect.Zero(keyType).OverflowInt(n) {
|
||||||
|
iter.reportError("read map key as int64", "read int64 failed")
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
realVal.SetMapIndex(reflect.ValueOf(n).Convert(keyType), elem.Elem())
|
||||||
|
return true
|
||||||
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
|
||||||
|
n, err := strconv.ParseUint(keyStr, 10, 64)
|
||||||
|
if err != nil || reflect.Zero(keyType).OverflowUint(n) {
|
||||||
|
iter.reportError("read map key as uint64", "read uint64 failed")
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
realVal.SetMapIndex(reflect.ValueOf(n).Convert(keyType), elem.Elem())
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
iter.reportError("read map key", "unexpected map key type "+keyType.String())
|
||||||
|
return true
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
type mapEncoder struct {
|
type mapEncoder struct {
|
||||||
@ -47,13 +86,45 @@ func (encoder *mapEncoder) encode(ptr unsafe.Pointer, stream *Stream) {
|
|||||||
if i != 0 {
|
if i != 0 {
|
||||||
stream.WriteMore()
|
stream.WriteMore()
|
||||||
}
|
}
|
||||||
stream.WriteObjectField(key.String())
|
encodeMapKey(key, stream)
|
||||||
|
stream.writeByte(':')
|
||||||
val := realVal.MapIndex(key).Interface()
|
val := realVal.MapIndex(key).Interface()
|
||||||
encoder.elemEncoder.encodeInterface(val, stream)
|
encoder.elemEncoder.encodeInterface(val, stream)
|
||||||
}
|
}
|
||||||
stream.WriteObjectEnd()
|
stream.WriteObjectEnd()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func encodeMapKey(key reflect.Value, stream *Stream) {
|
||||||
|
if key.Kind() == reflect.String {
|
||||||
|
stream.WriteString(key.String())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if tm, ok := key.Interface().(encoding.TextMarshaler); ok {
|
||||||
|
buf, err := tm.MarshalText()
|
||||||
|
if err != nil {
|
||||||
|
stream.Error = err
|
||||||
|
return
|
||||||
|
}
|
||||||
|
stream.writeByte('"')
|
||||||
|
stream.Write(buf)
|
||||||
|
stream.writeByte('"')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
switch key.Kind() {
|
||||||
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
||||||
|
stream.writeByte('"')
|
||||||
|
stream.WriteInt64(key.Int())
|
||||||
|
stream.writeByte('"')
|
||||||
|
return
|
||||||
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
|
||||||
|
stream.writeByte('"')
|
||||||
|
stream.WriteUint64(key.Uint())
|
||||||
|
stream.writeByte('"')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
stream.Error = &json.UnsupportedTypeError{key.Type()}
|
||||||
|
}
|
||||||
|
|
||||||
func (encoder *mapEncoder) encodeInterface(val interface{}, stream *Stream) {
|
func (encoder *mapEncoder) encodeInterface(val interface{}, stream *Stream) {
|
||||||
writeToStream(val, stream, encoder)
|
writeToStream(val, stream, encoder)
|
||||||
}
|
}
|
||||||
@ -65,41 +136,3 @@ func (encoder *mapEncoder) isEmpty(ptr unsafe.Pointer) bool {
|
|||||||
realVal := reflect.ValueOf(*realInterface)
|
realVal := reflect.ValueOf(*realInterface)
|
||||||
return realVal.Len() == 0
|
return realVal.Len() == 0
|
||||||
}
|
}
|
||||||
|
|
||||||
type mapInterfaceEncoder struct {
|
|
||||||
mapType reflect.Type
|
|
||||||
elemType reflect.Type
|
|
||||||
elemEncoder Encoder
|
|
||||||
mapInterface emptyInterface
|
|
||||||
}
|
|
||||||
|
|
||||||
func (encoder *mapInterfaceEncoder) encode(ptr unsafe.Pointer, stream *Stream) {
|
|
||||||
mapInterface := encoder.mapInterface
|
|
||||||
mapInterface.word = ptr
|
|
||||||
realInterface := (*interface{})(unsafe.Pointer(&mapInterface))
|
|
||||||
realVal := reflect.ValueOf(*realInterface)
|
|
||||||
|
|
||||||
stream.WriteObjectStart()
|
|
||||||
for i, key := range realVal.MapKeys() {
|
|
||||||
if i != 0 {
|
|
||||||
stream.WriteMore()
|
|
||||||
}
|
|
||||||
stream.WriteObjectField(key.String())
|
|
||||||
val := realVal.MapIndex(key).Interface()
|
|
||||||
encoder.elemEncoder.encode(unsafe.Pointer(&val), stream)
|
|
||||||
}
|
|
||||||
stream.WriteObjectEnd()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (encoder *mapInterfaceEncoder) encodeInterface(val interface{}, stream *Stream) {
|
|
||||||
writeToStream(val, stream, encoder)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (encoder *mapInterfaceEncoder) isEmpty(ptr unsafe.Pointer) bool {
|
|
||||||
mapInterface := encoder.mapInterface
|
|
||||||
mapInterface.word = ptr
|
|
||||||
realInterface := (*interface{})(unsafe.Pointer(&mapInterface))
|
|
||||||
realVal := reflect.ValueOf(*realInterface)
|
|
||||||
|
|
||||||
return realVal.Len() == 0
|
|
||||||
}
|
|
@ -1,8 +1,9 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"unsafe"
|
"encoding/base64"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
type stringCodec struct {
|
type stringCodec struct {
|
||||||
@ -296,6 +297,10 @@ type nonEmptyInterfaceCodec struct {
|
|||||||
|
|
||||||
func (codec *nonEmptyInterfaceCodec) decode(ptr unsafe.Pointer, iter *Iterator) {
|
func (codec *nonEmptyInterfaceCodec) decode(ptr unsafe.Pointer, iter *Iterator) {
|
||||||
nonEmptyInterface := (*nonEmptyInterface)(ptr)
|
nonEmptyInterface := (*nonEmptyInterface)(ptr)
|
||||||
|
if nonEmptyInterface.itab == nil {
|
||||||
|
iter.reportError("read non-empty interface", "do not know which concrete type to decode to")
|
||||||
|
return
|
||||||
|
}
|
||||||
var i interface{}
|
var i interface{}
|
||||||
e := (*emptyInterface)(unsafe.Pointer(&i))
|
e := (*emptyInterface)(unsafe.Pointer(&i))
|
||||||
e.typ = nonEmptyInterface.itab.typ
|
e.typ = nonEmptyInterface.itab.typ
|
||||||
@ -379,6 +384,49 @@ func (encoder *jsonRawMessageCodec) isEmpty(ptr unsafe.Pointer) bool {
|
|||||||
return len(*((*json.RawMessage)(ptr))) == 0
|
return len(*((*json.RawMessage)(ptr))) == 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type base64Codec struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
func (codec *base64Codec) decode(ptr unsafe.Pointer, iter *Iterator) {
|
||||||
|
encoding := base64.StdEncoding
|
||||||
|
src := iter.SkipAndReturnBytes()
|
||||||
|
src = src[1 : len(src)-1]
|
||||||
|
decodedLen := encoding.DecodedLen(len(src))
|
||||||
|
dst := make([]byte, decodedLen)
|
||||||
|
_, err := encoding.Decode(dst, src)
|
||||||
|
if err != nil {
|
||||||
|
iter.reportError("decode base64", err.Error())
|
||||||
|
} else {
|
||||||
|
*((*[]byte)(ptr)) = dst
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (codec *base64Codec) encode(ptr unsafe.Pointer, stream *Stream) {
|
||||||
|
encoding := base64.StdEncoding
|
||||||
|
stream.writeByte('"')
|
||||||
|
src := *((*[]byte)(ptr))
|
||||||
|
toGrow := encoding.EncodedLen(len(src))
|
||||||
|
stream.ensure(toGrow)
|
||||||
|
encoding.Encode(stream.buf[stream.n:], src)
|
||||||
|
stream.n += toGrow
|
||||||
|
stream.writeByte('"')
|
||||||
|
}
|
||||||
|
|
||||||
|
func (encoder *base64Codec) encodeInterface(val interface{}, stream *Stream) {
|
||||||
|
encoding := base64.StdEncoding
|
||||||
|
stream.writeByte('"')
|
||||||
|
src := val.([]byte)
|
||||||
|
toGrow := encoding.EncodedLen(len(src))
|
||||||
|
stream.ensure(toGrow)
|
||||||
|
encoding.Encode(stream.buf[stream.n:], src)
|
||||||
|
stream.n += toGrow
|
||||||
|
stream.writeByte('"')
|
||||||
|
}
|
||||||
|
|
||||||
|
func (encoder *base64Codec) isEmpty(ptr unsafe.Pointer) bool {
|
||||||
|
return len(*((*[]byte)(ptr))) == 0
|
||||||
|
}
|
||||||
|
|
||||||
type stringNumberDecoder struct {
|
type stringNumberDecoder struct {
|
||||||
elemDecoder Decoder
|
elemDecoder Decoder
|
||||||
}
|
}
|
||||||
@ -447,4 +495,4 @@ func (decoder *unmarshalerDecoder) decode(ptr unsafe.Pointer, iter *Iterator) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
iter.reportError("unmarshaler", err.Error())
|
iter.reportError("unmarshaler", err.Error())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"reflect"
|
"reflect"
|
||||||
"unsafe"
|
|
||||||
"strings"
|
"strings"
|
||||||
"unicode"
|
"unicode"
|
||||||
|
"unsafe"
|
||||||
)
|
)
|
||||||
|
|
||||||
func encoderOfStruct(typ reflect.Type) (Encoder, error) {
|
func encoderOfStruct(typ reflect.Type) (Encoder, error) {
|
||||||
@ -47,7 +47,7 @@ func encoderOfStruct(typ reflect.Type) (Encoder, error) {
|
|||||||
}
|
}
|
||||||
for _, fieldName := range fieldNames {
|
for _, fieldName := range fieldNames {
|
||||||
fields[fieldName] = &structFieldEncoder{field, fieldName, encoder, omitempty}
|
fields[fieldName] = &structFieldEncoder{field, fieldName, encoder, omitempty}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(fields) == 0 {
|
if len(fields) == 0 {
|
||||||
return &emptyStructEncoder{}, nil
|
return &emptyStructEncoder{}, nil
|
||||||
@ -138,7 +138,7 @@ func EnableUnexportedStructFieldsSupport() {
|
|||||||
|
|
||||||
func createStructDecoder(typ reflect.Type, fields map[string]*structFieldDecoder) (Decoder, error) {
|
func createStructDecoder(typ reflect.Type, fields map[string]*structFieldDecoder) (Decoder, error) {
|
||||||
knownHash := map[int32]struct{}{
|
knownHash := map[int32]struct{}{
|
||||||
0: struct{}{},
|
0: {},
|
||||||
}
|
}
|
||||||
switch len(fields) {
|
switch len(fields) {
|
||||||
case 0:
|
case 0:
|
||||||
@ -203,7 +203,7 @@ func createStructDecoder(typ reflect.Type, fields map[string]*structFieldDecoder
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return &threeFieldsStructDecoder{typ,
|
return &threeFieldsStructDecoder{typ,
|
||||||
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3}, nil
|
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3}, nil
|
||||||
case 4:
|
case 4:
|
||||||
var fieldName1 int32
|
var fieldName1 int32
|
||||||
var fieldName2 int32
|
var fieldName2 int32
|
||||||
@ -236,8 +236,8 @@ func createStructDecoder(typ reflect.Type, fields map[string]*structFieldDecoder
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return &fourFieldsStructDecoder{typ,
|
return &fourFieldsStructDecoder{typ,
|
||||||
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
||||||
fieldName4, fieldDecoder4}, nil
|
fieldName4, fieldDecoder4}, nil
|
||||||
case 5:
|
case 5:
|
||||||
var fieldName1 int32
|
var fieldName1 int32
|
||||||
var fieldName2 int32
|
var fieldName2 int32
|
||||||
@ -275,8 +275,8 @@ func createStructDecoder(typ reflect.Type, fields map[string]*structFieldDecoder
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return &fiveFieldsStructDecoder{typ,
|
return &fiveFieldsStructDecoder{typ,
|
||||||
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
||||||
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5}, nil
|
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5}, nil
|
||||||
case 6:
|
case 6:
|
||||||
var fieldName1 int32
|
var fieldName1 int32
|
||||||
var fieldName2 int32
|
var fieldName2 int32
|
||||||
@ -319,8 +319,8 @@ func createStructDecoder(typ reflect.Type, fields map[string]*structFieldDecoder
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return &sixFieldsStructDecoder{typ,
|
return &sixFieldsStructDecoder{typ,
|
||||||
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
||||||
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5, fieldName6, fieldDecoder6}, nil
|
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5, fieldName6, fieldDecoder6}, nil
|
||||||
case 7:
|
case 7:
|
||||||
var fieldName1 int32
|
var fieldName1 int32
|
||||||
var fieldName2 int32
|
var fieldName2 int32
|
||||||
@ -368,9 +368,9 @@ func createStructDecoder(typ reflect.Type, fields map[string]*structFieldDecoder
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return &sevenFieldsStructDecoder{typ,
|
return &sevenFieldsStructDecoder{typ,
|
||||||
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
||||||
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5, fieldName6, fieldDecoder6,
|
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5, fieldName6, fieldDecoder6,
|
||||||
fieldName7, fieldDecoder7}, nil
|
fieldName7, fieldDecoder7}, nil
|
||||||
case 8:
|
case 8:
|
||||||
var fieldName1 int32
|
var fieldName1 int32
|
||||||
var fieldName2 int32
|
var fieldName2 int32
|
||||||
@ -423,9 +423,9 @@ func createStructDecoder(typ reflect.Type, fields map[string]*structFieldDecoder
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return &eightFieldsStructDecoder{typ,
|
return &eightFieldsStructDecoder{typ,
|
||||||
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
||||||
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5, fieldName6, fieldDecoder6,
|
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5, fieldName6, fieldDecoder6,
|
||||||
fieldName7, fieldDecoder7, fieldName8, fieldDecoder8}, nil
|
fieldName7, fieldDecoder7, fieldName8, fieldDecoder8}, nil
|
||||||
case 9:
|
case 9:
|
||||||
var fieldName1 int32
|
var fieldName1 int32
|
||||||
var fieldName2 int32
|
var fieldName2 int32
|
||||||
@ -483,9 +483,9 @@ func createStructDecoder(typ reflect.Type, fields map[string]*structFieldDecoder
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return &nineFieldsStructDecoder{typ,
|
return &nineFieldsStructDecoder{typ,
|
||||||
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
||||||
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5, fieldName6, fieldDecoder6,
|
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5, fieldName6, fieldDecoder6,
|
||||||
fieldName7, fieldDecoder7, fieldName8, fieldDecoder8, fieldName9, fieldDecoder9}, nil
|
fieldName7, fieldDecoder7, fieldName8, fieldDecoder8, fieldName9, fieldDecoder9}, nil
|
||||||
case 10:
|
case 10:
|
||||||
var fieldName1 int32
|
var fieldName1 int32
|
||||||
var fieldName2 int32
|
var fieldName2 int32
|
||||||
@ -548,10 +548,10 @@ func createStructDecoder(typ reflect.Type, fields map[string]*structFieldDecoder
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return &tenFieldsStructDecoder{typ,
|
return &tenFieldsStructDecoder{typ,
|
||||||
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
fieldName1, fieldDecoder1, fieldName2, fieldDecoder2, fieldName3, fieldDecoder3,
|
||||||
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5, fieldName6, fieldDecoder6,
|
fieldName4, fieldDecoder4, fieldName5, fieldDecoder5, fieldName6, fieldDecoder6,
|
||||||
fieldName7, fieldDecoder7, fieldName8, fieldDecoder8, fieldName9, fieldDecoder9,
|
fieldName7, fieldDecoder7, fieldName8, fieldDecoder8, fieldName9, fieldDecoder9,
|
||||||
fieldName10, fieldDecoder10}, nil
|
fieldName10, fieldDecoder10}, nil
|
||||||
}
|
}
|
||||||
return &generalStructDecoder{typ, fields}, nil
|
return &generalStructDecoder{typ, fields}, nil
|
||||||
}
|
}
|
||||||
|
@ -32,24 +32,32 @@ func (b *Stream) Buffered() int {
|
|||||||
return b.n
|
return b.n
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (b *Stream) Buffer() []byte {
|
||||||
|
return b.buf[:b.n]
|
||||||
|
}
|
||||||
|
|
||||||
// Write writes the contents of p into the buffer.
|
// Write writes the contents of p into the buffer.
|
||||||
// It returns the number of bytes written.
|
// It returns the number of bytes written.
|
||||||
// If nn < len(p), it also returns an error explaining
|
// If nn < len(p), it also returns an error explaining
|
||||||
// why the write is short.
|
// why the write is short.
|
||||||
func (b *Stream) Write(p []byte) (nn int, err error) {
|
func (b *Stream) Write(p []byte) (nn int, err error) {
|
||||||
for len(p) > b.Available() && b.Error == nil {
|
for len(p) > b.Available() && b.Error == nil {
|
||||||
var n int
|
if b.out == nil {
|
||||||
if b.Buffered() == 0 {
|
b.growAtLeast(len(p))
|
||||||
// Large write, empty buffer.
|
|
||||||
// Write directly from p to avoid copy.
|
|
||||||
n, b.Error = b.out.Write(p)
|
|
||||||
} else {
|
} else {
|
||||||
n = copy(b.buf[b.n:], p)
|
var n int
|
||||||
b.n += n
|
if b.Buffered() == 0 {
|
||||||
b.Flush()
|
// Large write, empty buffer.
|
||||||
|
// Write directly from p to avoid copy.
|
||||||
|
n, b.Error = b.out.Write(p)
|
||||||
|
} else {
|
||||||
|
n = copy(b.buf[b.n:], p)
|
||||||
|
b.n += n
|
||||||
|
b.Flush()
|
||||||
|
}
|
||||||
|
nn += n
|
||||||
|
p = p[n:]
|
||||||
}
|
}
|
||||||
nn += n
|
|
||||||
p = p[n:]
|
|
||||||
}
|
}
|
||||||
if b.Error != nil {
|
if b.Error != nil {
|
||||||
return nn, b.Error
|
return nn, b.Error
|
||||||
@ -60,14 +68,13 @@ func (b *Stream) Write(p []byte) (nn int, err error) {
|
|||||||
return nn, nil
|
return nn, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// WriteByte writes a single byte.
|
// WriteByte writes a single byte.
|
||||||
func (b *Stream) writeByte(c byte) {
|
func (b *Stream) writeByte(c byte) {
|
||||||
if b.Error != nil {
|
if b.Error != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if b.Available() <= 0 && b.Flush() != nil {
|
if b.Available() < 1 {
|
||||||
return
|
b.growAtLeast(1)
|
||||||
}
|
}
|
||||||
b.buf[b.n] = c
|
b.buf[b.n] = c
|
||||||
b.n++
|
b.n++
|
||||||
@ -77,11 +84,11 @@ func (b *Stream) writeTwoBytes(c1 byte, c2 byte) {
|
|||||||
if b.Error != nil {
|
if b.Error != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if b.Available() <= 1 && b.Flush() != nil {
|
if b.Available() < 2 {
|
||||||
return
|
b.growAtLeast(2)
|
||||||
}
|
}
|
||||||
b.buf[b.n] = c1
|
b.buf[b.n] = c1
|
||||||
b.buf[b.n + 1] = c2
|
b.buf[b.n+1] = c2
|
||||||
b.n += 2
|
b.n += 2
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -89,12 +96,12 @@ func (b *Stream) writeThreeBytes(c1 byte, c2 byte, c3 byte) {
|
|||||||
if b.Error != nil {
|
if b.Error != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if b.Available() <= 2 && b.Flush() != nil {
|
if b.Available() < 3 {
|
||||||
return
|
b.growAtLeast(3)
|
||||||
}
|
}
|
||||||
b.buf[b.n] = c1
|
b.buf[b.n] = c1
|
||||||
b.buf[b.n + 1] = c2
|
b.buf[b.n+1] = c2
|
||||||
b.buf[b.n + 2] = c3
|
b.buf[b.n+2] = c3
|
||||||
b.n += 3
|
b.n += 3
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -102,13 +109,13 @@ func (b *Stream) writeFourBytes(c1 byte, c2 byte, c3 byte, c4 byte) {
|
|||||||
if b.Error != nil {
|
if b.Error != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if b.Available() <= 3 && b.Flush() != nil {
|
if b.Available() < 4 {
|
||||||
return
|
b.growAtLeast(4)
|
||||||
}
|
}
|
||||||
b.buf[b.n] = c1
|
b.buf[b.n] = c1
|
||||||
b.buf[b.n + 1] = c2
|
b.buf[b.n+1] = c2
|
||||||
b.buf[b.n + 2] = c3
|
b.buf[b.n+2] = c3
|
||||||
b.buf[b.n + 3] = c4
|
b.buf[b.n+3] = c4
|
||||||
b.n += 4
|
b.n += 4
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -116,19 +123,22 @@ func (b *Stream) writeFiveBytes(c1 byte, c2 byte, c3 byte, c4 byte, c5 byte) {
|
|||||||
if b.Error != nil {
|
if b.Error != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if b.Available() <= 3 && b.Flush() != nil {
|
if b.Available() < 5 {
|
||||||
return
|
b.growAtLeast(5)
|
||||||
}
|
}
|
||||||
b.buf[b.n] = c1
|
b.buf[b.n] = c1
|
||||||
b.buf[b.n + 1] = c2
|
b.buf[b.n+1] = c2
|
||||||
b.buf[b.n + 2] = c3
|
b.buf[b.n+2] = c3
|
||||||
b.buf[b.n + 3] = c4
|
b.buf[b.n+3] = c4
|
||||||
b.buf[b.n + 4] = c5
|
b.buf[b.n+4] = c5
|
||||||
b.n += 5
|
b.n += 5
|
||||||
}
|
}
|
||||||
|
|
||||||
// Flush writes any buffered data to the underlying io.Writer.
|
// Flush writes any buffered data to the underlying io.Writer.
|
||||||
func (b *Stream) Flush() error {
|
func (b *Stream) Flush() error {
|
||||||
|
if b.out == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
if b.Error != nil {
|
if b.Error != nil {
|
||||||
return b.Error
|
return b.Error
|
||||||
}
|
}
|
||||||
@ -141,7 +151,7 @@ func (b *Stream) Flush() error {
|
|||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if n > 0 && n < b.n {
|
if n > 0 && n < b.n {
|
||||||
copy(b.buf[0:b.n - n], b.buf[n:b.n])
|
copy(b.buf[0:b.n-n], b.buf[n:b.n])
|
||||||
}
|
}
|
||||||
b.n -= n
|
b.n -= n
|
||||||
b.Error = err
|
b.Error = err
|
||||||
@ -151,13 +161,28 @@ func (b *Stream) Flush() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *Stream) WriteRaw(s string) {
|
func (b *Stream) ensure(minimal int) {
|
||||||
for len(s) > b.Available() && b.Error == nil {
|
available := b.Available()
|
||||||
n := copy(b.buf[b.n:], s)
|
if available < minimal {
|
||||||
b.n += n
|
if b.n > 1024 {
|
||||||
s = s[n:]
|
b.Flush()
|
||||||
b.Flush()
|
}
|
||||||
|
b.growAtLeast(minimal)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *Stream) growAtLeast(minimal int) {
|
||||||
|
toGrow := len(b.buf)
|
||||||
|
if toGrow < minimal {
|
||||||
|
toGrow = minimal
|
||||||
|
}
|
||||||
|
newBuf := make([]byte, len(b.buf)+toGrow)
|
||||||
|
copy(newBuf, b.Buffer())
|
||||||
|
b.buf = newBuf
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *Stream) WriteRaw(s string) {
|
||||||
|
b.ensure(len(s))
|
||||||
if b.Error != nil {
|
if b.Error != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -166,18 +191,13 @@ func (b *Stream) WriteRaw(s string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (stream *Stream) WriteString(s string) {
|
func (stream *Stream) WriteString(s string) {
|
||||||
|
stream.ensure(32)
|
||||||
valLen := len(s)
|
valLen := len(s)
|
||||||
toWriteLen := valLen
|
toWriteLen := valLen
|
||||||
bufLengthMinusTwo := len(stream.buf) - 2 // make room for the quotes
|
bufLengthMinusTwo := len(stream.buf) - 2 // make room for the quotes
|
||||||
if stream.n + toWriteLen > bufLengthMinusTwo {
|
if stream.n+toWriteLen > bufLengthMinusTwo {
|
||||||
toWriteLen = bufLengthMinusTwo - stream.n
|
toWriteLen = bufLengthMinusTwo - stream.n
|
||||||
}
|
}
|
||||||
if toWriteLen < 0 {
|
|
||||||
stream.Flush()
|
|
||||||
if stream.n + toWriteLen > bufLengthMinusTwo {
|
|
||||||
toWriteLen = bufLengthMinusTwo - stream.n
|
|
||||||
}
|
|
||||||
}
|
|
||||||
n := stream.n
|
n := stream.n
|
||||||
stream.buf[n] = '"'
|
stream.buf[n] = '"'
|
||||||
n++
|
n++
|
||||||
@ -189,7 +209,7 @@ func (stream *Stream) WriteString(s string) {
|
|||||||
stream.buf[n] = c
|
stream.buf[n] = c
|
||||||
n++
|
n++
|
||||||
} else {
|
} else {
|
||||||
break;
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if i == valLen {
|
if i == valLen {
|
||||||
@ -200,14 +220,14 @@ func (stream *Stream) WriteString(s string) {
|
|||||||
}
|
}
|
||||||
stream.n = n
|
stream.n = n
|
||||||
// for the remaining parts, we process them char by char
|
// for the remaining parts, we process them char by char
|
||||||
stream.writeStringSlowPath(s, i, valLen);
|
stream.writeStringSlowPath(s, i, valLen)
|
||||||
stream.writeByte('"')
|
stream.writeByte('"')
|
||||||
}
|
}
|
||||||
|
|
||||||
func (stream *Stream) writeStringSlowPath(s string, i int, valLen int) {
|
func (stream *Stream) writeStringSlowPath(s string, i int, valLen int) {
|
||||||
for ; i < valLen; i++ {
|
for ; i < valLen; i++ {
|
||||||
c := s[i]
|
c := s[i]
|
||||||
switch (c) {
|
switch c {
|
||||||
case '"':
|
case '"':
|
||||||
stream.writeTwoBytes('\\', '"')
|
stream.writeTwoBytes('\\', '"')
|
||||||
case '\\':
|
case '\\':
|
||||||
@ -223,7 +243,7 @@ func (stream *Stream) writeStringSlowPath(s string, i int, valLen int) {
|
|||||||
case '\t':
|
case '\t':
|
||||||
stream.writeTwoBytes('\\', 't')
|
stream.writeTwoBytes('\\', 't')
|
||||||
default:
|
default:
|
||||||
stream.writeByte(c);
|
stream.writeByte(c)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -293,21 +313,14 @@ func (stream *Stream) WriteArrayEnd() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (stream *Stream) writeIndention(delta int) {
|
func (stream *Stream) writeIndention(delta int) {
|
||||||
if (stream.indention == 0) {
|
if stream.indention == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
stream.writeByte('\n')
|
stream.writeByte('\n')
|
||||||
toWrite := stream.indention - delta
|
toWrite := stream.indention - delta
|
||||||
i := 0
|
stream.ensure(toWrite)
|
||||||
for {
|
for i := 0; i < toWrite && stream.n < len(stream.buf); i++ {
|
||||||
for ; i < toWrite && stream.n < len(stream.buf); i++ {
|
stream.buf[stream.n] = ' '
|
||||||
stream.buf[stream.n] = ' '
|
stream.n++
|
||||||
stream.n ++
|
|
||||||
}
|
|
||||||
if i == toWrite {
|
|
||||||
break;
|
|
||||||
} else {
|
|
||||||
stream.Flush()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,26 +21,24 @@ func (stream *Stream) WriteFloat32Lossy(val float32) {
|
|||||||
val = -val
|
val = -val
|
||||||
}
|
}
|
||||||
if val > 0x4ffffff {
|
if val > 0x4ffffff {
|
||||||
stream.WriteRaw(strconv.FormatFloat(float64(val), 'f', -1, 32));
|
stream.WriteRaw(strconv.FormatFloat(float64(val), 'f', -1, 32))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
precision := 6
|
precision := 6
|
||||||
exp := uint64(1000000) // 6
|
exp := uint64(1000000) // 6
|
||||||
lval := uint64(float64(val) * float64(exp) + 0.5)
|
lval := uint64(float64(val)*float64(exp) + 0.5)
|
||||||
stream.WriteUint64(lval / exp)
|
stream.WriteUint64(lval / exp)
|
||||||
fval := lval % exp
|
fval := lval % exp
|
||||||
if fval == 0 {
|
if fval == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
stream.writeByte('.')
|
stream.writeByte('.')
|
||||||
if stream.Available() < 10 {
|
stream.ensure(10)
|
||||||
stream.Flush()
|
|
||||||
}
|
|
||||||
for p := precision - 1; p > 0 && fval < POW10[p]; p-- {
|
for p := precision - 1; p > 0 && fval < POW10[p]; p-- {
|
||||||
stream.writeByte('0')
|
stream.writeByte('0')
|
||||||
}
|
}
|
||||||
stream.WriteUint64(fval)
|
stream.WriteUint64(fval)
|
||||||
for stream.buf[stream.n - 1] == '0' {
|
for stream.buf[stream.n-1] == '0' {
|
||||||
stream.n--
|
stream.n--
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -55,30 +53,30 @@ func (stream *Stream) WriteFloat64Lossy(val float64) {
|
|||||||
val = -val
|
val = -val
|
||||||
}
|
}
|
||||||
if val > 0x4ffffff {
|
if val > 0x4ffffff {
|
||||||
stream.WriteRaw(strconv.FormatFloat(val, 'f', -1, 64));
|
stream.WriteRaw(strconv.FormatFloat(val, 'f', -1, 64))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
precision := 6
|
precision := 6
|
||||||
exp := uint64(1000000) // 6
|
exp := uint64(1000000) // 6
|
||||||
lval := uint64(val * float64(exp) + 0.5)
|
lval := uint64(val*float64(exp) + 0.5)
|
||||||
stream.WriteUint64(lval / exp)
|
stream.WriteUint64(lval / exp)
|
||||||
fval := lval % exp
|
fval := lval % exp
|
||||||
if fval == 0 {
|
if fval == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
stream.writeByte('.')
|
stream.writeByte('.')
|
||||||
if stream.Available() < 10 {
|
stream.ensure(10)
|
||||||
stream.Flush()
|
|
||||||
}
|
|
||||||
for p := precision - 1; p > 0 && fval < POW10[p]; p-- {
|
for p := precision - 1; p > 0 && fval < POW10[p]; p-- {
|
||||||
stream.writeByte('0')
|
stream.writeByte('0')
|
||||||
}
|
}
|
||||||
stream.WriteUint64(fval)
|
stream.WriteUint64(fval)
|
||||||
for stream.buf[stream.n - 1] == '0' {
|
for stream.buf[stream.n-1] == '0' {
|
||||||
stream.n--
|
stream.n--
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// EnableLossyFloatMarshalling keeps 10**(-6) precision
|
||||||
|
// for float variables for better performance.
|
||||||
func EnableLossyFloatMarshalling() {
|
func EnableLossyFloatMarshalling() {
|
||||||
// for better performance
|
// for better performance
|
||||||
RegisterTypeEncoder("float32", func(ptr unsafe.Pointer, stream *Stream) {
|
RegisterTypeEncoder("float32", func(ptr unsafe.Pointer, stream *Stream) {
|
||||||
@ -89,4 +87,4 @@ func EnableLossyFloatMarshalling() {
|
|||||||
val := *((*float64)(ptr))
|
val := *((*float64)(ptr))
|
||||||
stream.WriteFloat64Lossy(val)
|
stream.WriteFloat64Lossy(val)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -1,46 +1,11 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
var digits []uint8
|
|
||||||
var digitTens []uint8
|
|
||||||
var digitOnes []uint8
|
|
||||||
var DIGITS []uint32
|
var DIGITS []uint32
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
digits = []uint8{
|
|
||||||
'0', '1', '2', '3', '4', '5',
|
|
||||||
'6', '7', '8', '9', 'a', 'b',
|
|
||||||
'c', 'd', 'e', 'f', 'g', 'h',
|
|
||||||
'i', 'j', 'k', 'l', 'm', 'n',
|
|
||||||
'o', 'p', 'q', 'r', 's', 't',
|
|
||||||
'u', 'v', 'w', 'x', 'y', 'z',
|
|
||||||
}
|
|
||||||
digitTens = []uint8{
|
|
||||||
'0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
|
|
||||||
'1', '1', '1', '1', '1', '1', '1', '1', '1', '1',
|
|
||||||
'2', '2', '2', '2', '2', '2', '2', '2', '2', '2',
|
|
||||||
'3', '3', '3', '3', '3', '3', '3', '3', '3', '3',
|
|
||||||
'4', '4', '4', '4', '4', '4', '4', '4', '4', '4',
|
|
||||||
'5', '5', '5', '5', '5', '5', '5', '5', '5', '5',
|
|
||||||
'6', '6', '6', '6', '6', '6', '6', '6', '6', '6',
|
|
||||||
'7', '7', '7', '7', '7', '7', '7', '7', '7', '7',
|
|
||||||
'8', '8', '8', '8', '8', '8', '8', '8', '8', '8',
|
|
||||||
'9', '9', '9', '9', '9', '9', '9', '9', '9', '9',
|
|
||||||
}
|
|
||||||
digitOnes = []uint8{
|
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
||||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
|
|
||||||
}
|
|
||||||
DIGITS = make([]uint32, 1000)
|
DIGITS = make([]uint32, 1000)
|
||||||
for i := uint32(0); i < 1000; i++ {
|
for i := uint32(0); i < 1000; i++ {
|
||||||
DIGITS[i] = (((i / 100) + '0') << 16) + ((((i / 10) % 10) + '0') << 8) + i % 10 + '0';
|
DIGITS[i] = (((i / 100) + '0') << 16) + ((((i / 10) % 10) + '0') << 8) + i%10 + '0'
|
||||||
if i < 10 {
|
if i < 10 {
|
||||||
DIGITS[i] += 2 << 24
|
DIGITS[i] += 2 << 24
|
||||||
} else if i < 100 {
|
} else if i < 100 {
|
||||||
@ -67,24 +32,20 @@ func writeFirstBuf(buf []byte, v uint32, n int) int {
|
|||||||
|
|
||||||
func writeBuf(buf []byte, v uint32, n int) {
|
func writeBuf(buf []byte, v uint32, n int) {
|
||||||
buf[n] = byte(v >> 16)
|
buf[n] = byte(v >> 16)
|
||||||
buf[n + 1] = byte(v >> 8)
|
buf[n+1] = byte(v >> 8)
|
||||||
buf[n + 2] = byte(v)
|
buf[n+2] = byte(v)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (stream *Stream) WriteUint8(val uint8) {
|
func (stream *Stream) WriteUint8(val uint8) {
|
||||||
if stream.Available() < 3 {
|
stream.ensure(3)
|
||||||
stream.Flush()
|
|
||||||
}
|
|
||||||
stream.n = writeFirstBuf(stream.buf, DIGITS[val], stream.n)
|
stream.n = writeFirstBuf(stream.buf, DIGITS[val], stream.n)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (stream *Stream) WriteInt8(nval int8) {
|
func (stream *Stream) WriteInt8(nval int8) {
|
||||||
if stream.Available() < 4 {
|
stream.ensure(4)
|
||||||
stream.Flush()
|
|
||||||
}
|
|
||||||
n := stream.n
|
n := stream.n
|
||||||
var val uint8
|
var val uint8
|
||||||
if (nval < 0) {
|
if nval < 0 {
|
||||||
val = uint8(-nval)
|
val = uint8(-nval)
|
||||||
stream.buf[n] = '-'
|
stream.buf[n] = '-'
|
||||||
n++
|
n++
|
||||||
@ -95,15 +56,13 @@ func (stream *Stream) WriteInt8(nval int8) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (stream *Stream) WriteUint16(val uint16) {
|
func (stream *Stream) WriteUint16(val uint16) {
|
||||||
if stream.Available() < 5 {
|
stream.ensure(5)
|
||||||
stream.Flush()
|
|
||||||
}
|
|
||||||
q1 := val / 1000
|
q1 := val / 1000
|
||||||
if q1 == 0 {
|
if q1 == 0 {
|
||||||
stream.n = writeFirstBuf(stream.buf, DIGITS[val], stream.n)
|
stream.n = writeFirstBuf(stream.buf, DIGITS[val], stream.n)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r1 := val - q1 * 1000;
|
r1 := val - q1*1000
|
||||||
n := writeFirstBuf(stream.buf, DIGITS[q1], stream.n)
|
n := writeFirstBuf(stream.buf, DIGITS[q1], stream.n)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n)
|
writeBuf(stream.buf, DIGITS[r1], n)
|
||||||
stream.n = n + 3
|
stream.n = n + 3
|
||||||
@ -111,12 +70,10 @@ func (stream *Stream) WriteUint16(val uint16) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (stream *Stream) WriteInt16(nval int16) {
|
func (stream *Stream) WriteInt16(nval int16) {
|
||||||
if stream.Available() < 6 {
|
stream.ensure(6)
|
||||||
stream.Flush()
|
|
||||||
}
|
|
||||||
n := stream.n
|
n := stream.n
|
||||||
var val uint16
|
var val uint16
|
||||||
if (nval < 0) {
|
if nval < 0 {
|
||||||
val = uint16(-nval)
|
val = uint16(-nval)
|
||||||
stream.buf[n] = '-'
|
stream.buf[n] = '-'
|
||||||
n++
|
n++
|
||||||
@ -128,7 +85,7 @@ func (stream *Stream) WriteInt16(nval int16) {
|
|||||||
stream.n = writeFirstBuf(stream.buf, DIGITS[val], n)
|
stream.n = writeFirstBuf(stream.buf, DIGITS[val], n)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r1 := val - q1 * 1000;
|
r1 := val - q1*1000
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q1], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q1], n)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n)
|
writeBuf(stream.buf, DIGITS[r1], n)
|
||||||
stream.n = n + 3
|
stream.n = n + 3
|
||||||
@ -136,16 +93,14 @@ func (stream *Stream) WriteInt16(nval int16) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (stream *Stream) WriteUint32(val uint32) {
|
func (stream *Stream) WriteUint32(val uint32) {
|
||||||
if stream.Available() < 10 {
|
stream.ensure(10)
|
||||||
stream.Flush()
|
|
||||||
}
|
|
||||||
n := stream.n
|
n := stream.n
|
||||||
q1 := val / 1000
|
q1 := val / 1000
|
||||||
if q1 == 0 {
|
if q1 == 0 {
|
||||||
stream.n = writeFirstBuf(stream.buf, DIGITS[val], n)
|
stream.n = writeFirstBuf(stream.buf, DIGITS[val], n)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r1 := val - q1 * 1000;
|
r1 := val - q1*1000
|
||||||
q2 := q1 / 1000
|
q2 := q1 / 1000
|
||||||
if q2 == 0 {
|
if q2 == 0 {
|
||||||
n := writeFirstBuf(stream.buf, DIGITS[q1], n)
|
n := writeFirstBuf(stream.buf, DIGITS[q1], n)
|
||||||
@ -153,29 +108,27 @@ func (stream *Stream) WriteUint32(val uint32) {
|
|||||||
stream.n = n + 3
|
stream.n = n + 3
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r2 := q1 - q2 * 1000
|
r2 := q1 - q2*1000
|
||||||
q3 := q2 / 1000
|
q3 := q2 / 1000
|
||||||
if q3 == 0 {
|
if q3 == 0 {
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q2], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q2], n)
|
||||||
} else {
|
} else {
|
||||||
r3 := q2 - q3 * 1000
|
r3 := q2 - q3*1000
|
||||||
stream.buf[n] = byte(q3 + '0')
|
stream.buf[n] = byte(q3 + '0')
|
||||||
n++
|
n++
|
||||||
writeBuf(stream.buf, DIGITS[r3], n)
|
writeBuf(stream.buf, DIGITS[r3], n)
|
||||||
n += 3
|
n += 3
|
||||||
}
|
}
|
||||||
writeBuf(stream.buf, DIGITS[r2], n)
|
writeBuf(stream.buf, DIGITS[r2], n)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n + 3)
|
writeBuf(stream.buf, DIGITS[r1], n+3)
|
||||||
stream.n = n + 6
|
stream.n = n + 6
|
||||||
}
|
}
|
||||||
|
|
||||||
func (stream *Stream) WriteInt32(nval int32) {
|
func (stream *Stream) WriteInt32(nval int32) {
|
||||||
if stream.Available() < 11 {
|
stream.ensure(11)
|
||||||
stream.Flush()
|
|
||||||
}
|
|
||||||
n := stream.n
|
n := stream.n
|
||||||
var val uint32
|
var val uint32
|
||||||
if (nval < 0) {
|
if nval < 0 {
|
||||||
val = uint32(-nval)
|
val = uint32(-nval)
|
||||||
stream.buf[n] = '-'
|
stream.buf[n] = '-'
|
||||||
n++
|
n++
|
||||||
@ -187,7 +140,7 @@ func (stream *Stream) WriteInt32(nval int32) {
|
|||||||
stream.n = writeFirstBuf(stream.buf, DIGITS[val], n)
|
stream.n = writeFirstBuf(stream.buf, DIGITS[val], n)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r1 := val - q1 * 1000;
|
r1 := val - q1*1000
|
||||||
q2 := q1 / 1000
|
q2 := q1 / 1000
|
||||||
if q2 == 0 {
|
if q2 == 0 {
|
||||||
n := writeFirstBuf(stream.buf, DIGITS[q1], n)
|
n := writeFirstBuf(stream.buf, DIGITS[q1], n)
|
||||||
@ -195,33 +148,31 @@ func (stream *Stream) WriteInt32(nval int32) {
|
|||||||
stream.n = n + 3
|
stream.n = n + 3
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r2 := q1 - q2 * 1000
|
r2 := q1 - q2*1000
|
||||||
q3 := q2 / 1000
|
q3 := q2 / 1000
|
||||||
if q3 == 0 {
|
if q3 == 0 {
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q2], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q2], n)
|
||||||
} else {
|
} else {
|
||||||
r3 := q2 - q3 * 1000
|
r3 := q2 - q3*1000
|
||||||
stream.buf[n] = byte(q3 + '0')
|
stream.buf[n] = byte(q3 + '0')
|
||||||
n++
|
n++
|
||||||
writeBuf(stream.buf, DIGITS[r3], n)
|
writeBuf(stream.buf, DIGITS[r3], n)
|
||||||
n += 3
|
n += 3
|
||||||
}
|
}
|
||||||
writeBuf(stream.buf, DIGITS[r2], n)
|
writeBuf(stream.buf, DIGITS[r2], n)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n + 3)
|
writeBuf(stream.buf, DIGITS[r1], n+3)
|
||||||
stream.n = n + 6
|
stream.n = n + 6
|
||||||
}
|
}
|
||||||
|
|
||||||
func (stream *Stream) WriteUint64(val uint64) {
|
func (stream *Stream) WriteUint64(val uint64) {
|
||||||
if stream.Available() < 20 {
|
stream.ensure(20)
|
||||||
stream.Flush()
|
|
||||||
}
|
|
||||||
n := stream.n
|
n := stream.n
|
||||||
q1 := val / 1000
|
q1 := val / 1000
|
||||||
if q1 == 0 {
|
if q1 == 0 {
|
||||||
stream.n = writeFirstBuf(stream.buf, DIGITS[val], n)
|
stream.n = writeFirstBuf(stream.buf, DIGITS[val], n)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r1 := val - q1 * 1000;
|
r1 := val - q1*1000
|
||||||
q2 := q1 / 1000
|
q2 := q1 / 1000
|
||||||
if q2 == 0 {
|
if q2 == 0 {
|
||||||
n := writeFirstBuf(stream.buf, DIGITS[q1], n)
|
n := writeFirstBuf(stream.buf, DIGITS[q1], n)
|
||||||
@ -229,61 +180,59 @@ func (stream *Stream) WriteUint64(val uint64) {
|
|||||||
stream.n = n + 3
|
stream.n = n + 3
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r2 := q1 - q2 * 1000
|
r2 := q1 - q2*1000
|
||||||
q3 := q2 / 1000
|
q3 := q2 / 1000
|
||||||
if q3 == 0 {
|
if q3 == 0 {
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q2], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q2], n)
|
||||||
writeBuf(stream.buf, DIGITS[r2], n)
|
writeBuf(stream.buf, DIGITS[r2], n)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n + 3)
|
writeBuf(stream.buf, DIGITS[r1], n+3)
|
||||||
stream.n = n + 6
|
stream.n = n + 6
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r3 := q2 - q3 * 1000
|
r3 := q2 - q3*1000
|
||||||
q4 := q3 / 1000
|
q4 := q3 / 1000
|
||||||
if q4 == 0 {
|
if q4 == 0 {
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q3], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q3], n)
|
||||||
writeBuf(stream.buf, DIGITS[r3], n)
|
writeBuf(stream.buf, DIGITS[r3], n)
|
||||||
writeBuf(stream.buf, DIGITS[r2], n + 3)
|
writeBuf(stream.buf, DIGITS[r2], n+3)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n + 6)
|
writeBuf(stream.buf, DIGITS[r1], n+6)
|
||||||
stream.n = n + 9
|
stream.n = n + 9
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r4 := q3 - q4 * 1000
|
r4 := q3 - q4*1000
|
||||||
q5 := q4 / 1000
|
q5 := q4 / 1000
|
||||||
if q5 == 0 {
|
if q5 == 0 {
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q4], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q4], n)
|
||||||
writeBuf(stream.buf, DIGITS[r4], n)
|
writeBuf(stream.buf, DIGITS[r4], n)
|
||||||
writeBuf(stream.buf, DIGITS[r3], n + 3)
|
writeBuf(stream.buf, DIGITS[r3], n+3)
|
||||||
writeBuf(stream.buf, DIGITS[r2], n + 6)
|
writeBuf(stream.buf, DIGITS[r2], n+6)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n + 9)
|
writeBuf(stream.buf, DIGITS[r1], n+9)
|
||||||
stream.n = n + 12
|
stream.n = n + 12
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r5 := q4 - q5 * 1000
|
r5 := q4 - q5*1000
|
||||||
q6 := q5 / 1000
|
q6 := q5 / 1000
|
||||||
if q6 == 0 {
|
if q6 == 0 {
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q5], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q5], n)
|
||||||
} else {
|
} else {
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q6], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q6], n)
|
||||||
r6 := q5 - q6 * 1000
|
r6 := q5 - q6*1000
|
||||||
writeBuf(stream.buf, DIGITS[r6], n)
|
writeBuf(stream.buf, DIGITS[r6], n)
|
||||||
n += 3
|
n += 3
|
||||||
}
|
}
|
||||||
writeBuf(stream.buf, DIGITS[r5], n)
|
writeBuf(stream.buf, DIGITS[r5], n)
|
||||||
writeBuf(stream.buf, DIGITS[r4], n + 3)
|
writeBuf(stream.buf, DIGITS[r4], n+3)
|
||||||
writeBuf(stream.buf, DIGITS[r3], n + 6)
|
writeBuf(stream.buf, DIGITS[r3], n+6)
|
||||||
writeBuf(stream.buf, DIGITS[r2], n + 9)
|
writeBuf(stream.buf, DIGITS[r2], n+9)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n + 12)
|
writeBuf(stream.buf, DIGITS[r1], n+12)
|
||||||
stream.n = n + 15
|
stream.n = n + 15
|
||||||
}
|
}
|
||||||
|
|
||||||
func (stream *Stream) WriteInt64(nval int64) {
|
func (stream *Stream) WriteInt64(nval int64) {
|
||||||
if stream.Available() < 20 {
|
stream.ensure(20)
|
||||||
stream.Flush()
|
|
||||||
}
|
|
||||||
n := stream.n
|
n := stream.n
|
||||||
var val uint64
|
var val uint64
|
||||||
if (nval < 0) {
|
if nval < 0 {
|
||||||
val = uint64(-nval)
|
val = uint64(-nval)
|
||||||
stream.buf[n] = '-'
|
stream.buf[n] = '-'
|
||||||
n++
|
n++
|
||||||
@ -295,7 +244,7 @@ func (stream *Stream) WriteInt64(nval int64) {
|
|||||||
stream.n = writeFirstBuf(stream.buf, DIGITS[val], n)
|
stream.n = writeFirstBuf(stream.buf, DIGITS[val], n)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r1 := val - q1 * 1000;
|
r1 := val - q1*1000
|
||||||
q2 := q1 / 1000
|
q2 := q1 / 1000
|
||||||
if q2 == 0 {
|
if q2 == 0 {
|
||||||
n := writeFirstBuf(stream.buf, DIGITS[q1], n)
|
n := writeFirstBuf(stream.buf, DIGITS[q1], n)
|
||||||
@ -303,52 +252,52 @@ func (stream *Stream) WriteInt64(nval int64) {
|
|||||||
stream.n = n + 3
|
stream.n = n + 3
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r2 := q1 - q2 * 1000
|
r2 := q1 - q2*1000
|
||||||
q3 := q2 / 1000
|
q3 := q2 / 1000
|
||||||
if q3 == 0 {
|
if q3 == 0 {
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q2], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q2], n)
|
||||||
writeBuf(stream.buf, DIGITS[r2], n)
|
writeBuf(stream.buf, DIGITS[r2], n)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n + 3)
|
writeBuf(stream.buf, DIGITS[r1], n+3)
|
||||||
stream.n = n + 6
|
stream.n = n + 6
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r3 := q2 - q3 * 1000
|
r3 := q2 - q3*1000
|
||||||
q4 := q3 / 1000
|
q4 := q3 / 1000
|
||||||
if q4 == 0 {
|
if q4 == 0 {
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q3], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q3], n)
|
||||||
writeBuf(stream.buf, DIGITS[r3], n)
|
writeBuf(stream.buf, DIGITS[r3], n)
|
||||||
writeBuf(stream.buf, DIGITS[r2], n + 3)
|
writeBuf(stream.buf, DIGITS[r2], n+3)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n + 6)
|
writeBuf(stream.buf, DIGITS[r1], n+6)
|
||||||
stream.n = n + 9
|
stream.n = n + 9
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r4 := q3 - q4 * 1000
|
r4 := q3 - q4*1000
|
||||||
q5 := q4 / 1000
|
q5 := q4 / 1000
|
||||||
if q5 == 0 {
|
if q5 == 0 {
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q4], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q4], n)
|
||||||
writeBuf(stream.buf, DIGITS[r4], n)
|
writeBuf(stream.buf, DIGITS[r4], n)
|
||||||
writeBuf(stream.buf, DIGITS[r3], n + 3)
|
writeBuf(stream.buf, DIGITS[r3], n+3)
|
||||||
writeBuf(stream.buf, DIGITS[r2], n + 6)
|
writeBuf(stream.buf, DIGITS[r2], n+6)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n + 9)
|
writeBuf(stream.buf, DIGITS[r1], n+9)
|
||||||
stream.n = n + 12
|
stream.n = n + 12
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
r5 := q4 - q5 * 1000
|
r5 := q4 - q5*1000
|
||||||
q6 := q5 / 1000
|
q6 := q5 / 1000
|
||||||
if q6 == 0 {
|
if q6 == 0 {
|
||||||
n = writeFirstBuf(stream.buf, DIGITS[q5], n)
|
n = writeFirstBuf(stream.buf, DIGITS[q5], n)
|
||||||
} else {
|
} else {
|
||||||
stream.buf[n] = byte(q6 + '0')
|
stream.buf[n] = byte(q6 + '0')
|
||||||
n++
|
n++
|
||||||
r6 := q5 - q6 * 1000
|
r6 := q5 - q6*1000
|
||||||
writeBuf(stream.buf, DIGITS[r6], n)
|
writeBuf(stream.buf, DIGITS[r6], n)
|
||||||
n += 3
|
n += 3
|
||||||
}
|
}
|
||||||
writeBuf(stream.buf, DIGITS[r5], n)
|
writeBuf(stream.buf, DIGITS[r5], n)
|
||||||
writeBuf(stream.buf, DIGITS[r4], n + 3)
|
writeBuf(stream.buf, DIGITS[r4], n+3)
|
||||||
writeBuf(stream.buf, DIGITS[r3], n + 6)
|
writeBuf(stream.buf, DIGITS[r3], n+6)
|
||||||
writeBuf(stream.buf, DIGITS[r2], n + 9)
|
writeBuf(stream.buf, DIGITS[r2], n+9)
|
||||||
writeBuf(stream.buf, DIGITS[r1], n + 12)
|
writeBuf(stream.buf, DIGITS[r1], n+12)
|
||||||
stream.n = n + 15
|
stream.n = n + 15
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -358,4 +307,4 @@ func (stream *Stream) WriteInt(val int) {
|
|||||||
|
|
||||||
func (stream *Stream) WriteUint(val uint) {
|
func (stream *Stream) WriteUint(val uint) {
|
||||||
stream.WriteUint64(uint64(val))
|
stream.WriteUint64(uint64(val))
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
|
||||||
"encoding/json"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"encoding/json"
|
||||||
|
"github.com/json-iterator/go/require"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_new_decoder(t *testing.T) {
|
func Test_new_decoder(t *testing.T) {
|
||||||
@ -43,4 +43,18 @@ func Test_new_encoder(t *testing.T) {
|
|||||||
encoder2 := NewEncoder(buf2)
|
encoder2 := NewEncoder(buf2)
|
||||||
encoder2.Encode([]int{1})
|
encoder2.Encode([]int{1})
|
||||||
should.Equal("[1]", buf2.String())
|
should.Equal("[1]", buf2.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Test_use_number(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
decoder1 := json.NewDecoder(bytes.NewBufferString(`123`))
|
||||||
|
decoder1.UseNumber()
|
||||||
|
decoder2 := NewDecoder(bytes.NewBufferString(`123`))
|
||||||
|
decoder2.UseNumber()
|
||||||
|
var obj1 interface{}
|
||||||
|
should.Nil(decoder1.Decode(&obj1))
|
||||||
|
should.Equal(json.Number("123"), obj1)
|
||||||
|
var obj2 interface{}
|
||||||
|
should.Nil(decoder2.Decode(&obj2))
|
||||||
|
should.Equal(json.Number("123"), obj2)
|
||||||
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"encoding/json"
|
||||||
|
"github.com/json-iterator/go/require"
|
||||||
"io"
|
"io"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_empty_array(t *testing.T) {
|
func Test_empty_array(t *testing.T) {
|
||||||
@ -84,7 +84,7 @@ func Test_read_array_with_any_iterator(t *testing.T) {
|
|||||||
|
|
||||||
func Test_wrap_array(t *testing.T) {
|
func Test_wrap_array(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
any := Wrap([]int{1,2,3})
|
any := Wrap([]int{1, 2, 3})
|
||||||
should.Equal("[1,2,3]", any.ToString())
|
should.Equal("[1,2,3]", any.ToString())
|
||||||
var element Any
|
var element Any
|
||||||
var elements []int
|
var elements []int
|
||||||
@ -93,9 +93,9 @@ func Test_wrap_array(t *testing.T) {
|
|||||||
elements = append(elements, element.ToInt())
|
elements = append(elements, element.ToInt())
|
||||||
}
|
}
|
||||||
should.Equal([]int{1, 2, 3}, elements)
|
should.Equal([]int{1, 2, 3}, elements)
|
||||||
any = Wrap([]int{1,2,3})
|
any = Wrap([]int{1, 2, 3})
|
||||||
should.Equal(3, any.Size())
|
should.Equal(3, any.Size())
|
||||||
any = Wrap([]int{1,2,3})
|
any = Wrap([]int{1, 2, 3})
|
||||||
should.Equal(2, any.Get(1).ToInt())
|
should.Equal(2, any.Get(1).ToInt())
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -103,7 +103,7 @@ func Test_array_lazy_any_get(t *testing.T) {
|
|||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
any, err := UnmarshalAnyFromString("[1,[2,3],4]")
|
any, err := UnmarshalAnyFromString("[1,[2,3],4]")
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(3, any.Get(1,1).ToInt())
|
should.Equal(3, any.Get(1, 1).ToInt())
|
||||||
should.Equal("[1,[2,3],4]", any.ToString())
|
should.Equal("[1,[2,3],4]", any.ToString())
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -111,25 +111,25 @@ func Test_array_lazy_any_get_all(t *testing.T) {
|
|||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
any, err := UnmarshalAnyFromString("[[1],[2],[3,4]]")
|
any, err := UnmarshalAnyFromString("[[1],[2],[3,4]]")
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal("[1,2,3]", any.Get('*',0).ToString())
|
should.Equal("[1,2,3]", any.Get('*', 0).ToString())
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_array_wrapper_any_get_all(t *testing.T) {
|
func Test_array_wrapper_any_get_all(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
any := wrapArray([][]int{
|
any := wrapArray([][]int{
|
||||||
[]int{1, 2},
|
{1, 2},
|
||||||
[]int{3, 4},
|
{3, 4},
|
||||||
[]int{5, 6},
|
{5, 6},
|
||||||
})
|
})
|
||||||
should.Equal("[1,3,5]", any.Get('*',0).ToString())
|
should.Equal("[1,3,5]", any.Get('*', 0).ToString())
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_array_lazy_any_get_invalid(t *testing.T) {
|
func Test_array_lazy_any_get_invalid(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
any, err := UnmarshalAnyFromString("[]")
|
any, err := UnmarshalAnyFromString("[]")
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(Invalid, any.Get(1,1).ValueType())
|
should.Equal(Invalid, any.Get(1, 1).ValueType())
|
||||||
should.NotNil(any.Get(1,1).LastError())
|
should.NotNil(any.Get(1, 1).LastError())
|
||||||
should.Equal(Invalid, any.Get("1").ValueType())
|
should.Equal(Invalid, any.Get("1").ValueType())
|
||||||
should.NotNil(any.Get("1").LastError())
|
should.NotNil(any.Get("1").LastError())
|
||||||
}
|
}
|
||||||
@ -244,7 +244,7 @@ func Test_write_val_empty_array(t *testing.T) {
|
|||||||
func Test_write_array_of_interface_in_struct(t *testing.T) {
|
func Test_write_array_of_interface_in_struct(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
type TestObject struct {
|
type TestObject struct {
|
||||||
Field []interface{}
|
Field []interface{}
|
||||||
Field2 string
|
Field2 string
|
||||||
}
|
}
|
||||||
val := TestObject{[]interface{}{1, 2}, ""}
|
val := TestObject{[]interface{}{1, 2}, ""}
|
||||||
@ -264,6 +264,27 @@ func Test_json_RawMessage(t *testing.T) {
|
|||||||
should.Equal(`[1,2,3]`, str)
|
should.Equal(`[1,2,3]`, str)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Test_encode_byte_array(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
bytes, err := json.Marshal([]byte{1, 2, 3})
|
||||||
|
should.Nil(err)
|
||||||
|
should.Equal(`"AQID"`, string(bytes))
|
||||||
|
bytes, err = Marshal([]byte{1, 2, 3})
|
||||||
|
should.Nil(err)
|
||||||
|
should.Equal(`"AQID"`, string(bytes))
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_decode_byte_array(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
data := []byte{}
|
||||||
|
err := json.Unmarshal([]byte(`"AQID"`), &data)
|
||||||
|
should.Nil(err)
|
||||||
|
should.Equal([]byte{1, 2, 3}, data)
|
||||||
|
err = Unmarshal([]byte(`"AQID"`), &data)
|
||||||
|
should.Nil(err)
|
||||||
|
should.Equal([]byte{1, 2, 3}, data)
|
||||||
|
}
|
||||||
|
|
||||||
func Benchmark_jsoniter_array(b *testing.B) {
|
func Benchmark_jsoniter_array(b *testing.B) {
|
||||||
b.ReportAllocs()
|
b.ReportAllocs()
|
||||||
input := []byte(`[1,2,3,4,5,6,7,8,9]`)
|
input := []byte(`[1,2,3,4,5,6,7,8,9]`)
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
"github.com/json-iterator/go/require"
|
"github.com/json-iterator/go/require"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_true(t *testing.T) {
|
func Test_true(t *testing.T) {
|
||||||
@ -38,7 +38,6 @@ func Test_write_true_false(t *testing.T) {
|
|||||||
should.Equal("truefalse", buf.String())
|
should.Equal("truefalse", buf.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func Test_write_val_bool(t *testing.T) {
|
func Test_write_val_bool(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
buf := &bytes.Buffer{}
|
buf := &bytes.Buffer{}
|
||||||
@ -47,4 +46,4 @@ func Test_write_val_bool(t *testing.T) {
|
|||||||
stream.Flush()
|
stream.Flush()
|
||||||
should.Nil(stream.Error)
|
should.Nil(stream.Error)
|
||||||
should.Equal("true", buf.String())
|
should.Equal("true", buf.String())
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"github.com/json-iterator/go/require"
|
||||||
"reflect"
|
"reflect"
|
||||||
"strconv"
|
"strconv"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
"github.com/json-iterator/go/require"
|
|
||||||
"encoding/json"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_customize_type_decoder(t *testing.T) {
|
func Test_customize_type_decoder(t *testing.T) {
|
||||||
@ -45,6 +45,7 @@ func Test_customize_type_encoder(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func Test_customize_byte_array_encoder(t *testing.T) {
|
func Test_customize_byte_array_encoder(t *testing.T) {
|
||||||
|
CleanEncoders()
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
RegisterTypeEncoder("[]uint8", func(ptr unsafe.Pointer, stream *Stream) {
|
RegisterTypeEncoder("[]uint8", func(ptr unsafe.Pointer, stream *Stream) {
|
||||||
t := *((*[]byte)(ptr))
|
t := *((*[]byte)(ptr))
|
||||||
@ -178,7 +179,7 @@ func (obj *ObjectImplementedUnmarshaler) UnmarshalJSON([]byte) error {
|
|||||||
|
|
||||||
func Test_unmarshaler(t *testing.T) {
|
func Test_unmarshaler(t *testing.T) {
|
||||||
type TestObject struct {
|
type TestObject struct {
|
||||||
Field *ObjectImplementedUnmarshaler
|
Field *ObjectImplementedUnmarshaler
|
||||||
Field2 string
|
Field2 string
|
||||||
}
|
}
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
@ -195,7 +196,7 @@ func Test_unmarshaler(t *testing.T) {
|
|||||||
|
|
||||||
func Test_unmarshaler_and_decoder(t *testing.T) {
|
func Test_unmarshaler_and_decoder(t *testing.T) {
|
||||||
type TestObject struct {
|
type TestObject struct {
|
||||||
Field *ObjectImplementedUnmarshaler
|
Field *ObjectImplementedUnmarshaler
|
||||||
Field2 string
|
Field2 string
|
||||||
}
|
}
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
@ -212,4 +213,4 @@ func Test_unmarshaler_and_decoder(t *testing.T) {
|
|||||||
err = Unmarshal([]byte(`{"Field":"hello"}`), &obj)
|
err = Unmarshal([]byte(`{"Field":"hello"}`), &obj)
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(10, int(*obj.Field))
|
should.Equal(10, int(*obj.Field))
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
"github.com/json-iterator/go/require"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_bind_api_demo(t *testing.T) {
|
func Test_bind_api_demo(t *testing.T) {
|
||||||
@ -22,3 +23,64 @@ func Test_iterator_api_demo(t *testing.T) {
|
|||||||
}
|
}
|
||||||
fmt.Println(total)
|
fmt.Println(total)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type People struct {
|
||||||
|
Name string
|
||||||
|
Gender string
|
||||||
|
Age int
|
||||||
|
Address string
|
||||||
|
Mobile string
|
||||||
|
Country string
|
||||||
|
Height int
|
||||||
|
}
|
||||||
|
|
||||||
|
func jsoniterMarshal(p *People) error {
|
||||||
|
_, err := Marshal(p)
|
||||||
|
if nil != err {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
func stdMarshal(p *People) error {
|
||||||
|
_, err := json.Marshal(p)
|
||||||
|
if nil != err {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkJosniterMarshal(b *testing.B) {
|
||||||
|
var p People
|
||||||
|
p.Address = "上海市徐汇区漕宝路"
|
||||||
|
p.Age = 30
|
||||||
|
p.Country = "中国"
|
||||||
|
p.Gender = "male"
|
||||||
|
p.Height = 170
|
||||||
|
p.Mobile = "18502120533"
|
||||||
|
p.Name = "Elvin"
|
||||||
|
b.ReportAllocs()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
err := jsoniterMarshal(&p)
|
||||||
|
if nil != err {
|
||||||
|
b.Error(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkStdMarshal(b *testing.B) {
|
||||||
|
var p People
|
||||||
|
p.Address = "上海市徐汇区漕宝路"
|
||||||
|
p.Age = 30
|
||||||
|
p.Country = "中国"
|
||||||
|
p.Gender = "male"
|
||||||
|
p.Height = 170
|
||||||
|
p.Mobile = "18502120533"
|
||||||
|
p.Name = "Elvin"
|
||||||
|
b.ReportAllocs()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
err := stdMarshal(&p)
|
||||||
|
if nil != err {
|
||||||
|
b.Error(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/json-iterator/go/require"
|
||||||
"io"
|
"io"
|
||||||
"testing"
|
"testing"
|
||||||
"github.com/json-iterator/go/require"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_string_end(t *testing.T) {
|
func Test_string_end(t *testing.T) {
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
"github.com/json-iterator/go/require"
|
||||||
"bytes"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_read_big_float(t *testing.T) {
|
func Test_read_big_float(t *testing.T) {
|
||||||
@ -46,14 +46,14 @@ func Test_read_float(t *testing.T) {
|
|||||||
// streaming
|
// streaming
|
||||||
t.Run(fmt.Sprintf("%v", input), func(t *testing.T) {
|
t.Run(fmt.Sprintf("%v", input), func(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
iter := Parse(bytes.NewBufferString(input + ","), 2)
|
iter := Parse(bytes.NewBufferString(input+","), 2)
|
||||||
expected, err := strconv.ParseFloat(input, 32)
|
expected, err := strconv.ParseFloat(input, 32)
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(float32(expected), iter.ReadFloat32())
|
should.Equal(float32(expected), iter.ReadFloat32())
|
||||||
})
|
})
|
||||||
t.Run(fmt.Sprintf("%v", input), func(t *testing.T) {
|
t.Run(fmt.Sprintf("%v", input), func(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
iter := Parse(bytes.NewBufferString(input + ","), 2)
|
iter := Parse(bytes.NewBufferString(input+","), 2)
|
||||||
expected, err := strconv.ParseFloat(input, 64)
|
expected, err := strconv.ParseFloat(input, 64)
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(expected, iter.ReadFloat64())
|
should.Equal(expected, iter.ReadFloat64())
|
||||||
@ -85,7 +85,7 @@ func Test_wrap_float(t *testing.T) {
|
|||||||
|
|
||||||
func Test_write_float32(t *testing.T) {
|
func Test_write_float32(t *testing.T) {
|
||||||
vals := []float32{0, 1, -1, 99, 0xff, 0xfff, 0xffff, 0xfffff, 0xffffff, 0x4ffffff, 0xfffffff,
|
vals := []float32{0, 1, -1, 99, 0xff, 0xfff, 0xffff, 0xfffff, 0xffffff, 0x4ffffff, 0xfffffff,
|
||||||
-0x4ffffff, -0xfffffff, 1.2345, 1.23456, 1.234567, 1.001}
|
-0x4ffffff, -0xfffffff, 1.2345, 1.23456, 1.234567, 1.001}
|
||||||
for _, val := range vals {
|
for _, val := range vals {
|
||||||
t.Run(fmt.Sprintf("%v", val), func(t *testing.T) {
|
t.Run(fmt.Sprintf("%v", val), func(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
@ -118,7 +118,7 @@ func Test_write_float32(t *testing.T) {
|
|||||||
|
|
||||||
func Test_write_float64(t *testing.T) {
|
func Test_write_float64(t *testing.T) {
|
||||||
vals := []float64{0, 1, -1, 99, 0xff, 0xfff, 0xffff, 0xfffff, 0xffffff, 0x4ffffff, 0xfffffff,
|
vals := []float64{0, 1, -1, 99, 0xff, 0xfff, 0xffff, 0xfffff, 0xffffff, 0x4ffffff, 0xfffffff,
|
||||||
-0x4ffffff, -0xfffffff, 1.2345, 1.23456, 1.234567, 1.001}
|
-0x4ffffff, -0xfffffff, 1.2345, 1.23456, 1.234567, 1.001}
|
||||||
for _, val := range vals {
|
for _, val := range vals {
|
||||||
t.Run(fmt.Sprintf("%v", val), func(t *testing.T) {
|
t.Run(fmt.Sprintf("%v", val), func(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
@ -158,6 +158,19 @@ func Test_read_float64_cursor(t *testing.T) {
|
|||||||
should.Equal(float64(2), iter.Read())
|
should.Equal(float64(2), iter.Read())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Test_read_float_scientific(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
var obj interface{}
|
||||||
|
should.Nil(UnmarshalFromString(`1e1`, &obj))
|
||||||
|
should.Equal(float64(10), obj)
|
||||||
|
should.Nil(json.Unmarshal([]byte(`1e1`), &obj))
|
||||||
|
should.Equal(float64(10), obj)
|
||||||
|
should.Nil(UnmarshalFromString(`1.0e1`, &obj))
|
||||||
|
should.Equal(float64(10), obj)
|
||||||
|
should.Nil(json.Unmarshal([]byte(`1.0e1`), &obj))
|
||||||
|
should.Equal(float64(10), obj)
|
||||||
|
}
|
||||||
|
|
||||||
func Benchmark_jsoniter_float(b *testing.B) {
|
func Benchmark_jsoniter_float(b *testing.B) {
|
||||||
b.ReportAllocs()
|
b.ReportAllocs()
|
||||||
input := []byte(`1.1123,`)
|
input := []byte(`1.1123,`)
|
||||||
|
@ -3,12 +3,12 @@ package jsoniter
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"github.com/json-iterator/go/require"
|
||||||
"io/ioutil"
|
|
||||||
"io"
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
|
"strconv"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_read_uint64_invalid(t *testing.T) {
|
func Test_read_uint64_invalid(t *testing.T) {
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
"github.com/json-iterator/go/require"
|
||||||
|
"testing"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
"encoding/json"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_write_array_of_interface(t *testing.T) {
|
func Test_write_array_of_interface(t *testing.T) {
|
||||||
@ -16,7 +17,7 @@ func Test_write_array_of_interface(t *testing.T) {
|
|||||||
|
|
||||||
func Test_write_map_of_interface(t *testing.T) {
|
func Test_write_map_of_interface(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
val := map[string]interface{}{"hello":"world"}
|
val := map[string]interface{}{"hello": "world"}
|
||||||
str, err := MarshalToString(val)
|
str, err := MarshalToString(val)
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(`{"hello":"world"}`, str)
|
should.Equal(`{"hello":"world"}`, str)
|
||||||
@ -27,7 +28,7 @@ func Test_write_map_of_interface_in_struct(t *testing.T) {
|
|||||||
Field map[string]interface{}
|
Field map[string]interface{}
|
||||||
}
|
}
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
val := TestObject{map[string]interface{}{"hello":"world"}}
|
val := TestObject{map[string]interface{}{"hello": "world"}}
|
||||||
str, err := MarshalToString(val)
|
str, err := MarshalToString(val)
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(`{"Field":{"hello":"world"}}`, str)
|
should.Equal(`{"Field":{"hello":"world"}}`, str)
|
||||||
@ -35,11 +36,11 @@ func Test_write_map_of_interface_in_struct(t *testing.T) {
|
|||||||
|
|
||||||
func Test_write_map_of_interface_in_struct_with_two_fields(t *testing.T) {
|
func Test_write_map_of_interface_in_struct_with_two_fields(t *testing.T) {
|
||||||
type TestObject struct {
|
type TestObject struct {
|
||||||
Field map[string]interface{}
|
Field map[string]interface{}
|
||||||
Field2 string
|
Field2 string
|
||||||
}
|
}
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
val := TestObject{map[string]interface{}{"hello":"world"}, ""}
|
val := TestObject{map[string]interface{}{"hello": "world"}, ""}
|
||||||
str, err := MarshalToString(val)
|
str, err := MarshalToString(val)
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Contains(str, `"Field":{"hello":"world"}`)
|
should.Contains(str, `"Field":{"hello":"world"}`)
|
||||||
@ -59,7 +60,7 @@ func Test_write_map_of_custom_interface(t *testing.T) {
|
|||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
myStr := MyString("world")
|
myStr := MyString("world")
|
||||||
should.Equal("world", myStr.Hello())
|
should.Equal("world", myStr.Hello())
|
||||||
val := map[string]MyInterface{"hello":myStr}
|
val := map[string]MyInterface{"hello": myStr}
|
||||||
str, err := MarshalToString(val)
|
str, err := MarshalToString(val)
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(`{"hello":"world"}`, str)
|
should.Equal(`{"hello":"world"}`, str)
|
||||||
@ -137,4 +138,18 @@ func Test_encode_object_contain_non_empty_interface(t *testing.T) {
|
|||||||
str, err := MarshalToString(obj)
|
str, err := MarshalToString(obj)
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(`{"Field":"hello"}`, str)
|
should.Equal(`{"Field":"hello"}`, str)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
func Test_nil_non_empty_interface(t *testing.T) {
|
||||||
|
CleanEncoders()
|
||||||
|
CleanDecoders()
|
||||||
|
type TestObject struct {
|
||||||
|
Field []MyInterface
|
||||||
|
}
|
||||||
|
should := require.New(t)
|
||||||
|
obj := TestObject{}
|
||||||
|
b := []byte(`{"Field":["AAA"]}`)
|
||||||
|
should.NotNil(json.Unmarshal(b, &obj))
|
||||||
|
should.NotNil(Unmarshal(b, &obj))
|
||||||
}
|
}
|
@ -1,8 +1,10 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
"github.com/json-iterator/go/require"
|
||||||
|
"math/big"
|
||||||
|
"testing"
|
||||||
|
"encoding/json"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_read_map(t *testing.T) {
|
func Test_read_map(t *testing.T) {
|
||||||
@ -40,12 +42,12 @@ func Test_wrap_map(t *testing.T) {
|
|||||||
vals[k] = v.ToString()
|
vals[k] = v.ToString()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
should.Equal(map[string]string{"Field1":"hello"}, vals)
|
should.Equal(map[string]string{"Field1": "hello"}, vals)
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_map_wrapper_any_get_all(t *testing.T) {
|
func Test_map_wrapper_any_get_all(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
any := Wrap(map[string][]int{"Field1": []int{1, 2}})
|
any := Wrap(map[string][]int{"Field1": {1, 2}})
|
||||||
should.Equal(`{"Field1":1}`, any.Get('*', 0).ToString())
|
should.Equal(`{"Field1":1}`, any.Get('*', 0).ToString())
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -66,4 +68,62 @@ func Test_slice_of_map(t *testing.T) {
|
|||||||
val = []map[string]string{}
|
val = []map[string]string{}
|
||||||
should.Nil(UnmarshalFromString(str, &val))
|
should.Nil(UnmarshalFromString(str, &val))
|
||||||
should.Equal("2", val[0]["1"])
|
should.Equal("2", val[0]["1"])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Test_encode_int_key_map(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
val := map[int]string{1: "2"}
|
||||||
|
str, err := MarshalToString(val)
|
||||||
|
should.Nil(err)
|
||||||
|
should.Equal(`{"1":"2"}`, str)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_decode_int_key_map(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
var val map[int]string
|
||||||
|
should.Nil(UnmarshalFromString(`{"1":"2"}`, &val))
|
||||||
|
should.Equal(map[int]string{1: "2"}, val)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_encode_TextMarshaler_key_map(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
f, _, _ := big.ParseFloat("1", 10, 64, big.ToZero)
|
||||||
|
val := map[*big.Float]string{f: "2"}
|
||||||
|
str, err := MarshalToString(val)
|
||||||
|
should.Nil(err)
|
||||||
|
should.Equal(`{"1":"2"}`, str)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_decode_TextMarshaler_key_map(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
var val map[*big.Float]string
|
||||||
|
should.Nil(UnmarshalFromString(`{"1":"2"}`, &val))
|
||||||
|
str, err := MarshalToString(val)
|
||||||
|
should.Nil(err)
|
||||||
|
should.Equal(`{"1":"2"}`, str)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
func Test_map_key_with_escaped_char(t *testing.T) {
|
||||||
|
type Ttest struct {
|
||||||
|
Map map[string]string
|
||||||
|
}
|
||||||
|
var jsonBytes = []byte(`
|
||||||
|
{
|
||||||
|
"Map":{
|
||||||
|
"k\"ey": "val"
|
||||||
|
}
|
||||||
|
}`)
|
||||||
|
should := require.New(t)
|
||||||
|
{
|
||||||
|
var obj Ttest
|
||||||
|
should.Nil(json.Unmarshal(jsonBytes, &obj))
|
||||||
|
should.Equal(map[string]string{"k\"ey":"val"}, obj.Map)
|
||||||
|
}
|
||||||
|
{
|
||||||
|
var obj Ttest
|
||||||
|
should.Nil(Unmarshal(jsonBytes, &obj))
|
||||||
|
should.Equal(map[string]string{"k\"ey":"val"}, obj.Map)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"github.com/json-iterator/go/require"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_read_null(t *testing.T) {
|
func Test_read_null(t *testing.T) {
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"encoding/json"
|
||||||
|
"github.com/json-iterator/go/require"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_empty_object(t *testing.T) {
|
func Test_empty_object(t *testing.T) {
|
||||||
@ -100,7 +100,7 @@ func Test_object_any_lazy_iterator(t *testing.T) {
|
|||||||
should.False(hasNext)
|
should.False(hasNext)
|
||||||
vals[k] = v.ToString()
|
vals[k] = v.ToString()
|
||||||
|
|
||||||
should.Equal(map[string]string{"a":"b", "c":"d"}, vals)
|
should.Equal(map[string]string{"a": "b", "c": "d"}, vals)
|
||||||
vals = map[string]string{}
|
vals = map[string]string{}
|
||||||
for next, hasNext := any.IterateObject(); hasNext; {
|
for next, hasNext := any.IterateObject(); hasNext; {
|
||||||
k, v, hasNext = next()
|
k, v, hasNext = next()
|
||||||
@ -108,7 +108,7 @@ func Test_object_any_lazy_iterator(t *testing.T) {
|
|||||||
vals[k] = v.ToString()
|
vals[k] = v.ToString()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
should.Equal(map[string]string{"a":"b", "c":"d"}, vals)
|
should.Equal(map[string]string{"a": "b", "c": "d"}, vals)
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_object_any_with_two_lazy_iterators(t *testing.T) {
|
func Test_object_any_with_two_lazy_iterators(t *testing.T) {
|
||||||
@ -194,7 +194,7 @@ func Test_wrap_object(t *testing.T) {
|
|||||||
vals[k] = v.ToString()
|
vals[k] = v.ToString()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
should.Equal(map[string]string{"Field1":"hello"}, vals)
|
should.Equal(map[string]string{"Field1": "hello"}, vals)
|
||||||
}
|
}
|
||||||
|
|
||||||
func Test_object_wrapper_any_get_all(t *testing.T) {
|
func Test_object_wrapper_any_get_all(t *testing.T) {
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
"github.com/json-iterator/go/require"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_encode_optional_int_pointer(t *testing.T) {
|
func Test_encode_optional_int_pointer(t *testing.T) {
|
||||||
@ -43,4 +43,4 @@ func Test_encode_struct_with_optional_field(t *testing.T) {
|
|||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Contains(str, `"field1":null`)
|
should.Contains(str, `"field1":null`)
|
||||||
should.Contains(str, `"field2":"world"`)
|
should.Contains(str, `"field2":"world"`)
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_reflect_str(t *testing.T) {
|
func Test_reflect_str(t *testing.T) {
|
||||||
@ -151,4 +151,4 @@ func Test_reflect_bool(t *testing.T) {
|
|||||||
fmt.Println(iter.Error)
|
fmt.Println(iter.Error)
|
||||||
t.Fatal(val)
|
t.Fatal(val)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package jsoniter
|
package jsoniter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"github.com/json-iterator/go/require"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_decode_one_field_struct(t *testing.T) {
|
func Test_decode_one_field_struct(t *testing.T) {
|
||||||
@ -149,9 +149,9 @@ func Test_write_val_one_field_struct(t *testing.T) {
|
|||||||
func Test_mixed(t *testing.T) {
|
func Test_mixed(t *testing.T) {
|
||||||
should := require.New(t)
|
should := require.New(t)
|
||||||
type AA struct {
|
type AA struct {
|
||||||
ID int `json:"id"`
|
ID int `json:"id"`
|
||||||
Payload map[string]interface{} `json:"payload"`
|
Payload map[string]interface{} `json:"payload"`
|
||||||
buf *bytes.Buffer `json:"-"`
|
buf *bytes.Buffer `json:"-"`
|
||||||
}
|
}
|
||||||
aa := AA{}
|
aa := AA{}
|
||||||
err := UnmarshalFromString(` {"id":1, "payload":{"account":"123","password":"456"}}`, &aa)
|
err := UnmarshalFromString(` {"id":1, "payload":{"account":"123","password":"456"}}`, &aa)
|
||||||
@ -230,7 +230,7 @@ func Test_anonymous_struct_marshal(t *testing.T) {
|
|||||||
type TestObject struct {
|
type TestObject struct {
|
||||||
Field string
|
Field string
|
||||||
}
|
}
|
||||||
str, err := MarshalToString(struct{
|
str, err := MarshalToString(struct {
|
||||||
TestObject
|
TestObject
|
||||||
Field int
|
Field int
|
||||||
}{
|
}{
|
||||||
@ -238,4 +238,4 @@ func Test_anonymous_struct_marshal(t *testing.T) {
|
|||||||
})
|
})
|
||||||
should.Nil(err)
|
should.Nil(err)
|
||||||
should.Equal(`{"Field":100}`, str)
|
should.Equal(`{"Field":100}`, str)
|
||||||
}
|
}
|
||||||
|
@ -3,9 +3,9 @@ package jsoniter
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/json-iterator/go/require"
|
||||||
"testing"
|
"testing"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
"github.com/json-iterator/go/require"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_decode_slice(t *testing.T) {
|
func Test_decode_slice(t *testing.T) {
|
||||||
|
54
jsoniter_stream_test.go
Normal file
54
jsoniter_stream_test.go
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
package jsoniter
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/json-iterator/go/require"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Test_writeByte_should_grow_buffer(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
stream := NewStream(nil, 1)
|
||||||
|
stream.writeByte('1')
|
||||||
|
should.Equal("1", string(stream.Buffer()))
|
||||||
|
should.Equal(1, len(stream.buf))
|
||||||
|
stream.writeByte('2')
|
||||||
|
should.Equal("12", string(stream.Buffer()))
|
||||||
|
should.Equal(2, len(stream.buf))
|
||||||
|
stream.writeThreeBytes('3', '4', '5')
|
||||||
|
should.Equal("12345", string(stream.Buffer()))
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_writeBytes_should_grow_buffer(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
stream := NewStream(nil, 1)
|
||||||
|
stream.Write([]byte{'1', '2'})
|
||||||
|
should.Equal("12", string(stream.Buffer()))
|
||||||
|
should.Equal(3, len(stream.buf))
|
||||||
|
stream.Write([]byte{'3', '4', '5', '6', '7'})
|
||||||
|
should.Equal("1234567", string(stream.Buffer()))
|
||||||
|
should.Equal(8, len(stream.buf))
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_writeIndention_should_grow_buffer(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
stream := NewStream(nil, 1)
|
||||||
|
stream.IndentionStep = 2
|
||||||
|
stream.WriteVal([]int{1, 2, 3})
|
||||||
|
should.Equal("[\n 1,\n 2,\n 3\n]", string(stream.Buffer()))
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_writeRaw_should_grow_buffer(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
stream := NewStream(nil, 1)
|
||||||
|
stream.WriteRaw("123")
|
||||||
|
should.Nil(stream.Error)
|
||||||
|
should.Equal("123", string(stream.Buffer()))
|
||||||
|
}
|
||||||
|
|
||||||
|
func Test_writeString_should_grow_buffer(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
stream := NewStream(nil, 0)
|
||||||
|
stream.WriteString("123")
|
||||||
|
should.Nil(stream.Error)
|
||||||
|
should.Equal(`"123"`, string(stream.Buffer()))
|
||||||
|
}
|
@ -3,15 +3,15 @@ package jsoniter
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"testing"
|
|
||||||
"github.com/json-iterator/go/require"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/json-iterator/go/require"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test_read_normal_string(t *testing.T) {
|
func Test_read_normal_string(t *testing.T) {
|
||||||
cases := map[string]string{
|
cases := map[string]string{
|
||||||
`"0123456789012345678901234567890123456789"`: `0123456789012345678901234567890123456789`,
|
`"0123456789012345678901234567890123456789"`: `0123456789012345678901234567890123456789`,
|
||||||
`""`: ``,
|
`""`: ``,
|
||||||
`"hello"`: `hello`,
|
`"hello"`: `hello`,
|
||||||
}
|
}
|
||||||
for input, output := range cases {
|
for input, output := range cases {
|
||||||
@ -40,8 +40,8 @@ func Test_read_normal_string(t *testing.T) {
|
|||||||
|
|
||||||
func Test_read_exotic_string(t *testing.T) {
|
func Test_read_exotic_string(t *testing.T) {
|
||||||
cases := map[string]string{
|
cases := map[string]string{
|
||||||
`"hel\"lo"`: `hel"lo`,
|
`"hel\"lo"`: `hel"lo`,
|
||||||
`"hel\nlo"`: "hel\nlo",
|
`"hel\nlo"`: "hel\nlo",
|
||||||
`"\u4e2d\u6587"`: "中文",
|
`"\u4e2d\u6587"`: "中文",
|
||||||
`"\ud83d\udc4a"`: "\xf0\x9f\x91\x8a", // surrogate
|
`"\ud83d\udc4a"`: "\xf0\x9f\x91\x8a", // surrogate
|
||||||
}
|
}
|
||||||
@ -105,6 +105,13 @@ func Test_write_val_string(t *testing.T) {
|
|||||||
should.Equal(`"hello"`, buf.String())
|
should.Equal(`"hello"`, buf.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Test_decode_slash(t *testing.T) {
|
||||||
|
should := require.New(t)
|
||||||
|
var obj interface{}
|
||||||
|
should.NotNil(json.Unmarshal([]byte("\\"), &obj))
|
||||||
|
should.NotNil(UnmarshalFromString("\\", &obj))
|
||||||
|
}
|
||||||
|
|
||||||
func Benchmark_jsoniter_unicode(b *testing.B) {
|
func Benchmark_jsoniter_unicode(b *testing.B) {
|
||||||
for n := 0; n < b.N; n++ {
|
for n := 0; n < b.N; n++ {
|
||||||
iter := ParseString(`"\ud83d\udc4a"`)
|
iter := ParseString(`"\ud83d\udc4a"`)
|
||||||
|
Reference in New Issue
Block a user