X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-util%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Futil%2Fhandler%2FChunkedFramingMechanismEncoder.java;h=8f4590cbb112bb6315f0ba0059e8fea417d48c3f;hp=d8dd7881653b466b24886da068f1d6bab529027b;hb=3e20a64a21d5b7bced26b03108aedcd025dd8be6;hpb=3a186f6f164122ab47f816b5761ef526f939f946 diff --git a/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/handler/ChunkedFramingMechanismEncoder.java b/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/handler/ChunkedFramingMechanismEncoder.java index d8dd788165..8f4590cbb1 100644 --- a/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/handler/ChunkedFramingMechanismEncoder.java +++ b/opendaylight/netconf/netconf-util/src/main/java/org/opendaylight/controller/netconf/util/handler/ChunkedFramingMechanismEncoder.java @@ -8,36 +8,51 @@ package org.opendaylight.controller.netconf.util.handler; -import org.opendaylight.controller.netconf.util.messages.NetconfMessageConstants; -import org.opendaylight.controller.netconf.util.messages.NetconfMessageHeader; - import io.netty.buffer.ByteBuf; import io.netty.buffer.Unpooled; import io.netty.channel.ChannelHandlerContext; import io.netty.handler.codec.MessageToByteEncoder; +import org.opendaylight.controller.netconf.util.messages.NetconfMessageConstants; +import org.opendaylight.controller.netconf.util.messages.NetconfMessageHeader; + +import com.google.common.base.Preconditions; + public class ChunkedFramingMechanismEncoder extends MessageToByteEncoder { + public static final int DEFAULT_CHUNK_SIZE = 8192; + public static final int MIN_CHUNK_SIZE = 128; + public static final int MAX_CHUNK_SIZE = 16 * 1024 * 1024; - private NetconfMessageHeader messageHeader = new NetconfMessageHeader(); + private final int chunkSize; - private final static int MAX_CHUNK_SIZE = NetconfMessageConstants.MAX_CHUNK_SIZE; + public ChunkedFramingMechanismEncoder() { + this(DEFAULT_CHUNK_SIZE); + } + + public ChunkedFramingMechanismEncoder(int chunkSize) { + Preconditions.checkArgument(chunkSize > MIN_CHUNK_SIZE); + Preconditions.checkArgument(chunkSize < MAX_CHUNK_SIZE); + this.chunkSize = chunkSize; + } + + public final int getChunkSize() { + return chunkSize; + } @Override - protected void encode(ChannelHandlerContext ctx, ByteBuf msg, ByteBuf out) throws Exception { - while (msg.readableBytes() > MAX_CHUNK_SIZE) { - ByteBuf chunk = Unpooled.buffer(MAX_CHUNK_SIZE); - chunk.writeBytes(createChunkHeader(MAX_CHUNK_SIZE)); - chunk.writeBytes(msg.readBytes(MAX_CHUNK_SIZE)); + protected void encode(ChannelHandlerContext ctx, ByteBuf msg, ByteBuf out) { + while (msg.readableBytes() > chunkSize) { + ByteBuf chunk = Unpooled.buffer(chunkSize); + chunk.writeBytes(createChunkHeader(chunkSize)); + chunk.writeBytes(msg.readBytes(chunkSize)); ctx.write(chunk); } out.writeBytes(createChunkHeader(msg.readableBytes())); out.writeBytes(msg.readBytes(msg.readableBytes())); - out.writeBytes(NetconfMessageConstants.endOfChunk); + out.writeBytes(NetconfMessageConstants.END_OF_CHUNK); } private ByteBuf createChunkHeader(int chunkSize) { - messageHeader.setLength(chunkSize); - return Unpooled.wrappedBuffer(messageHeader.toBytes()); + return Unpooled.wrappedBuffer(NetconfMessageHeader.toBytes(chunkSize)); } - }