Mercurial Hosting > luan
annotate src/org/eclipse/jetty/server/AbstractHttpConnection.java @ 1023:27f3dc761452
MimeTypes uses StringCache
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 01 Nov 2016 03:44:46 -0600 |
parents | 3718afd99988 |
children | cf0367978d8b |
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; |
985 | 24 import java.io.Writer; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
25 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
26 import javax.servlet.ServletInputStream; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
27 import javax.servlet.ServletOutputStream; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
28 import javax.servlet.http.HttpServletRequest; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
29 import javax.servlet.http.HttpServletResponse; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
30 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
31 import org.eclipse.jetty.http.HttpException; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
32 import org.eclipse.jetty.http.HttpFields; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
33 import org.eclipse.jetty.http.HttpGenerator; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
34 import org.eclipse.jetty.http.HttpHeaderValues; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
35 import org.eclipse.jetty.http.HttpHeaders; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
36 import org.eclipse.jetty.http.HttpMethods; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
37 import org.eclipse.jetty.http.HttpParser; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
38 import org.eclipse.jetty.http.HttpStatus; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
39 import org.eclipse.jetty.http.HttpURI; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
40 import org.eclipse.jetty.http.HttpVersions; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
41 import org.eclipse.jetty.http.MimeTypes; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
42 import org.eclipse.jetty.io.AbstractConnection; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
43 import org.eclipse.jetty.io.Buffer; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
44 import org.eclipse.jetty.io.Buffers; |
985 | 45 import org.eclipse.jetty.io.ByteArrayBuffer; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
46 import org.eclipse.jetty.io.EndPoint; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
47 import org.eclipse.jetty.io.EofException; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
48 import org.eclipse.jetty.io.RuntimeIOException; |
985 | 49 import org.eclipse.jetty.util.ByteArrayOutputStream2; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
50 import org.eclipse.jetty.util.QuotedStringTokenizer; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
51 import org.eclipse.jetty.util.StringUtil; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
52 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
|
53 import org.slf4j.Logger; |
8e9db0bbf4f9
remove org.eclipse.jetty.util.log and upgrade slf4j
Franklin Schmidt <fschmidt@gmail.com>
parents:
802
diff
changeset
|
54 import org.slf4j.LoggerFactory; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
55 import org.eclipse.jetty.util.resource.Resource; |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
56 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
57 /** |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
58 * <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
|
59 * 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
|
60 * 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
|
61 * </p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
62 * <p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
63 * 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
|
64 * pooling. The {@link Request}, {@link Response}, {@link HttpParser}, {@link HttpGenerator} |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
65 * 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
|
66 * a connection. Where appropriate, allocated buffers are also kept associated |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
67 * with the connection via the parser and/or generator. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
68 * </p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
69 * <p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
70 * 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
|
71 * 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
|
72 * 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
|
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 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
|
76 * 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
|
77 * 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
|
78 * 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
|
79 * 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
|
80 * 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
|
81 * 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
|
82 * 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
|
83 * (HttpParser)http.getParser()).getHeaderBuffer() and |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
84 * (HttpParser)http.getParser()).getBodyBuffer() to initialise their new connection. |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
85 * </p> |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
86 * |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
87 */ |
982 | 88 public abstract class AbstractHttpConnection extends AbstractConnection |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
89 { |
826 | 90 private static final Logger LOG = LoggerFactory.getLogger(AbstractHttpConnection.class); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
91 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
92 private final Connector _connector; |
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
93 private final Server _server; |
1013 | 94 protected final HttpURI _uri = new HttpURI(); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
95 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
96 protected final HttpParser _parser; |
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
97 protected final HttpFields _requestFields = new HttpFields(); |
1015 | 98 public volatile Request _request; |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
99 private volatile ServletInputStream _in; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
100 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
101 protected final HttpGenerator _generator; |
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
102 final HttpFields _responseFields = new HttpFields(); |
1015 | 103 protected volatile Response _response; |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
104 private volatile Output _out; |
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
105 private volatile HttpWriter _writer; |
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
106 private volatile PrintWriter _printWriter; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
107 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
108 private int _version = -2; // UNKNOWN |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
109 |
826 | 110 private String _charset; |
111 private boolean _expect = false; | |
112 private boolean _expect100Continue = false; | |
113 private boolean _head = false; | |
114 private boolean _host = false; | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
115 private boolean _delayedHandling = false; |
826 | 116 private boolean _earlyEOF = false; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
117 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
118 protected AbstractHttpConnection(Connector connector, EndPoint endpoint) |
826 | 119 { |
120 super(endpoint); | |
121 _connector = connector; | |
1007
945568ee77ac
remove HttpBuffersImpl
Franklin Schmidt <fschmidt@gmail.com>
parents:
1005
diff
changeset
|
122 _parser = new HttpParser(_connector.getRequestBuffers(), endpoint, new RequestHandler()); |
1015 | 123 _generator = new HttpGenerator(_connector.getResponseBuffers(), endpoint); |
124 _server = connector.server; | |
125 init(); | |
126 } | |
127 | |
128 private void init() { | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
129 _request = new Request(this); |
826 | 130 _response = new Response(this); |
131 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
132 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
133 public final Connector getConnector() |
826 | 134 { |
135 return _connector; | |
136 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
137 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
138 public final Request getRequest() |
826 | 139 { |
140 return _request; | |
141 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
142 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
143 public final Response getResponse() |
826 | 144 { |
145 return _response; | |
146 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
147 |
826 | 148 /* ------------------------------------------------------------ */ |
149 /** | |
150 * Get the inputStream from the connection. | |
151 * <p> | |
152 * If the associated response has the Expect header set to 100 Continue, | |
153 * then accessing the input stream indicates that the handler/servlet | |
154 * is ready for the request body and thus a 100 Continue response is sent. | |
155 * | |
156 * @return The input stream for this connection. | |
157 * The stream will be created if it does not already exist. | |
158 * @throws IOException if the input stream cannot be retrieved | |
159 */ | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
160 public final ServletInputStream getInputStream() throws IOException |
826 | 161 { |
162 // If the client is expecting 100 CONTINUE, then send it now. | |
163 if (_expect100Continue) | |
164 { | |
165 // is content missing? | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
166 if (_parser.getHeaderBuffer()==null || _parser.getHeaderBuffer().length()<2) |
826 | 167 { |
168 if (_generator.isCommitted()) | |
169 throw new IllegalStateException("Committed before 100 Continues"); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
170 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
171 _generator.send1xx(HttpStatus.CONTINUE_100); |
826 | 172 } |
173 _expect100Continue=false; | |
174 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
175 |
826 | 176 if (_in == null) |
981 | 177 _in = new HttpInput(); |
826 | 178 return _in; |
179 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
180 |
826 | 181 /* ------------------------------------------------------------ */ |
182 /** | |
183 * @return The output stream for this connection. The stream will be created if it does not already exist. | |
184 */ | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
185 public final ServletOutputStream getOutputStream() |
826 | 186 { |
187 if (_out == null) | |
188 _out = new Output(); | |
189 return _out; | |
190 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
191 |
826 | 192 /* ------------------------------------------------------------ */ |
193 /** | |
194 * @param encoding the PrintWriter encoding | |
195 * @return A {@link PrintWriter} wrapping the {@link #getOutputStream output stream}. The writer is created if it | |
196 * does not already exist. | |
197 */ | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
198 public final PrintWriter getPrintWriter(String encoding) |
826 | 199 { |
200 getOutputStream(); | |
201 if (_writer==null) | |
202 { | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
203 _writer = new HttpWriter(_out); |
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
204 _printWriter = new PrintWriter(_writer) |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
205 { |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
206 public void close() |
826 | 207 { |
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
208 synchronized (lock) |
826 | 209 { |
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
210 try |
826 | 211 { |
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
212 out.close(); |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
213 } |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
214 catch (IOException e) |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
215 { |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
216 setError(); |
826 | 217 } |
218 } | |
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
219 } |
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
220 }; |
826 | 221 } |
222 _writer.setCharacterEncoding(encoding); | |
223 return _printWriter; | |
224 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
225 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
226 protected void reset() |
826 | 227 { |
228 _parser.reset(); | |
229 _requestFields.clear(); | |
230 _generator.reset(); | |
231 _generator.returnBuffers();// TODO maybe only on unhandle | |
232 _responseFields.clear(); | |
233 _uri.clear(); | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
234 _writer = null; |
826 | 235 _earlyEOF = false; |
1015 | 236 init(); |
826 | 237 } |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
238 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
239 private void handleRequest() throws IOException |
826 | 240 { |
241 boolean error = false; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
242 |
826 | 243 try |
244 { | |
245 // Loop here to handle async request redispatches. | |
246 // The loop is controlled by the call to async.unhandle in the | |
247 // finally block below. If call is from a non-blocking connector, | |
248 // then the unhandle will return false only if an async dispatch has | |
249 // already happened when unhandle is called. For a blocking connector, | |
250 // the wait for the asynchronous dispatch or timeout actually happens | |
251 // within the call to unhandle(). | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
252 |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
253 _request.setHandled(false); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
254 |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
255 String info=null; |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
256 try |
826 | 257 { |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
258 _uri.getPort(); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
259 String path = null; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
260 |
826 | 261 try |
262 { | |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
263 path = _uri.getDecodedPath(); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
264 } |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
265 catch (Exception e) |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
266 { |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
267 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
|
268 LOG.trace("",e); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
269 path = _uri.getDecodedPath(StringUtil.__ISO_8859_1); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
270 } |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
271 |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
272 info = URIUtil.canonicalPath(path); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
273 if (info==null && !_request.getMethod().equals(HttpMethods.CONNECT)) |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
274 { |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
275 if (path==null && _uri.getScheme()!=null && _uri.getHost()!=null) |
826 | 276 { |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
277 info="/"; |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
278 _request.setRequestURI(""); |
826 | 279 } |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
280 else |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
281 throw new HttpException(400); |
826 | 282 } |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
283 _request.setPathInfo(info); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
284 |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
285 if (_out!=null) |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
286 _out.reopen(); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
287 |
1001 | 288 _connector.customize(this); |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
289 _server.handle(this); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
290 } |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
291 catch (EofException e) |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
292 { |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
293 LOG.debug("",e); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
294 error=true; |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
295 _request.setHandled(true); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
296 if (!_response.isCommitted()) |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
297 _generator.sendError(500, null, null, true); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
298 } |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
299 catch (RuntimeIOException e) |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
300 { |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
301 LOG.debug("",e); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
302 error=true; |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
303 _request.setHandled(true); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
304 } |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
305 catch (HttpException e) |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
306 { |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
307 LOG.debug("",e); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
308 error=true; |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
309 _request.setHandled(true); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
310 _response.sendError(e.getStatus(), e.getReason()); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
311 } |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
312 catch (Throwable e) |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
313 { |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
314 LOG.warn(String.valueOf(_uri),e); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
315 error=true; |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
316 _request.setHandled(true); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
317 _generator.sendError(info==null?400:500, null, null, true); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
318 |
826 | 319 } |
320 } | |
321 finally | |
322 { | |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
323 if (_expect100Continue) |
826 | 324 { |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
325 LOG.debug("100 continues not sent"); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
326 // We didn't send 100 continues, but the latest interpretation |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
327 // of the spec (see httpbis) is that the client will either |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
328 // send the body anyway, or close. So we no longer need to |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
329 // do anything special here other than make the connection not persistent |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
330 _expect100Continue = false; |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
331 if (!_response.isCommitted()) |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
332 _generator.setPersistent(false); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
333 } |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
334 |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
335 if(_endp.isOpen()) |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
336 { |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
337 if (error) |
826 | 338 { |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
339 _endp.shutdownOutput(); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
340 _generator.setPersistent(false); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
341 if (!_generator.isComplete()) |
826 | 342 _response.complete(); |
343 } | |
344 else | |
345 { | |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
346 if (!_response.isCommitted() && !_request.isHandled()) |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
347 _response.sendError(HttpServletResponse.SC_NOT_FOUND); |
826 | 348 _response.complete(); |
349 } | |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
350 } |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
351 else |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
352 { |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
353 _response.complete(); |
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
354 } |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
355 |
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
356 _request.setHandled(true); |
826 | 357 } |
358 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
359 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
360 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
361 public final void commitResponse(boolean last) throws IOException |
826 | 362 { |
363 if (!_generator.isCommitted()) | |
364 { | |
365 _generator.setResponse(_response.getStatus(), _response.getReason()); | |
366 try | |
367 { | |
368 // If the client was expecting 100 continues, but we sent something | |
369 // else, then we need to close the connection | |
370 if (_expect100Continue && _response.getStatus()!=100) | |
371 _generator.setPersistent(false); | |
372 _generator.completeHeader(_responseFields, last); | |
373 } | |
374 catch(RuntimeException e) | |
375 { | |
376 LOG.warn("header full: " + e); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
377 |
826 | 378 _response.reset(); |
379 _generator.reset(); | |
380 _generator.setResponse(HttpStatus.INTERNAL_SERVER_ERROR_500,null); | |
982 | 381 _generator.completeHeader(_responseFields,HttpGenerator.LAST); |
826 | 382 _generator.complete(); |
383 throw new HttpException(HttpStatus.INTERNAL_SERVER_ERROR_500); | |
384 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
385 |
826 | 386 } |
387 if (last) | |
388 _generator.complete(); | |
389 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
390 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
391 public final void completeResponse() throws IOException |
826 | 392 { |
393 if (!_generator.isCommitted()) | |
394 { | |
395 _generator.setResponse(_response.getStatus(), _response.getReason()); | |
396 try | |
397 { | |
982 | 398 _generator.completeHeader(_responseFields, HttpGenerator.LAST); |
826 | 399 } |
400 catch(RuntimeException e) | |
401 { | |
402 LOG.warn("header full: "+e); | |
403 LOG.debug("",e); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
404 |
826 | 405 _response.reset(); |
406 _generator.reset(); | |
407 _generator.setResponse(HttpStatus.INTERNAL_SERVER_ERROR_500,null); | |
982 | 408 _generator.completeHeader(_responseFields,HttpGenerator.LAST); |
826 | 409 _generator.complete(); |
410 throw new HttpException(HttpStatus.INTERNAL_SERVER_ERROR_500); | |
411 } | |
412 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
413 |
826 | 414 _generator.complete(); |
415 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
416 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
417 public final void flushResponse() throws IOException |
826 | 418 { |
419 try | |
420 { | |
982 | 421 commitResponse(HttpGenerator.MORE); |
826 | 422 _generator.flushBuffer(); |
423 } | |
424 catch(IOException e) | |
425 { | |
426 throw (e instanceof EofException) ? e:new EofException(e); | |
427 } | |
428 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
429 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
430 public final int getMaxIdleTime() |
826 | 431 { |
996 | 432 if (_connector.server.isLowOnThreads() && _endp.getMaxIdleTime()==_connector.getMaxIdleTime()) |
913 | 433 return 0; |
826 | 434 if (_endp.getMaxIdleTime()>0) |
435 return _endp.getMaxIdleTime(); | |
436 return _connector.getMaxIdleTime(); | |
437 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
438 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
439 @Override |
826 | 440 public String toString() |
441 { | |
1001 | 442 return String.format("%s,g=%s,p=%s", |
826 | 443 super.toString(), |
444 _generator, | |
1001 | 445 _parser); |
826 | 446 } |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
447 |
1019
f126d30e04a4
start replacing BufferCache with StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1017
diff
changeset
|
448 private void startRequest(String method, Buffer uri, String version) throws IOException |
826 | 449 { |
450 uri=uri.asImmutableBuffer(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
451 |
826 | 452 _host = false; |
453 _expect = false; | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
454 _expect100Continue = false; |
826 | 455 _delayedHandling=false; |
456 _charset=null; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
457 |
826 | 458 if(_request.getTimeStamp()==0) |
459 _request.setTimeStamp(System.currentTimeMillis()); | |
1019
f126d30e04a4
start replacing BufferCache with StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1017
diff
changeset
|
460 _request.setMethod(method); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
461 |
826 | 462 try |
463 { | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
464 _head = false; |
826 | 465 switch (HttpMethods.CACHE.getOrdinal(method)) |
466 { | |
467 case HttpMethods.CONNECT_ORDINAL: | |
468 _uri.parseConnect(uri.array(), uri.getIndex(), uri.length()); | |
469 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
470 |
826 | 471 case HttpMethods.HEAD_ORDINAL: |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
472 _head = true; |
826 | 473 _uri.parse(uri.array(), uri.getIndex(), uri.length()); |
474 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
475 |
826 | 476 default: |
477 _uri.parse(uri.array(), uri.getIndex(), uri.length()); | |
478 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
479 |
826 | 480 _request.setUri(_uri); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
481 |
826 | 482 if (version==null) |
483 { | |
484 _request.setProtocol(HttpVersions.HTTP_0_9); | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
485 _version = HttpVersions.HTTP_0_9_ORDINAL; |
826 | 486 } |
487 else | |
488 { | |
1019
f126d30e04a4
start replacing BufferCache with StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1017
diff
changeset
|
489 if (!HttpVersions.CACHE.contains(version)) |
826 | 490 throw new HttpException(HttpStatus.BAD_REQUEST_400,null); |
491 _version = HttpVersions.CACHE.getOrdinal(version); | |
492 if (_version <= 0) _version = HttpVersions.HTTP_1_0_ORDINAL; | |
493 _request.setProtocol(version.toString()); | |
494 } | |
495 } | |
496 catch (Exception e) | |
497 { | |
498 LOG.debug("",e); | |
499 if (e instanceof HttpException) | |
500 throw (HttpException)e; | |
501 throw new HttpException(HttpStatus.BAD_REQUEST_400,null,e); | |
502 } | |
503 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
504 |
1021 | 505 private void parsedHeader(String name, String value) throws IOException |
826 | 506 { |
507 int ho = HttpHeaders.CACHE.getOrdinal(name); | |
508 switch (ho) | |
509 { | |
510 case HttpHeaders.HOST_ORDINAL: | |
511 // TODO check if host matched a host in the URI. | |
512 _host = true; | |
513 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
514 |
826 | 515 case HttpHeaders.EXPECT_ORDINAL: |
516 if (_version>=HttpVersions.HTTP_1_1_ORDINAL) | |
517 { | |
1020
6be43ef1eb96
HttpHeaderValues uses StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1019
diff
changeset
|
518 // value = HttpHeaderValues.CACHE.lookup(value); |
826 | 519 switch(HttpHeaderValues.CACHE.getOrdinal(value)) |
520 { | |
521 case HttpHeaderValues.CONTINUE_ORDINAL: | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
522 _expect100Continue = true; |
826 | 523 break; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
524 |
826 | 525 default: |
526 String[] values = value.toString().split(","); | |
527 for (int i=0;values!=null && i<values.length;i++) | |
528 { | |
1020
6be43ef1eb96
HttpHeaderValues uses StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1019
diff
changeset
|
529 int cb = HttpHeaderValues.CACHE.getOrdinal(values[i].trim()); |
6be43ef1eb96
HttpHeaderValues uses StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1019
diff
changeset
|
530 if (cb == -1) |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
531 _expect = true; |
826 | 532 else |
533 { | |
1020
6be43ef1eb96
HttpHeaderValues uses StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1019
diff
changeset
|
534 switch(cb) |
826 | 535 { |
536 case HttpHeaderValues.CONTINUE_ORDINAL: | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
537 _expect100Continue = true; |
826 | 538 break; |
539 default: | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
540 _expect = true; |
826 | 541 } |
542 } | |
543 } | |
544 } | |
545 } | |
546 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
547 |
826 | 548 case HttpHeaders.ACCEPT_ENCODING_ORDINAL: |
549 case HttpHeaders.USER_AGENT_ORDINAL: | |
1020
6be43ef1eb96
HttpHeaderValues uses StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1019
diff
changeset
|
550 // value = HttpHeaderValues.CACHE.lookup(value); |
826 | 551 break; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
552 |
826 | 553 case HttpHeaders.CONTENT_TYPE_ORDINAL: |
1020
6be43ef1eb96
HttpHeaderValues uses StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1019
diff
changeset
|
554 // value = MimeTypes.CACHE.lookup(value); |
1023
27f3dc761452
MimeTypes uses StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1022
diff
changeset
|
555 _charset = MimeTypes.getCharsetFromContentType(value); |
826 | 556 break; |
557 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
558 |
826 | 559 _requestFields.add(name, value); |
560 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
561 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
562 private void headerComplete() throws IOException |
826 | 563 { |
564 // Handle idle race | |
565 if (_endp.isOutputShutdown()) | |
566 { | |
567 _endp.close(); | |
568 return; | |
569 } | |
570 | |
571 _generator.setVersion(_version); | |
572 switch (_version) | |
573 { | |
574 case HttpVersions.HTTP_0_9_ORDINAL: | |
575 break; | |
576 case HttpVersions.HTTP_1_0_ORDINAL: | |
577 _generator.setHead(_head); | |
578 if (_parser.isPersistent()) | |
579 { | |
1022
3718afd99988
HttpHeaders uses StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1021
diff
changeset
|
580 _responseFields.add(HttpHeaders.CONNECTION, HttpHeaderValues.KEEP_ALIVE); |
826 | 581 _generator.setPersistent(true); |
582 } | |
583 else if (HttpMethods.CONNECT.equals(_request.getMethod())) | |
584 { | |
585 _generator.setPersistent(true); | |
586 _parser.setPersistent(true); | |
587 } | |
588 break; | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
589 |
826 | 590 case HttpVersions.HTTP_1_1_ORDINAL: |
591 _generator.setHead(_head); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
592 |
826 | 593 if (!_parser.isPersistent()) |
594 { | |
1022
3718afd99988
HttpHeaders uses StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1021
diff
changeset
|
595 _responseFields.add(HttpHeaders.CONNECTION,HttpHeaderValues.CLOSE); |
826 | 596 _generator.setPersistent(false); |
597 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
598 |
826 | 599 if (!_host) |
600 { | |
601 LOG.debug("!host {}",this); | |
602 _generator.setResponse(HttpStatus.BAD_REQUEST_400, null); | |
1022
3718afd99988
HttpHeaders uses StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1021
diff
changeset
|
603 _responseFields.put(HttpHeaders.CONNECTION, HttpHeaderValues.CLOSE); |
826 | 604 _generator.completeHeader(_responseFields, true); |
605 _generator.complete(); | |
606 return; | |
607 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
608 |
826 | 609 if (_expect) |
610 { | |
611 LOG.debug("!expectation {}",this); | |
612 _generator.setResponse(HttpStatus.EXPECTATION_FAILED_417, null); | |
1022
3718afd99988
HttpHeaders uses StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1021
diff
changeset
|
613 _responseFields.put(HttpHeaders.CONNECTION, HttpHeaderValues.CLOSE); |
826 | 614 _generator.completeHeader(_responseFields, true); |
615 _generator.complete(); | |
616 return; | |
617 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
618 |
826 | 619 break; |
620 default: | |
621 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
622 |
826 | 623 if(_charset!=null) |
624 _request.setCharacterEncodingUnchecked(_charset); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
625 |
826 | 626 // Either handle now or wait for first content |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
627 if ((_parser.getContentLength()<=0 && !_parser.isChunking())||_expect100Continue) |
826 | 628 handleRequest(); |
629 else | |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
630 _delayedHandling = true; |
826 | 631 } |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
632 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
633 private void content(Buffer buffer) throws IOException |
826 | 634 { |
635 if (_delayedHandling) | |
636 { | |
974
7422ca1ae146
remove Connection.isIdle()
Franklin Schmidt <fschmidt@gmail.com>
parents:
972
diff
changeset
|
637 _delayedHandling = false; |
826 | 638 handleRequest(); |
639 } | |
640 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
641 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
642 private void messageComplete(long contentLength) throws IOException |
826 | 643 { |
644 if (_delayedHandling) | |
645 { | |
974
7422ca1ae146
remove Connection.isIdle()
Franklin Schmidt <fschmidt@gmail.com>
parents:
972
diff
changeset
|
646 _delayedHandling = false; |
826 | 647 handleRequest(); |
648 } | |
649 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
650 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
651 private void earlyEOF() |
826 | 652 { |
653 _earlyEOF = true; | |
654 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
655 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
656 |
980 | 657 private class RequestHandler implements HttpParser.EventHandler |
826 | 658 { |
659 @Override | |
1019
f126d30e04a4
start replacing BufferCache with StringCache
Franklin Schmidt <fschmidt@gmail.com>
parents:
1017
diff
changeset
|
660 public void startRequest(String method, Buffer uri, String version) throws IOException |
826 | 661 { |
662 AbstractHttpConnection.this.startRequest(method, uri, version); | |
663 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
664 |
826 | 665 @Override |
1021 | 666 public void parsedHeader(String name, String value) throws IOException |
826 | 667 { |
668 AbstractHttpConnection.this.parsedHeader(name, value); | |
669 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
670 |
826 | 671 @Override |
672 public void headerComplete() throws IOException | |
673 { | |
674 AbstractHttpConnection.this.headerComplete(); | |
675 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
676 |
826 | 677 @Override |
678 public void content(Buffer ref) throws IOException | |
679 { | |
680 AbstractHttpConnection.this.content(ref); | |
681 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
682 |
826 | 683 @Override |
684 public void messageComplete(long contentLength) throws IOException | |
685 { | |
686 AbstractHttpConnection.this.messageComplete(contentLength); | |
687 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
688 |
826 | 689 @Override |
690 public void earlyEOF() | |
691 { | |
692 AbstractHttpConnection.this.earlyEOF(); | |
693 } | |
694 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
695 |
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
696 |
985 | 697 public final class Output extends ServletOutputStream |
826 | 698 { |
985 | 699 private boolean _closed; |
700 private ByteArrayBuffer _onebyte; | |
701 | |
702 // These are held here for reuse by Writer | |
703 String _characterEncoding; | |
704 Writer _converter; | |
705 char[] _chars; | |
706 ByteArrayOutputStream2 _bytes; | |
707 | |
708 public final void reopen() | |
709 { | |
710 _closed = false; | |
711 } | |
712 | |
713 @Override | |
714 public final void write(byte[] b, int off, int len) throws IOException | |
715 { | |
716 write(new ByteArrayBuffer(b,off,len)); | |
717 } | |
718 | |
719 @Override | |
720 public final void write(byte[] b) throws IOException | |
721 { | |
722 write(new ByteArrayBuffer(b)); | |
723 } | |
724 | |
725 @Override | |
726 public final void write(int b) throws IOException | |
826 | 727 { |
985 | 728 if (_onebyte==null) |
729 _onebyte = new ByteArrayBuffer(1); | |
730 else | |
731 _onebyte.clear(); | |
732 _onebyte.put((byte)b); | |
733 write(_onebyte); | |
826 | 734 } |
985 | 735 |
736 private void write(Buffer buffer) throws IOException | |
737 { | |
738 if (_closed) | |
739 throw new IOException("Closed"); | |
740 if (!_generator.isOpen()) | |
741 throw new EofException(); | |
742 | |
743 // Block until we can add _content. | |
744 while (_generator.isBufferFull()) | |
745 { | |
746 _generator.blockForOutput(getMaxIdleTime()); | |
747 if (_closed) | |
748 throw new IOException("Closed"); | |
749 if (!_generator.isOpen()) | |
750 throw new EofException(); | |
751 } | |
752 | |
753 // Add the _content | |
754 _generator.addContent(buffer, HttpGenerator.MORE); | |
755 | |
756 // Have to flush and complete headers? | |
757 | |
758 if (_generator.isAllContentWritten()) | |
759 { | |
760 flush(); | |
761 close(); | |
762 } | |
763 else if (_generator.isBufferFull()) | |
764 commitResponse(HttpGenerator.MORE); | |
765 | |
766 // Block until our buffer is free | |
767 while (buffer.length() > 0 && _generator.isOpen()) | |
768 { | |
769 _generator.blockForOutput(getMaxIdleTime()); | |
770 } | |
771 } | |
772 | |
773 | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
774 |
826 | 775 /* ------------------------------------------------------------ */ |
776 /* | |
777 * @see java.io.OutputStream#close() | |
778 */ | |
779 @Override | |
780 public void close() throws IOException | |
781 { | |
985 | 782 if (_closed) |
826 | 783 return; |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
784 |
985 | 785 if (!_generator.isCommitted()) |
982 | 786 commitResponse(HttpGenerator.LAST); |
826 | 787 else |
788 flushResponse(); | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
789 |
985 | 790 _closed = true; |
826 | 791 } |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
792 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
793 |
826 | 794 /* ------------------------------------------------------------ */ |
795 /* | |
796 * @see java.io.OutputStream#flush() | |
797 */ | |
798 @Override | |
799 public void flush() throws IOException | |
800 { | |
985 | 801 if (!_generator.isCommitted()) |
982 | 802 commitResponse(HttpGenerator.MORE); |
985 | 803 _generator.flush(getMaxIdleTime()); |
826 | 804 } |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
805 |
826 | 806 /* ------------------------------------------------------------ */ |
807 /* | |
808 * @see javax.servlet.ServletOutputStream#print(java.lang.String) | |
809 */ | |
810 @Override | |
811 public void print(String s) throws IOException | |
812 { | |
985 | 813 if (_closed) |
826 | 814 throw new IOException("Closed"); |
985 | 815 PrintWriter writer = getPrintWriter(null); |
826 | 816 writer.print(s); |
817 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
818 |
1010
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
819 public final void sendContent(InputStream in) throws IOException |
826 | 820 { |
985 | 821 if (_closed) |
826 | 822 throw new IOException("Closed"); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
823 |
985 | 824 if (_generator.isWritten()) |
826 | 825 throw new IllegalStateException("!empty"); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
826 |
1010
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
827 try |
826 | 828 { |
1010
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
829 int max = _generator.prepareUncheckedAddContent(); |
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
830 Buffer buffer = _generator.getUncheckedBuffer(); |
826 | 831 |
1010
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
832 int len = buffer.readFrom(in,max); |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
833 |
1010
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
834 while (len>=0) |
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
835 { |
985 | 836 _generator.completeUncheckedAddContent(); |
826 | 837 _out.flush(); |
1010
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
838 |
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
839 max = _generator.prepareUncheckedAddContent(); |
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
840 buffer = _generator.getUncheckedBuffer(); |
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
841 len=buffer.readFrom(in,max); |
826 | 842 } |
1010
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
843 _generator.completeUncheckedAddContent(); |
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
844 _out.flush(); |
826 | 845 } |
1010
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
846 finally |
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
847 { |
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
848 in.close(); |
2712133d5bce
simplify Buffer code
Franklin Schmidt <fschmidt@gmail.com>
parents:
1007
diff
changeset
|
849 } |
981 | 850 } |
851 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
852 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
853 |
981 | 854 private final class HttpInput extends ServletInputStream |
855 { | |
856 /* ------------------------------------------------------------ */ | |
857 /* | |
858 * @see java.io.InputStream#read() | |
859 */ | |
860 @Override | |
861 public int read() throws IOException | |
862 { | |
863 byte[] bytes = new byte[1]; | |
864 int read = read(bytes, 0, 1); | |
865 return read < 0 ? -1 : 0xff & bytes[0]; | |
866 } | |
867 | |
868 /* ------------------------------------------------------------ */ | |
869 /* | |
870 * @see java.io.InputStream#read(byte[], int, int) | |
871 */ | |
872 @Override | |
873 public int read(byte[] b, int off, int len) throws IOException | |
874 { | |
875 int l = -1; | |
876 Buffer content = _parser.blockForContent(getMaxIdleTime()); | |
877 if (content!=null) | |
878 l = content.get(b, off, len); | |
879 else if (_earlyEOF) | |
880 throw new EofException("early EOF"); | |
881 return l; | |
882 } | |
883 | |
884 @Override | |
885 public int available() throws IOException | |
886 { | |
887 return _parser.available(); | |
826 | 888 } |
889 } | |
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
890 |
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
891 } |