2021-02-04 12:00:08 +03:00
|
|
|
// +build race
|
|
|
|
|
|
|
|
package json
|
|
|
|
|
2021-02-09 15:37:18 +03:00
|
|
|
import (
|
|
|
|
"sync"
|
2021-02-10 19:15:31 +03:00
|
|
|
"unsafe"
|
2021-02-09 15:37:18 +03:00
|
|
|
)
|
2021-02-04 12:00:08 +03:00
|
|
|
|
|
|
|
var decMu sync.RWMutex
|
|
|
|
|
2021-02-10 19:15:31 +03:00
|
|
|
func decodeCompileToGetDecoder(typ *rtype) (decoder, error) {
|
|
|
|
typeptr := uintptr(unsafe.Pointer(typ))
|
2021-02-09 15:37:18 +03:00
|
|
|
if typeptr > maxTypeAddr {
|
2021-02-10 18:33:54 +03:00
|
|
|
return decodeCompileToGetDecoderSlowPath(typeptr, typ)
|
2021-02-04 12:00:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
index := typeptr - baseTypeAddr
|
|
|
|
decMu.RLock()
|
|
|
|
if dec := cachedDecoder[index]; dec != nil {
|
|
|
|
decMu.RUnlock()
|
|
|
|
return dec, nil
|
|
|
|
}
|
|
|
|
decMu.RUnlock()
|
|
|
|
|
2021-02-10 18:33:54 +03:00
|
|
|
dec, err := decodeCompileHead(typ, map[uintptr]decoder{})
|
2021-02-04 12:00:08 +03:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
decMu.Lock()
|
|
|
|
cachedDecoder[index] = dec
|
|
|
|
decMu.Unlock()
|
|
|
|
return dec, nil
|
|
|
|
}
|