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