mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
49 lines
1 KiB
Go
49 lines
1 KiB
Go
package quic
|
|
|
|
type sendQueue struct {
|
|
queue chan *packedPacket
|
|
closeCalled chan struct{} // runStopped when Close() is called
|
|
runStopped chan struct{} // runStopped when the run loop returns
|
|
conn connection
|
|
}
|
|
|
|
func newSendQueue(conn connection) *sendQueue {
|
|
s := &sendQueue{
|
|
conn: conn,
|
|
runStopped: make(chan struct{}),
|
|
closeCalled: make(chan struct{}),
|
|
queue: make(chan *packedPacket, 1),
|
|
}
|
|
return s
|
|
}
|
|
|
|
func (h *sendQueue) Send(p *packedPacket) {
|
|
h.queue <- p
|
|
}
|
|
|
|
func (h *sendQueue) Run() error {
|
|
defer close(h.runStopped)
|
|
var shouldClose bool
|
|
for {
|
|
if shouldClose && len(h.queue) == 0 {
|
|
return nil
|
|
}
|
|
select {
|
|
case <-h.closeCalled:
|
|
h.closeCalled = nil // prevent this case from being selected again
|
|
// make sure that all queued packets are actually sent out
|
|
shouldClose = true
|
|
case p := <-h.queue:
|
|
if err := h.conn.Write(p.raw); err != nil {
|
|
return err
|
|
}
|
|
p.buffer.Release()
|
|
}
|
|
}
|
|
}
|
|
|
|
func (h *sendQueue) Close() {
|
|
close(h.closeCalled)
|
|
// wait until the run loop returned
|
|
<-h.runStopped
|
|
}
|