Mercurial Hosting > luan
annotate src/org/eclipse/jetty/server/AbstractHttpConnection.java @ 929:3191abe890ef
remove isInitial()
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 09 Oct 2016 19:13:46 -0600 |
parents | 23a57aad34c0 |
children | 6f7e2ff51879 |
rev | line source |
---|---|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1 // |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
2 // ======================================================================== |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
3 // Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
4 // ------------------------------------------------------------------------ |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
5 // All rights reserved. This program and the accompanying materials |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
6 // are made available under the terms of the Eclipse Public License v1.0 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
7 // and Apache License v2.0 which accompanies this distribution. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
8 // |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
9 // The Eclipse Public License is available at |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
10 // http://www.eclipse.org/legal/epl-v10.html |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
11 // |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
12 // The Apache License v2.0 is available at |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
13 // http://www.opensource.org/licenses/apache2.0.php |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
14 // |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
15 // You may elect to redistribute this code under either of these licenses. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
16 // ======================================================================== |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
17 // |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
18 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
19 package org.eclipse.jetty.server; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
20 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
21 import java.io.IOException; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
22 import java.io.InputStream; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
23 import java.io.PrintWriter; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
24 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
25 import javax.servlet.DispatcherType; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
26 import javax.servlet.RequestDispatcher; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
27 import javax.servlet.ServletInputStream; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
28 import javax.servlet.ServletOutputStream; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
29 import javax.servlet.http.HttpServletRequest; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
30 import javax.servlet.http.HttpServletResponse; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
31 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
32 import org.eclipse.jetty.continuation.ContinuationThrowable; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
33 import org.eclipse.jetty.http.EncodedHttpURI; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
34 import org.eclipse.jetty.http.Generator; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
35 import org.eclipse.jetty.http.HttpBuffers; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
36 import org.eclipse.jetty.http.HttpException; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
37 import org.eclipse.jetty.http.HttpFields; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
38 import org.eclipse.jetty.http.HttpGenerator; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
39 import org.eclipse.jetty.http.HttpHeaderValues; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
40 import org.eclipse.jetty.http.HttpHeaders; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
41 import org.eclipse.jetty.http.HttpMethods; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
42 import org.eclipse.jetty.http.HttpParser; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
43 import org.eclipse.jetty.http.HttpStatus; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
44 import org.eclipse.jetty.http.HttpURI; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
45 import org.eclipse.jetty.http.HttpVersions; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
46 import org.eclipse.jetty.http.MimeTypes; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
47 import org.eclipse.jetty.http.Parser; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
48 import org.eclipse.jetty.io.AbstractConnection; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
49 import org.eclipse.jetty.io.Buffer; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
50 import org.eclipse.jetty.io.BufferCache.CachedBuffer; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
51 import org.eclipse.jetty.io.Buffers; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
52 import org.eclipse.jetty.io.Connection; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
53 import org.eclipse.jetty.io.EndPoint; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
54 import org.eclipse.jetty.io.EofException; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
55 import org.eclipse.jetty.io.RuntimeIOException; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
56 import org.eclipse.jetty.util.QuotedStringTokenizer; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
57 import org.eclipse.jetty.util.StringUtil; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
58 import org.eclipse.jetty.util.URIUtil; |
820
8e9db0bbf4f9
remove org.eclipse.jetty.util.log and upgrade slf4j
Franklin Schmidt <fschmidt@gmail.com>
parents:
802
diff
changeset
|
59 import org.slf4j.Logger; |
8e9db0bbf4f9
remove org.eclipse.jetty.util.log and upgrade slf4j
Franklin Schmidt <fschmidt@gmail.com>
parents:
802
diff
changeset
|
60 import org.slf4j.LoggerFactory; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
61 import org.eclipse.jetty.util.resource.Resource; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
62 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
63 /** |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
64 * <p>A HttpConnection represents the connection of a HTTP client to the server |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
65 * and is created by an instance of a {@link Connector}. It's prime function is |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
66 * to associate {@link Request} and {@link Response} instances with a {@link EndPoint}. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
67 * </p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
68 * <p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
69 * A connection is also the prime mechanism used by jetty to recycle objects without |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
70 * pooling. The {@link Request}, {@link Response}, {@link HttpParser}, {@link HttpGenerator} |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
71 * and {@link HttpFields} instances are all recycled for the duraction of |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
72 * a connection. Where appropriate, allocated buffers are also kept associated |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
73 * with the connection via the parser and/or generator. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
74 * </p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
75 * <p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
76 * The connection state is held by 3 separate state machines: The request state, the |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
77 * response state and the continuation state. All three state machines must be driven |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
78 * to completion for every request, and all three can complete in any order. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
79 * </p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
80 * <p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
81 * The HttpConnection support protocol upgrade. If on completion of a request, the |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
82 * response code is 101 (switch protocols), then the org.eclipse.jetty.io.Connection |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
83 * request attribute is checked to see if there is a new Connection instance. If so, |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
84 * the new connection is returned from {@link #handle()} and is used for future |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
85 * handling of the underlying connection. Note that for switching protocols that |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
86 * don't use 101 responses (eg CONNECT), the response should be sent and then the |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
87 * status code changed to 101 before returning from the handler. Implementors |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
88 * of new Connection types should be careful to extract any buffered data from |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
89 * (HttpParser)http.getParser()).getHeaderBuffer() and |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
90 * (HttpParser)http.getParser()).getBodyBuffer() to initialise their new connection. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
91 * </p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
92 * |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
93 */ |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
94 public abstract class AbstractHttpConnection extends AbstractConnection |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
95 { |
826 | 96 private static final Logger LOG = LoggerFactory.getLogger(AbstractHttpConnection.class); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
97 |
826 | 98 private static final int UNKNOWN = -2; |
99 private static final ThreadLocal<AbstractHttpConnection> __currentConnection = new ThreadLocal<AbstractHttpConnection>(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
100 |
826 | 101 private int _requests; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
102 |
826 | 103 protected final Connector _connector; |
104 protected final Server _server; | |
105 protected final HttpURI _uri; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
106 |
826 | 107 protected final Parser _parser; |
108 protected final HttpFields _requestFields; | |
109 protected final Request _request; | |
110 protected volatile ServletInputStream _in; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
111 |
826 | 112 protected final Generator _generator; |
113 protected final HttpFields _responseFields; | |
114 protected final Response _response; | |
115 protected volatile Output _out; | |
116 protected volatile OutputWriter _writer; | |
117 protected volatile PrintWriter _printWriter; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
118 |
826 | 119 int _include; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
120 |
826 | 121 private Object _associatedObject; // associated object |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
122 |
826 | 123 private int _version = UNKNOWN; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
124 |
826 | 125 private String _charset; |
126 private boolean _expect = false; | |
127 private boolean _expect100Continue = false; | |
128 private boolean _expect102Processing = false; | |
129 private boolean _head = false; | |
130 private boolean _host = false; | |
131 private boolean _delayedHandling=false; | |
132 private boolean _earlyEOF = false; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
133 |
826 | 134 /* ------------------------------------------------------------ */ |
135 public static AbstractHttpConnection getCurrentConnection() | |
136 { | |
137 return __currentConnection.get(); | |
138 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
139 |
826 | 140 /* ------------------------------------------------------------ */ |
141 protected static void setCurrentConnection(AbstractHttpConnection connection) | |
142 { | |
143 __currentConnection.set(connection); | |
144 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
145 |
826 | 146 /* ------------------------------------------------------------ */ |
147 public AbstractHttpConnection(Connector connector, EndPoint endpoint, Server server) | |
148 { | |
149 super(endpoint); | |
150 _uri = StringUtil.__UTF8.equals(URIUtil.__CHARSET)?new HttpURI():new EncodedHttpURI(URIUtil.__CHARSET); | |
151 _connector = connector; | |
152 HttpBuffers ab = (HttpBuffers)_connector; | |
153 _parser = newHttpParser(ab.getRequestBuffers(), endpoint, new RequestHandler()); | |
154 _requestFields = new HttpFields(); | |
155 _responseFields = new HttpFields(); | |
156 _request = new Request(this); | |
157 _response = new Response(this); | |
158 _generator = newHttpGenerator(ab.getResponseBuffers(), endpoint); | |
159 _server = server; | |
160 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
161 |
826 | 162 /* ------------------------------------------------------------ */ |
163 protected AbstractHttpConnection(Connector connector, EndPoint endpoint, Server server, | |
164 Parser parser, Generator generator, Request request) | |
165 { | |
166 super(endpoint); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
167 |
826 | 168 _uri = URIUtil.__CHARSET.equals(StringUtil.__UTF8)?new HttpURI():new EncodedHttpURI(URIUtil.__CHARSET); |
169 _connector = connector; | |
170 _parser = parser; | |
171 _requestFields = new HttpFields(); | |
172 _responseFields = new HttpFields(); | |
173 _request = request; | |
174 _response = new Response(this); | |
175 _generator = generator; | |
176 _server = server; | |
177 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
178 |
826 | 179 protected HttpParser newHttpParser(Buffers requestBuffers, EndPoint endpoint, HttpParser.EventHandler requestHandler) |
180 { | |
181 return new HttpParser(requestBuffers, endpoint, requestHandler); | |
182 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
183 |
826 | 184 protected HttpGenerator newHttpGenerator(Buffers responseBuffers, EndPoint endPoint) |
185 { | |
186 return new HttpGenerator(responseBuffers, endPoint); | |
187 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
188 |
826 | 189 /* ------------------------------------------------------------ */ |
190 /** | |
191 * @return the parser used by this connection | |
192 */ | |
193 public Parser getParser() | |
194 { | |
195 return _parser; | |
196 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
197 |
826 | 198 /* ------------------------------------------------------------ */ |
199 /** | |
200 * @return the number of requests handled by this connection | |
201 */ | |
202 public int getRequests() | |
203 { | |
204 return _requests; | |
205 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
206 |
826 | 207 /* ------------------------------------------------------------ */ |
208 public Server getServer() | |
209 { | |
210 return _server; | |
211 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
212 |
826 | 213 /* ------------------------------------------------------------ */ |
214 /** | |
215 * @return Returns the associatedObject. | |
216 */ | |
217 public Object getAssociatedObject() | |
218 { | |
219 return _associatedObject; | |
220 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
221 |
826 | 222 /* ------------------------------------------------------------ */ |
223 /** | |
224 * @param associatedObject The associatedObject to set. | |
225 */ | |
226 public void setAssociatedObject(Object associatedObject) | |
227 { | |
228 _associatedObject = associatedObject; | |
229 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
230 |
826 | 231 /* ------------------------------------------------------------ */ |
232 /** | |
233 * @return Returns the connector. | |
234 */ | |
235 public Connector getConnector() | |
236 { | |
237 return _connector; | |
238 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
239 |
826 | 240 /* ------------------------------------------------------------ */ |
241 /** | |
242 * @return Returns the requestFields. | |
243 */ | |
244 public HttpFields getRequestFields() | |
245 { | |
246 return _requestFields; | |
247 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
248 |
826 | 249 /* ------------------------------------------------------------ */ |
250 /** | |
251 * @return Returns the responseFields. | |
252 */ | |
253 public HttpFields getResponseFields() | |
254 { | |
255 return _responseFields; | |
256 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
257 |
826 | 258 /* ------------------------------------------------------------ */ |
259 /** | |
260 * Find out if the request supports CONFIDENTIAL security. | |
261 * @param request the incoming HTTP request | |
262 * @return the result of calling {@link Connector#isConfidential(Request)}, or false | |
263 * if there is no connector | |
264 */ | |
265 public boolean isConfidential(Request request) | |
266 { | |
267 return _connector != null && _connector.isConfidential(request); | |
268 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
269 |
826 | 270 /* ------------------------------------------------------------ */ |
271 /** | |
272 * @return Returns the request. | |
273 */ | |
274 public Request getRequest() | |
275 { | |
276 return _request; | |
277 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
278 |
826 | 279 /* ------------------------------------------------------------ */ |
280 /** | |
281 * @return Returns the response. | |
282 */ | |
283 public Response getResponse() | |
284 { | |
285 return _response; | |
286 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
287 |
826 | 288 /* ------------------------------------------------------------ */ |
289 /** | |
290 * Get the inputStream from the connection. | |
291 * <p> | |
292 * If the associated response has the Expect header set to 100 Continue, | |
293 * then accessing the input stream indicates that the handler/servlet | |
294 * is ready for the request body and thus a 100 Continue response is sent. | |
295 * | |
296 * @return The input stream for this connection. | |
297 * The stream will be created if it does not already exist. | |
298 * @throws IOException if the input stream cannot be retrieved | |
299 */ | |
300 public ServletInputStream getInputStream() throws IOException | |
301 { | |
302 // If the client is expecting 100 CONTINUE, then send it now. | |
303 if (_expect100Continue) | |
304 { | |
305 // is content missing? | |
306 if (((HttpParser)_parser).getHeaderBuffer()==null || ((HttpParser)_parser).getHeaderBuffer().length()<2) | |
307 { | |
308 if (_generator.isCommitted()) | |
309 throw new IllegalStateException("Committed before 100 Continues"); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
310 |
826 | 311 ((HttpGenerator)_generator).send1xx(HttpStatus.CONTINUE_100); |
312 } | |
313 _expect100Continue=false; | |
314 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
315 |
826 | 316 if (_in == null) |
317 _in = new HttpInput(AbstractHttpConnection.this); | |
318 return _in; | |
319 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
320 |
826 | 321 /* ------------------------------------------------------------ */ |
322 /** | |
323 * @return The output stream for this connection. The stream will be created if it does not already exist. | |
324 */ | |
325 public ServletOutputStream getOutputStream() | |
326 { | |
327 if (_out == null) | |
328 _out = new Output(); | |
329 return _out; | |
330 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
331 |
826 | 332 /* ------------------------------------------------------------ */ |
333 /** | |
334 * @param encoding the PrintWriter encoding | |
335 * @return A {@link PrintWriter} wrapping the {@link #getOutputStream output stream}. The writer is created if it | |
336 * does not already exist. | |
337 */ | |
338 public PrintWriter getPrintWriter(String encoding) | |
339 { | |
340 getOutputStream(); | |
341 if (_writer==null) | |
342 { | |
343 _writer=new OutputWriter(); | |
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
344 _printWriter = new PrintWriter(_writer) |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
345 { |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
346 public void close() |
826 | 347 { |
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
348 synchronized (lock) |
826 | 349 { |
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
350 try |
826 | 351 { |
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
352 out.close(); |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
353 } |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
354 catch (IOException e) |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
355 { |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
356 setError(); |
826 | 357 } |
358 } | |
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
359 } |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
360 }; |
826 | 361 } |
362 _writer.setCharacterEncoding(encoding); | |
363 return _printWriter; | |
364 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
365 |
826 | 366 /* ------------------------------------------------------------ */ |
367 public boolean isResponseCommitted() | |
368 { | |
369 return _generator.isCommitted(); | |
370 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
371 |
826 | 372 /* ------------------------------------------------------------ */ |
373 public boolean isEarlyEOF() | |
374 { | |
375 return _earlyEOF; | |
376 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
377 |
826 | 378 /* ------------------------------------------------------------ */ |
379 public void reset() | |
380 { | |
381 _parser.reset(); | |
382 _parser.returnBuffers(); // TODO maybe only on unhandle | |
383 _requestFields.clear(); | |
384 _request.recycle(); | |
385 _generator.reset(); | |
386 _generator.returnBuffers();// TODO maybe only on unhandle | |
387 _responseFields.clear(); | |
388 _response.recycle(); | |
389 _uri.clear(); | |
390 _writer=null; | |
391 _earlyEOF = false; | |
392 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
393 |
826 | 394 /* ------------------------------------------------------------ */ |
395 protected void handleRequest() throws IOException | |
396 { | |
397 boolean error = false; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
398 |
826 | 399 String threadName=null; |
400 Throwable async_exception=null; | |
401 try | |
402 { | |
403 if (LOG.isDebugEnabled()) | |
404 { | |
405 threadName=Thread.currentThread().getName(); | |
406 Thread.currentThread().setName(threadName+" - "+_uri); | |
407 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
408 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
409 |
826 | 410 // Loop here to handle async request redispatches. |
411 // The loop is controlled by the call to async.unhandle in the | |
412 // finally block below. If call is from a non-blocking connector, | |
413 // then the unhandle will return false only if an async dispatch has | |
414 // already happened when unhandle is called. For a blocking connector, | |
415 // the wait for the asynchronous dispatch or timeout actually happens | |
416 // within the call to unhandle(). | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
417 |
826 | 418 final Server server=_server; |
929 | 419 _request._async.handling(); |
420 if(server!=null && server.isRunning()) | |
826 | 421 { |
422 _request.setHandled(false); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
423 |
826 | 424 String info=null; |
425 try | |
426 { | |
427 _uri.getPort(); | |
428 String path = null; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
429 |
826 | 430 try |
431 { | |
432 path = _uri.getDecodedPath(); | |
433 } | |
434 catch (Exception e) | |
435 { | |
436 LOG.warn("Failed UTF-8 decode for request path, trying ISO-8859-1"); | |
437 LOG.trace("",e); | |
438 path = _uri.getDecodedPath(StringUtil.__ISO_8859_1); | |
439 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
440 |
826 | 441 info=URIUtil.canonicalPath(path); |
442 if (info==null && !_request.getMethod().equals(HttpMethods.CONNECT)) | |
443 { | |
444 if (path==null && _uri.getScheme()!=null && _uri.getHost()!=null) | |
445 { | |
446 info="/"; | |
447 _request.setRequestURI(""); | |
448 } | |
449 else | |
450 throw new HttpException(400); | |
451 } | |
452 _request.setPathInfo(info); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
453 |
826 | 454 if (_out!=null) |
455 _out.reopen(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
456 |
929 | 457 _request.setDispatcherType(DispatcherType.REQUEST); |
458 _connector.customize(_endp, _request); | |
459 server.handle(this); | |
826 | 460 } |
461 catch (ContinuationThrowable e) | |
462 { | |
463 LOG.trace("",e); | |
464 } | |
465 catch (EofException e) | |
466 { | |
467 async_exception=e; | |
468 LOG.debug("",e); | |
469 error=true; | |
470 _request.setHandled(true); | |
471 if (!_response.isCommitted()) | |
472 _generator.sendError(500, null, null, true); | |
473 } | |
474 catch (RuntimeIOException e) | |
475 { | |
476 async_exception=e; | |
477 LOG.debug("",e); | |
478 error=true; | |
479 _request.setHandled(true); | |
480 } | |
481 catch (HttpException e) | |
482 { | |
483 LOG.debug("",e); | |
484 error=true; | |
485 _request.setHandled(true); | |
486 _response.sendError(e.getStatus(), e.getReason()); | |
487 } | |
488 catch (Throwable e) | |
489 { | |
490 async_exception=e; | |
491 LOG.warn(String.valueOf(_uri),e); | |
492 error=true; | |
493 _request.setHandled(true); | |
494 _generator.sendError(info==null?400:500, null, null, true); | |
495 | |
496 } | |
497 finally | |
498 { | |
928 | 499 _request._async.unhandle(); |
826 | 500 } |
501 } | |
502 } | |
503 finally | |
504 { | |
505 if (threadName!=null) | |
506 Thread.currentThread().setName(threadName); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
507 |
826 | 508 if (_request._async.isUncompleted()) |
509 { | |
510 | |
511 _request._async.doComplete(async_exception); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
512 |
826 | 513 if (_expect100Continue) |
514 { | |
515 LOG.debug("100 continues not sent"); | |
516 // We didn't send 100 continues, but the latest interpretation | |
517 // of the spec (see httpbis) is that the client will either | |
518 // send the body anyway, or close. So we no longer need to | |
519 // do anything special here other than make the connection not persistent | |
520 _expect100Continue = false; | |
521 if (!_response.isCommitted()) | |
522 _generator.setPersistent(false); | |
523 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
524 |
826 | 525 if(_endp.isOpen()) |
526 { | |
527 if (error) | |
528 { | |
529 _endp.shutdownOutput(); | |
530 _generator.setPersistent(false); | |
531 if (!_generator.isComplete()) | |
532 _response.complete(); | |
533 } | |
534 else | |
535 { | |
536 if (!_response.isCommitted() && !_request.isHandled()) | |
537 _response.sendError(HttpServletResponse.SC_NOT_FOUND); | |
538 _response.complete(); | |
539 if (_generator.isPersistent()) | |
540 _connector.persist(_endp); | |
541 } | |
542 } | |
543 else | |
544 { | |
545 _response.complete(); | |
546 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
547 |
826 | 548 _request.setHandled(true); |
549 } | |
550 } | |
551 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
552 |
826 | 553 /* ------------------------------------------------------------ */ |
554 public abstract Connection handle() throws IOException; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
555 |
826 | 556 /* ------------------------------------------------------------ */ |
557 public void commitResponse(boolean last) throws IOException | |
558 { | |
559 if (!_generator.isCommitted()) | |
560 { | |
561 _generator.setResponse(_response.getStatus(), _response.getReason()); | |
562 try | |
563 { | |
564 // If the client was expecting 100 continues, but we sent something | |
565 // else, then we need to close the connection | |
566 if (_expect100Continue && _response.getStatus()!=100) | |
567 _generator.setPersistent(false); | |
568 _generator.completeHeader(_responseFields, last); | |
569 } | |
570 catch(RuntimeException e) | |
571 { | |
572 LOG.warn("header full: " + e); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
573 |
826 | 574 _response.reset(); |
575 _generator.reset(); | |
576 _generator.setResponse(HttpStatus.INTERNAL_SERVER_ERROR_500,null); | |
577 _generator.completeHeader(_responseFields,Generator.LAST); | |
578 _generator.complete(); | |
579 throw new HttpException(HttpStatus.INTERNAL_SERVER_ERROR_500); | |
580 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
581 |
826 | 582 } |
583 if (last) | |
584 _generator.complete(); | |
585 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
586 |
826 | 587 /* ------------------------------------------------------------ */ |
588 public void completeResponse() throws IOException | |
589 { | |
590 if (!_generator.isCommitted()) | |
591 { | |
592 _generator.setResponse(_response.getStatus(), _response.getReason()); | |
593 try | |
594 { | |
595 _generator.completeHeader(_responseFields, Generator.LAST); | |
596 } | |
597 catch(RuntimeException e) | |
598 { | |
599 LOG.warn("header full: "+e); | |
600 LOG.debug("",e); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
601 |
826 | 602 _response.reset(); |
603 _generator.reset(); | |
604 _generator.setResponse(HttpStatus.INTERNAL_SERVER_ERROR_500,null); | |
605 _generator.completeHeader(_responseFields,Generator.LAST); | |
606 _generator.complete(); | |
607 throw new HttpException(HttpStatus.INTERNAL_SERVER_ERROR_500); | |
608 } | |
609 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
610 |
826 | 611 _generator.complete(); |
612 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
613 |
826 | 614 /* ------------------------------------------------------------ */ |
615 public void flushResponse() throws IOException | |
616 { | |
617 try | |
618 { | |
619 commitResponse(Generator.MORE); | |
620 _generator.flushBuffer(); | |
621 } | |
622 catch(IOException e) | |
623 { | |
624 throw (e instanceof EofException) ? e:new EofException(e); | |
625 } | |
626 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
627 |
826 | 628 /* ------------------------------------------------------------ */ |
629 public Generator getGenerator() | |
630 { | |
631 return _generator; | |
632 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
633 |
826 | 634 /* ------------------------------------------------------------ */ |
635 public boolean isIncluding() | |
636 { | |
637 return _include>0; | |
638 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
639 |
826 | 640 /* ------------------------------------------------------------ */ |
641 public void include() | |
642 { | |
643 _include++; | |
644 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
645 |
826 | 646 /* ------------------------------------------------------------ */ |
647 public void included() | |
648 { | |
649 _include--; | |
650 if (_out!=null) | |
651 _out.reopen(); | |
652 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
653 |
826 | 654 /* ------------------------------------------------------------ */ |
655 public boolean isIdle() | |
656 { | |
657 return _generator.isIdle() && (_parser.isIdle() || _delayedHandling); | |
658 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
659 |
826 | 660 /* ------------------------------------------------------------ */ |
661 /** | |
662 * @see org.eclipse.jetty.io.Connection#isSuspended() | |
663 */ | |
664 public boolean isSuspended() | |
665 { | |
666 return _request.getAsyncContinuation().isSuspended(); | |
667 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
668 |
826 | 669 /* ------------------------------------------------------------ */ |
670 public void onClose() | |
671 { | |
672 LOG.debug("closed {}",this); | |
673 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
674 |
826 | 675 /* ------------------------------------------------------------ */ |
676 public boolean isExpecting100Continues() | |
677 { | |
678 return _expect100Continue; | |
679 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
680 |
826 | 681 /* ------------------------------------------------------------ */ |
682 public boolean isExpecting102Processing() | |
683 { | |
684 return _expect102Processing; | |
685 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
686 |
826 | 687 /* ------------------------------------------------------------ */ |
688 public int getMaxIdleTime() | |
689 { | |
690 if (_connector.isLowResources() && _endp.getMaxIdleTime()==_connector.getMaxIdleTime()) | |
913 | 691 return 0; |
826 | 692 if (_endp.getMaxIdleTime()>0) |
693 return _endp.getMaxIdleTime(); | |
694 return _connector.getMaxIdleTime(); | |
695 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
696 |
826 | 697 /* ------------------------------------------------------------ */ |
698 public String toString() | |
699 { | |
700 return String.format("%s,g=%s,p=%s,r=%d", | |
701 super.toString(), | |
702 _generator, | |
703 _parser, | |
704 _requests); | |
705 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
706 |
826 | 707 /* ------------------------------------------------------------ */ |
708 protected void startRequest(Buffer method, Buffer uri, Buffer version) throws IOException | |
709 { | |
710 uri=uri.asImmutableBuffer(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
711 |
826 | 712 _host = false; |
713 _expect = false; | |
714 _expect100Continue=false; | |
715 _expect102Processing=false; | |
716 _delayedHandling=false; | |
717 _charset=null; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
718 |
826 | 719 if(_request.getTimeStamp()==0) |
720 _request.setTimeStamp(System.currentTimeMillis()); | |
721 _request.setMethod(method.toString()); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
722 |
826 | 723 try |
724 { | |
725 _head=false; | |
726 switch (HttpMethods.CACHE.getOrdinal(method)) | |
727 { | |
728 case HttpMethods.CONNECT_ORDINAL: | |
729 _uri.parseConnect(uri.array(), uri.getIndex(), uri.length()); | |
730 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
731 |
826 | 732 case HttpMethods.HEAD_ORDINAL: |
733 _head=true; | |
734 _uri.parse(uri.array(), uri.getIndex(), uri.length()); | |
735 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
736 |
826 | 737 default: |
738 _uri.parse(uri.array(), uri.getIndex(), uri.length()); | |
739 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
740 |
826 | 741 _request.setUri(_uri); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
742 |
826 | 743 if (version==null) |
744 { | |
745 _request.setProtocol(HttpVersions.HTTP_0_9); | |
746 _version=HttpVersions.HTTP_0_9_ORDINAL; | |
747 } | |
748 else | |
749 { | |
750 version= HttpVersions.CACHE.get(version); | |
751 if (version==null) | |
752 throw new HttpException(HttpStatus.BAD_REQUEST_400,null); | |
753 _version = HttpVersions.CACHE.getOrdinal(version); | |
754 if (_version <= 0) _version = HttpVersions.HTTP_1_0_ORDINAL; | |
755 _request.setProtocol(version.toString()); | |
756 } | |
757 } | |
758 catch (Exception e) | |
759 { | |
760 LOG.debug("",e); | |
761 if (e instanceof HttpException) | |
762 throw (HttpException)e; | |
763 throw new HttpException(HttpStatus.BAD_REQUEST_400,null,e); | |
764 } | |
765 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
766 |
826 | 767 /* ------------------------------------------------------------ */ |
768 protected void parsedHeader(Buffer name, Buffer value) throws IOException | |
769 { | |
770 int ho = HttpHeaders.CACHE.getOrdinal(name); | |
771 switch (ho) | |
772 { | |
773 case HttpHeaders.HOST_ORDINAL: | |
774 // TODO check if host matched a host in the URI. | |
775 _host = true; | |
776 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
777 |
826 | 778 case HttpHeaders.EXPECT_ORDINAL: |
779 if (_version>=HttpVersions.HTTP_1_1_ORDINAL) | |
780 { | |
781 value = HttpHeaderValues.CACHE.lookup(value); | |
782 switch(HttpHeaderValues.CACHE.getOrdinal(value)) | |
783 { | |
784 case HttpHeaderValues.CONTINUE_ORDINAL: | |
785 _expect100Continue=_generator instanceof HttpGenerator; | |
786 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
787 |
826 | 788 case HttpHeaderValues.PROCESSING_ORDINAL: |
789 _expect102Processing=_generator instanceof HttpGenerator; | |
790 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
791 |
826 | 792 default: |
793 String[] values = value.toString().split(","); | |
794 for (int i=0;values!=null && i<values.length;i++) | |
795 { | |
796 CachedBuffer cb=HttpHeaderValues.CACHE.get(values[i].trim()); | |
797 if (cb==null) | |
798 _expect=true; | |
799 else | |
800 { | |
801 switch(cb.getOrdinal()) | |
802 { | |
803 case HttpHeaderValues.CONTINUE_ORDINAL: | |
804 _expect100Continue=_generator instanceof HttpGenerator; | |
805 break; | |
806 case HttpHeaderValues.PROCESSING_ORDINAL: | |
807 _expect102Processing=_generator instanceof HttpGenerator; | |
808 break; | |
809 default: | |
810 _expect=true; | |
811 } | |
812 } | |
813 } | |
814 } | |
815 } | |
816 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
817 |
826 | 818 case HttpHeaders.ACCEPT_ENCODING_ORDINAL: |
819 case HttpHeaders.USER_AGENT_ORDINAL: | |
820 value = HttpHeaderValues.CACHE.lookup(value); | |
821 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
822 |
826 | 823 case HttpHeaders.CONTENT_TYPE_ORDINAL: |
824 value = MimeTypes.CACHE.lookup(value); | |
825 _charset=MimeTypes.getCharsetFromContentType(value); | |
826 break; | |
827 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
828 |
826 | 829 _requestFields.add(name, value); |
830 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
831 |
826 | 832 /* ------------------------------------------------------------ */ |
833 protected void headerComplete() throws IOException | |
834 { | |
835 // Handle idle race | |
836 if (_endp.isOutputShutdown()) | |
837 { | |
838 _endp.close(); | |
839 return; | |
840 } | |
841 | |
842 _requests++; | |
843 _generator.setVersion(_version); | |
844 switch (_version) | |
845 { | |
846 case HttpVersions.HTTP_0_9_ORDINAL: | |
847 break; | |
848 case HttpVersions.HTTP_1_0_ORDINAL: | |
849 _generator.setHead(_head); | |
850 if (_parser.isPersistent()) | |
851 { | |
852 _responseFields.add(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.KEEP_ALIVE_BUFFER); | |
853 _generator.setPersistent(true); | |
854 } | |
855 else if (HttpMethods.CONNECT.equals(_request.getMethod())) | |
856 { | |
857 _generator.setPersistent(true); | |
858 _parser.setPersistent(true); | |
859 } | |
860 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
861 |
826 | 862 case HttpVersions.HTTP_1_1_ORDINAL: |
863 _generator.setHead(_head); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
864 |
826 | 865 if (!_parser.isPersistent()) |
866 { | |
867 _responseFields.add(HttpHeaders.CONNECTION_BUFFER,HttpHeaderValues.CLOSE_BUFFER); | |
868 _generator.setPersistent(false); | |
869 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
870 |
826 | 871 if (!_host) |
872 { | |
873 LOG.debug("!host {}",this); | |
874 _generator.setResponse(HttpStatus.BAD_REQUEST_400, null); | |
875 _responseFields.put(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.CLOSE_BUFFER); | |
876 _generator.completeHeader(_responseFields, true); | |
877 _generator.complete(); | |
878 return; | |
879 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
880 |
826 | 881 if (_expect) |
882 { | |
883 LOG.debug("!expectation {}",this); | |
884 _generator.setResponse(HttpStatus.EXPECTATION_FAILED_417, null); | |
885 _responseFields.put(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.CLOSE_BUFFER); | |
886 _generator.completeHeader(_responseFields, true); | |
887 _generator.complete(); | |
888 return; | |
889 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
890 |
826 | 891 break; |
892 default: | |
893 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
894 |
826 | 895 if(_charset!=null) |
896 _request.setCharacterEncodingUnchecked(_charset); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
897 |
826 | 898 // Either handle now or wait for first content |
899 if ((((HttpParser)_parser).getContentLength()<=0 && !((HttpParser)_parser).isChunking())||_expect100Continue) | |
900 handleRequest(); | |
901 else | |
902 _delayedHandling=true; | |
903 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
904 |
826 | 905 /* ------------------------------------------------------------ */ |
906 protected void content(Buffer buffer) throws IOException | |
907 { | |
908 if (_delayedHandling) | |
909 { | |
910 _delayedHandling=false; | |
911 handleRequest(); | |
912 } | |
913 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
914 |
826 | 915 /* ------------------------------------------------------------ */ |
916 public void messageComplete(long contentLength) throws IOException | |
917 { | |
918 if (_delayedHandling) | |
919 { | |
920 _delayedHandling=false; | |
921 handleRequest(); | |
922 } | |
923 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
924 |
826 | 925 /* ------------------------------------------------------------ */ |
926 public void earlyEOF() | |
927 { | |
928 _earlyEOF = true; | |
929 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
930 |
826 | 931 /* ------------------------------------------------------------ */ |
932 /* ------------------------------------------------------------ */ | |
933 /* ------------------------------------------------------------ */ | |
934 private class RequestHandler extends HttpParser.EventHandler | |
935 { | |
936 /* | |
937 * | |
938 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#startRequest(org.eclipse.io.Buffer, | |
939 * org.eclipse.io.Buffer, org.eclipse.io.Buffer) | |
940 */ | |
941 @Override | |
942 public void startRequest(Buffer method, Buffer uri, Buffer version) throws IOException | |
943 { | |
944 AbstractHttpConnection.this.startRequest(method, uri, version); | |
945 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
946 |
826 | 947 /* |
948 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#parsedHeaderValue(org.eclipse.io.Buffer) | |
949 */ | |
950 @Override | |
951 public void parsedHeader(Buffer name, Buffer value) throws IOException | |
952 { | |
953 AbstractHttpConnection.this.parsedHeader(name, value); | |
954 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
955 |
826 | 956 /* |
957 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#headerComplete() | |
958 */ | |
959 @Override | |
960 public void headerComplete() throws IOException | |
961 { | |
962 AbstractHttpConnection.this.headerComplete(); | |
963 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
964 |
826 | 965 /* ------------------------------------------------------------ */ |
966 /* | |
967 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#content(int, org.eclipse.io.Buffer) | |
968 */ | |
969 @Override | |
970 public void content(Buffer ref) throws IOException | |
971 { | |
972 AbstractHttpConnection.this.content(ref); | |
973 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
974 |
826 | 975 /* ------------------------------------------------------------ */ |
976 /* | |
977 * (non-Javadoc) | |
978 * | |
979 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#messageComplete(int) | |
980 */ | |
981 @Override | |
982 public void messageComplete(long contentLength) throws IOException | |
983 { | |
984 AbstractHttpConnection.this.messageComplete(contentLength); | |
985 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
986 |
826 | 987 /* ------------------------------------------------------------ */ |
988 /* | |
989 * (non-Javadoc) | |
990 * | |
991 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#startResponse(org.eclipse.io.Buffer, int, | |
992 * org.eclipse.io.Buffer) | |
993 */ | |
994 @Override | |
995 public void startResponse(Buffer version, int status, Buffer reason) | |
996 { | |
997 if (LOG.isDebugEnabled()) | |
998 LOG.debug("Bad request!: "+version+" "+status+" "+reason); | |
999 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1000 |
826 | 1001 /* ------------------------------------------------------------ */ |
1002 /* | |
1003 * (non-Javadoc) | |
1004 * | |
1005 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#earlyEOF() | |
1006 */ | |
1007 @Override | |
1008 public void earlyEOF() | |
1009 { | |
1010 AbstractHttpConnection.this.earlyEOF(); | |
1011 } | |
1012 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1013 |
826 | 1014 /* ------------------------------------------------------------ */ |
1015 /* ------------------------------------------------------------ */ | |
1016 /* ------------------------------------------------------------ */ | |
1017 public class Output extends HttpOutput | |
1018 { | |
1019 Output() | |
1020 { | |
1021 super(AbstractHttpConnection.this); | |
1022 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1023 |
826 | 1024 /* ------------------------------------------------------------ */ |
1025 /* | |
1026 * @see java.io.OutputStream#close() | |
1027 */ | |
1028 @Override | |
1029 public void close() throws IOException | |
1030 { | |
1031 if (isClosed()) | |
1032 return; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1033 |
826 | 1034 if (!isIncluding() && !super._generator.isCommitted()) |
1035 commitResponse(Generator.LAST); | |
1036 else | |
1037 flushResponse(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1038 |
826 | 1039 super.close(); |
1040 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1041 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1042 |
826 | 1043 /* ------------------------------------------------------------ */ |
1044 /* | |
1045 * @see java.io.OutputStream#flush() | |
1046 */ | |
1047 @Override | |
1048 public void flush() throws IOException | |
1049 { | |
1050 if (!super._generator.isCommitted()) | |
1051 commitResponse(Generator.MORE); | |
1052 super.flush(); | |
1053 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1054 |
826 | 1055 /* ------------------------------------------------------------ */ |
1056 /* | |
1057 * @see javax.servlet.ServletOutputStream#print(java.lang.String) | |
1058 */ | |
1059 @Override | |
1060 public void print(String s) throws IOException | |
1061 { | |
1062 if (isClosed()) | |
1063 throw new IOException("Closed"); | |
1064 PrintWriter writer=getPrintWriter(null); | |
1065 writer.print(s); | |
1066 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1067 |
826 | 1068 /* ------------------------------------------------------------ */ |
1069 public void sendResponse(Buffer response) throws IOException | |
1070 { | |
1071 ((HttpGenerator)super._generator).sendResponse(response); | |
1072 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1073 |
826 | 1074 /* ------------------------------------------------------------ */ |
1075 public void sendContent(Object content) throws IOException | |
1076 { | |
1077 Resource resource=null; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1078 |
826 | 1079 if (isClosed()) |
1080 throw new IOException("Closed"); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1081 |
826 | 1082 if (super._generator.isWritten()) |
1083 throw new IllegalStateException("!empty"); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1084 |
826 | 1085 if (content instanceof Resource) |
1086 { | |
1087 resource=(Resource)content; | |
1088 _responseFields.putDateField(HttpHeaders.LAST_MODIFIED_BUFFER, resource.lastModified()); | |
1089 content=resource.getInputStream(); | |
1090 } | |
1091 | |
1092 // Process content. | |
1093 if (content instanceof Buffer) | |
1094 { | |
1095 super._generator.addContent((Buffer) content, Generator.LAST); | |
1096 commitResponse(Generator.LAST); | |
1097 } | |
1098 else if (content instanceof InputStream) | |
1099 { | |
1100 InputStream in = (InputStream)content; | |
1101 | |
1102 try | |
1103 { | |
1104 int max = super._generator.prepareUncheckedAddContent(); | |
1105 Buffer buffer = super._generator.getUncheckedBuffer(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1106 |
826 | 1107 int len=buffer.readFrom(in,max); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1108 |
826 | 1109 while (len>=0) |
1110 { | |
1111 super._generator.completeUncheckedAddContent(); | |
1112 _out.flush(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1113 |
826 | 1114 max = super._generator.prepareUncheckedAddContent(); |
1115 buffer = super._generator.getUncheckedBuffer(); | |
1116 len=buffer.readFrom(in,max); | |
1117 } | |
1118 super._generator.completeUncheckedAddContent(); | |
1119 _out.flush(); | |
1120 } | |
1121 finally | |
1122 { | |
1123 if (resource!=null) | |
1124 resource.release(); | |
1125 else | |
1126 in.close(); | |
1127 } | |
1128 } | |
1129 else | |
1130 throw new IllegalArgumentException("unknown content type?"); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1131 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1132 |
826 | 1133 } |
1134 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1135 |
826 | 1136 /* ------------------------------------------------------------ */ |
1137 /* ------------------------------------------------------------ */ | |
1138 /* ------------------------------------------------------------ */ | |
1139 public class OutputWriter extends HttpWriter | |
1140 { | |
1141 OutputWriter() | |
1142 { | |
1143 super(AbstractHttpConnection.this._out); | |
1144 } | |
1145 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1146 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1147 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1148 } |