Fix allocate additional buffer for encoding stompFrame without readab… (#10150)
Motivation: Not always STOMP frames contain any payload some times it just headers. So we wan't allocate additional buffer with NULL content for this situation. Modification: Modify StompSubframeEncoder to check if content is readable or not. If content is not readable just add NULL byte to encoded header buffer. Result: Less allocations
This commit is contained in:
parent
fbc6709686
commit
7309f2a13d
@ -34,9 +34,14 @@ public class StompSubframeEncoder extends MessageToMessageEncoder<StompSubframe>
|
||||
if (msg instanceof StompFrame) {
|
||||
StompFrame frame = (StompFrame) msg;
|
||||
ByteBuf frameBuf = encodeFrame(frame, ctx);
|
||||
out.add(frameBuf);
|
||||
ByteBuf contentBuf = encodeContent(frame, ctx);
|
||||
out.add(contentBuf);
|
||||
if (frame.content().isReadable()) {
|
||||
out.add(frameBuf);
|
||||
ByteBuf contentBuf = encodeContent(frame, ctx);
|
||||
out.add(contentBuf);
|
||||
} else {
|
||||
frameBuf.writeByte(StompConstants.NUL);
|
||||
out.add(frameBuf);
|
||||
}
|
||||
} else if (msg instanceof StompHeadersSubframe) {
|
||||
StompHeadersSubframe frame = (StompHeadersSubframe) msg;
|
||||
ByteBuf buf = encodeFrame(frame, ctx);
|
||||
|
@ -83,4 +83,18 @@ public class StompSubframeEncoderTest {
|
||||
assertTrue(fullFrame.release());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOneBufferForStompFrameWithEmptyContent() {
|
||||
StompFrame connectedFrame = new DefaultStompFrame(StompCommand.CONNECTED);
|
||||
connectedFrame.headers().set(StompHeaders.VERSION, "1.2");
|
||||
|
||||
assertTrue(channel.writeOutbound(connectedFrame));
|
||||
|
||||
ByteBuf stompBuffer = channel.readOutbound();
|
||||
|
||||
assertNotNull(stompBuffer);
|
||||
assertNull(channel.readOutbound());
|
||||
assertEquals("CONNECTED\nversion:1.2\n\n\0", stompBuffer.toString(CharsetUtil.UTF_8));
|
||||
assertTrue(stompBuffer.release());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user