Mercurial Hosting > luan
annotate src/org/eclipse/jetty/server/AbstractHttpConnection.java @ 965:866f2e801618
handle() returns void
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 14 Oct 2016 02:19:21 -0600 |
parents | 3cd4c706a61f |
children | 5ee36654b383 |
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(); |
504 } | |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
505 } |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
506 else |
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 _response.complete(); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
509 } |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
510 |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
511 _request.setHandled(true); |
826 | 512 } |
513 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
514 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
515 |
826 | 516 public void commitResponse(boolean last) throws IOException |
517 { | |
518 if (!_generator.isCommitted()) | |
519 { | |
520 _generator.setResponse(_response.getStatus(), _response.getReason()); | |
521 try | |
522 { | |
523 // If the client was expecting 100 continues, but we sent something | |
524 // else, then we need to close the connection | |
525 if (_expect100Continue && _response.getStatus()!=100) | |
526 _generator.setPersistent(false); | |
527 _generator.completeHeader(_responseFields, last); | |
528 } | |
529 catch(RuntimeException e) | |
530 { | |
531 LOG.warn("header full: " + e); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
532 |
826 | 533 _response.reset(); |
534 _generator.reset(); | |
535 _generator.setResponse(HttpStatus.INTERNAL_SERVER_ERROR_500,null); | |
536 _generator.completeHeader(_responseFields,Generator.LAST); | |
537 _generator.complete(); | |
538 throw new HttpException(HttpStatus.INTERNAL_SERVER_ERROR_500); | |
539 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
540 |
826 | 541 } |
542 if (last) | |
543 _generator.complete(); | |
544 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
545 |
826 | 546 /* ------------------------------------------------------------ */ |
547 public void completeResponse() throws IOException | |
548 { | |
549 if (!_generator.isCommitted()) | |
550 { | |
551 _generator.setResponse(_response.getStatus(), _response.getReason()); | |
552 try | |
553 { | |
554 _generator.completeHeader(_responseFields, Generator.LAST); | |
555 } | |
556 catch(RuntimeException e) | |
557 { | |
558 LOG.warn("header full: "+e); | |
559 LOG.debug("",e); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
560 |
826 | 561 _response.reset(); |
562 _generator.reset(); | |
563 _generator.setResponse(HttpStatus.INTERNAL_SERVER_ERROR_500,null); | |
564 _generator.completeHeader(_responseFields,Generator.LAST); | |
565 _generator.complete(); | |
566 throw new HttpException(HttpStatus.INTERNAL_SERVER_ERROR_500); | |
567 } | |
568 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
569 |
826 | 570 _generator.complete(); |
571 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
572 |
826 | 573 /* ------------------------------------------------------------ */ |
574 public void flushResponse() throws IOException | |
575 { | |
576 try | |
577 { | |
578 commitResponse(Generator.MORE); | |
579 _generator.flushBuffer(); | |
580 } | |
581 catch(IOException e) | |
582 { | |
583 throw (e instanceof EofException) ? e:new EofException(e); | |
584 } | |
585 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
586 |
826 | 587 /* ------------------------------------------------------------ */ |
588 public Generator getGenerator() | |
589 { | |
590 return _generator; | |
591 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
592 |
826 | 593 /* ------------------------------------------------------------ */ |
594 public boolean isIncluding() | |
595 { | |
596 return _include>0; | |
597 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
598 |
826 | 599 /* ------------------------------------------------------------ */ |
600 public void include() | |
601 { | |
602 _include++; | |
603 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
604 |
826 | 605 /* ------------------------------------------------------------ */ |
606 public void included() | |
607 { | |
608 _include--; | |
609 if (_out!=null) | |
610 _out.reopen(); | |
611 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
612 |
826 | 613 public boolean isIdle() |
614 { | |
615 return _generator.isIdle() && (_parser.isIdle() || _delayedHandling); | |
616 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
617 |
826 | 618 /* ------------------------------------------------------------ */ |
619 /** | |
620 * @see org.eclipse.jetty.io.Connection#isSuspended() | |
621 */ | |
622 public boolean isSuspended() | |
623 { | |
934
fe461f7cfc8e
simplify AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
931
diff
changeset
|
624 return false; |
826 | 625 } |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
626 |
826 | 627 public boolean isExpecting100Continues() |
628 { | |
629 return _expect100Continue; | |
630 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
631 |
826 | 632 public boolean isExpecting102Processing() |
633 { | |
634 return _expect102Processing; | |
635 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
636 |
826 | 637 public int getMaxIdleTime() |
638 { | |
639 if (_connector.isLowResources() && _endp.getMaxIdleTime()==_connector.getMaxIdleTime()) | |
913 | 640 return 0; |
826 | 641 if (_endp.getMaxIdleTime()>0) |
642 return _endp.getMaxIdleTime(); | |
643 return _connector.getMaxIdleTime(); | |
644 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
645 |
826 | 646 public String toString() |
647 { | |
648 return String.format("%s,g=%s,p=%s,r=%d", | |
649 super.toString(), | |
650 _generator, | |
651 _parser, | |
652 _requests); | |
653 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
654 |
826 | 655 /* ------------------------------------------------------------ */ |
656 protected void startRequest(Buffer method, Buffer uri, Buffer version) throws IOException | |
657 { | |
658 uri=uri.asImmutableBuffer(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
659 |
826 | 660 _host = false; |
661 _expect = false; | |
662 _expect100Continue=false; | |
663 _expect102Processing=false; | |
664 _delayedHandling=false; | |
665 _charset=null; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
666 |
826 | 667 if(_request.getTimeStamp()==0) |
668 _request.setTimeStamp(System.currentTimeMillis()); | |
669 _request.setMethod(method.toString()); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
670 |
826 | 671 try |
672 { | |
673 _head=false; | |
674 switch (HttpMethods.CACHE.getOrdinal(method)) | |
675 { | |
676 case HttpMethods.CONNECT_ORDINAL: | |
677 _uri.parseConnect(uri.array(), uri.getIndex(), uri.length()); | |
678 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
679 |
826 | 680 case HttpMethods.HEAD_ORDINAL: |
681 _head=true; | |
682 _uri.parse(uri.array(), uri.getIndex(), uri.length()); | |
683 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
684 |
826 | 685 default: |
686 _uri.parse(uri.array(), uri.getIndex(), uri.length()); | |
687 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
688 |
826 | 689 _request.setUri(_uri); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
690 |
826 | 691 if (version==null) |
692 { | |
693 _request.setProtocol(HttpVersions.HTTP_0_9); | |
694 _version=HttpVersions.HTTP_0_9_ORDINAL; | |
695 } | |
696 else | |
697 { | |
698 version= HttpVersions.CACHE.get(version); | |
699 if (version==null) | |
700 throw new HttpException(HttpStatus.BAD_REQUEST_400,null); | |
701 _version = HttpVersions.CACHE.getOrdinal(version); | |
702 if (_version <= 0) _version = HttpVersions.HTTP_1_0_ORDINAL; | |
703 _request.setProtocol(version.toString()); | |
704 } | |
705 } | |
706 catch (Exception e) | |
707 { | |
708 LOG.debug("",e); | |
709 if (e instanceof HttpException) | |
710 throw (HttpException)e; | |
711 throw new HttpException(HttpStatus.BAD_REQUEST_400,null,e); | |
712 } | |
713 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
714 |
826 | 715 /* ------------------------------------------------------------ */ |
716 protected void parsedHeader(Buffer name, Buffer value) throws IOException | |
717 { | |
718 int ho = HttpHeaders.CACHE.getOrdinal(name); | |
719 switch (ho) | |
720 { | |
721 case HttpHeaders.HOST_ORDINAL: | |
722 // TODO check if host matched a host in the URI. | |
723 _host = true; | |
724 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
725 |
826 | 726 case HttpHeaders.EXPECT_ORDINAL: |
727 if (_version>=HttpVersions.HTTP_1_1_ORDINAL) | |
728 { | |
729 value = HttpHeaderValues.CACHE.lookup(value); | |
730 switch(HttpHeaderValues.CACHE.getOrdinal(value)) | |
731 { | |
732 case HttpHeaderValues.CONTINUE_ORDINAL: | |
733 _expect100Continue=_generator instanceof HttpGenerator; | |
734 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
735 |
826 | 736 case HttpHeaderValues.PROCESSING_ORDINAL: |
737 _expect102Processing=_generator instanceof HttpGenerator; | |
738 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
739 |
826 | 740 default: |
741 String[] values = value.toString().split(","); | |
742 for (int i=0;values!=null && i<values.length;i++) | |
743 { | |
744 CachedBuffer cb=HttpHeaderValues.CACHE.get(values[i].trim()); | |
745 if (cb==null) | |
746 _expect=true; | |
747 else | |
748 { | |
749 switch(cb.getOrdinal()) | |
750 { | |
751 case HttpHeaderValues.CONTINUE_ORDINAL: | |
752 _expect100Continue=_generator instanceof HttpGenerator; | |
753 break; | |
754 case HttpHeaderValues.PROCESSING_ORDINAL: | |
755 _expect102Processing=_generator instanceof HttpGenerator; | |
756 break; | |
757 default: | |
758 _expect=true; | |
759 } | |
760 } | |
761 } | |
762 } | |
763 } | |
764 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
765 |
826 | 766 case HttpHeaders.ACCEPT_ENCODING_ORDINAL: |
767 case HttpHeaders.USER_AGENT_ORDINAL: | |
768 value = HttpHeaderValues.CACHE.lookup(value); | |
769 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
770 |
826 | 771 case HttpHeaders.CONTENT_TYPE_ORDINAL: |
772 value = MimeTypes.CACHE.lookup(value); | |
773 _charset=MimeTypes.getCharsetFromContentType(value); | |
774 break; | |
775 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
776 |
826 | 777 _requestFields.add(name, value); |
778 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
779 |
826 | 780 /* ------------------------------------------------------------ */ |
781 protected void headerComplete() throws IOException | |
782 { | |
783 // Handle idle race | |
784 if (_endp.isOutputShutdown()) | |
785 { | |
786 _endp.close(); | |
787 return; | |
788 } | |
789 | |
790 _requests++; | |
791 _generator.setVersion(_version); | |
792 switch (_version) | |
793 { | |
794 case HttpVersions.HTTP_0_9_ORDINAL: | |
795 break; | |
796 case HttpVersions.HTTP_1_0_ORDINAL: | |
797 _generator.setHead(_head); | |
798 if (_parser.isPersistent()) | |
799 { | |
800 _responseFields.add(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.KEEP_ALIVE_BUFFER); | |
801 _generator.setPersistent(true); | |
802 } | |
803 else if (HttpMethods.CONNECT.equals(_request.getMethod())) | |
804 { | |
805 _generator.setPersistent(true); | |
806 _parser.setPersistent(true); | |
807 } | |
808 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
809 |
826 | 810 case HttpVersions.HTTP_1_1_ORDINAL: |
811 _generator.setHead(_head); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
812 |
826 | 813 if (!_parser.isPersistent()) |
814 { | |
815 _responseFields.add(HttpHeaders.CONNECTION_BUFFER,HttpHeaderValues.CLOSE_BUFFER); | |
816 _generator.setPersistent(false); | |
817 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
818 |
826 | 819 if (!_host) |
820 { | |
821 LOG.debug("!host {}",this); | |
822 _generator.setResponse(HttpStatus.BAD_REQUEST_400, null); | |
823 _responseFields.put(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.CLOSE_BUFFER); | |
824 _generator.completeHeader(_responseFields, true); | |
825 _generator.complete(); | |
826 return; | |
827 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
828 |
826 | 829 if (_expect) |
830 { | |
831 LOG.debug("!expectation {}",this); | |
832 _generator.setResponse(HttpStatus.EXPECTATION_FAILED_417, null); | |
833 _responseFields.put(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.CLOSE_BUFFER); | |
834 _generator.completeHeader(_responseFields, true); | |
835 _generator.complete(); | |
836 return; | |
837 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
838 |
826 | 839 break; |
840 default: | |
841 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
842 |
826 | 843 if(_charset!=null) |
844 _request.setCharacterEncodingUnchecked(_charset); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
845 |
826 | 846 // Either handle now or wait for first content |
847 if ((((HttpParser)_parser).getContentLength()<=0 && !((HttpParser)_parser).isChunking())||_expect100Continue) | |
848 handleRequest(); | |
849 else | |
850 _delayedHandling=true; | |
851 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
852 |
826 | 853 /* ------------------------------------------------------------ */ |
854 protected void content(Buffer buffer) throws IOException | |
855 { | |
856 if (_delayedHandling) | |
857 { | |
858 _delayedHandling=false; | |
859 handleRequest(); | |
860 } | |
861 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
862 |
826 | 863 /* ------------------------------------------------------------ */ |
864 public void messageComplete(long contentLength) throws IOException | |
865 { | |
866 if (_delayedHandling) | |
867 { | |
868 _delayedHandling=false; | |
869 handleRequest(); | |
870 } | |
871 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
872 |
826 | 873 /* ------------------------------------------------------------ */ |
874 public void earlyEOF() | |
875 { | |
876 _earlyEOF = true; | |
877 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
878 |
826 | 879 /* ------------------------------------------------------------ */ |
880 /* ------------------------------------------------------------ */ | |
881 /* ------------------------------------------------------------ */ | |
882 private class RequestHandler extends HttpParser.EventHandler | |
883 { | |
884 /* | |
885 * | |
886 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#startRequest(org.eclipse.io.Buffer, | |
887 * org.eclipse.io.Buffer, org.eclipse.io.Buffer) | |
888 */ | |
889 @Override | |
890 public void startRequest(Buffer method, Buffer uri, Buffer version) throws IOException | |
891 { | |
892 AbstractHttpConnection.this.startRequest(method, uri, version); | |
893 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
894 |
826 | 895 /* |
896 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#parsedHeaderValue(org.eclipse.io.Buffer) | |
897 */ | |
898 @Override | |
899 public void parsedHeader(Buffer name, Buffer value) throws IOException | |
900 { | |
901 AbstractHttpConnection.this.parsedHeader(name, value); | |
902 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
903 |
826 | 904 /* |
905 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#headerComplete() | |
906 */ | |
907 @Override | |
908 public void headerComplete() throws IOException | |
909 { | |
910 AbstractHttpConnection.this.headerComplete(); | |
911 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
912 |
826 | 913 /* ------------------------------------------------------------ */ |
914 /* | |
915 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#content(int, org.eclipse.io.Buffer) | |
916 */ | |
917 @Override | |
918 public void content(Buffer ref) throws IOException | |
919 { | |
920 AbstractHttpConnection.this.content(ref); | |
921 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
922 |
826 | 923 /* ------------------------------------------------------------ */ |
924 /* | |
925 * (non-Javadoc) | |
926 * | |
927 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#messageComplete(int) | |
928 */ | |
929 @Override | |
930 public void messageComplete(long contentLength) throws IOException | |
931 { | |
932 AbstractHttpConnection.this.messageComplete(contentLength); | |
933 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
934 |
826 | 935 /* ------------------------------------------------------------ */ |
936 /* | |
937 * (non-Javadoc) | |
938 * | |
939 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#startResponse(org.eclipse.io.Buffer, int, | |
940 * org.eclipse.io.Buffer) | |
941 */ | |
942 @Override | |
943 public void startResponse(Buffer version, int status, Buffer reason) | |
944 { | |
945 if (LOG.isDebugEnabled()) | |
946 LOG.debug("Bad request!: "+version+" "+status+" "+reason); | |
947 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
948 |
826 | 949 /* ------------------------------------------------------------ */ |
950 /* | |
951 * (non-Javadoc) | |
952 * | |
953 * @see org.eclipse.jetty.server.server.HttpParser.EventHandler#earlyEOF() | |
954 */ | |
955 @Override | |
956 public void earlyEOF() | |
957 { | |
958 AbstractHttpConnection.this.earlyEOF(); | |
959 } | |
960 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
961 |
826 | 962 /* ------------------------------------------------------------ */ |
963 /* ------------------------------------------------------------ */ | |
964 /* ------------------------------------------------------------ */ | |
965 public class Output extends HttpOutput | |
966 { | |
967 Output() | |
968 { | |
969 super(AbstractHttpConnection.this); | |
970 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
971 |
826 | 972 /* ------------------------------------------------------------ */ |
973 /* | |
974 * @see java.io.OutputStream#close() | |
975 */ | |
976 @Override | |
977 public void close() throws IOException | |
978 { | |
979 if (isClosed()) | |
980 return; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
981 |
826 | 982 if (!isIncluding() && !super._generator.isCommitted()) |
983 commitResponse(Generator.LAST); | |
984 else | |
985 flushResponse(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
986 |
826 | 987 super.close(); |
988 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
989 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
990 |
826 | 991 /* ------------------------------------------------------------ */ |
992 /* | |
993 * @see java.io.OutputStream#flush() | |
994 */ | |
995 @Override | |
996 public void flush() throws IOException | |
997 { | |
998 if (!super._generator.isCommitted()) | |
999 commitResponse(Generator.MORE); | |
1000 super.flush(); | |
1001 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1002 |
826 | 1003 /* ------------------------------------------------------------ */ |
1004 /* | |
1005 * @see javax.servlet.ServletOutputStream#print(java.lang.String) | |
1006 */ | |
1007 @Override | |
1008 public void print(String s) throws IOException | |
1009 { | |
1010 if (isClosed()) | |
1011 throw new IOException("Closed"); | |
1012 PrintWriter writer=getPrintWriter(null); | |
1013 writer.print(s); | |
1014 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1015 |
826 | 1016 /* ------------------------------------------------------------ */ |
1017 public void sendResponse(Buffer response) throws IOException | |
1018 { | |
1019 ((HttpGenerator)super._generator).sendResponse(response); | |
1020 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1021 |
826 | 1022 /* ------------------------------------------------------------ */ |
1023 public void sendContent(Object content) throws IOException | |
1024 { | |
1025 Resource resource=null; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1026 |
826 | 1027 if (isClosed()) |
1028 throw new IOException("Closed"); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1029 |
826 | 1030 if (super._generator.isWritten()) |
1031 throw new IllegalStateException("!empty"); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1032 |
826 | 1033 if (content instanceof Resource) |
1034 { | |
1035 resource=(Resource)content; | |
1036 _responseFields.putDateField(HttpHeaders.LAST_MODIFIED_BUFFER, resource.lastModified()); | |
1037 content=resource.getInputStream(); | |
1038 } | |
1039 | |
1040 // Process content. | |
1041 if (content instanceof Buffer) | |
1042 { | |
1043 super._generator.addContent((Buffer) content, Generator.LAST); | |
1044 commitResponse(Generator.LAST); | |
1045 } | |
1046 else if (content instanceof InputStream) | |
1047 { | |
1048 InputStream in = (InputStream)content; | |
1049 | |
1050 try | |
1051 { | |
1052 int max = super._generator.prepareUncheckedAddContent(); | |
1053 Buffer buffer = super._generator.getUncheckedBuffer(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1054 |
826 | 1055 int len=buffer.readFrom(in,max); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1056 |
826 | 1057 while (len>=0) |
1058 { | |
1059 super._generator.completeUncheckedAddContent(); | |
1060 _out.flush(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1061 |
826 | 1062 max = super._generator.prepareUncheckedAddContent(); |
1063 buffer = super._generator.getUncheckedBuffer(); | |
1064 len=buffer.readFrom(in,max); | |
1065 } | |
1066 super._generator.completeUncheckedAddContent(); | |
1067 _out.flush(); | |
1068 } | |
1069 finally | |
1070 { | |
1071 if (resource!=null) | |
1072 resource.release(); | |
1073 else | |
1074 in.close(); | |
1075 } | |
1076 } | |
1077 else | |
1078 throw new IllegalArgumentException("unknown content type?"); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1079 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1080 |
826 | 1081 } |
1082 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1083 |
826 | 1084 /* ------------------------------------------------------------ */ |
1085 /* ------------------------------------------------------------ */ | |
1086 /* ------------------------------------------------------------ */ | |
1087 public class OutputWriter extends HttpWriter | |
1088 { | |
1089 OutputWriter() | |
1090 { | |
1091 super(AbstractHttpConnection.this._out); | |
1092 } | |
1093 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
1094 |
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 } |