mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
implement a datagram queue
This commit is contained in:
parent
e951646fb6
commit
c47ccab930
2 changed files with 105 additions and 0 deletions
51
datagram_queue.go
Normal file
51
datagram_queue.go
Normal file
|
@ -0,0 +1,51 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"sync"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
||||
)
|
||||
|
||||
type datagramQueue struct {
|
||||
mutex sync.Mutex
|
||||
queue chan *wire.DatagramFrame
|
||||
|
||||
closeErr error
|
||||
closed chan struct{}
|
||||
|
||||
hasData func()
|
||||
}
|
||||
|
||||
func newDatagramQueue(hasData func()) *datagramQueue {
|
||||
return &datagramQueue{
|
||||
queue: make(chan *wire.DatagramFrame),
|
||||
hasData: hasData,
|
||||
closed: make(chan struct{}),
|
||||
}
|
||||
}
|
||||
|
||||
// AddAndWait queues a new DATAGRAM frame.
|
||||
// It blocks until the frame has been dequeued.
|
||||
func (h *datagramQueue) AddAndWait(f *wire.DatagramFrame) error {
|
||||
h.hasData()
|
||||
select {
|
||||
case h.queue <- f:
|
||||
return nil
|
||||
case <-h.closed:
|
||||
return h.closeErr
|
||||
}
|
||||
}
|
||||
|
||||
func (h *datagramQueue) Get() *wire.DatagramFrame {
|
||||
select {
|
||||
case f := <-h.queue:
|
||||
return f
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
func (h *datagramQueue) CloseWithError(e error) {
|
||||
h.closeErr = e
|
||||
close(h.closed)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue