mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
remove inactive streams from the window update queue
This commit is contained in:
parent
63c9272bf4
commit
ddc886be7a
2 changed files with 25 additions and 3 deletions
|
@ -53,6 +53,7 @@ func (q *windowUpdateQueue) QueueAll() {
|
|||
}
|
||||
// queue all stream-level window updates
|
||||
for id := range q.queue {
|
||||
delete(q.queue, id)
|
||||
str, err := q.streamGetter.GetOrOpenReceiveStream(id)
|
||||
if err != nil || str == nil { // the stream can be nil if it was completed before dequeing the window update
|
||||
continue
|
||||
|
@ -65,7 +66,6 @@ func (q *windowUpdateQueue) QueueAll() {
|
|||
StreamID: id,
|
||||
ByteOffset: offset,
|
||||
})
|
||||
delete(q.queue, id)
|
||||
}
|
||||
q.mutex.Unlock()
|
||||
}
|
||||
|
|
|
@ -52,8 +52,18 @@ var _ = Describe("Window Update Queue", func() {
|
|||
})
|
||||
|
||||
It("doesn't queue a MAX_STREAM_DATA for a closed stream", func() {
|
||||
streamGetter.EXPECT().GetOrOpenReceiveStream(protocol.StreamID(12)).Return(nil, nil)
|
||||
q.AddStream(12)
|
||||
streamGetter.EXPECT().GetOrOpenReceiveStream(protocol.StreamID(12)).Return(nil, nil)
|
||||
q.QueueAll()
|
||||
Expect(queuedFrames).To(BeEmpty())
|
||||
})
|
||||
|
||||
It("removes closed streams from the queue", func() {
|
||||
q.AddStream(12)
|
||||
streamGetter.EXPECT().GetOrOpenReceiveStream(protocol.StreamID(12)).Return(nil, nil)
|
||||
q.QueueAll()
|
||||
Expect(queuedFrames).To(BeEmpty())
|
||||
// don't EXPECT any further calls to GetOrOpenReceiveStream
|
||||
q.QueueAll()
|
||||
Expect(queuedFrames).To(BeEmpty())
|
||||
})
|
||||
|
@ -61,8 +71,20 @@ var _ = Describe("Window Update Queue", func() {
|
|||
It("doesn't queue a MAX_STREAM_DATA if the flow controller returns an offset of 0", func() {
|
||||
stream5 := NewMockStreamI(mockCtrl)
|
||||
stream5.EXPECT().getWindowUpdate().Return(protocol.ByteCount(0))
|
||||
streamGetter.EXPECT().GetOrOpenReceiveStream(protocol.StreamID(5)).Return(stream5, nil)
|
||||
q.AddStream(5)
|
||||
streamGetter.EXPECT().GetOrOpenReceiveStream(protocol.StreamID(5)).Return(stream5, nil)
|
||||
q.QueueAll()
|
||||
Expect(queuedFrames).To(BeEmpty())
|
||||
})
|
||||
|
||||
It("removes streams for which the flow controller returns an offset of 0 from the queue", func() {
|
||||
stream5 := NewMockStreamI(mockCtrl)
|
||||
stream5.EXPECT().getWindowUpdate().Return(protocol.ByteCount(0))
|
||||
q.AddStream(5)
|
||||
streamGetter.EXPECT().GetOrOpenReceiveStream(protocol.StreamID(5)).Return(stream5, nil)
|
||||
q.QueueAll()
|
||||
Expect(queuedFrames).To(BeEmpty())
|
||||
// don't EXPECT any further calls to GetOrOpenReveiveStream and to getWindowUpdate
|
||||
q.QueueAll()
|
||||
Expect(queuedFrames).To(BeEmpty())
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue