Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
39 lines
712 B
Go
39 lines
712 B
Go
//go:build race
|
|
// +build race
|
|
|
|
package decoder
|
|
|
|
import (
|
|
"sync"
|
|
"unsafe"
|
|
|
|
"github.com/goccy/go-json/internal/runtime"
|
|
)
|
|
|
|
var decMu sync.RWMutex
|
|
|
|
func CompileToGetDecoder(typ *runtime.Type) (Decoder, error) {
|
|
initDecoder()
|
|
typeptr := uintptr(unsafe.Pointer(typ))
|
|
if typeptr > typeAddr.MaxTypeAddr {
|
|
return compileToGetDecoderSlowPath(typeptr, typ)
|
|
}
|
|
|
|
index := (typeptr - typeAddr.BaseTypeAddr) >> typeAddr.AddrShift
|
|
decMu.RLock()
|
|
if dec := cachedDecoder[index]; dec != nil {
|
|
decMu.RUnlock()
|
|
return dec, nil
|
|
}
|
|
decMu.RUnlock()
|
|
|
|
dec, err := compileHead(typ, map[uintptr]Decoder{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
decMu.Lock()
|
|
cachedDecoder[index] = dec
|
|
decMu.Unlock()
|
|
return dec, nil
|
|
}
|