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