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