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