-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathdatagram.go
224 lines (201 loc) · 4.3 KB
/
datagram.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
package quic
import (
"io"
"net"
"os"
"sync"
"time"
)
// Datagram provides asynchronous APIs to interact which QUIC datagram.
// All Datagram functions must be used in a separated goroutine that is
// different to the connection callback.
// For example:
//
// func (handler) Serve(conn *quic.Conn, events []transport.Event) {
// for _, e := range events {
// switch e.Type {
// case transport.EventDatagramWritable:
// go func(datagram *quic.Datagram) {
// // Working on the datagram.
// }(conn.Datagram())
// }
// }
// }
//
// Datagram implements net.Conn.
type Datagram struct {
conn *Conn
// Writing
wrMu sync.Mutex
wrCh chan io.Writer
wrDl deadlineTimer
// Reading
rdMu sync.Mutex
rdCh chan io.Reader
rdDl deadlineTimer
closeOnce sync.Once
closeCh chan struct{}
// Due to asynchronous operators, application may not fully read data when the connection is closed.
// This datagram needs to own the QUIC Datagram in this case so that the application can continue reading.
closeErr error
closeRd io.Reader
}
var (
_ net.Conn = (*Datagram)(nil)
)
func newDatagram(conn *Conn) *Datagram {
s := &Datagram{
conn: conn,
wrCh: make(chan io.Writer),
rdCh: make(chan io.Reader),
closeCh: make(chan struct{}),
}
s.wrDl.init()
s.rdDl.init()
return s
}
// Write writes data to the stream.
func (s *Datagram) Write(b []byte) (int, error) {
select {
case <-s.closeCh:
return 0, s.closeErr
default:
s.wrMu.Lock()
defer s.wrMu.Unlock()
return s.writeLocked(b)
}
}
func (s *Datagram) writeLocked(b []byte) (n int, err error) {
cmd := connCommand{
cmd: cmdDatagramWrite,
}
// Datagram should always be written as a whole so len(b) is returned.
select {
case <-s.closeCh:
err = s.closeErr
return
case <-s.wrDl.ch:
err = os.ErrDeadlineExceeded
return
case s.conn.cmdCh <- cmd:
for {
select {
case <-s.closeCh:
err = s.closeErr
return
case <-s.wrDl.ch:
err = os.ErrDeadlineExceeded
return
case w := <-s.wrCh:
n, err = w.Write(b)
s.wrCh <- nil // Done writing
if err != nil || n > 0 {
return
}
}
}
}
}
// Read reads datagram from the connection.
func (s *Datagram) Read(b []byte) (int, error) {
s.rdMu.Lock()
defer s.rdMu.Unlock()
select {
case <-s.closeCh:
return s.readClosed(b)
default:
return s.readLocked(b)
}
}
func (s *Datagram) readLocked(b []byte) (n int, err error) {
cmd := connCommand{
cmd: cmdDatagramRead,
}
select {
case <-s.closeCh:
return s.readClosed(b)
case <-s.rdDl.ch:
err = os.ErrDeadlineExceeded
return
case s.conn.cmdCh <- cmd:
for {
select {
case <-s.closeCh:
return s.readClosed(b)
case <-s.rdDl.ch:
err = os.ErrDeadlineExceeded
return
case r := <-s.rdCh:
n, err = r.Read(b)
s.rdCh <- nil
if err != nil || n > 0 || len(b) == 0 {
return
}
}
}
}
}
func (s *Datagram) readClosed(b []byte) (int, error) {
if s.closeRd == nil {
return 0, s.closeErr
}
n, err := s.closeRd.Read(b)
if err == nil && n == 0 {
// Nothing else to read
err = s.closeErr
}
return n, err
}
// Close on Datagram does not do anything.
func (s *Datagram) Close() error {
return nil
}
// LocalAddr returns the local network address.
func (s *Datagram) LocalAddr() net.Addr {
return s.conn.LocalAddr()
}
// RemoteAddr returns the remote network address.
func (s *Datagram) RemoteAddr() net.Addr {
return s.conn.RemoteAddr()
}
// SetDeadline sets the read and write deadlines associated with the stream.
func (s *Datagram) SetDeadline(t time.Time) error {
s.SetWriteDeadline(t)
s.SetReadDeadline(t)
return nil
}
// SetWriteDeadline sets the write deadline associated with the stream.
func (s *Datagram) SetWriteDeadline(t time.Time) error {
s.wrMu.Lock()
s.wrDl.setDeadline(t)
s.wrMu.Unlock()
return nil
}
// SetReadDeadline sets the read deadline associated with the stream.
func (s *Datagram) SetReadDeadline(t time.Time) error {
s.rdMu.Lock()
s.rdDl.setDeadline(t)
s.rdMu.Unlock()
return nil
}
func (s *Datagram) sendWriter(w io.Writer) {
select {
case s.wrCh <- w:
<-s.wrCh // Wait
default:
}
}
func (s *Datagram) sendReader(w io.Reader) {
select {
case s.rdCh <- w:
<-s.rdCh // Wait
default:
}
}
func (s *Datagram) setClosed(err error, rd io.Reader) {
s.closeOnce.Do(func() {
s.closeErr = err
s.closeRd = rd
close(s.closeCh)
})
}