1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.jboss.netty.example.http.file;
17
18 import static org.jboss.netty.channel.Channels.*;
19
20 import org.jboss.netty.channel.ChannelPipeline;
21 import org.jboss.netty.channel.ChannelPipelineFactory;
22 import org.jboss.netty.handler.codec.http.HttpChunkAggregator;
23 import org.jboss.netty.handler.codec.http.HttpRequestDecoder;
24 import org.jboss.netty.handler.codec.http.HttpResponseEncoder;
25 import org.jboss.netty.handler.stream.ChunkedWriteHandler;
26
27 public class HttpStaticFileServerPipelineFactory implements ChannelPipelineFactory {
28 public ChannelPipeline getPipeline() throws Exception {
29
30 ChannelPipeline pipeline = pipeline();
31
32
33
34
35
36
37 pipeline.addLast("decoder", new HttpRequestDecoder());
38 pipeline.addLast("aggregator", new HttpChunkAggregator(65536));
39 pipeline.addLast("encoder", new HttpResponseEncoder());
40 pipeline.addLast("chunkedWriter", new ChunkedWriteHandler());
41
42 pipeline.addLast("handler", new HttpStaticFileServerHandler());
43 return pipeline;
44 }
45 }