2017-11-20 09:30:52 -05:00
|
|
|
package jsoniter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
"reflect"
|
2018-07-25 04:17:02 -04:00
|
|
|
"sync"
|
2017-11-20 09:30:52 -05:00
|
|
|
"unsafe"
|
2018-07-25 04:17:02 -04:00
|
|
|
|
|
|
|
"github.com/modern-go/concurrent"
|
|
|
|
"github.com/modern-go/reflect2"
|
2017-11-20 09:30:52 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Config customize how the API should behave.
|
|
|
|
// The API is created from Config by Froze.
|
|
|
|
type Config struct {
|
2018-07-25 04:17:02 -04:00
|
|
|
IndentionStep int
|
|
|
|
MarshalFloatWith6Digits bool
|
|
|
|
EscapeHTML bool
|
|
|
|
SortMapKeys bool
|
|
|
|
UseNumber bool
|
|
|
|
DisallowUnknownFields bool
|
|
|
|
TagKey string
|
|
|
|
OnlyTaggedField bool
|
|
|
|
ValidateJsonRawMessage bool
|
|
|
|
ObjectFieldMustBeSimpleString bool
|
|
|
|
CaseSensitive bool
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// API the public interface of this package.
|
|
|
|
// Primary Marshal and Unmarshal.
|
|
|
|
type API interface {
|
|
|
|
IteratorPool
|
|
|
|
StreamPool
|
|
|
|
MarshalToString(v interface{}) (string, error)
|
|
|
|
Marshal(v interface{}) ([]byte, error)
|
|
|
|
MarshalIndent(v interface{}, prefix, indent string) ([]byte, error)
|
|
|
|
UnmarshalFromString(str string, v interface{}) error
|
|
|
|
Unmarshal(data []byte, v interface{}) error
|
|
|
|
Get(data []byte, path ...interface{}) Any
|
|
|
|
NewEncoder(writer io.Writer) *Encoder
|
|
|
|
NewDecoder(reader io.Reader) *Decoder
|
|
|
|
Valid(data []byte) bool
|
2018-07-25 04:17:02 -04:00
|
|
|
RegisterExtension(extension Extension)
|
|
|
|
DecoderOf(typ reflect2.Type) ValDecoder
|
|
|
|
EncoderOf(typ reflect2.Type) ValEncoder
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ConfigDefault the default API
|
|
|
|
var ConfigDefault = Config{
|
|
|
|
EscapeHTML: true,
|
|
|
|
}.Froze()
|
|
|
|
|
|
|
|
// ConfigCompatibleWithStandardLibrary tries to be 100% compatible with standard library behavior
|
|
|
|
var ConfigCompatibleWithStandardLibrary = Config{
|
|
|
|
EscapeHTML: true,
|
|
|
|
SortMapKeys: true,
|
|
|
|
ValidateJsonRawMessage: true,
|
|
|
|
}.Froze()
|
|
|
|
|
|
|
|
// ConfigFastest marshals float with only 6 digits precision
|
|
|
|
var ConfigFastest = Config{
|
2018-07-25 04:17:02 -04:00
|
|
|
EscapeHTML: false,
|
|
|
|
MarshalFloatWith6Digits: true, // will lose precession
|
|
|
|
ObjectFieldMustBeSimpleString: true, // do not unescape object field
|
2017-11-20 09:30:52 -05:00
|
|
|
}.Froze()
|
|
|
|
|
2018-07-25 04:17:02 -04:00
|
|
|
type frozenConfig struct {
|
|
|
|
configBeforeFrozen Config
|
|
|
|
sortMapKeys bool
|
|
|
|
indentionStep int
|
|
|
|
objectFieldMustBeSimpleString bool
|
|
|
|
onlyTaggedField bool
|
|
|
|
disallowUnknownFields bool
|
|
|
|
decoderCache *concurrent.Map
|
|
|
|
encoderCache *concurrent.Map
|
2018-09-26 07:26:19 -04:00
|
|
|
encoderExtension Extension
|
|
|
|
decoderExtension Extension
|
|
|
|
extraExtensions []Extension
|
2018-07-25 04:17:02 -04:00
|
|
|
streamPool *sync.Pool
|
|
|
|
iteratorPool *sync.Pool
|
|
|
|
caseSensitive bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) initCache() {
|
|
|
|
cfg.decoderCache = concurrent.NewMap()
|
|
|
|
cfg.encoderCache = concurrent.NewMap()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) addDecoderToCache(cacheKey uintptr, decoder ValDecoder) {
|
|
|
|
cfg.decoderCache.Store(cacheKey, decoder)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) addEncoderToCache(cacheKey uintptr, encoder ValEncoder) {
|
|
|
|
cfg.encoderCache.Store(cacheKey, encoder)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) getDecoderFromCache(cacheKey uintptr) ValDecoder {
|
|
|
|
decoder, found := cfg.decoderCache.Load(cacheKey)
|
|
|
|
if found {
|
|
|
|
return decoder.(ValDecoder)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) getEncoderFromCache(cacheKey uintptr) ValEncoder {
|
|
|
|
encoder, found := cfg.encoderCache.Load(cacheKey)
|
|
|
|
if found {
|
|
|
|
return encoder.(ValEncoder)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var cfgCache = concurrent.NewMap()
|
|
|
|
|
|
|
|
func getFrozenConfigFromCache(cfg Config) *frozenConfig {
|
|
|
|
obj, found := cfgCache.Load(cfg)
|
|
|
|
if found {
|
|
|
|
return obj.(*frozenConfig)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func addFrozenConfigToCache(cfg Config, frozenConfig *frozenConfig) {
|
|
|
|
cfgCache.Store(cfg, frozenConfig)
|
|
|
|
}
|
|
|
|
|
2017-11-20 09:30:52 -05:00
|
|
|
// Froze forge API from config
|
|
|
|
func (cfg Config) Froze() API {
|
2018-07-25 04:17:02 -04:00
|
|
|
api := &frozenConfig{
|
|
|
|
sortMapKeys: cfg.SortMapKeys,
|
|
|
|
indentionStep: cfg.IndentionStep,
|
|
|
|
objectFieldMustBeSimpleString: cfg.ObjectFieldMustBeSimpleString,
|
|
|
|
onlyTaggedField: cfg.OnlyTaggedField,
|
|
|
|
disallowUnknownFields: cfg.DisallowUnknownFields,
|
|
|
|
caseSensitive: cfg.CaseSensitive,
|
|
|
|
}
|
|
|
|
api.streamPool = &sync.Pool{
|
|
|
|
New: func() interface{} {
|
|
|
|
return NewStream(api, nil, 512)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
api.iteratorPool = &sync.Pool{
|
|
|
|
New: func() interface{} {
|
|
|
|
return NewIterator(api)
|
|
|
|
},
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
2018-07-25 04:17:02 -04:00
|
|
|
api.initCache()
|
|
|
|
encoderExtension := EncoderExtension{}
|
|
|
|
decoderExtension := DecoderExtension{}
|
2017-11-20 09:30:52 -05:00
|
|
|
if cfg.MarshalFloatWith6Digits {
|
2018-07-25 04:17:02 -04:00
|
|
|
api.marshalFloatWith6Digits(encoderExtension)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
if cfg.EscapeHTML {
|
2018-07-25 04:17:02 -04:00
|
|
|
api.escapeHTML(encoderExtension)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
if cfg.UseNumber {
|
2018-07-25 04:17:02 -04:00
|
|
|
api.useNumber(decoderExtension)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
if cfg.ValidateJsonRawMessage {
|
2018-07-25 04:17:02 -04:00
|
|
|
api.validateJsonRawMessage(encoderExtension)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
2018-09-26 07:26:19 -04:00
|
|
|
api.encoderExtension = encoderExtension
|
|
|
|
api.decoderExtension = decoderExtension
|
2018-07-25 04:17:02 -04:00
|
|
|
api.configBeforeFrozen = cfg
|
|
|
|
return api
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
2018-09-26 07:26:19 -04:00
|
|
|
func (cfg Config) frozeWithCacheReuse(extraExtensions []Extension) *frozenConfig {
|
2018-07-25 04:17:02 -04:00
|
|
|
api := getFrozenConfigFromCache(cfg)
|
|
|
|
if api != nil {
|
|
|
|
return api
|
|
|
|
}
|
|
|
|
api = cfg.Froze().(*frozenConfig)
|
2018-09-26 07:26:19 -04:00
|
|
|
for _, extension := range extraExtensions {
|
|
|
|
api.RegisterExtension(extension)
|
|
|
|
}
|
2018-07-25 04:17:02 -04:00
|
|
|
addFrozenConfigToCache(cfg, api)
|
|
|
|
return api
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) validateJsonRawMessage(extension EncoderExtension) {
|
2017-11-20 09:30:52 -05:00
|
|
|
encoder := &funcEncoder{func(ptr unsafe.Pointer, stream *Stream) {
|
|
|
|
rawMessage := *(*json.RawMessage)(ptr)
|
|
|
|
iter := cfg.BorrowIterator([]byte(rawMessage))
|
[20.10] vendor: github.com/json-iterator/go v1.1.12 for Go 1.18 compatibility
full diff: https://github.com/json-iterator/go/compare/0ff49de124c6f76f8494e194af75bde0f1a49a29...024077e996b048517130b21ea6bf12aa23055d3d
Fixes a nil-pointer exception on go 1.18;
```
=== FAIL: cli/context/kubernetes TestSaveLoadContexts (0.00s)
panic: runtime error: invalid memory address or nil pointer dereference [recovered]
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0x40fcbc]
goroutine 19 [running]:
testing.tRunner.func1.2({0xa7e080, 0x1073930})
/usr/local/go/src/testing/testing.go:1389 +0x24e
testing.tRunner.func1()
/usr/local/go/src/testing/testing.go:1392 +0x39f
panic({0xa7e080, 0x1073930})
/usr/local/go/src/runtime/panic.go:838 +0x207
reflect.mapiternext(0x40?)
/usr/local/go/src/runtime/map.go:1378 +0x19
github.com/docker/cli/vendor/github.com/modern-go/reflect2.(*UnsafeMapIterator).UnsafeNext(0x8?)
/go/src/github.com/docker/cli/vendor/github.com/modern-go/reflect2/unsafe_map.go:136 +0x32
github.com/docker/cli/vendor/github.com/json-iterator/go.(*sortKeysMapEncoder).Encode(0xc000478930, 0xc0000ca3a8, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_map.go:293 +0x335
github.com/docker/cli/vendor/github.com/json-iterator/go.(*placeholderEncoder).Encode(0xc00046c898?, 0x95d787?, 0xc0000bae58?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:327 +0x22
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc000482630, 0xa2790c?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000482780, 0xb3a599?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*placeholderEncoder).Encode(0xc00046ca10?, 0x95d787?, 0xc0000bae58?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:327 +0x22
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc0004829f0, 0xa0fd11?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000482a50, 0x40aa15?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*sliceEncoder).Encode(0xc00047e198, 0xc0003a83c8, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_slice.go:38 +0x2bb
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc0004837a0, 0xa12e12?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000483890, 0x0?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*OptionalEncoder).Encode(0xc0003b6be0?, 0x0?, 0x0?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_optional.go:74 +0xa4
github.com/docker/cli/vendor/github.com/json-iterator/go.(*onePtrEncoder).Encode(0xc000471e30, 0xc0003a8370, 0xc000460720?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:214 +0x82
github.com/docker/cli/vendor/github.com/json-iterator/go.(*Stream).WriteVal(0xc0000bae40, {0xabe4a0, 0xc0003a8370})
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:93 +0x158
github.com/docker/cli/vendor/github.com/json-iterator/go.(*frozenConfig).Marshal(0xc0003b6be0, {0xabe4a0, 0xc0003a8370})
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/config.go:299 +0xc9
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json.(*Serializer).Encode(0xc00043aee0?, {0xc375c0?, 0xc0003a8370?}, {0xc339e0, 0xc000460210})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go:310 +0x6d
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning.(*codec).Encode(0xc0000f8480, {0xc37570?, 0xc0000bacc0}, {0xc339e0, 0xc000460210})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning.go:231 +0x926
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime.Encode({0x7f48b36ce5c0, 0xc0000f8480}, {0xc37570, 0xc0000bacc0})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/codec.go:46 +0x64
github.com/docker/cli/vendor/k8s.io/client-go/tools/clientcmd.Write(...)
/go/src/github.com/docker/cli/vendor/k8s.io/client-go/tools/clientcmd/loader.go:469
github.com/docker/cli/cli/context/kubernetes.TestSaveLoadContexts(0xc0004561a0?)
/go/src/github.com/docker/cli/cli/context/kubernetes/endpoint_test.go:75 +0xf0a
testing.tRunner(0xc0004561a0, 0xb89ea0)
/usr/local/go/src/testing/testing.go:1439 +0x102
created by testing.(*T).Run
/usr/local/go/src/testing/testing.go:1486 +0x35f
```
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-08-19 10:12:25 -04:00
|
|
|
defer cfg.ReturnIterator(iter)
|
2017-11-20 09:30:52 -05:00
|
|
|
iter.Read()
|
[20.10] vendor: github.com/json-iterator/go v1.1.12 for Go 1.18 compatibility
full diff: https://github.com/json-iterator/go/compare/0ff49de124c6f76f8494e194af75bde0f1a49a29...024077e996b048517130b21ea6bf12aa23055d3d
Fixes a nil-pointer exception on go 1.18;
```
=== FAIL: cli/context/kubernetes TestSaveLoadContexts (0.00s)
panic: runtime error: invalid memory address or nil pointer dereference [recovered]
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0x40fcbc]
goroutine 19 [running]:
testing.tRunner.func1.2({0xa7e080, 0x1073930})
/usr/local/go/src/testing/testing.go:1389 +0x24e
testing.tRunner.func1()
/usr/local/go/src/testing/testing.go:1392 +0x39f
panic({0xa7e080, 0x1073930})
/usr/local/go/src/runtime/panic.go:838 +0x207
reflect.mapiternext(0x40?)
/usr/local/go/src/runtime/map.go:1378 +0x19
github.com/docker/cli/vendor/github.com/modern-go/reflect2.(*UnsafeMapIterator).UnsafeNext(0x8?)
/go/src/github.com/docker/cli/vendor/github.com/modern-go/reflect2/unsafe_map.go:136 +0x32
github.com/docker/cli/vendor/github.com/json-iterator/go.(*sortKeysMapEncoder).Encode(0xc000478930, 0xc0000ca3a8, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_map.go:293 +0x335
github.com/docker/cli/vendor/github.com/json-iterator/go.(*placeholderEncoder).Encode(0xc00046c898?, 0x95d787?, 0xc0000bae58?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:327 +0x22
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc000482630, 0xa2790c?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000482780, 0xb3a599?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*placeholderEncoder).Encode(0xc00046ca10?, 0x95d787?, 0xc0000bae58?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:327 +0x22
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc0004829f0, 0xa0fd11?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000482a50, 0x40aa15?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*sliceEncoder).Encode(0xc00047e198, 0xc0003a83c8, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_slice.go:38 +0x2bb
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structFieldEncoder).Encode(0xc0004837a0, 0xa12e12?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:110 +0x56
github.com/docker/cli/vendor/github.com/json-iterator/go.(*structEncoder).Encode(0xc000483890, 0x0?, 0xc0000bae40)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_struct_encoder.go:158 +0x652
github.com/docker/cli/vendor/github.com/json-iterator/go.(*OptionalEncoder).Encode(0xc0003b6be0?, 0x0?, 0x0?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect_optional.go:74 +0xa4
github.com/docker/cli/vendor/github.com/json-iterator/go.(*onePtrEncoder).Encode(0xc000471e30, 0xc0003a8370, 0xc000460720?)
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:214 +0x82
github.com/docker/cli/vendor/github.com/json-iterator/go.(*Stream).WriteVal(0xc0000bae40, {0xabe4a0, 0xc0003a8370})
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/reflect.go:93 +0x158
github.com/docker/cli/vendor/github.com/json-iterator/go.(*frozenConfig).Marshal(0xc0003b6be0, {0xabe4a0, 0xc0003a8370})
/go/src/github.com/docker/cli/vendor/github.com/json-iterator/go/config.go:299 +0xc9
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json.(*Serializer).Encode(0xc00043aee0?, {0xc375c0?, 0xc0003a8370?}, {0xc339e0, 0xc000460210})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go:310 +0x6d
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning.(*codec).Encode(0xc0000f8480, {0xc37570?, 0xc0000bacc0}, {0xc339e0, 0xc000460210})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning.go:231 +0x926
github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime.Encode({0x7f48b36ce5c0, 0xc0000f8480}, {0xc37570, 0xc0000bacc0})
/go/src/github.com/docker/cli/vendor/k8s.io/apimachinery/pkg/runtime/codec.go:46 +0x64
github.com/docker/cli/vendor/k8s.io/client-go/tools/clientcmd.Write(...)
/go/src/github.com/docker/cli/vendor/k8s.io/client-go/tools/clientcmd/loader.go:469
github.com/docker/cli/cli/context/kubernetes.TestSaveLoadContexts(0xc0004561a0?)
/go/src/github.com/docker/cli/cli/context/kubernetes/endpoint_test.go:75 +0xf0a
testing.tRunner(0xc0004561a0, 0xb89ea0)
/usr/local/go/src/testing/testing.go:1439 +0x102
created by testing.(*T).Run
/usr/local/go/src/testing/testing.go:1486 +0x35f
```
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-08-19 10:12:25 -04:00
|
|
|
if iter.Error != nil && iter.Error != io.EOF {
|
2017-11-20 09:30:52 -05:00
|
|
|
stream.WriteRaw("null")
|
|
|
|
} else {
|
|
|
|
stream.WriteRaw(string(rawMessage))
|
|
|
|
}
|
|
|
|
}, func(ptr unsafe.Pointer) bool {
|
2018-09-26 07:26:19 -04:00
|
|
|
return len(*((*json.RawMessage)(ptr))) == 0
|
2017-11-20 09:30:52 -05:00
|
|
|
}}
|
2018-07-25 04:17:02 -04:00
|
|
|
extension[reflect2.TypeOfPtr((*json.RawMessage)(nil)).Elem()] = encoder
|
|
|
|
extension[reflect2.TypeOfPtr((*RawMessage)(nil)).Elem()] = encoder
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
2018-07-25 04:17:02 -04:00
|
|
|
func (cfg *frozenConfig) useNumber(extension DecoderExtension) {
|
|
|
|
extension[reflect2.TypeOfPtr((*interface{})(nil)).Elem()] = &funcDecoder{func(ptr unsafe.Pointer, iter *Iterator) {
|
|
|
|
exitingValue := *((*interface{})(ptr))
|
|
|
|
if exitingValue != nil && reflect.TypeOf(exitingValue).Kind() == reflect.Ptr {
|
|
|
|
iter.ReadVal(exitingValue)
|
|
|
|
return
|
|
|
|
}
|
2017-11-20 09:30:52 -05:00
|
|
|
if iter.WhatIsNext() == NumberValue {
|
|
|
|
*((*interface{})(ptr)) = json.Number(iter.readNumberAsString())
|
|
|
|
} else {
|
|
|
|
*((*interface{})(ptr)) = iter.Read()
|
|
|
|
}
|
2018-07-25 04:17:02 -04:00
|
|
|
}}
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
func (cfg *frozenConfig) getTagKey() string {
|
|
|
|
tagKey := cfg.configBeforeFrozen.TagKey
|
|
|
|
if tagKey == "" {
|
|
|
|
return "json"
|
|
|
|
}
|
|
|
|
return tagKey
|
|
|
|
}
|
|
|
|
|
2018-07-25 04:17:02 -04:00
|
|
|
func (cfg *frozenConfig) RegisterExtension(extension Extension) {
|
2018-09-26 07:26:19 -04:00
|
|
|
cfg.extraExtensions = append(cfg.extraExtensions, extension)
|
|
|
|
copied := cfg.configBeforeFrozen
|
|
|
|
cfg.configBeforeFrozen = copied
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type lossyFloat32Encoder struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (encoder *lossyFloat32Encoder) Encode(ptr unsafe.Pointer, stream *Stream) {
|
|
|
|
stream.WriteFloat32Lossy(*((*float32)(ptr)))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (encoder *lossyFloat32Encoder) IsEmpty(ptr unsafe.Pointer) bool {
|
|
|
|
return *((*float32)(ptr)) == 0
|
|
|
|
}
|
|
|
|
|
|
|
|
type lossyFloat64Encoder struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (encoder *lossyFloat64Encoder) Encode(ptr unsafe.Pointer, stream *Stream) {
|
|
|
|
stream.WriteFloat64Lossy(*((*float64)(ptr)))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (encoder *lossyFloat64Encoder) IsEmpty(ptr unsafe.Pointer) bool {
|
|
|
|
return *((*float64)(ptr)) == 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// EnableLossyFloatMarshalling keeps 10**(-6) precision
|
|
|
|
// for float variables for better performance.
|
2018-07-25 04:17:02 -04:00
|
|
|
func (cfg *frozenConfig) marshalFloatWith6Digits(extension EncoderExtension) {
|
2017-11-20 09:30:52 -05:00
|
|
|
// for better performance
|
2018-07-25 04:17:02 -04:00
|
|
|
extension[reflect2.TypeOfPtr((*float32)(nil)).Elem()] = &lossyFloat32Encoder{}
|
|
|
|
extension[reflect2.TypeOfPtr((*float64)(nil)).Elem()] = &lossyFloat64Encoder{}
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type htmlEscapedStringEncoder struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (encoder *htmlEscapedStringEncoder) Encode(ptr unsafe.Pointer, stream *Stream) {
|
|
|
|
str := *((*string)(ptr))
|
|
|
|
stream.WriteStringWithHTMLEscaped(str)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (encoder *htmlEscapedStringEncoder) IsEmpty(ptr unsafe.Pointer) bool {
|
|
|
|
return *((*string)(ptr)) == ""
|
|
|
|
}
|
|
|
|
|
2018-07-25 04:17:02 -04:00
|
|
|
func (cfg *frozenConfig) escapeHTML(encoderExtension EncoderExtension) {
|
|
|
|
encoderExtension[reflect2.TypeOfPtr((*string)(nil)).Elem()] = &htmlEscapedStringEncoder{}
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) cleanDecoders() {
|
|
|
|
typeDecoders = map[string]ValDecoder{}
|
|
|
|
fieldDecoders = map[string]ValDecoder{}
|
|
|
|
*cfg = *(cfg.configBeforeFrozen.Froze().(*frozenConfig))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) cleanEncoders() {
|
|
|
|
typeEncoders = map[string]ValEncoder{}
|
|
|
|
fieldEncoders = map[string]ValEncoder{}
|
|
|
|
*cfg = *(cfg.configBeforeFrozen.Froze().(*frozenConfig))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) MarshalToString(v interface{}) (string, error) {
|
|
|
|
stream := cfg.BorrowStream(nil)
|
|
|
|
defer cfg.ReturnStream(stream)
|
|
|
|
stream.WriteVal(v)
|
|
|
|
if stream.Error != nil {
|
|
|
|
return "", stream.Error
|
|
|
|
}
|
|
|
|
return string(stream.Buffer()), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) Marshal(v interface{}) ([]byte, error) {
|
|
|
|
stream := cfg.BorrowStream(nil)
|
|
|
|
defer cfg.ReturnStream(stream)
|
|
|
|
stream.WriteVal(v)
|
|
|
|
if stream.Error != nil {
|
|
|
|
return nil, stream.Error
|
|
|
|
}
|
|
|
|
result := stream.Buffer()
|
|
|
|
copied := make([]byte, len(result))
|
|
|
|
copy(copied, result)
|
|
|
|
return copied, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) MarshalIndent(v interface{}, prefix, indent string) ([]byte, error) {
|
|
|
|
if prefix != "" {
|
|
|
|
panic("prefix is not supported")
|
|
|
|
}
|
|
|
|
for _, r := range indent {
|
|
|
|
if r != ' ' {
|
|
|
|
panic("indent can only be space")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
newCfg := cfg.configBeforeFrozen
|
|
|
|
newCfg.IndentionStep = len(indent)
|
2018-09-26 07:26:19 -04:00
|
|
|
return newCfg.frozeWithCacheReuse(cfg.extraExtensions).Marshal(v)
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) UnmarshalFromString(str string, v interface{}) error {
|
|
|
|
data := []byte(str)
|
|
|
|
iter := cfg.BorrowIterator(data)
|
|
|
|
defer cfg.ReturnIterator(iter)
|
|
|
|
iter.ReadVal(v)
|
2018-07-25 04:17:02 -04:00
|
|
|
c := iter.nextToken()
|
|
|
|
if c == 0 {
|
|
|
|
if iter.Error == io.EOF {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return iter.Error
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
2018-07-25 04:17:02 -04:00
|
|
|
iter.ReportError("Unmarshal", "there are bytes left after unmarshal")
|
2017-11-20 09:30:52 -05:00
|
|
|
return iter.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) Get(data []byte, path ...interface{}) Any {
|
|
|
|
iter := cfg.BorrowIterator(data)
|
|
|
|
defer cfg.ReturnIterator(iter)
|
|
|
|
return locatePath(iter, path)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) Unmarshal(data []byte, v interface{}) error {
|
|
|
|
iter := cfg.BorrowIterator(data)
|
|
|
|
defer cfg.ReturnIterator(iter)
|
|
|
|
iter.ReadVal(v)
|
2018-07-25 04:17:02 -04:00
|
|
|
c := iter.nextToken()
|
|
|
|
if c == 0 {
|
|
|
|
if iter.Error == io.EOF {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return iter.Error
|
2017-11-20 09:30:52 -05:00
|
|
|
}
|
2018-07-25 04:17:02 -04:00
|
|
|
iter.ReportError("Unmarshal", "there are bytes left after unmarshal")
|
2017-11-20 09:30:52 -05:00
|
|
|
return iter.Error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) NewEncoder(writer io.Writer) *Encoder {
|
|
|
|
stream := NewStream(cfg, writer, 512)
|
|
|
|
return &Encoder{stream}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) NewDecoder(reader io.Reader) *Decoder {
|
|
|
|
iter := Parse(cfg, reader, 512)
|
|
|
|
return &Decoder{iter}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cfg *frozenConfig) Valid(data []byte) bool {
|
|
|
|
iter := cfg.BorrowIterator(data)
|
|
|
|
defer cfg.ReturnIterator(iter)
|
|
|
|
iter.Skip()
|
|
|
|
return iter.Error == nil
|
|
|
|
}
|