View Javadoc
1   /*
2    * Copyright 2012 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License,
5    * version 2.0 (the "License"); you may not use this file except in compliance
6    * with the License. You may obtain a copy of the License at:
7    *
8    *   https://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13   * License for the specific language governing permissions and limitations
14   * under the License.
15   */
16  package io.netty.example.proxy;
17  
18  import io.netty.channel.Channel;
19  import io.netty.channel.ChannelHandlerContext;
20  import io.netty.channel.ChannelInboundHandlerAdapter;
21  
22  public class HexDumpProxyBackendHandler extends ChannelInboundHandlerAdapter {
23  
24      private final Channel inboundChannel;
25  
26      public HexDumpProxyBackendHandler(Channel inboundChannel) {
27          this.inboundChannel = inboundChannel;
28      }
29  
30      @Override
31      public void channelActive(ChannelHandlerContext ctx) {
32          if (!inboundChannel.isActive()) {
33              HexDumpProxyFrontendHandler.closeOnFlush(ctx.channel());
34          } else {
35              ctx.read();
36          }
37      }
38  
39      @Override
40      public void channelRead(final ChannelHandlerContext ctx, Object msg) {
41          inboundChannel.writeAndFlush(msg).addListener(future -> {
42              if (future.isSuccess()) {
43                  ctx.read();
44              } else {
45                  ctx.close();
46              }
47          });
48      }
49  
50      @Override
51      public void channelInactive(ChannelHandlerContext ctx) {
52          HexDumpProxyFrontendHandler.closeOnFlush(inboundChannel);
53      }
54  
55      @Override
56      public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
57          cause.printStackTrace();
58          HexDumpProxyFrontendHandler.closeOnFlush(ctx.channel());
59      }
60  }