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
30
31
32
33 package org.apache.commons.httpclient.server;
34
35 import java.io.IOException;
36 import java.util.ArrayList;
37 import java.util.Iterator;
38 import java.util.List;
39
40 /***
41 * Maintains a chain of {@link HttpRequestHandler}s where new request-handlers
42 * can be prepended/appended.
43 *
44 * For each call to {@link #processRequest(ResponseWriter,SimpleHttpServerConnection,RequestLine,Header[])}
45 * we iterate over the chain from the start to the end, stopping as soon as a handler
46 * has claimed the output.
47 *
48 * @author Christian Kohlschuetter
49 */
50 public class HttpRequestHandlerChain implements HttpRequestHandler {
51
52 private List subhandlers = new ArrayList();
53
54 public HttpRequestHandlerChain(final HttpRequestHandlerChain chain) {
55 super();
56 if (chain != null) {
57 this.subhandlers.clear();
58 this.subhandlers.addAll(chain.subhandlers);
59 }
60 }
61
62 public HttpRequestHandlerChain() {
63 super();
64 }
65
66 public synchronized void clear() {
67 subhandlers.clear();
68 }
69
70 public synchronized void prependHandler(HttpRequestHandler handler) {
71 subhandlers.add(0,handler);
72 }
73
74 public synchronized void appendHandler(HttpRequestHandler handler) {
75 subhandlers.add(handler);
76 }
77
78 public synchronized boolean processRequest(
79 final SimpleHttpServerConnection conn,
80 final SimpleRequest request) throws IOException
81 {
82 for(Iterator it=subhandlers.iterator();it.hasNext();) {
83 HttpRequestHandler h = (HttpRequestHandler)it.next();
84 boolean stop = h.processRequest(conn, request);
85 if (stop) {
86 return true;
87 }
88 }
89 return false;
90 }
91 }