forked from netty/netty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure ServerChannel implementations accept multiple connections per …
…read loop (netty#11729) Motivation: Due how the DefaultMaxMessagesRecvByteBufAllocator is implemented we did only ever accept one connection per read loop even thought there might be more pending. Modifications: - Introduce ServerChannelRecvByteBufAllocator and use it for all our ServerChannel implementations Result: Fixes netty#11708
- Loading branch information
1 parent
9802afd
commit c3e33d3
Showing
11 changed files
with
138 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
transport/src/main/java/io/netty/channel/ServerChannelRecvByteBufAllocator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Copyright 2021 The Netty Project | ||
* | ||
* The Netty Project licenses this file to you under the Apache License, | ||
* version 2.0 (the "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at: | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package io.netty.channel; | ||
|
||
/** | ||
* {@link MaxMessagesRecvByteBufAllocator} implementation which should be used for {@link ServerChannel}s. | ||
*/ | ||
public final class ServerChannelRecvByteBufAllocator extends DefaultMaxMessagesRecvByteBufAllocator { | ||
public ServerChannelRecvByteBufAllocator() { | ||
super(1, true); | ||
} | ||
|
||
@Override | ||
public Handle newHandle() { | ||
return new MaxMessageHandle() { | ||
@Override | ||
public int guess() { | ||
return 128; | ||
} | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
transport/src/test/java/io/netty/channel/DefaultMaxMessagesRecvByteBufAllocatorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
* Copyright 2021 The Netty Project | ||
* | ||
* The Netty Project licenses this file to you under the Apache License, | ||
* version 2.0 (the "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at: | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package io.netty.channel; | ||
|
||
import io.netty.channel.embedded.EmbeddedChannel; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertFalse; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
public class DefaultMaxMessagesRecvByteBufAllocatorTest { | ||
|
||
private DefaultMaxMessagesRecvByteBufAllocator newAllocator(boolean ignoreReadBytes) { | ||
return new DefaultMaxMessagesRecvByteBufAllocator(2, ignoreReadBytes) { | ||
@Override | ||
public Handle newHandle() { | ||
return new MaxMessageHandle() { | ||
@Override | ||
public int guess() { | ||
return 0; | ||
} | ||
}; | ||
} | ||
}; | ||
} | ||
|
||
@Test | ||
public void testRespectReadBytes() { | ||
DefaultMaxMessagesRecvByteBufAllocator allocator = newAllocator(false); | ||
RecvByteBufAllocator.Handle handle = allocator.newHandle(); | ||
|
||
EmbeddedChannel channel = new EmbeddedChannel(); | ||
handle.reset(channel.config()); | ||
handle.incMessagesRead(1); | ||
assertFalse(handle.continueReading()); | ||
|
||
handle.reset(channel.config()); | ||
handle.incMessagesRead(1); | ||
handle.attemptedBytesRead(1); | ||
handle.lastBytesRead(1); | ||
assertTrue(handle.continueReading()); | ||
channel.finish(); | ||
} | ||
|
||
@Test | ||
public void testIgnoreReadBytes() { | ||
DefaultMaxMessagesRecvByteBufAllocator allocator = newAllocator(true); | ||
RecvByteBufAllocator.Handle handle = allocator.newHandle(); | ||
|
||
EmbeddedChannel channel = new EmbeddedChannel(); | ||
handle.reset(channel.config()); | ||
handle.incMessagesRead(1); | ||
assertTrue(handle.continueReading()); | ||
handle.incMessagesRead(1); | ||
assertFalse(handle.continueReading()); | ||
|
||
handle.reset(channel.config()); | ||
handle.attemptedBytesRead(0); | ||
handle.lastBytesRead(0); | ||
assertTrue(handle.continueReading()); | ||
channel.finish(); | ||
} | ||
} |