mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
use a generic streams map for outgoing streams (#3488)
This commit is contained in:
parent
b6e2608c15
commit
bebff462c8
5 changed files with 70 additions and 510 deletions
|
@ -55,8 +55,8 @@ type streamsMap struct {
|
||||||
newFlowController func(protocol.StreamID) flowcontrol.StreamFlowController
|
newFlowController func(protocol.StreamID) flowcontrol.StreamFlowController
|
||||||
|
|
||||||
mutex sync.Mutex
|
mutex sync.Mutex
|
||||||
outgoingBidiStreams *outgoingBidiStreamsMap
|
outgoingBidiStreams *outgoingStreamsMap[streamI]
|
||||||
outgoingUniStreams *outgoingUniStreamsMap
|
outgoingUniStreams *outgoingStreamsMap[sendStreamI]
|
||||||
incomingBidiStreams *incomingBidiStreamsMap
|
incomingBidiStreams *incomingBidiStreamsMap
|
||||||
incomingUniStreams *incomingUniStreamsMap
|
incomingUniStreams *incomingUniStreamsMap
|
||||||
reset bool
|
reset bool
|
||||||
|
@ -85,7 +85,8 @@ func newStreamsMap(
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *streamsMap) initMaps() {
|
func (m *streamsMap) initMaps() {
|
||||||
m.outgoingBidiStreams = newOutgoingBidiStreamsMap(
|
m.outgoingBidiStreams = newOutgoingStreamsMap(
|
||||||
|
protocol.StreamTypeBidi,
|
||||||
func(num protocol.StreamNum) streamI {
|
func(num protocol.StreamNum) streamI {
|
||||||
id := num.StreamID(protocol.StreamTypeBidi, m.perspective)
|
id := num.StreamID(protocol.StreamTypeBidi, m.perspective)
|
||||||
return newStream(id, m.sender, m.newFlowController(id), m.version)
|
return newStream(id, m.sender, m.newFlowController(id), m.version)
|
||||||
|
@ -100,7 +101,8 @@ func (m *streamsMap) initMaps() {
|
||||||
m.maxIncomingBidiStreams,
|
m.maxIncomingBidiStreams,
|
||||||
m.sender.queueControlFrame,
|
m.sender.queueControlFrame,
|
||||||
)
|
)
|
||||||
m.outgoingUniStreams = newOutgoingUniStreamsMap(
|
m.outgoingUniStreams = newOutgoingStreamsMap(
|
||||||
|
protocol.StreamTypeUni,
|
||||||
func(num protocol.StreamNum) sendStreamI {
|
func(num protocol.StreamNum) sendStreamI {
|
||||||
id := num.StreamID(protocol.StreamTypeUni, m.perspective)
|
id := num.StreamID(protocol.StreamTypeUni, m.perspective)
|
||||||
return newSendStream(id, m.sender, m.newFlowController(id), m.version)
|
return newSendStream(id, m.sender, m.newFlowController(id), m.version)
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
// This file was automatically generated by genny.
|
|
||||||
// Any changes will be lost if this file is regenerated.
|
|
||||||
// see https://github.com/cheekybits/genny
|
|
||||||
|
|
||||||
package quic
|
package quic
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -12,10 +8,16 @@ import (
|
||||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
"github.com/lucas-clemente/quic-go/internal/wire"
|
||||||
)
|
)
|
||||||
|
|
||||||
type outgoingUniStreamsMap struct {
|
type outgoingStream interface {
|
||||||
|
updateSendWindow(protocol.ByteCount)
|
||||||
|
closeForShutdown(error)
|
||||||
|
}
|
||||||
|
|
||||||
|
type outgoingStreamsMap[T outgoingStream] struct {
|
||||||
mutex sync.RWMutex
|
mutex sync.RWMutex
|
||||||
|
|
||||||
streams map[protocol.StreamNum]sendStreamI
|
streamType protocol.StreamType
|
||||||
|
streams map[protocol.StreamNum]T
|
||||||
|
|
||||||
openQueue map[uint64]chan struct{}
|
openQueue map[uint64]chan struct{}
|
||||||
lowestInQueue uint64
|
lowestInQueue uint64
|
||||||
|
@ -25,18 +27,20 @@ type outgoingUniStreamsMap struct {
|
||||||
maxStream protocol.StreamNum // the maximum stream ID we're allowed to open
|
maxStream protocol.StreamNum // the maximum stream ID we're allowed to open
|
||||||
blockedSent bool // was a STREAMS_BLOCKED sent for the current maxStream
|
blockedSent bool // was a STREAMS_BLOCKED sent for the current maxStream
|
||||||
|
|
||||||
newStream func(protocol.StreamNum) sendStreamI
|
newStream func(protocol.StreamNum) T
|
||||||
queueStreamIDBlocked func(*wire.StreamsBlockedFrame)
|
queueStreamIDBlocked func(*wire.StreamsBlockedFrame)
|
||||||
|
|
||||||
closeErr error
|
closeErr error
|
||||||
}
|
}
|
||||||
|
|
||||||
func newOutgoingUniStreamsMap(
|
func newOutgoingStreamsMap[T outgoingStream](
|
||||||
newStream func(protocol.StreamNum) sendStreamI,
|
streamType protocol.StreamType,
|
||||||
|
newStream func(protocol.StreamNum) T,
|
||||||
queueControlFrame func(wire.Frame),
|
queueControlFrame func(wire.Frame),
|
||||||
) *outgoingUniStreamsMap {
|
) *outgoingStreamsMap[T] {
|
||||||
return &outgoingUniStreamsMap{
|
return &outgoingStreamsMap[T]{
|
||||||
streams: make(map[protocol.StreamNum]sendStreamI),
|
streamType: streamType,
|
||||||
|
streams: make(map[protocol.StreamNum]T),
|
||||||
openQueue: make(map[uint64]chan struct{}),
|
openQueue: make(map[uint64]chan struct{}),
|
||||||
maxStream: protocol.InvalidStreamNum,
|
maxStream: protocol.InvalidStreamNum,
|
||||||
nextStream: 1,
|
nextStream: 1,
|
||||||
|
@ -45,32 +49,32 @@ func newOutgoingUniStreamsMap(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *outgoingUniStreamsMap) OpenStream() (sendStreamI, error) {
|
func (m *outgoingStreamsMap[T]) OpenStream() (T, error) {
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
defer m.mutex.Unlock()
|
defer m.mutex.Unlock()
|
||||||
|
|
||||||
if m.closeErr != nil {
|
if m.closeErr != nil {
|
||||||
return nil, m.closeErr
|
return *new(T), m.closeErr
|
||||||
}
|
}
|
||||||
|
|
||||||
// if there are OpenStreamSync calls waiting, return an error here
|
// if there are OpenStreamSync calls waiting, return an error here
|
||||||
if len(m.openQueue) > 0 || m.nextStream > m.maxStream {
|
if len(m.openQueue) > 0 || m.nextStream > m.maxStream {
|
||||||
m.maybeSendBlockedFrame()
|
m.maybeSendBlockedFrame()
|
||||||
return nil, streamOpenErr{errTooManyOpenStreams}
|
return *new(T), streamOpenErr{errTooManyOpenStreams}
|
||||||
}
|
}
|
||||||
return m.openStream(), nil
|
return m.openStream(), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *outgoingUniStreamsMap) OpenStreamSync(ctx context.Context) (sendStreamI, error) {
|
func (m *outgoingStreamsMap[T]) OpenStreamSync(ctx context.Context) (T, error) {
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
defer m.mutex.Unlock()
|
defer m.mutex.Unlock()
|
||||||
|
|
||||||
if m.closeErr != nil {
|
if m.closeErr != nil {
|
||||||
return nil, m.closeErr
|
return *new(T), m.closeErr
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := ctx.Err(); err != nil {
|
if err := ctx.Err(); err != nil {
|
||||||
return nil, err
|
return *new(T), err
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(m.openQueue) == 0 && m.nextStream <= m.maxStream {
|
if len(m.openQueue) == 0 && m.nextStream <= m.maxStream {
|
||||||
|
@ -92,13 +96,13 @@ func (m *outgoingUniStreamsMap) OpenStreamSync(ctx context.Context) (sendStreamI
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
delete(m.openQueue, queuePos)
|
delete(m.openQueue, queuePos)
|
||||||
return nil, ctx.Err()
|
return *new(T), ctx.Err()
|
||||||
case <-waitChan:
|
case <-waitChan:
|
||||||
}
|
}
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
|
|
||||||
if m.closeErr != nil {
|
if m.closeErr != nil {
|
||||||
return nil, m.closeErr
|
return *new(T), m.closeErr
|
||||||
}
|
}
|
||||||
if m.nextStream > m.maxStream {
|
if m.nextStream > m.maxStream {
|
||||||
// no stream available. Continue waiting
|
// no stream available. Continue waiting
|
||||||
|
@ -112,7 +116,7 @@ func (m *outgoingUniStreamsMap) OpenStreamSync(ctx context.Context) (sendStreamI
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *outgoingUniStreamsMap) openStream() sendStreamI {
|
func (m *outgoingStreamsMap[T]) openStream() T {
|
||||||
s := m.newStream(m.nextStream)
|
s := m.newStream(m.nextStream)
|
||||||
m.streams[m.nextStream] = s
|
m.streams[m.nextStream] = s
|
||||||
m.nextStream++
|
m.nextStream++
|
||||||
|
@ -121,7 +125,7 @@ func (m *outgoingUniStreamsMap) openStream() sendStreamI {
|
||||||
|
|
||||||
// maybeSendBlockedFrame queues a STREAMS_BLOCKED frame for the current stream offset,
|
// maybeSendBlockedFrame queues a STREAMS_BLOCKED frame for the current stream offset,
|
||||||
// if we haven't sent one for this offset yet
|
// if we haven't sent one for this offset yet
|
||||||
func (m *outgoingUniStreamsMap) maybeSendBlockedFrame() {
|
func (m *outgoingStreamsMap[T]) maybeSendBlockedFrame() {
|
||||||
if m.blockedSent {
|
if m.blockedSent {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -131,17 +135,17 @@ func (m *outgoingUniStreamsMap) maybeSendBlockedFrame() {
|
||||||
streamNum = m.maxStream
|
streamNum = m.maxStream
|
||||||
}
|
}
|
||||||
m.queueStreamIDBlocked(&wire.StreamsBlockedFrame{
|
m.queueStreamIDBlocked(&wire.StreamsBlockedFrame{
|
||||||
Type: protocol.StreamTypeUni,
|
Type: m.streamType,
|
||||||
StreamLimit: streamNum,
|
StreamLimit: streamNum,
|
||||||
})
|
})
|
||||||
m.blockedSent = true
|
m.blockedSent = true
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *outgoingUniStreamsMap) GetStream(num protocol.StreamNum) (sendStreamI, error) {
|
func (m *outgoingStreamsMap[T]) GetStream(num protocol.StreamNum) (T, error) {
|
||||||
m.mutex.RLock()
|
m.mutex.RLock()
|
||||||
if num >= m.nextStream {
|
if num >= m.nextStream {
|
||||||
m.mutex.RUnlock()
|
m.mutex.RUnlock()
|
||||||
return nil, streamError{
|
return *new(T), streamError{
|
||||||
message: "peer attempted to open stream %d",
|
message: "peer attempted to open stream %d",
|
||||||
nums: []protocol.StreamNum{num},
|
nums: []protocol.StreamNum{num},
|
||||||
}
|
}
|
||||||
|
@ -151,7 +155,7 @@ func (m *outgoingUniStreamsMap) GetStream(num protocol.StreamNum) (sendStreamI,
|
||||||
return s, nil
|
return s, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *outgoingUniStreamsMap) DeleteStream(num protocol.StreamNum) error {
|
func (m *outgoingStreamsMap[T]) DeleteStream(num protocol.StreamNum) error {
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
defer m.mutex.Unlock()
|
defer m.mutex.Unlock()
|
||||||
|
|
||||||
|
@ -165,7 +169,7 @@ func (m *outgoingUniStreamsMap) DeleteStream(num protocol.StreamNum) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *outgoingUniStreamsMap) SetMaxStream(num protocol.StreamNum) {
|
func (m *outgoingStreamsMap[T]) SetMaxStream(num protocol.StreamNum) {
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
defer m.mutex.Unlock()
|
defer m.mutex.Unlock()
|
||||||
|
|
||||||
|
@ -183,7 +187,7 @@ func (m *outgoingUniStreamsMap) SetMaxStream(num protocol.StreamNum) {
|
||||||
// UpdateSendWindow is called when the peer's transport parameters are received.
|
// UpdateSendWindow is called when the peer's transport parameters are received.
|
||||||
// Only in the case of a 0-RTT handshake will we have open streams at this point.
|
// Only in the case of a 0-RTT handshake will we have open streams at this point.
|
||||||
// We might need to update the send window, in case the server increased it.
|
// We might need to update the send window, in case the server increased it.
|
||||||
func (m *outgoingUniStreamsMap) UpdateSendWindow(limit protocol.ByteCount) {
|
func (m *outgoingStreamsMap[T]) UpdateSendWindow(limit protocol.ByteCount) {
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
for _, str := range m.streams {
|
for _, str := range m.streams {
|
||||||
str.updateSendWindow(limit)
|
str.updateSendWindow(limit)
|
||||||
|
@ -192,7 +196,7 @@ func (m *outgoingUniStreamsMap) UpdateSendWindow(limit protocol.ByteCount) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// unblockOpenSync unblocks the next OpenStreamSync go-routine to open a new stream
|
// unblockOpenSync unblocks the next OpenStreamSync go-routine to open a new stream
|
||||||
func (m *outgoingUniStreamsMap) unblockOpenSync() {
|
func (m *outgoingStreamsMap[T]) unblockOpenSync() {
|
||||||
if len(m.openQueue) == 0 {
|
if len(m.openQueue) == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -211,7 +215,7 @@ func (m *outgoingUniStreamsMap) unblockOpenSync() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *outgoingUniStreamsMap) CloseWithError(err error) {
|
func (m *outgoingStreamsMap[T]) CloseWithError(err error) {
|
||||||
m.mutex.Lock()
|
m.mutex.Lock()
|
||||||
m.closeErr = err
|
m.closeErr = err
|
||||||
for _, str := range m.streams {
|
for _, str := range m.streams {
|
|
@ -1,226 +0,0 @@
|
||||||
// This file was automatically generated by genny.
|
|
||||||
// Any changes will be lost if this file is regenerated.
|
|
||||||
// see https://github.com/cheekybits/genny
|
|
||||||
|
|
||||||
package quic
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"sync"
|
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
||||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
|
||||||
)
|
|
||||||
|
|
||||||
type outgoingBidiStreamsMap struct {
|
|
||||||
mutex sync.RWMutex
|
|
||||||
|
|
||||||
streams map[protocol.StreamNum]streamI
|
|
||||||
|
|
||||||
openQueue map[uint64]chan struct{}
|
|
||||||
lowestInQueue uint64
|
|
||||||
highestInQueue uint64
|
|
||||||
|
|
||||||
nextStream protocol.StreamNum // stream ID of the stream returned by OpenStream(Sync)
|
|
||||||
maxStream protocol.StreamNum // the maximum stream ID we're allowed to open
|
|
||||||
blockedSent bool // was a STREAMS_BLOCKED sent for the current maxStream
|
|
||||||
|
|
||||||
newStream func(protocol.StreamNum) streamI
|
|
||||||
queueStreamIDBlocked func(*wire.StreamsBlockedFrame)
|
|
||||||
|
|
||||||
closeErr error
|
|
||||||
}
|
|
||||||
|
|
||||||
func newOutgoingBidiStreamsMap(
|
|
||||||
newStream func(protocol.StreamNum) streamI,
|
|
||||||
queueControlFrame func(wire.Frame),
|
|
||||||
) *outgoingBidiStreamsMap {
|
|
||||||
return &outgoingBidiStreamsMap{
|
|
||||||
streams: make(map[protocol.StreamNum]streamI),
|
|
||||||
openQueue: make(map[uint64]chan struct{}),
|
|
||||||
maxStream: protocol.InvalidStreamNum,
|
|
||||||
nextStream: 1,
|
|
||||||
newStream: newStream,
|
|
||||||
queueStreamIDBlocked: func(f *wire.StreamsBlockedFrame) { queueControlFrame(f) },
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingBidiStreamsMap) OpenStream() (streamI, error) {
|
|
||||||
m.mutex.Lock()
|
|
||||||
defer m.mutex.Unlock()
|
|
||||||
|
|
||||||
if m.closeErr != nil {
|
|
||||||
return nil, m.closeErr
|
|
||||||
}
|
|
||||||
|
|
||||||
// if there are OpenStreamSync calls waiting, return an error here
|
|
||||||
if len(m.openQueue) > 0 || m.nextStream > m.maxStream {
|
|
||||||
m.maybeSendBlockedFrame()
|
|
||||||
return nil, streamOpenErr{errTooManyOpenStreams}
|
|
||||||
}
|
|
||||||
return m.openStream(), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingBidiStreamsMap) OpenStreamSync(ctx context.Context) (streamI, error) {
|
|
||||||
m.mutex.Lock()
|
|
||||||
defer m.mutex.Unlock()
|
|
||||||
|
|
||||||
if m.closeErr != nil {
|
|
||||||
return nil, m.closeErr
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := ctx.Err(); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(m.openQueue) == 0 && m.nextStream <= m.maxStream {
|
|
||||||
return m.openStream(), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
waitChan := make(chan struct{}, 1)
|
|
||||||
queuePos := m.highestInQueue
|
|
||||||
m.highestInQueue++
|
|
||||||
if len(m.openQueue) == 0 {
|
|
||||||
m.lowestInQueue = queuePos
|
|
||||||
}
|
|
||||||
m.openQueue[queuePos] = waitChan
|
|
||||||
m.maybeSendBlockedFrame()
|
|
||||||
|
|
||||||
for {
|
|
||||||
m.mutex.Unlock()
|
|
||||||
select {
|
|
||||||
case <-ctx.Done():
|
|
||||||
m.mutex.Lock()
|
|
||||||
delete(m.openQueue, queuePos)
|
|
||||||
return nil, ctx.Err()
|
|
||||||
case <-waitChan:
|
|
||||||
}
|
|
||||||
m.mutex.Lock()
|
|
||||||
|
|
||||||
if m.closeErr != nil {
|
|
||||||
return nil, m.closeErr
|
|
||||||
}
|
|
||||||
if m.nextStream > m.maxStream {
|
|
||||||
// no stream available. Continue waiting
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
str := m.openStream()
|
|
||||||
delete(m.openQueue, queuePos)
|
|
||||||
m.lowestInQueue = queuePos + 1
|
|
||||||
m.unblockOpenSync()
|
|
||||||
return str, nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingBidiStreamsMap) openStream() streamI {
|
|
||||||
s := m.newStream(m.nextStream)
|
|
||||||
m.streams[m.nextStream] = s
|
|
||||||
m.nextStream++
|
|
||||||
return s
|
|
||||||
}
|
|
||||||
|
|
||||||
// maybeSendBlockedFrame queues a STREAMS_BLOCKED frame for the current stream offset,
|
|
||||||
// if we haven't sent one for this offset yet
|
|
||||||
func (m *outgoingBidiStreamsMap) maybeSendBlockedFrame() {
|
|
||||||
if m.blockedSent {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
var streamNum protocol.StreamNum
|
|
||||||
if m.maxStream != protocol.InvalidStreamNum {
|
|
||||||
streamNum = m.maxStream
|
|
||||||
}
|
|
||||||
m.queueStreamIDBlocked(&wire.StreamsBlockedFrame{
|
|
||||||
Type: protocol.StreamTypeBidi,
|
|
||||||
StreamLimit: streamNum,
|
|
||||||
})
|
|
||||||
m.blockedSent = true
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingBidiStreamsMap) GetStream(num protocol.StreamNum) (streamI, error) {
|
|
||||||
m.mutex.RLock()
|
|
||||||
if num >= m.nextStream {
|
|
||||||
m.mutex.RUnlock()
|
|
||||||
return nil, streamError{
|
|
||||||
message: "peer attempted to open stream %d",
|
|
||||||
nums: []protocol.StreamNum{num},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
s := m.streams[num]
|
|
||||||
m.mutex.RUnlock()
|
|
||||||
return s, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingBidiStreamsMap) DeleteStream(num protocol.StreamNum) error {
|
|
||||||
m.mutex.Lock()
|
|
||||||
defer m.mutex.Unlock()
|
|
||||||
|
|
||||||
if _, ok := m.streams[num]; !ok {
|
|
||||||
return streamError{
|
|
||||||
message: "tried to delete unknown outgoing stream %d",
|
|
||||||
nums: []protocol.StreamNum{num},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
delete(m.streams, num)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingBidiStreamsMap) SetMaxStream(num protocol.StreamNum) {
|
|
||||||
m.mutex.Lock()
|
|
||||||
defer m.mutex.Unlock()
|
|
||||||
|
|
||||||
if num <= m.maxStream {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
m.maxStream = num
|
|
||||||
m.blockedSent = false
|
|
||||||
if m.maxStream < m.nextStream-1+protocol.StreamNum(len(m.openQueue)) {
|
|
||||||
m.maybeSendBlockedFrame()
|
|
||||||
}
|
|
||||||
m.unblockOpenSync()
|
|
||||||
}
|
|
||||||
|
|
||||||
// UpdateSendWindow is called when the peer's transport parameters are received.
|
|
||||||
// Only in the case of a 0-RTT handshake will we have open streams at this point.
|
|
||||||
// We might need to update the send window, in case the server increased it.
|
|
||||||
func (m *outgoingBidiStreamsMap) UpdateSendWindow(limit protocol.ByteCount) {
|
|
||||||
m.mutex.Lock()
|
|
||||||
for _, str := range m.streams {
|
|
||||||
str.updateSendWindow(limit)
|
|
||||||
}
|
|
||||||
m.mutex.Unlock()
|
|
||||||
}
|
|
||||||
|
|
||||||
// unblockOpenSync unblocks the next OpenStreamSync go-routine to open a new stream
|
|
||||||
func (m *outgoingBidiStreamsMap) unblockOpenSync() {
|
|
||||||
if len(m.openQueue) == 0 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
for qp := m.lowestInQueue; qp <= m.highestInQueue; qp++ {
|
|
||||||
c, ok := m.openQueue[qp]
|
|
||||||
if !ok { // entry was deleted because the context was canceled
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
// unblockOpenSync is called both from OpenStreamSync and from SetMaxStream.
|
|
||||||
// It's sufficient to only unblock OpenStreamSync once.
|
|
||||||
select {
|
|
||||||
case c <- struct{}{}:
|
|
||||||
default:
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingBidiStreamsMap) CloseWithError(err error) {
|
|
||||||
m.mutex.Lock()
|
|
||||||
m.closeErr = err
|
|
||||||
for _, str := range m.streams {
|
|
||||||
str.closeForShutdown(err)
|
|
||||||
}
|
|
||||||
for _, c := range m.openQueue {
|
|
||||||
if c != nil {
|
|
||||||
close(c)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
m.mutex.Unlock()
|
|
||||||
}
|
|
|
@ -1,224 +0,0 @@
|
||||||
package quic
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"sync"
|
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
||||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
|
||||||
)
|
|
||||||
|
|
||||||
//go:generate genny -in $GOFILE -out streams_map_outgoing_bidi.go gen "item=streamI Item=BidiStream streamTypeGeneric=protocol.StreamTypeBidi"
|
|
||||||
//go:generate genny -in $GOFILE -out streams_map_outgoing_uni.go gen "item=sendStreamI Item=UniStream streamTypeGeneric=protocol.StreamTypeUni"
|
|
||||||
type outgoingItemsMap struct {
|
|
||||||
mutex sync.RWMutex
|
|
||||||
|
|
||||||
streams map[protocol.StreamNum]item
|
|
||||||
|
|
||||||
openQueue map[uint64]chan struct{}
|
|
||||||
lowestInQueue uint64
|
|
||||||
highestInQueue uint64
|
|
||||||
|
|
||||||
nextStream protocol.StreamNum // stream ID of the stream returned by OpenStream(Sync)
|
|
||||||
maxStream protocol.StreamNum // the maximum stream ID we're allowed to open
|
|
||||||
blockedSent bool // was a STREAMS_BLOCKED sent for the current maxStream
|
|
||||||
|
|
||||||
newStream func(protocol.StreamNum) item
|
|
||||||
queueStreamIDBlocked func(*wire.StreamsBlockedFrame)
|
|
||||||
|
|
||||||
closeErr error
|
|
||||||
}
|
|
||||||
|
|
||||||
func newOutgoingItemsMap(
|
|
||||||
newStream func(protocol.StreamNum) item,
|
|
||||||
queueControlFrame func(wire.Frame),
|
|
||||||
) *outgoingItemsMap {
|
|
||||||
return &outgoingItemsMap{
|
|
||||||
streams: make(map[protocol.StreamNum]item),
|
|
||||||
openQueue: make(map[uint64]chan struct{}),
|
|
||||||
maxStream: protocol.InvalidStreamNum,
|
|
||||||
nextStream: 1,
|
|
||||||
newStream: newStream,
|
|
||||||
queueStreamIDBlocked: func(f *wire.StreamsBlockedFrame) { queueControlFrame(f) },
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingItemsMap) OpenStream() (item, error) {
|
|
||||||
m.mutex.Lock()
|
|
||||||
defer m.mutex.Unlock()
|
|
||||||
|
|
||||||
if m.closeErr != nil {
|
|
||||||
return nil, m.closeErr
|
|
||||||
}
|
|
||||||
|
|
||||||
// if there are OpenStreamSync calls waiting, return an error here
|
|
||||||
if len(m.openQueue) > 0 || m.nextStream > m.maxStream {
|
|
||||||
m.maybeSendBlockedFrame()
|
|
||||||
return nil, streamOpenErr{errTooManyOpenStreams}
|
|
||||||
}
|
|
||||||
return m.openStream(), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingItemsMap) OpenStreamSync(ctx context.Context) (item, error) {
|
|
||||||
m.mutex.Lock()
|
|
||||||
defer m.mutex.Unlock()
|
|
||||||
|
|
||||||
if m.closeErr != nil {
|
|
||||||
return nil, m.closeErr
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := ctx.Err(); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(m.openQueue) == 0 && m.nextStream <= m.maxStream {
|
|
||||||
return m.openStream(), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
waitChan := make(chan struct{}, 1)
|
|
||||||
queuePos := m.highestInQueue
|
|
||||||
m.highestInQueue++
|
|
||||||
if len(m.openQueue) == 0 {
|
|
||||||
m.lowestInQueue = queuePos
|
|
||||||
}
|
|
||||||
m.openQueue[queuePos] = waitChan
|
|
||||||
m.maybeSendBlockedFrame()
|
|
||||||
|
|
||||||
for {
|
|
||||||
m.mutex.Unlock()
|
|
||||||
select {
|
|
||||||
case <-ctx.Done():
|
|
||||||
m.mutex.Lock()
|
|
||||||
delete(m.openQueue, queuePos)
|
|
||||||
return nil, ctx.Err()
|
|
||||||
case <-waitChan:
|
|
||||||
}
|
|
||||||
m.mutex.Lock()
|
|
||||||
|
|
||||||
if m.closeErr != nil {
|
|
||||||
return nil, m.closeErr
|
|
||||||
}
|
|
||||||
if m.nextStream > m.maxStream {
|
|
||||||
// no stream available. Continue waiting
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
str := m.openStream()
|
|
||||||
delete(m.openQueue, queuePos)
|
|
||||||
m.lowestInQueue = queuePos + 1
|
|
||||||
m.unblockOpenSync()
|
|
||||||
return str, nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingItemsMap) openStream() item {
|
|
||||||
s := m.newStream(m.nextStream)
|
|
||||||
m.streams[m.nextStream] = s
|
|
||||||
m.nextStream++
|
|
||||||
return s
|
|
||||||
}
|
|
||||||
|
|
||||||
// maybeSendBlockedFrame queues a STREAMS_BLOCKED frame for the current stream offset,
|
|
||||||
// if we haven't sent one for this offset yet
|
|
||||||
func (m *outgoingItemsMap) maybeSendBlockedFrame() {
|
|
||||||
if m.blockedSent {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
var streamNum protocol.StreamNum
|
|
||||||
if m.maxStream != protocol.InvalidStreamNum {
|
|
||||||
streamNum = m.maxStream
|
|
||||||
}
|
|
||||||
m.queueStreamIDBlocked(&wire.StreamsBlockedFrame{
|
|
||||||
Type: streamTypeGeneric,
|
|
||||||
StreamLimit: streamNum,
|
|
||||||
})
|
|
||||||
m.blockedSent = true
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingItemsMap) GetStream(num protocol.StreamNum) (item, error) {
|
|
||||||
m.mutex.RLock()
|
|
||||||
if num >= m.nextStream {
|
|
||||||
m.mutex.RUnlock()
|
|
||||||
return nil, streamError{
|
|
||||||
message: "peer attempted to open stream %d",
|
|
||||||
nums: []protocol.StreamNum{num},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
s := m.streams[num]
|
|
||||||
m.mutex.RUnlock()
|
|
||||||
return s, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingItemsMap) DeleteStream(num protocol.StreamNum) error {
|
|
||||||
m.mutex.Lock()
|
|
||||||
defer m.mutex.Unlock()
|
|
||||||
|
|
||||||
if _, ok := m.streams[num]; !ok {
|
|
||||||
return streamError{
|
|
||||||
message: "tried to delete unknown outgoing stream %d",
|
|
||||||
nums: []protocol.StreamNum{num},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
delete(m.streams, num)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingItemsMap) SetMaxStream(num protocol.StreamNum) {
|
|
||||||
m.mutex.Lock()
|
|
||||||
defer m.mutex.Unlock()
|
|
||||||
|
|
||||||
if num <= m.maxStream {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
m.maxStream = num
|
|
||||||
m.blockedSent = false
|
|
||||||
if m.maxStream < m.nextStream-1+protocol.StreamNum(len(m.openQueue)) {
|
|
||||||
m.maybeSendBlockedFrame()
|
|
||||||
}
|
|
||||||
m.unblockOpenSync()
|
|
||||||
}
|
|
||||||
|
|
||||||
// UpdateSendWindow is called when the peer's transport parameters are received.
|
|
||||||
// Only in the case of a 0-RTT handshake will we have open streams at this point.
|
|
||||||
// We might need to update the send window, in case the server increased it.
|
|
||||||
func (m *outgoingItemsMap) UpdateSendWindow(limit protocol.ByteCount) {
|
|
||||||
m.mutex.Lock()
|
|
||||||
for _, str := range m.streams {
|
|
||||||
str.updateSendWindow(limit)
|
|
||||||
}
|
|
||||||
m.mutex.Unlock()
|
|
||||||
}
|
|
||||||
|
|
||||||
// unblockOpenSync unblocks the next OpenStreamSync go-routine to open a new stream
|
|
||||||
func (m *outgoingItemsMap) unblockOpenSync() {
|
|
||||||
if len(m.openQueue) == 0 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
for qp := m.lowestInQueue; qp <= m.highestInQueue; qp++ {
|
|
||||||
c, ok := m.openQueue[qp]
|
|
||||||
if !ok { // entry was deleted because the context was canceled
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
// unblockOpenSync is called both from OpenStreamSync and from SetMaxStream.
|
|
||||||
// It's sufficient to only unblock OpenStreamSync once.
|
|
||||||
select {
|
|
||||||
case c <- struct{}{}:
|
|
||||||
default:
|
|
||||||
}
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *outgoingItemsMap) CloseWithError(err error) {
|
|
||||||
m.mutex.Lock()
|
|
||||||
m.closeErr = err
|
|
||||||
for _, str := range m.streams {
|
|
||||||
str.closeForShutdown(err)
|
|
||||||
}
|
|
||||||
for _, c := range m.openQueue {
|
|
||||||
if c != nil {
|
|
||||||
close(c)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
m.mutex.Unlock()
|
|
||||||
}
|
|
|
@ -18,11 +18,13 @@ import (
|
||||||
|
|
||||||
var _ = Describe("Streams Map (outgoing)", func() {
|
var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
var (
|
var (
|
||||||
m *outgoingItemsMap
|
m *outgoingStreamsMap[*mockGenericStream]
|
||||||
newItem func(num protocol.StreamNum) item
|
newStr func(num protocol.StreamNum) *mockGenericStream
|
||||||
mockSender *MockStreamSender
|
mockSender *MockStreamSender
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const streamType = 42
|
||||||
|
|
||||||
// waitForEnqueued waits until there are n go routines waiting on OpenStreamSync()
|
// waitForEnqueued waits until there are n go routines waiting on OpenStreamSync()
|
||||||
waitForEnqueued := func(n int) {
|
waitForEnqueued := func(n int) {
|
||||||
Eventually(func() int {
|
Eventually(func() int {
|
||||||
|
@ -33,11 +35,11 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
}
|
}
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
newItem = func(num protocol.StreamNum) item {
|
newStr = func(num protocol.StreamNum) *mockGenericStream {
|
||||||
return &mockGenericStream{num: num}
|
return &mockGenericStream{num: num}
|
||||||
}
|
}
|
||||||
mockSender = NewMockStreamSender(mockCtrl)
|
mockSender = NewMockStreamSender(mockCtrl)
|
||||||
m = newOutgoingItemsMap(newItem, mockSender.queueControlFrame)
|
m = newOutgoingStreamsMap[*mockGenericStream](streamType, newStr, mockSender.queueControlFrame)
|
||||||
})
|
})
|
||||||
|
|
||||||
Context("no stream ID limit", func() {
|
Context("no stream ID limit", func() {
|
||||||
|
@ -48,10 +50,10 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
It("opens streams", func() {
|
It("opens streams", func() {
|
||||||
str, err := m.OpenStream()
|
str, err := m.OpenStream()
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(1)))
|
Expect(str.num).To(Equal(protocol.StreamNum(1)))
|
||||||
str, err = m.OpenStream()
|
str, err = m.OpenStream()
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(2)))
|
Expect(str.num).To(Equal(protocol.StreamNum(2)))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("doesn't open streams after it has been closed", func() {
|
It("doesn't open streams after it has been closed", func() {
|
||||||
|
@ -66,7 +68,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
str, err := m.GetStream(1)
|
str, err := m.GetStream(1)
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(1)))
|
Expect(str.num).To(Equal(protocol.StreamNum(1)))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("errors when trying to get a stream that has not yet been opened", func() {
|
It("errors when trying to get a stream that has not yet been opened", func() {
|
||||||
|
@ -107,10 +109,10 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
testErr := errors.New("test err")
|
testErr := errors.New("test err")
|
||||||
m.CloseWithError(testErr)
|
m.CloseWithError(testErr)
|
||||||
Expect(str1.(*mockGenericStream).closed).To(BeTrue())
|
Expect(str1.closed).To(BeTrue())
|
||||||
Expect(str1.(*mockGenericStream).closeErr).To(MatchError(testErr))
|
Expect(str1.closeErr).To(MatchError(testErr))
|
||||||
Expect(str2.(*mockGenericStream).closed).To(BeTrue())
|
Expect(str2.closed).To(BeTrue())
|
||||||
Expect(str2.(*mockGenericStream).closeErr).To(MatchError(testErr))
|
Expect(str2.closeErr).To(MatchError(testErr))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("updates the send window", func() {
|
It("updates the send window", func() {
|
||||||
|
@ -119,8 +121,8 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
str2, err := m.OpenStream()
|
str2, err := m.OpenStream()
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
m.UpdateSendWindow(1337)
|
m.UpdateSendWindow(1337)
|
||||||
Expect(str1.(*mockGenericStream).sendWindow).To(BeEquivalentTo(1337))
|
Expect(str1.sendWindow).To(BeEquivalentTo(1337))
|
||||||
Expect(str2.(*mockGenericStream).sendWindow).To(BeEquivalentTo(1337))
|
Expect(str2.sendWindow).To(BeEquivalentTo(1337))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -145,7 +147,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
str, err := m.OpenStreamSync(context.Background())
|
str, err := m.OpenStreamSync(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(1)))
|
Expect(str.num).To(Equal(protocol.StreamNum(1)))
|
||||||
close(done)
|
close(done)
|
||||||
}()
|
}()
|
||||||
waitForEnqueued(1)
|
waitForEnqueued(1)
|
||||||
|
@ -173,7 +175,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
m.SetMaxStream(1000)
|
m.SetMaxStream(1000)
|
||||||
str, err := m.OpenStream()
|
str, err := m.OpenStream()
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(1)))
|
Expect(str.num).To(Equal(protocol.StreamNum(1)))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("opens streams in the right order", func() {
|
It("opens streams in the right order", func() {
|
||||||
|
@ -183,7 +185,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
str, err := m.OpenStreamSync(context.Background())
|
str, err := m.OpenStreamSync(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(1)))
|
Expect(str.num).To(Equal(protocol.StreamNum(1)))
|
||||||
close(done1)
|
close(done1)
|
||||||
}()
|
}()
|
||||||
waitForEnqueued(1)
|
waitForEnqueued(1)
|
||||||
|
@ -193,7 +195,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
str, err := m.OpenStreamSync(context.Background())
|
str, err := m.OpenStreamSync(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(2)))
|
Expect(str.num).To(Equal(protocol.StreamNum(2)))
|
||||||
close(done2)
|
close(done2)
|
||||||
}()
|
}()
|
||||||
waitForEnqueued(2)
|
waitForEnqueued(2)
|
||||||
|
@ -212,7 +214,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
str, err := m.OpenStreamSync(context.Background())
|
str, err := m.OpenStreamSync(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(1)))
|
Expect(str.num).To(Equal(protocol.StreamNum(1)))
|
||||||
close(done1)
|
close(done1)
|
||||||
}()
|
}()
|
||||||
waitForEnqueued(1)
|
waitForEnqueued(1)
|
||||||
|
@ -232,7 +234,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
str, err := m.OpenStreamSync(context.Background())
|
str, err := m.OpenStreamSync(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(2)))
|
Expect(str.num).To(Equal(protocol.StreamNum(2)))
|
||||||
close(done3)
|
close(done3)
|
||||||
}()
|
}()
|
||||||
waitForEnqueued(3)
|
waitForEnqueued(3)
|
||||||
|
@ -284,7 +286,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
str, err := m.OpenStreamSync(context.Background())
|
str, err := m.OpenStreamSync(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(1)))
|
Expect(str.num).To(Equal(protocol.StreamNum(1)))
|
||||||
close(openedSync)
|
close(openedSync)
|
||||||
}()
|
}()
|
||||||
waitForEnqueued(1)
|
waitForEnqueued(1)
|
||||||
|
@ -297,7 +299,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
for {
|
for {
|
||||||
str, err := m.OpenStream()
|
str, err := m.OpenStream()
|
||||||
if err == nil {
|
if err == nil {
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(2)))
|
Expect(str.num).To(Equal(protocol.StreamNum(2)))
|
||||||
close(openend)
|
close(openend)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -340,7 +342,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
str, err := m.OpenStream()
|
str, err := m.OpenStream()
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(2)))
|
Expect(str.num).To(Equal(protocol.StreamNum(2)))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("queues a STREAMS_BLOCKED frame if no stream can be opened", func() {
|
It("queues a STREAMS_BLOCKED frame if no stream can be opened", func() {
|
||||||
|
@ -352,7 +354,9 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
}
|
}
|
||||||
|
|
||||||
mockSender.EXPECT().queueControlFrame(gomock.Any()).Do(func(f wire.Frame) {
|
mockSender.EXPECT().queueControlFrame(gomock.Any()).Do(func(f wire.Frame) {
|
||||||
Expect(f.(*wire.StreamsBlockedFrame).StreamLimit).To(BeEquivalentTo(6))
|
bf := f.(*wire.StreamsBlockedFrame)
|
||||||
|
Expect(bf.Type).To(BeEquivalentTo(streamType))
|
||||||
|
Expect(bf.StreamLimit).To(BeEquivalentTo(6))
|
||||||
})
|
})
|
||||||
_, err := m.OpenStream()
|
_, err := m.OpenStream()
|
||||||
Expect(err).To(HaveOccurred())
|
Expect(err).To(HaveOccurred())
|
||||||
|
@ -423,7 +427,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
defer close(doneChan)
|
defer close(doneChan)
|
||||||
str, err := m.OpenStreamSync(context.Background())
|
str, err := m.OpenStreamSync(context.Background())
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(id))
|
Expect(str.num).To(Equal(id))
|
||||||
}(c, protocol.StreamNum(i))
|
}(c, protocol.StreamNum(i))
|
||||||
waitForEnqueued(i)
|
waitForEnqueued(i)
|
||||||
}
|
}
|
||||||
|
@ -449,7 +453,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
Expect(err).To(HaveOccurred())
|
Expect(err).To(HaveOccurred())
|
||||||
Expect(err.Error()).To(Equal(errTooManyOpenStreams.Error()))
|
Expect(err.Error()).To(Equal(errTooManyOpenStreams.Error()))
|
||||||
} else {
|
} else {
|
||||||
Expect(str.(*mockGenericStream).num).To(Equal(protocol.StreamNum(n + 1)))
|
Expect(str.num).To(Equal(protocol.StreamNum(n + 1)))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Expect(blockedAt).To(Equal(limits))
|
Expect(blockedAt).To(Equal(limits))
|
||||||
|
@ -499,7 +503,7 @@ var _ = Describe("Streams Map (outgoing)", func() {
|
||||||
}
|
}
|
||||||
Expect(err).ToNot(HaveOccurred())
|
Expect(err).ToNot(HaveOccurred())
|
||||||
mutex.Lock()
|
mutex.Lock()
|
||||||
streamIDs = append(streamIDs, int(str.(*mockGenericStream).num))
|
streamIDs = append(streamIDs, int(str.num))
|
||||||
mutex.Unlock()
|
mutex.Unlock()
|
||||||
}(c, protocol.StreamNum(i))
|
}(c, protocol.StreamNum(i))
|
||||||
waitForEnqueued(i)
|
waitForEnqueued(i)
|
Loading…
Add table
Add a link
Reference in a new issue