2021-09-11 20:12:47 +01:00
|
|
|
package mutexes
|
|
|
|
|
|
|
|
import (
|
2022-01-24 16:35:13 +00:00
|
|
|
"runtime"
|
2021-09-11 20:12:47 +01:00
|
|
|
"sync"
|
2022-01-24 16:35:13 +00:00
|
|
|
"sync/atomic"
|
2021-09-11 20:12:47 +01:00
|
|
|
)
|
|
|
|
|
2022-01-24 16:35:13 +00:00
|
|
|
const (
|
|
|
|
// possible lock types.
|
2022-03-08 11:56:53 +00:00
|
|
|
lockTypeRead = uint8(1) << 0
|
|
|
|
lockTypeWrite = uint8(1) << 1
|
|
|
|
lockTypeMap = uint8(1) << 2
|
2022-01-24 16:35:13 +00:00
|
|
|
|
|
|
|
// possible mutexmap states.
|
|
|
|
stateUnlockd = uint8(0)
|
|
|
|
stateRLocked = uint8(1)
|
|
|
|
stateLocked = uint8(2)
|
|
|
|
stateInUse = uint8(3)
|
2022-03-08 11:56:53 +00:00
|
|
|
|
|
|
|
// default values.
|
|
|
|
defaultWake = 1024
|
2022-01-24 16:35:13 +00:00
|
|
|
)
|
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// acquireState attempts to acquire required map state for lockType.
|
|
|
|
func acquireState(state uint8, lt uint8) (uint8, bool) {
|
2022-01-24 16:35:13 +00:00
|
|
|
switch state {
|
|
|
|
// Unlocked state
|
|
|
|
// (all allowed)
|
|
|
|
case stateUnlockd:
|
|
|
|
|
|
|
|
// Keys locked, no state lock.
|
|
|
|
// (don't allow map locks)
|
|
|
|
case stateInUse:
|
2022-03-08 11:56:53 +00:00
|
|
|
if lt&lockTypeMap != 0 {
|
|
|
|
return 0, false
|
|
|
|
}
|
2022-01-24 16:35:13 +00:00
|
|
|
|
|
|
|
// Read locked
|
|
|
|
// (only allow read locks)
|
|
|
|
case stateRLocked:
|
2022-03-08 11:56:53 +00:00
|
|
|
if lt&lockTypeRead == 0 {
|
|
|
|
return 0, false
|
|
|
|
}
|
2022-01-24 16:35:13 +00:00
|
|
|
|
|
|
|
// Write locked
|
|
|
|
// (none allowed)
|
|
|
|
case stateLocked:
|
2022-03-08 11:56:53 +00:00
|
|
|
return 0, false
|
2022-01-24 16:35:13 +00:00
|
|
|
|
|
|
|
// shouldn't reach here
|
|
|
|
default:
|
|
|
|
panic("unexpected state")
|
|
|
|
}
|
2022-03-08 11:56:53 +00:00
|
|
|
|
|
|
|
switch {
|
|
|
|
// If unlocked and not a map
|
|
|
|
// lock request, set in use
|
|
|
|
case lt&lockTypeMap == 0:
|
|
|
|
if state == stateUnlockd {
|
|
|
|
state = stateInUse
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set read lock state
|
|
|
|
case lt&lockTypeRead != 0:
|
|
|
|
state = stateRLocked
|
|
|
|
|
|
|
|
// Set write lock state
|
|
|
|
case lt&lockTypeWrite != 0:
|
|
|
|
state = stateLocked
|
|
|
|
|
|
|
|
default:
|
|
|
|
panic("unexpected lock type")
|
|
|
|
}
|
|
|
|
|
|
|
|
return state, true
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// MutexMap is a structure that allows read / write locking key, performing
|
|
|
|
// as you'd expect a map[string]*sync.RWMutex to perform. The differences
|
|
|
|
// being that the entire map can itself be read / write locked, it uses memory
|
|
|
|
// pooling for the mutex (not quite) structures, and it is self-evicting. The
|
|
|
|
// core configurations of maximum no. open locks and wake modulus* are user
|
|
|
|
// definable.
|
|
|
|
//
|
|
|
|
// * The wake modulus is the number that the current number of open locks is
|
|
|
|
// modulused against to determine how often to notify sleeping goroutines.
|
|
|
|
// These are goroutines that are attempting to lock a key / whole map and are
|
|
|
|
// awaiting a permissible state (.e.g no key write locks allowed when the
|
|
|
|
// map is read locked).
|
2021-09-13 09:33:01 +01:00
|
|
|
type MutexMap struct {
|
2022-03-08 11:56:53 +00:00
|
|
|
qpool pool
|
|
|
|
queue []*sync.Mutex
|
|
|
|
|
|
|
|
mumap map[string]*rwmutex
|
|
|
|
mpool pool
|
|
|
|
evict []*rwmutex
|
|
|
|
|
2022-01-24 16:35:13 +00:00
|
|
|
count int32
|
|
|
|
maxmu int32
|
2022-03-08 11:56:53 +00:00
|
|
|
wake int32
|
|
|
|
|
|
|
|
mapmu sync.Mutex
|
2022-01-24 16:35:13 +00:00
|
|
|
state uint8
|
2021-09-11 20:12:47 +01:00
|
|
|
}
|
|
|
|
|
2022-01-24 16:35:13 +00:00
|
|
|
// NewMap returns a new MutexMap instance with provided max no. open mutexes.
|
2022-03-08 11:56:53 +00:00
|
|
|
func NewMap(max, wake int32) MutexMap {
|
|
|
|
// Determine wake mod.
|
|
|
|
if wake < 1 {
|
|
|
|
wake = defaultWake
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine max no. mutexes
|
2022-01-24 16:35:13 +00:00
|
|
|
if max < 1 {
|
|
|
|
procs := runtime.GOMAXPROCS(0)
|
2022-03-08 11:56:53 +00:00
|
|
|
max = wake * int32(procs)
|
2021-09-11 20:12:47 +01:00
|
|
|
}
|
2022-03-08 11:56:53 +00:00
|
|
|
|
2021-09-13 09:33:01 +01:00
|
|
|
return MutexMap{
|
2022-03-08 11:56:53 +00:00
|
|
|
qpool: pool{
|
|
|
|
alloc: func() interface{} {
|
|
|
|
return &sync.Mutex{}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
mumap: make(map[string]*rwmutex, max),
|
|
|
|
mpool: pool{
|
|
|
|
alloc: func() interface{} {
|
|
|
|
return &rwmutex{}
|
2021-09-11 20:12:47 +01:00
|
|
|
},
|
|
|
|
},
|
2022-01-24 16:35:13 +00:00
|
|
|
maxmu: max,
|
2022-03-08 11:56:53 +00:00
|
|
|
wake: wake,
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-05 12:13:07 +00:00
|
|
|
// SET sets the MutexMap max open locks and wake modulus, returns current values.
|
2022-03-08 11:56:53 +00:00
|
|
|
// For values less than zero defaults are set, and zero is non-op.
|
|
|
|
func (mm *MutexMap) SET(max, wake int32) (int32, int32) {
|
|
|
|
mm.mapmu.Lock()
|
|
|
|
|
|
|
|
switch {
|
|
|
|
// Set default wake
|
|
|
|
case wake < 0:
|
|
|
|
mm.wake = defaultWake
|
|
|
|
|
|
|
|
// Set supplied wake
|
|
|
|
case wake > 0:
|
|
|
|
mm.wake = wake
|
|
|
|
}
|
|
|
|
|
|
|
|
switch {
|
|
|
|
// Set default max
|
|
|
|
case max < 0:
|
|
|
|
procs := runtime.GOMAXPROCS(0)
|
|
|
|
mm.maxmu = wake * int32(procs)
|
|
|
|
|
|
|
|
// Set supplied max
|
|
|
|
case max > 0:
|
|
|
|
mm.maxmu = max
|
|
|
|
}
|
2022-01-24 16:35:13 +00:00
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// Fetch values
|
|
|
|
max = mm.maxmu
|
|
|
|
wake = mm.wake
|
|
|
|
|
|
|
|
mm.mapmu.Unlock()
|
|
|
|
return max, wake
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// spinLock will wait (using a mutex to sleep thread) until conditional returns true.
|
2022-01-24 16:35:13 +00:00
|
|
|
func (mm *MutexMap) spinLock(cond func() bool) {
|
2022-03-08 11:56:53 +00:00
|
|
|
var mu *sync.Mutex
|
2022-01-24 16:35:13 +00:00
|
|
|
|
|
|
|
for {
|
2022-03-08 11:56:53 +00:00
|
|
|
// Acquire map lock
|
|
|
|
mm.mapmu.Lock()
|
2022-01-24 16:35:13 +00:00
|
|
|
|
|
|
|
if cond() {
|
2022-03-08 11:56:53 +00:00
|
|
|
// Release mu if needed
|
|
|
|
if mu != nil {
|
|
|
|
mm.qpool.Release(mu)
|
|
|
|
}
|
2022-01-24 16:35:13 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// Alloc mu if needed
|
|
|
|
if mu == nil {
|
|
|
|
v := mm.qpool.Acquire()
|
|
|
|
mu = v.(*sync.Mutex)
|
|
|
|
}
|
|
|
|
|
2022-01-24 16:35:13 +00:00
|
|
|
// Queue ourselves
|
2022-03-08 11:56:53 +00:00
|
|
|
mm.queue = append(mm.queue, mu)
|
|
|
|
mu.Lock()
|
|
|
|
|
|
|
|
// Unlock map
|
|
|
|
mm.mapmu.Unlock()
|
2022-01-24 16:35:13 +00:00
|
|
|
|
|
|
|
// Wait on notify
|
2022-03-08 11:56:53 +00:00
|
|
|
mu.Lock()
|
|
|
|
mu.Unlock()
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// lock will acquire a lock of given type on the 'mutex' at key.
|
|
|
|
func (mm *MutexMap) lock(key string, lt uint8) func() {
|
|
|
|
var ok bool
|
|
|
|
var mu *rwmutex
|
|
|
|
|
|
|
|
// Spin lock until returns true
|
|
|
|
mm.spinLock(func() bool {
|
|
|
|
// Check not overloaded
|
|
|
|
if !(mm.count < mm.maxmu) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to acquire usable map state
|
|
|
|
state, ok := acquireState(mm.state, lt)
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update state
|
|
|
|
mm.state = state
|
|
|
|
|
|
|
|
// Ensure mutex at key
|
|
|
|
// is in lockable state
|
|
|
|
mu, ok = mm.mumap[key]
|
|
|
|
return !ok || mu.CanLock(lt)
|
|
|
|
})
|
2022-01-24 16:35:13 +00:00
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// Incr count
|
2022-01-24 16:35:13 +00:00
|
|
|
mm.count++
|
|
|
|
|
|
|
|
if !ok {
|
2022-03-08 11:56:53 +00:00
|
|
|
// No mutex found for key
|
|
|
|
|
2022-01-24 16:35:13 +00:00
|
|
|
// Alloc from pool
|
2022-03-08 11:56:53 +00:00
|
|
|
v := mm.mpool.Acquire()
|
|
|
|
mu = v.(*rwmutex)
|
|
|
|
mm.mumap[key] = mu
|
2022-01-24 16:35:13 +00:00
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// Set our key
|
|
|
|
mu.key = key
|
2022-01-24 16:35:13 +00:00
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// Queue for eviction
|
|
|
|
mm.evict = append(mm.evict, mu)
|
|
|
|
}
|
2022-01-24 16:35:13 +00:00
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// Lock mutex
|
|
|
|
mu.Lock(lt)
|
2022-01-24 16:35:13 +00:00
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// Unlock map
|
|
|
|
mm.mapmu.Unlock()
|
2022-01-24 16:35:13 +00:00
|
|
|
|
|
|
|
return func() {
|
2022-03-08 11:56:53 +00:00
|
|
|
mm.mapmu.Lock()
|
|
|
|
mu.Unlock()
|
2022-11-05 12:13:07 +00:00
|
|
|
mm.cleanup()
|
2021-09-11 20:12:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// lockMap will lock the whole map under given lock type.
|
|
|
|
func (mm *MutexMap) lockMap(lt uint8) {
|
|
|
|
// Spin lock until returns true
|
|
|
|
mm.spinLock(func() bool {
|
|
|
|
// Attempt to acquire usable map state
|
|
|
|
state, ok := acquireState(mm.state, lt)
|
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update state
|
|
|
|
mm.state = state
|
|
|
|
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
|
|
|
// Incr count
|
|
|
|
mm.count++
|
|
|
|
|
|
|
|
// State acquired, unlock
|
|
|
|
mm.mapmu.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
// cleanup is performed as the final stage of unlocking a locked key / map state, finally unlocks map.
|
|
|
|
func (mm *MutexMap) cleanup() {
|
|
|
|
// Decr count
|
2022-01-24 16:35:13 +00:00
|
|
|
mm.count--
|
|
|
|
|
2022-11-05 12:13:07 +00:00
|
|
|
// Calculate current wake modulus
|
|
|
|
wakemod := mm.count % mm.wake
|
2021-09-11 20:12:47 +01:00
|
|
|
|
2022-11-05 12:13:07 +00:00
|
|
|
if mm.count != 0 && wakemod != 0 {
|
|
|
|
// Fast path => no cleanup.
|
|
|
|
// Unlock, return early
|
|
|
|
mm.mapmu.Unlock()
|
|
|
|
return
|
2022-03-08 11:56:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-05 12:13:07 +00:00
|
|
|
go func() {
|
|
|
|
if wakemod == 0 {
|
|
|
|
// Notify queued routines
|
|
|
|
for _, mu := range mm.queue {
|
|
|
|
mu.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset queue
|
|
|
|
mm.queue = mm.queue[:0]
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
2021-09-11 20:12:47 +01:00
|
|
|
|
2022-11-05 12:13:07 +00:00
|
|
|
if mm.count == 0 {
|
|
|
|
// Perform evictions
|
|
|
|
for _, mu := range mm.evict {
|
|
|
|
key := mu.key
|
|
|
|
mu.key = ""
|
|
|
|
delete(mm.mumap, key)
|
|
|
|
mm.mpool.Release(mu)
|
|
|
|
}
|
2022-01-24 16:35:13 +00:00
|
|
|
|
2022-11-05 12:13:07 +00:00
|
|
|
// Reset map state
|
|
|
|
mm.evict = mm.evict[:0]
|
|
|
|
mm.state = stateUnlockd
|
|
|
|
mm.mpool.GC()
|
|
|
|
mm.qpool.GC()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unlock map
|
|
|
|
mm.mapmu.Unlock()
|
|
|
|
}()
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
2021-09-11 20:12:47 +01:00
|
|
|
|
2022-01-24 16:35:13 +00:00
|
|
|
// RLockMap acquires a read lock over the entire map, returning a lock state for acquiring key read locks.
|
|
|
|
// Please note that the 'unlock()' function will block until all keys locked from this state are unlocked.
|
|
|
|
func (mm *MutexMap) RLockMap() *LockState {
|
2022-03-08 11:56:53 +00:00
|
|
|
mm.lockMap(lockTypeRead | lockTypeMap)
|
|
|
|
return &LockState{
|
|
|
|
mmap: mm,
|
|
|
|
ltyp: lockTypeRead,
|
|
|
|
}
|
2021-09-11 20:12:47 +01:00
|
|
|
}
|
|
|
|
|
2022-01-24 16:35:13 +00:00
|
|
|
// LockMap acquires a write lock over the entire map, returning a lock state for acquiring key read/write locks.
|
|
|
|
// Please note that the 'unlock()' function will block until all keys locked from this state are unlocked.
|
|
|
|
func (mm *MutexMap) LockMap() *LockState {
|
2022-03-08 11:56:53 +00:00
|
|
|
mm.lockMap(lockTypeWrite | lockTypeMap)
|
|
|
|
return &LockState{
|
|
|
|
mmap: mm,
|
|
|
|
ltyp: lockTypeWrite,
|
|
|
|
}
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RLock acquires a mutex read lock for supplied key, returning an RUnlock function.
|
|
|
|
func (mm *MutexMap) RLock(key string) (runlock func()) {
|
2022-03-08 11:56:53 +00:00
|
|
|
return mm.lock(key, lockTypeRead)
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Lock acquires a mutex write lock for supplied key, returning an Unlock function.
|
|
|
|
func (mm *MutexMap) Lock(key string) (unlock func()) {
|
2022-03-08 11:56:53 +00:00
|
|
|
return mm.lock(key, lockTypeWrite)
|
2021-09-11 20:12:47 +01:00
|
|
|
}
|
|
|
|
|
2022-01-24 16:35:13 +00:00
|
|
|
// LockState represents a window to a locked MutexMap.
|
|
|
|
type LockState struct {
|
|
|
|
wait sync.WaitGroup
|
|
|
|
mmap *MutexMap
|
|
|
|
done uint32
|
2022-03-08 11:56:53 +00:00
|
|
|
ltyp uint8
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
2021-09-11 20:12:47 +01:00
|
|
|
|
2022-01-24 16:35:13 +00:00
|
|
|
// Lock: see MutexMap.Lock() definition. Will panic if map only read locked.
|
|
|
|
func (st *LockState) Lock(key string) (unlock func()) {
|
2022-03-08 11:56:53 +00:00
|
|
|
return st.lock(key, lockTypeWrite)
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RLock: see MutexMap.RLock() definition.
|
|
|
|
func (st *LockState) RLock(key string) (runlock func()) {
|
2022-03-08 11:56:53 +00:00
|
|
|
return st.lock(key, lockTypeRead)
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// lock: see MutexMap.lock() definition.
|
|
|
|
func (st *LockState) lock(key string, lt uint8) func() {
|
2022-01-24 16:35:13 +00:00
|
|
|
st.wait.Add(1) // track lock
|
2021-09-11 20:12:47 +01:00
|
|
|
|
2022-01-24 16:35:13 +00:00
|
|
|
if atomic.LoadUint32(&st.done) == 1 {
|
2022-03-08 11:56:53 +00:00
|
|
|
panic("called (r)lock on unlocked state")
|
2022-01-24 16:35:13 +00:00
|
|
|
} else if lt&lockTypeWrite != 0 &&
|
|
|
|
st.ltyp&lockTypeWrite == 0 {
|
2022-03-08 11:56:53 +00:00
|
|
|
panic("called lock on rlocked map")
|
2022-01-24 16:35:13 +00:00
|
|
|
}
|
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
var ok bool
|
|
|
|
var mu *rwmutex
|
|
|
|
|
|
|
|
// Spin lock until returns true
|
2022-01-24 16:35:13 +00:00
|
|
|
st.mmap.spinLock(func() bool {
|
2022-03-08 11:56:53 +00:00
|
|
|
// Check not overloaded
|
|
|
|
if !(st.mmap.count < st.mmap.maxmu) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure mutex at key
|
|
|
|
// is in lockable state
|
|
|
|
mu, ok = st.mmap.mumap[key]
|
|
|
|
return !ok || mu.CanLock(lt)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Incr count
|
|
|
|
st.mmap.count++
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
// No mutex found for key
|
|
|
|
|
|
|
|
// Alloc from pool
|
|
|
|
v := st.mmap.mpool.Acquire()
|
|
|
|
mu = v.(*rwmutex)
|
|
|
|
st.mmap.mumap[key] = mu
|
|
|
|
|
|
|
|
// Set our key
|
|
|
|
mu.key = key
|
|
|
|
|
|
|
|
// Queue for eviction
|
|
|
|
st.mmap.evict = append(st.mmap.evict, mu)
|
|
|
|
}
|
2021-09-11 20:12:47 +01:00
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
// Lock mutex
|
|
|
|
mu.Lock(lt)
|
|
|
|
|
|
|
|
// Unlock map
|
|
|
|
st.mmap.mapmu.Unlock()
|
2022-01-24 16:35:13 +00:00
|
|
|
|
|
|
|
return func() {
|
2022-03-08 11:56:53 +00:00
|
|
|
st.mmap.mapmu.Lock()
|
|
|
|
mu.Unlock()
|
2022-11-05 12:13:07 +00:00
|
|
|
st.mmap.cleanup()
|
2022-03-08 11:56:53 +00:00
|
|
|
st.wait.Add(-1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnlockMap will close this state and release the currently locked map.
|
|
|
|
func (st *LockState) UnlockMap() {
|
|
|
|
if !atomic.CompareAndSwapUint32(&st.done, 0, 1) {
|
|
|
|
panic("called unlockmap on expired state")
|
|
|
|
}
|
|
|
|
st.wait.Wait()
|
|
|
|
st.mmap.mapmu.Lock()
|
2022-11-05 12:13:07 +00:00
|
|
|
st.mmap.cleanup()
|
2022-03-08 11:56:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// rwmutex is a very simple *representation* of a read-write
|
|
|
|
// mutex, though not one in implementation. it works by
|
|
|
|
// tracking the lock state for a given map key, which is
|
|
|
|
// protected by the map's mutex.
|
|
|
|
type rwmutex struct {
|
2022-11-05 12:13:07 +00:00
|
|
|
rcnt int32 // read lock count
|
|
|
|
lock uint8 // lock type
|
|
|
|
key string // map key
|
2022-03-08 11:56:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (mu *rwmutex) CanLock(lt uint8) bool {
|
|
|
|
return mu.lock == 0 ||
|
|
|
|
(mu.lock&lockTypeRead != 0 && lt&lockTypeRead != 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mu *rwmutex) Lock(lt uint8) {
|
2022-11-05 12:13:07 +00:00
|
|
|
// Set lock type
|
2022-03-08 11:56:53 +00:00
|
|
|
mu.lock = lt
|
2022-11-05 12:13:07 +00:00
|
|
|
|
2022-03-08 11:56:53 +00:00
|
|
|
if lt&lockTypeRead != 0 {
|
2022-11-05 12:13:07 +00:00
|
|
|
// RLock, increment
|
2022-03-08 11:56:53 +00:00
|
|
|
mu.rcnt++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mu *rwmutex) Unlock() {
|
2022-11-05 12:13:07 +00:00
|
|
|
if mu.rcnt > 0 {
|
|
|
|
// RUnlock
|
|
|
|
mu.rcnt--
|
|
|
|
} else {
|
|
|
|
// Total unlock
|
2022-03-08 11:56:53 +00:00
|
|
|
mu.lock = 0
|
2021-09-11 20:12:47 +01:00
|
|
|
}
|
|
|
|
}
|