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
28
29
30
31 public class HttpStaticFileServerPipelineFactory implements ChannelPipelineFactory {
32 public ChannelPipeline getPipeline() throws Exception {
33
34 ChannelPipeline pipeline = pipeline();
35
36
37
38
39
40
41 pipeline.addLast("decoder", new HttpRequestDecoder());
42 pipeline.addLast("aggregator", new HttpChunkAggregator(65536));
43 pipeline.addLast("encoder", new HttpResponseEncoder());
44 pipeline.addLast("chunkedWriter", new ChunkedWriteHandler());
45
46 pipeline.addLast("handler", new HttpStaticFileServerHandler());
47 return pipeline;
48 }
49 }