/* * Copyright (c) 2015 AsyncHttpClient Project. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. * You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0. * * Unless required by applicable law or agreed to in writing, * software distributed under the Apache License Version 2.0 is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Apache License Version 2.0 for the specific language governing permissions and limitations there under. */ package org.asynchttpclient.netty.handler; import com.typesafe.netty.HandlerPublisher; import io.netty.channel.Channel; import io.netty.util.concurrent.EventExecutor; import org.asynchttpclient.HttpResponseBodyPart; import org.asynchttpclient.netty.NettyResponseFuture; import org.asynchttpclient.netty.channel.ChannelManager; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class StreamedResponsePublisher extends HandlerPublisher<HttpResponseBodyPart> { protected final Logger logger = LoggerFactory.getLogger(getClass()); private final ChannelManager channelManager; private final NettyResponseFuture<?> future; private final Channel channel; public StreamedResponsePublisher(EventExecutor executor, ChannelManager channelManager, NettyResponseFuture<?> future, Channel channel) { super(executor, HttpResponseBodyPart.class); this.channelManager = channelManager; this.future = future; this.channel = channel; } @Override protected void cancelled() { logger.debug("Subscriber cancelled, ignoring the rest of the body"); // The subscriber cancelled early, we need to drain the remaining elements from the stream channelManager.drainChannelAndOffer(channel, future); channel.pipeline().remove(StreamedResponsePublisher.class); try { future.done(); } catch (Exception t) { // Never propagate exception once we know we are done. logger.debug(t.getMessage(), t); } } NettyResponseFuture<?> future() { return future; } }