io.netty.microbench.channel.EmbeddedChannelWriteAccumulatingHandlerContext Maven / Gradle / Ivy
/*
* Copyright 2017 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.microbench.channel;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelHandler;
import io.netty.channel.ChannelPromise;
import io.netty.channel.embedded.EmbeddedChannel;
import io.netty.handler.codec.ByteToMessageDecoder;
import io.netty.util.internal.ObjectUtil;
public abstract class EmbeddedChannelWriteAccumulatingHandlerContext extends EmbeddedChannelHandlerContext {
private ByteBuf cumulation;
private final ByteToMessageDecoder.Cumulator cumulator;
protected EmbeddedChannelWriteAccumulatingHandlerContext(ByteBufAllocator alloc, ChannelHandler handler,
ByteToMessageDecoder.Cumulator writeCumulator) {
this(alloc, handler, writeCumulator, new EmbeddedChannel());
}
protected EmbeddedChannelWriteAccumulatingHandlerContext(ByteBufAllocator alloc, ChannelHandler handler,
ByteToMessageDecoder.Cumulator writeCumulator,
EmbeddedChannel channel) {
super(alloc, handler, channel);
this.cumulator = ObjectUtil.checkNotNull(writeCumulator, "writeCumulator");
}
public final ByteBuf cumulation() {
return cumulation;
}
public final void releaseCumulation() {
if (cumulation != null) {
cumulation.release();
cumulation = null;
}
}
@Override
public final ChannelFuture write(Object msg) {
return write(msg, newPromise());
}
@Override
public final ChannelFuture write(Object msg, ChannelPromise promise) {
try {
if (msg instanceof ByteBuf) {
if (cumulation == null) {
cumulation = (ByteBuf) msg;
} else {
cumulation = cumulator.cumulate(alloc(), cumulation, (ByteBuf) msg);
}
promise.setSuccess();
} else {
channel().write(msg, promise);
}
} catch (Exception e) {
promise.setFailure(e);
handleException(e);
}
return promise;
}
@Override
public final ChannelFuture writeAndFlush(Object msg, ChannelPromise promise) {
try {
if (msg instanceof ByteBuf) {
ByteBuf buf = (ByteBuf) msg;
if (cumulation == null) {
cumulation = buf;
} else {
cumulation = cumulator.cumulate(alloc(), cumulation, buf);
}
promise.setSuccess();
} else {
channel().writeAndFlush(msg, promise);
}
} catch (Exception e) {
promise.setFailure(e);
handleException(e);
}
return promise;
}
@Override
public final ChannelFuture writeAndFlush(Object msg) {
return writeAndFlush(msg, newPromise());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy