-
Notifications
You must be signed in to change notification settings - Fork 211
/
Copy pathconn.go
140 lines (109 loc) · 2.2 KB
/
conn.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package noise
import (
"bufio"
"encoding/binary"
"io"
"net"
"sync"
)
type connWriterState byte
const (
connWriterInit connWriterState = iota
connWriterRunning
connWriterFlushing
connWriterClosed
)
type connWriter struct {
sync.Mutex
state connWriterState
pending [][]byte
cond sync.Cond
}
func newConnWriter() *connWriter {
c := &connWriter{state: connWriterInit}
c.cond.L = &c.Mutex
return c
}
func (c *connWriter) close() {
c.Lock()
defer c.Unlock()
if c.state == connWriterInit || c.state == connWriterClosed {
return
}
c.state = connWriterFlushing
c.cond.Signal()
for c.state != connWriterClosed {
c.cond.Wait()
}
}
func (c *connWriter) write(data []byte) {
c.Lock()
defer c.Unlock()
if c.state != connWriterInit && c.state != connWriterRunning {
return
}
c.pending = append(c.pending, data)
c.cond.Broadcast()
}
func (c *connWriter) loop(conn net.Conn) error {
c.Lock()
c.state = connWriterRunning
c.Unlock()
header := make([]byte, 4)
writer := bufio.NewWriter(conn)
defer func() {
c.Lock()
defer c.Unlock()
c.state = connWriterClosed
c.cond.Signal()
}()
for {
c.Lock()
for c.state == connWriterRunning && len(c.pending) == 0 {
c.cond.Wait()
}
pending, state := c.pending, c.state
c.pending = nil
c.Unlock()
if len(pending) == 0 && state == connWriterFlushing {
return nil
}
for _, data := range pending {
binary.BigEndian.PutUint32(header[:4], uint32(len(data)))
if _, err := writer.Write(header); err != nil {
return err
}
if _, err := writer.Write(data); err != nil {
return err
}
}
if err := writer.Flush(); err != nil {
return err
}
}
}
type connReader struct {
pending chan []byte
}
func newConnReader() *connReader {
return &connReader{pending: make(chan []byte, 1024)}
}
func (c *connReader) loop(conn net.Conn) error {
defer close(c.pending)
header := make([]byte, 4)
reader := bufio.NewReader(conn)
for {
if _, err := io.ReadFull(reader, header); err != nil {
return err
}
size := binary.BigEndian.Uint32(header[:4])
data := make([]byte, size)
if _, err := io.ReadFull(reader, data); err != nil {
return err
}
select {
case c.pending <- data:
default:
}
}
}