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