aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/java/spark/network/netty/FileClientChannelInitializer.java
blob: 50e5704619a60b4ac33999d5adc289e681ae53a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package spark.network.netty;

import io.netty.buffer.BufType;
import io.netty.channel.ChannelInitializer;
import io.netty.channel.socket.SocketChannel;
import io.netty.handler.codec.LengthFieldBasedFrameDecoder;
import io.netty.handler.codec.string.StringEncoder;
import io.netty.util.CharsetUtil;

import io.netty.handler.logging.LoggingHandler;
import io.netty.handler.logging.LogLevel;

public class FileClientChannelInitializer extends
    ChannelInitializer<SocketChannel> {

  private FileClientHandler fhandler;

  public FileClientChannelInitializer(FileClientHandler handler) {
    fhandler = handler;
  }

  @Override
  public void initChannel(SocketChannel channel) {
    // file no more than 2G
    channel.pipeline()
        .addLast("encoder", new StringEncoder(BufType.BYTE))
        .addLast("handler", fhandler);
  }
}