go-json/decode_compile_race.go

35 lines
601 B
Go
Raw Normal View History

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 {
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()
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
}