forked from dgraph-io/dgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lock.go
76 lines (64 loc) · 1.35 KB
/
lock.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package x
import (
"sync"
"sync/atomic"
)
// SafeLock can be used in place of sync.RWMutex
type SafeMutex struct {
m sync.RWMutex
wait *SafeWait
writer int32
readers int32
}
func (s *SafeMutex) Lock() {
s.m.Lock()
AssertTrue(atomic.AddInt32(&s.writer, 1) == 1)
}
func (s *SafeMutex) Unlock() {
AssertTrue(atomic.AddInt32(&s.writer, -1) == 0)
s.m.Unlock()
}
func (s *SafeMutex) AssertLock() {
AssertTrue(atomic.LoadInt32(&s.writer) == 1)
}
func (s *SafeMutex) RLock() {
s.m.RLock()
atomic.AddInt32(&s.readers, 1)
}
func (s *SafeMutex) RUnlock() {
atomic.AddInt32(&s.readers, -1)
s.m.RUnlock()
}
func (s *SafeMutex) AssertRLock() {
AssertTrue(atomic.LoadInt32(&s.readers) > 0 ||
atomic.LoadInt32(&s.writer) == 1)
}
type SafeWait struct {
wg sync.WaitGroup
waiting int32
}
func (s *SafeWait) Done() {
AssertTrue(s != nil && atomic.LoadInt32(&s.waiting) > 0)
s.wg.Done()
atomic.AddInt32(&s.waiting, -1)
}
func (s *SafeMutex) StartWait() *SafeWait {
s.AssertLock()
if s.wait != nil {
AssertTrue(atomic.LoadInt32(&s.wait.waiting) == 0)
}
s.wait = new(SafeWait)
s.wait.wg = sync.WaitGroup{}
s.wait.wg.Add(1)
atomic.AddInt32(&s.wait.waiting, 1)
return s.wait
}
func (s *SafeMutex) Wait() {
s.AssertRLock()
if s.wait == nil {
return
}
atomic.AddInt32(&s.wait.waiting, 1)
s.wait.wg.Wait()
atomic.AddInt32(&s.wait.waiting, -1)
}