-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathback_pressure.go
77 lines (64 loc) · 1.07 KB
/
back_pressure.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
77
package remotedialer
import (
"context"
"sync"
)
type backPressure struct {
cond sync.Cond
c *connection
paused bool
closed bool
}
func newBackPressure(c *connection) *backPressure {
return &backPressure{
cond: sync.Cond{
L: &sync.Mutex{},
},
c: c,
paused: false,
}
}
func (b *backPressure) OnPause() {
b.cond.L.Lock()
defer b.cond.L.Unlock()
b.paused = true
b.cond.Broadcast()
}
func (b *backPressure) Close() {
b.cond.L.Lock()
defer b.cond.L.Unlock()
b.closed = true
b.cond.Broadcast()
}
func (b *backPressure) OnResume() {
b.cond.L.Lock()
defer b.cond.L.Unlock()
b.paused = false
b.cond.Broadcast()
}
func (b *backPressure) Pause() {
b.cond.L.Lock()
defer b.cond.L.Unlock()
if b.paused {
return
}
b.c.Pause()
b.paused = true
}
func (b *backPressure) Resume() {
b.cond.L.Lock()
defer b.cond.L.Unlock()
if !b.paused {
return
}
b.c.Resume()
b.paused = false
}
func (b *backPressure) Wait(cancel context.CancelFunc) {
b.cond.L.Lock()
defer b.cond.L.Unlock()
for !b.closed && b.paused {
b.cond.Wait()
cancel()
}
}