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