com.textrecruit.ustackserver.server.ServerFactory Maven / Gradle / Ivy
package com.textrecruit.ustackserver.server;
import static org.jboss.netty.channel.Channels.pipeline;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelPipelineFactory;
import org.jboss.netty.handler.codec.http.HttpContentCompressor;
import org.jboss.netty.handler.codec.http.HttpContentDecompressor;
import org.jboss.netty.handler.codec.http.HttpRequestDecoder;
import org.jboss.netty.handler.codec.http.HttpResponseEncoder;
import org.jboss.netty.handler.codec.string.StringEncoder;
import org.jboss.netty.handler.execution.ExecutionHandler;
import org.jboss.netty.handler.stream.ChunkedWriteHandler;
import org.jboss.netty.handler.timeout.IdleStateHandler;
import org.jboss.netty.util.HashedWheelTimer;
import org.jboss.netty.util.Timer;
public class ServerFactory implements ChannelPipelineFactory {
private Timer timer;
private final ExecutionHandler executionHandler;
public ServerFactory(ExecutionHandler executionHandler)
{
timer = new HashedWheelTimer();
this.executionHandler = executionHandler;
}
public ChannelPipeline getPipeline() throws Exception {
// Create a default pipeline implementation.
ChannelPipeline pipeline = pipeline();
pipeline.addLast("decoder", new HttpRequestDecoder(16384, 16384, 16384));
pipeline.addLast("inflater", new HttpContentDecompressor());
pipeline.addLast("encoder", new HttpResponseEncoder());
pipeline.addLast("sencoder", new StringEncoder());
pipeline.addLast("chunkedWriter", new ChunkedWriteHandler());
pipeline.addLast("idlehandler", new IdleStateHandler(timer, 20, 20, 0));
pipeline.addLast("deflater", new HttpContentCompressor(1));
pipeline.addLast("pipelineExecutor", executionHandler);
pipeline.addLast("handler", new ServerHandler());
return pipeline;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy