Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 package org.ros.internal.transport.tcp;
00018
00019 import org.jboss.netty.channel.ChannelPipeline;
00020 import org.jboss.netty.channel.group.ChannelGroup;
00021 import org.jboss.netty.handler.codec.frame.LengthFieldBasedFrameDecoder;
00022 import org.jboss.netty.handler.codec.frame.LengthFieldPrepender;
00023
00027 public class TcpClientPipelineFactory extends ConnectionTrackingChannelPipelineFactory {
00028
00029 public static final String LENGTH_FIELD_BASED_FRAME_DECODER = "LengthFieldBasedFrameDecoder";
00030 public static final String LENGTH_FIELD_PREPENDER = "LengthFieldPrepender";
00031
00032 public TcpClientPipelineFactory(ChannelGroup channelGroup) {
00033 super(channelGroup);
00034 }
00035
00036 @Override
00037 public ChannelPipeline getPipeline() {
00038 ChannelPipeline pipeline = super.getPipeline();
00039 pipeline.addLast(LENGTH_FIELD_PREPENDER, new LengthFieldPrepender(4));
00040 pipeline.addLast(LENGTH_FIELD_BASED_FRAME_DECODER, new LengthFieldBasedFrameDecoder(
00041 Integer.MAX_VALUE, 0, 4, 0, 4));
00042 return pipeline;
00043 }
00044 }