Mercurial Hosting > luan
annotate src/org/eclipse/jetty/server/AbstractHttpConnection.java @ 1015:0114d373748e
remove recycle()
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Mon, 24 Oct 2016 01:26:16 -0600 |
| parents | 36fcc157bf5f |
| children | d2c3ff33387c |
| 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.BufferCache.CachedBuffer; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
45 import org.eclipse.jetty.io.Buffers; |
| 985 | 46 import org.eclipse.jetty.io.ByteArrayBuffer; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
47 import org.eclipse.jetty.io.EndPoint; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
48 import org.eclipse.jetty.io.EofException; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
49 import org.eclipse.jetty.io.RuntimeIOException; |
| 985 | 50 import org.eclipse.jetty.util.ByteArrayOutputStream2; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
51 import org.eclipse.jetty.util.QuotedStringTokenizer; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
52 import org.eclipse.jetty.util.StringUtil; |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
53 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
|
54 import org.slf4j.Logger; |
|
8e9db0bbf4f9
remove org.eclipse.jetty.util.log and upgrade slf4j
Franklin Schmidt <fschmidt@gmail.com>
parents:
802
diff
changeset
|
55 import org.slf4j.LoggerFactory; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
56 import org.eclipse.jetty.util.resource.Resource; |
|
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 /** |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
59 * <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
|
60 * 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
|
61 * 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
|
62 * </p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
63 * <p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
64 * 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
|
65 * pooling. The {@link Request}, {@link Response}, {@link HttpParser}, {@link HttpGenerator} |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
66 * 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
|
67 * a connection. Where appropriate, allocated buffers are also kept associated |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
68 * with the connection via the parser and/or generator. |
|
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 * <p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
71 * 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
|
72 * 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
|
73 * 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
|
74 * </p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
75 * <p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
76 * 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
|
77 * 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
|
78 * 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
|
79 * 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
|
80 * 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
|
81 * 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
|
82 * 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
|
83 * 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
|
84 * (HttpParser)http.getParser()).getHeaderBuffer() and |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
85 * (HttpParser)http.getParser()).getBodyBuffer() to initialise their new connection. |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
86 * </p> |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
87 * |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
88 */ |
| 982 | 89 public abstract class AbstractHttpConnection extends AbstractConnection |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
90 { |
| 826 | 91 private static final Logger LOG = LoggerFactory.getLogger(AbstractHttpConnection.class); |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
92 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
93 private final Connector _connector; |
|
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
94 private final Server _server; |
| 1013 | 95 protected final HttpURI _uri = new HttpURI(); |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
96 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
97 protected final HttpParser _parser; |
|
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
98 protected final HttpFields _requestFields = new HttpFields(); |
| 1015 | 99 public volatile Request _request; |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
100 private volatile ServletInputStream _in; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
101 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
102 protected final HttpGenerator _generator; |
|
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
103 final HttpFields _responseFields = new HttpFields(); |
| 1015 | 104 protected volatile Response _response; |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
105 private volatile Output _out; |
|
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
106 private volatile HttpWriter _writer; |
|
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
107 private volatile PrintWriter _printWriter; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
108 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
109 private int _version = -2; // UNKNOWN |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
110 |
| 826 | 111 private String _charset; |
| 112 private boolean _expect = false; | |
| 113 private boolean _expect100Continue = false; | |
| 114 private boolean _head = false; | |
| 115 private boolean _host = false; | |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
116 private boolean _delayedHandling = false; |
| 826 | 117 private boolean _earlyEOF = false; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
118 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
119 protected AbstractHttpConnection(Connector connector, EndPoint endpoint) |
| 826 | 120 { |
| 121 super(endpoint); | |
| 122 _connector = connector; | |
|
1007
945568ee77ac
remove HttpBuffersImpl
Franklin Schmidt <fschmidt@gmail.com>
parents:
1005
diff
changeset
|
123 _parser = new HttpParser(_connector.getRequestBuffers(), endpoint, new RequestHandler()); |
| 1015 | 124 _generator = new HttpGenerator(_connector.getResponseBuffers(), endpoint); |
| 125 _server = connector.server; | |
| 126 init(); | |
| 127 } | |
| 128 | |
| 129 private void init() { | |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
130 _request = new Request(this); |
| 826 | 131 _response = new Response(this); |
| 132 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
133 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
134 public final Connector getConnector() |
| 826 | 135 { |
| 136 return _connector; | |
| 137 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
138 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
139 public final Request getRequest() |
| 826 | 140 { |
| 141 return _request; | |
| 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 Response getResponse() |
| 826 | 145 { |
| 146 return _response; | |
| 147 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
148 |
| 826 | 149 /* ------------------------------------------------------------ */ |
| 150 /** | |
| 151 * Get the inputStream from the connection. | |
| 152 * <p> | |
| 153 * If the associated response has the Expect header set to 100 Continue, | |
| 154 * then accessing the input stream indicates that the handler/servlet | |
| 155 * is ready for the request body and thus a 100 Continue response is sent. | |
| 156 * | |
| 157 * @return The input stream for this connection. | |
| 158 * The stream will be created if it does not already exist. | |
| 159 * @throws IOException if the input stream cannot be retrieved | |
| 160 */ | |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
161 public final ServletInputStream getInputStream() throws IOException |
| 826 | 162 { |
| 163 // If the client is expecting 100 CONTINUE, then send it now. | |
| 164 if (_expect100Continue) | |
| 165 { | |
| 166 // is content missing? | |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
167 if (_parser.getHeaderBuffer()==null || _parser.getHeaderBuffer().length()<2) |
| 826 | 168 { |
| 169 if (_generator.isCommitted()) | |
| 170 throw new IllegalStateException("Committed before 100 Continues"); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
171 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
172 _generator.send1xx(HttpStatus.CONTINUE_100); |
| 826 | 173 } |
| 174 _expect100Continue=false; | |
| 175 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
176 |
| 826 | 177 if (_in == null) |
| 981 | 178 _in = new HttpInput(); |
| 826 | 179 return _in; |
| 180 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
181 |
| 826 | 182 /* ------------------------------------------------------------ */ |
| 183 /** | |
| 184 * @return The output stream for this connection. The stream will be created if it does not already exist. | |
| 185 */ | |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
186 public final ServletOutputStream getOutputStream() |
| 826 | 187 { |
| 188 if (_out == null) | |
| 189 _out = new Output(); | |
| 190 return _out; | |
| 191 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
192 |
| 826 | 193 /* ------------------------------------------------------------ */ |
| 194 /** | |
| 195 * @param encoding the PrintWriter encoding | |
| 196 * @return A {@link PrintWriter} wrapping the {@link #getOutputStream output stream}. The writer is created if it | |
| 197 * does not already exist. | |
| 198 */ | |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
199 public final PrintWriter getPrintWriter(String encoding) |
| 826 | 200 { |
| 201 getOutputStream(); | |
| 202 if (_writer==null) | |
| 203 { | |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
204 _writer = new HttpWriter(_out); |
|
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
205 _printWriter = new PrintWriter(_writer) |
|
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
206 { |
|
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
207 public void close() |
| 826 | 208 { |
|
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
209 synchronized (lock) |
| 826 | 210 { |
|
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
211 try |
| 826 | 212 { |
|
882
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
213 out.close(); |
|
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
214 } |
|
d850a5e6ff15
remove UncheckedPrintWriter
Franklin Schmidt <fschmidt@gmail.com>
parents:
878
diff
changeset
|
215 catch (IOException e) |
|
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 setError(); |
| 826 | 218 } |
| 219 } | |
|
882
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 }; |
| 826 | 222 } |
| 223 _writer.setCharacterEncoding(encoding); | |
| 224 return _printWriter; | |
| 225 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
226 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
227 protected void reset() |
| 826 | 228 { |
| 229 _parser.reset(); | |
| 230 _parser.returnBuffers(); // TODO maybe only on unhandle | |
| 231 _requestFields.clear(); | |
| 232 _generator.reset(); | |
| 233 _generator.returnBuffers();// TODO maybe only on unhandle | |
| 234 _responseFields.clear(); | |
| 235 _uri.clear(); | |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
236 _writer = null; |
| 826 | 237 _earlyEOF = false; |
| 1015 | 238 init(); |
| 826 | 239 } |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
240 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
241 private void handleRequest() throws IOException |
| 826 | 242 { |
| 243 boolean error = false; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
244 |
| 826 | 245 try |
| 246 { | |
| 247 // Loop here to handle async request redispatches. | |
| 248 // The loop is controlled by the call to async.unhandle in the | |
| 249 // finally block below. If call is from a non-blocking connector, | |
| 250 // then the unhandle will return false only if an async dispatch has | |
| 251 // already happened when unhandle is called. For a blocking connector, | |
| 252 // the wait for the asynchronous dispatch or timeout actually happens | |
| 253 // within the call to unhandle(). | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
254 |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
255 _request.setHandled(false); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
256 |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
257 String info=null; |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
258 try |
| 826 | 259 { |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
260 _uri.getPort(); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
261 String path = null; |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
262 |
| 826 | 263 try |
| 264 { | |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
265 path = _uri.getDecodedPath(); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
266 } |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
267 catch (Exception e) |
|
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 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
|
270 LOG.trace("",e); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
271 path = _uri.getDecodedPath(StringUtil.__ISO_8859_1); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
272 } |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
273 |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
274 info = URIUtil.canonicalPath(path); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
275 if (info==null && !_request.getMethod().equals(HttpMethods.CONNECT)) |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
276 { |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
277 if (path==null && _uri.getScheme()!=null && _uri.getHost()!=null) |
| 826 | 278 { |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
279 info="/"; |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
280 _request.setRequestURI(""); |
| 826 | 281 } |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
282 else |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
283 throw new HttpException(400); |
| 826 | 284 } |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
285 _request.setPathInfo(info); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
286 |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
287 if (_out!=null) |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
288 _out.reopen(); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
289 |
| 1001 | 290 _connector.customize(this); |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
291 _server.handle(this); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
292 } |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
293 catch (EofException e) |
|
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 LOG.debug("",e); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
296 error=true; |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
297 _request.setHandled(true); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
298 if (!_response.isCommitted()) |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
299 _generator.sendError(500, null, null, true); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
300 } |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
301 catch (RuntimeIOException e) |
|
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 LOG.debug("",e); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
304 error=true; |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
305 _request.setHandled(true); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
306 } |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
307 catch (HttpException e) |
|
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 LOG.debug("",e); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
310 error=true; |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
311 _request.setHandled(true); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
312 _response.sendError(e.getStatus(), e.getReason()); |
|
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 (Throwable 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.warn(String.valueOf(_uri),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 _generator.sendError(info==null?400:500, null, null, true); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
320 |
| 826 | 321 } |
| 322 } | |
| 323 finally | |
| 324 { | |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
325 if (_expect100Continue) |
| 826 | 326 { |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
327 LOG.debug("100 continues not sent"); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
328 // We didn't send 100 continues, but the latest interpretation |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
329 // of the spec (see httpbis) is that the client will either |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
330 // send the body anyway, or close. So we no longer need to |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
331 // do anything special here other than make the connection not persistent |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
332 _expect100Continue = false; |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
333 if (!_response.isCommitted()) |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
334 _generator.setPersistent(false); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
335 } |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
336 |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
337 if(_endp.isOpen()) |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
338 { |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
339 if (error) |
| 826 | 340 { |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
341 _endp.shutdownOutput(); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
342 _generator.setPersistent(false); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
343 if (!_generator.isComplete()) |
| 826 | 344 _response.complete(); |
| 345 } | |
| 346 else | |
| 347 { | |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
348 if (!_response.isCommitted() && !_request.isHandled()) |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
349 _response.sendError(HttpServletResponse.SC_NOT_FOUND); |
| 826 | 350 _response.complete(); |
| 351 } | |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
352 } |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
353 else |
|
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 _response.complete(); |
|
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
356 } |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
357 |
|
939
8db5996c8c89
remove AsyncContinuation
Franklin Schmidt <fschmidt@gmail.com>
parents:
934
diff
changeset
|
358 _request.setHandled(true); |
| 826 | 359 } |
| 360 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
361 |
|
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
362 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
363 public final void commitResponse(boolean last) throws IOException |
| 826 | 364 { |
| 365 if (!_generator.isCommitted()) | |
| 366 { | |
| 367 _generator.setResponse(_response.getStatus(), _response.getReason()); | |
| 368 try | |
| 369 { | |
| 370 // If the client was expecting 100 continues, but we sent something | |
| 371 // else, then we need to close the connection | |
| 372 if (_expect100Continue && _response.getStatus()!=100) | |
| 373 _generator.setPersistent(false); | |
| 374 _generator.completeHeader(_responseFields, last); | |
| 375 } | |
| 376 catch(RuntimeException e) | |
| 377 { | |
| 378 LOG.warn("header full: " + e); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
379 |
| 826 | 380 _response.reset(); |
| 381 _generator.reset(); | |
| 382 _generator.setResponse(HttpStatus.INTERNAL_SERVER_ERROR_500,null); | |
| 982 | 383 _generator.completeHeader(_responseFields,HttpGenerator.LAST); |
| 826 | 384 _generator.complete(); |
| 385 throw new HttpException(HttpStatus.INTERNAL_SERVER_ERROR_500); | |
| 386 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
387 |
| 826 | 388 } |
| 389 if (last) | |
| 390 _generator.complete(); | |
| 391 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
392 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
393 public final void completeResponse() throws IOException |
| 826 | 394 { |
| 395 if (!_generator.isCommitted()) | |
| 396 { | |
| 397 _generator.setResponse(_response.getStatus(), _response.getReason()); | |
| 398 try | |
| 399 { | |
| 982 | 400 _generator.completeHeader(_responseFields, HttpGenerator.LAST); |
| 826 | 401 } |
| 402 catch(RuntimeException e) | |
| 403 { | |
| 404 LOG.warn("header full: "+e); | |
| 405 LOG.debug("",e); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
406 |
| 826 | 407 _response.reset(); |
| 408 _generator.reset(); | |
| 409 _generator.setResponse(HttpStatus.INTERNAL_SERVER_ERROR_500,null); | |
| 982 | 410 _generator.completeHeader(_responseFields,HttpGenerator.LAST); |
| 826 | 411 _generator.complete(); |
| 412 throw new HttpException(HttpStatus.INTERNAL_SERVER_ERROR_500); | |
| 413 } | |
| 414 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
415 |
| 826 | 416 _generator.complete(); |
| 417 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
418 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
419 public final void flushResponse() throws IOException |
| 826 | 420 { |
| 421 try | |
| 422 { | |
| 982 | 423 commitResponse(HttpGenerator.MORE); |
| 826 | 424 _generator.flushBuffer(); |
| 425 } | |
| 426 catch(IOException e) | |
| 427 { | |
| 428 throw (e instanceof EofException) ? e:new EofException(e); | |
| 429 } | |
| 430 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
431 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
432 public final int getMaxIdleTime() |
| 826 | 433 { |
| 996 | 434 if (_connector.server.isLowOnThreads() && _endp.getMaxIdleTime()==_connector.getMaxIdleTime()) |
| 913 | 435 return 0; |
| 826 | 436 if (_endp.getMaxIdleTime()>0) |
| 437 return _endp.getMaxIdleTime(); | |
| 438 return _connector.getMaxIdleTime(); | |
| 439 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
440 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
441 @Override |
| 826 | 442 public String toString() |
| 443 { | |
| 1001 | 444 return String.format("%s,g=%s,p=%s", |
| 826 | 445 super.toString(), |
| 446 _generator, | |
| 1001 | 447 _parser); |
| 826 | 448 } |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
449 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
450 private void startRequest(Buffer method, Buffer uri, Buffer version) throws IOException |
| 826 | 451 { |
| 452 uri=uri.asImmutableBuffer(); | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
453 |
| 826 | 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()); | |
| 462 _request.setMethod(method.toString()); | |
|
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; |
| 826 | 467 switch (HttpMethods.CACHE.getOrdinal(method)) |
| 468 { | |
| 469 case HttpMethods.CONNECT_ORDINAL: | |
| 470 _uri.parseConnect(uri.array(), uri.getIndex(), uri.length()); | |
| 471 break; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
472 |
| 826 | 473 case HttpMethods.HEAD_ORDINAL: |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
474 _head = true; |
| 826 | 475 _uri.parse(uri.array(), uri.getIndex(), uri.length()); |
| 476 break; | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
477 |
| 826 | 478 default: |
| 479 _uri.parse(uri.array(), uri.getIndex(), uri.length()); | |
| 480 } | |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
481 |
| 826 | 482 _request.setUri(_uri); |
|
802
3428c60d7cfc
replace jetty jars with source
Franklin Schmidt <fschmidt@gmail.com>
parents:
diff
changeset
|
483 |
| 826 | 484 if (version==null) |
| 485 { | |
| 486 _request.setProtocol(HttpVersions.HTTP_0_9); | |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
487 _version = HttpVersions.HTTP_0_9_ORDINAL; |
| 826 | 488 } |
| 489 else | |
| 490 { | |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
491 version = HttpVersions.CACHE.get(version); |
| 826 | 492 if (version==null) |
| 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 |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
508 private void parsedHeader(Buffer name, Buffer 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 { | |
| 521 value = HttpHeaderValues.CACHE.lookup(value); | |
| 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 { | |
| 532 CachedBuffer cb=HttpHeaderValues.CACHE.get(values[i].trim()); | |
| 533 if (cb==null) | |
|
972
5ee36654b383
simplify AbstractHttpConnection
Franklin Schmidt <fschmidt@gmail.com>
parents:
965
diff
changeset
|
534 _expect = true; |
| 826 | 535 else |
| 536 { | |
| 537 switch(cb.getOrdinal()) | |
| 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: | |
| 553 value = HttpHeaderValues.CACHE.lookup(value); | |
| 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: |
| 557 value = MimeTypes.CACHE.lookup(value); | |
| 558 _charset=MimeTypes.getCharsetFromContentType(value); | |
| 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 { | |
| 583 _responseFields.add(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.KEEP_ALIVE_BUFFER); | |
| 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 { | |
| 598 _responseFields.add(HttpHeaders.CONNECTION_BUFFER,HttpHeaderValues.CLOSE_BUFFER); | |
| 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); | |
| 606 _responseFields.put(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.CLOSE_BUFFER); | |
| 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); | |
| 616 _responseFields.put(HttpHeaders.CONNECTION_BUFFER, HttpHeaderValues.CLOSE_BUFFER); | |
| 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 | |
| 663 public void startRequest(Buffer method, Buffer uri, Buffer version) throws IOException | |
| 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 |
| 669 public void parsedHeader(Buffer name, Buffer value) throws IOException | |
| 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 } |
